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

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

Issue 2942183002: [CSS Typed OM] Make CSSRotation attributes mutable. (Closed)
Patch Set: rebase Created 3 years, 6 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/CSSRotation.cpp ('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/CSSRotation.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/CSSRotation.idl b/third_party/WebKit/Source/core/css/cssom/CSSRotation.idl
index 16f26f054c22d7d6c71043510da51b0f1f5d9f86..c4018ed47b8ea1f46fee3a5082f4438914921057 100644
--- a/third_party/WebKit/Source/core/css/cssom/CSSRotation.idl
+++ b/third_party/WebKit/Source/core/css/cssom/CSSRotation.idl
@@ -12,8 +12,8 @@
RuntimeEnabled=CSSTypedOM,
RaisesException=Constructor
] interface CSSRotation : CSSTransformComponent {
- readonly attribute CSSNumericValue angle;
- readonly attribute double x;
- readonly attribute double y;
- readonly attribute double z;
+ [RaisesException=Setter] attribute CSSNumericValue angle;
+ attribute double x;
+ attribute double y;
+ attribute double z;
};
« no previous file with comments | « third_party/WebKit/Source/core/css/cssom/CSSRotation.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698