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

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

Issue 1589733004: CSS Typed OM: add TransformComponents Rotation and Skew (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cssValueAndCssString
Patch Set: Remove TransformComponent call in child constructor Created 4 years, 11 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/SkewTransformComponent.idl
diff --git a/third_party/WebKit/Source/core/css/cssom/TransformValue.idl b/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.idl
similarity index 52%
copy from third_party/WebKit/Source/core/css/cssom/TransformValue.idl
copy to third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.idl
index 2168f5fa50463ed6d4b550deb2c17dbc8a166d4a..dab92214b11054a6d6d665265e702814cdefeaf1 100644
--- a/third_party/WebKit/Source/core/css/cssom/TransformValue.idl
+++ b/third_party/WebKit/Source/core/css/cssom/SkewTransformComponent.idl
@@ -3,10 +3,9 @@
// found in the LICENSE file.
[
- Constructor(),
- Constructor(sequence<TransformComponent> transformComponents),
+ Constructor(double ax, double ay),
RuntimeEnabled=CSSTypedOM
-] interface TransformValue : StyleValue {
- iterable<TransformComponent>;
- boolean is2D();
+] interface SkewTransformComponent : TransformComponent {
+ readonly attribute double ax;
+ readonly attribute double ay;
};

Powered by Google App Engine
This is Rietveld 408576698