mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-28 12:10:28 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
9 lines
327 B
Text
9 lines
327 B
Text
// https://drafts.css-houdini.org/css-properties-values-api/#the-css-property-rule-interface
|
|
[Exposed=Window]
|
|
interface CSSPropertyRule : CSSRule {
|
|
readonly attribute CSSOMString name;
|
|
readonly attribute CSSOMString syntax;
|
|
readonly attribute boolean inherits;
|
|
readonly attribute CSSOMString? initialValue;
|
|
|
|
};
|