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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/typedcssom/cssPositionValue.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 46013f16b9d8ce22c4820ce8070bd4fe1fbe2c28..6f5a408b7707256bdec2ce9f9b17230448b4c2db 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/cssLengthValue.html
@@ -5,10 +5,10 @@
test(function() {
var result = CSSLengthValue.from(5, 'px');
- assert_true(result instanceof SimpleLength);
+ assert_true(result instanceof CSSSimpleLength);
assert_equals(result.value, 5);
assert_equals(result.type, 'px');
-}, "Test that CSSLengthValue's static from(double value, LengthType type) method produces a SimpleLength.");
+}, "Test that CSSLengthValue's static from(double value, LengthType type) method produces a CSSSimpleLength.");
test(function() {
var result = CSSLengthValue.from({px: 1, percent: 2.5});
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/typedcssom/cssPositionValue.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698