| Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform.html
|
| index 19f5cca72cada90893222d856b5c7dd91e0d10c2..ad375fa9ad51f84803b02eea1b8198eaffc41cf9 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform.html
|
| @@ -7,10 +7,10 @@
|
|
|
| <script>
|
|
|
| -let zeroAngle = new CSSAngleValue(0, 'deg');
|
| +let zeroAngle = new CSSUnitValue(0, 'deg');
|
|
|
| function angleValue(value, unit) {
|
| - return new CSSAngleValue(value, unit);
|
| + return new CSSUnitValue(value, unit);
|
| }
|
|
|
| function cssTransformWithRotate(angleValue) {
|
| @@ -103,7 +103,7 @@ runInlineStylePropertyMapTests( {
|
| cssTransformWithRotate3D(0, 0, 1, angleValue(0.31, 'turn')),
|
| },
|
| supportsMultiple: false,
|
| - invalidObjects: [new CSSSimpleLength(4, 'px')]
|
| + invalidObjects: [new CSSUnitValue(4, 'px')]
|
| });
|
|
|
| // TODO(meade): Remove/update this test once translate is supported.
|
|
|