Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSResourceValue.idl

Issue 2190543004: [Typed-OM] Add CSSResourceValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add to global interface listing Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
+};

Powered by Google App Engine
This is Rietveld 408576698