mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-02 22:30:58 +00:00
9 lines
237 B
Text
9 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;
|
||
|
|
};
|