Automatic update from web-platform-tests Sync interfaces/ with @webref/idl 3.47.1 -- wpt-commits: 40d3681ef52958c19a59d5a2af6ae259bd82ce7a wpt-pr: 45928
24 lines
726 B
Plaintext
24 lines
726 B
Plaintext
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into webref
|
|
// (https://github.com/w3c/webref)
|
|
// Source: CSS Properties and Values API Level 1 (https://drafts.css-houdini.org/css-properties-values-api-1/)
|
|
|
|
dictionary PropertyDefinition {
|
|
required DOMString name;
|
|
DOMString syntax = "*";
|
|
required boolean inherits;
|
|
DOMString initialValue;
|
|
};
|
|
|
|
partial namespace CSS {
|
|
undefined registerProperty(PropertyDefinition definition);
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface CSSPropertyRule : CSSRule {
|
|
readonly attribute CSSOMString name;
|
|
readonly attribute CSSOMString syntax;
|
|
readonly attribute boolean inherits;
|
|
readonly attribute CSSOMString? initialValue;
|
|
};
|