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

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

Issue 2857333005: [css-typed-om] make all attributes of CSSScale mutable. (Closed)
Patch Set: [css-typed-om] make all attributes of CSSScale mutable. Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSScale.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/cssom/CSSScale.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSScale.idl b/third_party/WebKit/Source/core/css/cssom/CSSScale.idl
index 0971515ffa266908aa3231af517b0230c523360f..f1d029f934da4e9c52b40fb158a2a56ecff02a3e 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSScale.idl
+++ b/third_party/WebKit/Source/core/css/cssom/CSSScale.idl
@@ -8,7 +8,7 @@
Exposed=(Window,PaintWorklet),
RuntimeEnabled=CSSTypedOM
] interface CSSScale : CSSTransformComponent {
- readonly attribute double x;
- readonly attribute double y;
- readonly attribute double z;
+ attribute double x;
+ attribute double y;
+ attribute double z;
};
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSScale.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698