| 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;
|
| };
|
|
|