| Index: third_party/WebKit/Source/core/css/cssom/CSSResourceValue.idl
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSResourceValue.idl b/third_party/WebKit/Source/core/css/cssom/CSSResourceValue.idl
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..894054e89a9bd12350c2e1b2b1806a1d5b3e57a0
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSResourceValue.idl
|
| @@ -0,0 +1,10 @@
|
| +enum CSSResourceState {
|
| + "unloaded", "loading", "loaded", "error"
|
| +};
|
| +
|
| +[
|
| + Exposed=(Window,PaintWorklet),
|
| + RuntimeEnabled=CSSTypedOM,
|
| +] interface CSSResourceValue : CSSStyleValue {
|
| + readonly attribute CSSResourceState state;
|
| +};
|
|
|