Update web-platform-tests to revision 5ca972e15cfa80277964645d9ee5ccd87a661337

This commit is contained in:
WPT Sync Bot 2018-02-25 20:08:45 -05:00
parent 072badabac
commit 908e01b499
30 changed files with 811 additions and 289 deletions

View file

@ -308,23 +308,6 @@ interface CSSPositionValue : CSSStyleValue {
attribute CSSNumericValue y;
};
enum CSSResourceState {"unloaded", "loading", "loaded", "error"};
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
interface CSSResourceValue : CSSStyleValue {
readonly attribute CSSResourceState state;
};
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet)]
interface CSSImageValue : CSSResourceValue {
readonly attribute double? intrinsicWidth;
readonly attribute double? intrinsicHeight;
readonly attribute double? intrinsicRatio;
};
[Exposed=(Window, Worker, PaintWorklet, LayoutWorklet),
Constructor(USVString url)]
interface CSSURLImageValue : CSSImageValue {
readonly attribute USVString url;
interface CSSImageValue : CSSStyleValue {
};