Index: core/css/cssom/Scale.idl |
diff --git a/core/css/cssom/Scale.idl b/core/css/cssom/Scale.idl |
new file mode 100644 |
index 0000000000000000000000000000000000000000..22ec20d651c7cbcc76b0e6b3c324455cd2b565a4 |
--- /dev/null |
+++ b/core/css/cssom/Scale.idl |
@@ -0,0 +1,14 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+[ |
+ Constructor(double x, double y), |
+ Constructor(double x, double y, double z), |
+ ImplementedAs=ScaleTransformComponent, |
+ RuntimeEnabled=CSSTypedOM |
+] interface Scale : TransformComponent { |
+ readonly attribute double x; |
+ readonly attribute double y; |
+ readonly attribute double z; |
+}; |