fune/testing/web-platform/tests/interfaces/css-properties-values-api.idl
autofoolip ff94b4f6c0 Bug 1584447 [wpt PR 19358] - Update interfaces/css-properties-values-api.idl, a=testonly
Automatic update from web-platform-tests
Update interfaces/css-properties-values-api.idl (#19358)

Source: https://github.com/tidoust/reffy-reports/blob/490b10f/ed/idl/css-properties-values-api.idl
Build: https://travis-ci.org/tidoust/reffy-reports/builds/590278372
--

wpt-commits: 10ed331f7d27b0eec3e5125142f1185eba46d00c
wpt-pr: 19358
2019-09-30 14:02:21 +00:00

27 lines
824 B
Text

// GENERATED CONTENT - DO NOT EDIT
// Content was automatically extracted by Reffy into reffy-reports
// (https://github.com/tidoust/reffy-reports)
// 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 {
void registerProperty(PropertyDefinition definition);
};
partial interface CSSRule {
const unsigned short PROPERTY_RULE = 18;
};
[Exposed=Window]
interface CSSPropertyRule : CSSRule {
readonly attribute CSSOMString name;
readonly attribute CSSOMString syntax;
readonly attribute boolean inherits;
readonly attribute CSSOMString? initialValue;
};