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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html

Issue 2005683002: Typed CSSOM: Rename SimpleLength to CSSSimpleLength (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix SimpleLengthType compile errors Created 4 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/cssTranslation.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html b/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
index 6362dc1e1e87c050052846227ac938d2890a0dc1..c62d2ff10e0382f1e0bdaff81f61a23cb15f27b0 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
@@ -4,13 +4,13 @@
<script>
-var simpleLength = new SimpleLength(0, "px");
-var decimalLength = new SimpleLength(1.1, "px");
-var negativeLength = new SimpleLength(-2.2, "em");
+var simpleLength = new CSSSimpleLength(0, "px");
+var decimalLength = new CSSSimpleLength(1.1, "px");
+var negativeLength = new CSSSimpleLength(-2.2, "em");
var calcLengthPx = new CalcLength({px: 1});
var calcLength = new CalcLength({px: 1, em: -2.2});
-var simplePercent = new SimpleLength(10, "percent");
+var simplePercent = new CSSSimpleLength(10, "percent");
var calcPercent = new CalcLength({px: 1, percent: 2.2});
var values = [

Powered by Google App Engine
This is Rietveld 408576698