blob: eb7d7b027e72d9347c319c5d02770bf5e600b4e7 [file] [log] [blame]
Victor Porof6e096922022-06-10 13:01:05 +00001// GENERATED CONTENT - DO NOT EDIT
2// Content was automatically extracted by Reffy into webref
3// (https://github.com/w3c/webref)
4// Source: CSS Properties and Values API Level 1 (https://drafts.css-houdini.org/css-properties-values-api-1/)
5
6dictionary PropertyDefinition {
7 required DOMString name;
8 DOMString syntax = "*";
9 required boolean inherits;
10 DOMString initialValue;
11};
12
13partial namespace CSS {
14 undefined registerProperty(PropertyDefinition definition);
15};
16
17[Exposed=Window]
18interface CSSPropertyRule : CSSRule {
19 readonly attribute CSSOMString name;
20 readonly attribute CSSOMString syntax;
21 readonly attribute boolean inherits;
22 readonly attribute CSSOMString? initialValue;
23};