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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.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/transform-perspective.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.html
index 86dc3811f377d984b97f6ad4392401b0a89d3c58..c4923a9ac7ff45e1d45c73f5e804d4b4339b06a0 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/transform-perspective.html
@@ -43,7 +43,7 @@ test(function() {
for (var i = 0; i < supportedUnits.length; i++) {
var unit = supportedUnits[i];
var perspective = new CSSTransformValue([
- new CSSPerspective(new CSSSimpleLength(i, unit))]);
+ new CSSPerspective(new CSSUnitValue(i, unit))]);
testElement.styleMap.set('transform', perspective);
var cssText = 'perspective(' + i + unit + ')';

Powered by Google App Engine
This is Rietveld 408576698