mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
9 lines
241 B
Plaintext
9 lines
241 B
Plaintext
#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;
|
|
};
|