Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/transform.html

Issue 2867883003: [CSS Typed OM] Delete obsolete number and length classes from Typed OM (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698