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

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

Issue 2011833002: Typed CSSOM: Rename CalcLength and StyleCalcLength to CSSCalcLength (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 c62d2ff10e0382f1e0bdaff81f61a23cb15f27b0..d6c056f1c6deae0f66524db16ebd04d3d9dd00df 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssTranslation.html
@@ -7,11 +7,11 @@
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 calcLengthPx = new CSSCalcLength({px: 1});
+var calcLength = new CSSCalcLength({px: 1, em: -2.2});
var simplePercent = new CSSSimpleLength(10, "percent");
-var calcPercent = new CalcLength({px: 1, percent: 2.2});
+var calcPercent = new CSSCalcLength({px: 1, percent: 2.2});
var values = [
// 2D CSSTranslation Transform Components

Powered by Google App Engine
This is Rietveld 408576698