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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssSimpleLength.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/cssSimpleLength.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssSimpleLength.html b/third_party/WebKit/LayoutTests/typedcssom/cssSimpleLength.html
index 537de5948a113817616ba4c534d77ad53fbe18c3..12bef23d036e2f3fe3d5ac54e2fb399c5783239e 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssSimpleLength.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssSimpleLength.html
@@ -23,7 +23,7 @@ test(function() {
var result = simpleLength1.add(simpleLength2);
- assert_true(result instanceof CalcLength);
+ assert_true(result instanceof CSSCalcLength);
assert_equals(result.px, 5.1);
assert_equals(result.percent, 10);
}, 'Test that adding CSSSimpleLengths with different units produces a calc length with the correct values.');
@@ -47,7 +47,7 @@ test(function() {
var result = simpleLength1.subtract(simpleLength2);
- assert_true(result instanceof CalcLength);
+ assert_true(result instanceof CSSCalcLength);
assert_equals(result.px, 5.1);
assert_equals(result.percent, -10);
}, 'Test that subtracting CSSSimpleLengths with different units produces a calc length with the correct values.');

Powered by Google App Engine
This is Rietveld 408576698