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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.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/cssLengthValue.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html b/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
index 6f5a408b7707256bdec2ce9f9b17230448b4c2db..eda875869192b5f7d58d92455021cee4e03ccf6f 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
@@ -12,10 +12,10 @@ test(function() {
test(function() {
var result = CSSLengthValue.from({px: 1, percent: 2.5});
- assert_true(result instanceof CalcLength);
+ assert_true(result instanceof CSSCalcLength);
assert_equals(result.px, 1);
assert_equals(result.percent, 2.5);
-}, "Test that CSSLengthValue's static from(CalcDictionary dictionary) method produces a CalcLength.");
+}, "Test that CSSLengthValue's static from(CalcDictionary dictionary) method produces a CSSCalcLength.");
</script>
<body>

Powered by Google App Engine
This is Rietveld 408576698