
This provides a rough implementation of the CSS @namespace rule. Currently we just support default namespaces, namespace prefixes are still to come.
8 lines
237 B
Text
8 lines
237 B
Text
#import <CSS/CSSRule.idl>
|
|
|
|
// https://www.w3.org/TR/cssom/#the-cssnamespacerule-interface
|
|
[Exposed=Window]
|
|
interface CSSNamespaceRule : CSSRule {
|
|
readonly attribute CSSOMString namespaceURI;
|
|
readonly attribute CSSOMString prefix;
|
|
};
|