mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 17:28:30 +00: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;
|
|
};
|