mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 3f3849c5d05f9350fad0b06d3bb3ae30d7e18d14
This commit is contained in:
parent
9a7e2663e8
commit
f767403c00
310 changed files with 8134 additions and 895 deletions
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue