| Index: third_party/WebKit/Source/core/css/cssom/CSSPositionValue.idl
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.idl b/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.idl
|
| index 79d48b1e442806b7763ec2445955ca5e70c15ca1..a51541dd0015364d5ebaa897975629c51ea4e982 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.idl
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.idl
|
| @@ -6,10 +6,10 @@
|
| // background-position.
|
| // Spec: https://drafts.css-houdini.org/css-typed-om/#positionvalue-objects
|
| [
|
| - Constructor(CSSLengthValue x, CSSLengthValue y),
|
| + Constructor(CSSNumericValue x, CSSNumericValue y),
|
| Exposed=(Window,PaintWorklet),
|
| RuntimeEnabled=CSSTypedOM
|
| ] interface CSSPositionValue : CSSStyleValue {
|
| - readonly attribute CSSLengthValue x;
|
| - readonly attribute CSSLengthValue y;
|
| + readonly attribute CSSNumericValue x;
|
| + readonly attribute CSSNumericValue y;
|
| };
|
|
|