Update web-platform-tests to revision 3f3849c5d05f9350fad0b06d3bb3ae30d7e18d14

This commit is contained in:
WPT Sync Bot 2019-07-24 10:23:41 +00:00
parent 9a7e2663e8
commit f767403c00
310 changed files with 8134 additions and 895 deletions

View file

@ -3,7 +3,7 @@
// (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 PropertyDescriptor {
dictionary PropertyDefinition {
required DOMString name;
DOMString syntax = "*";
required boolean inherits;
@ -11,5 +11,17 @@ dictionary PropertyDescriptor {
};
partial namespace CSS {
void registerProperty(PropertyDescriptor descriptor);
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;
};