| Index: third_party/WebKit/Source/core/css/cssom/CSSTranslation.idl
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTranslation.idl b/third_party/WebKit/Source/core/css/cssom/CSSTranslation.idl
|
| index 7c2bdd5028f12e8e7c77f39acfd5c8d1e0f850ea..2460b472737918aaeb37ab417393f71466b08d35 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSTranslation.idl
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSTranslation.idl
|
| @@ -3,13 +3,13 @@
|
| // found in the LICENSE file.
|
|
|
| [
|
| - Constructor(CSSLengthValue x, CSSLengthValue y),
|
| - Constructor(CSSLengthValue x, CSSLengthValue y, CSSLengthValue z),
|
| + Constructor(CSSNumericValue x, CSSNumericValue y),
|
| + Constructor(CSSNumericValue x, CSSNumericValue y, CSSNumericValue z),
|
| Exposed=(Window,PaintWorklet),
|
| RaisesException=Constructor,
|
| RuntimeEnabled=CSSTypedOM
|
| ] interface CSSTranslation : CSSTransformComponent {
|
| - readonly attribute CSSLengthValue x;
|
| - readonly attribute CSSLengthValue y;
|
| - readonly attribute CSSLengthValue z;
|
| + readonly attribute CSSNumericValue x;
|
| + readonly attribute CSSNumericValue y;
|
| + readonly attribute CSSNumericValue z;
|
| };
|
|
|