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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.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/styleValue-parse-basic.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html b/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
index 1b3754bf1e5ec6851470d2d5b29023569fb287ee..2c1b2e8193575b1ada43d717a98563f2b9134a1a 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/styleValue-parse-basic.html
@@ -7,10 +7,10 @@ test(function() {
var result = StyleValue.parse('width', '10px');
assert_not_equals(result, null);
- assert_true(result instanceof SimpleLength);
+ assert_true(result instanceof CSSSimpleLength);
assert_equals(result.value, 10);
assert_equals(result.type, 'px');
-}, 'Parsing 10px results in a SimpleLength');
+}, 'Parsing 10px results in a CSSSimpleLength');
test(function() {
assert_equals(StyleValue.parse('width', 'hello'), null);

Powered by Google App Engine
This is Rietveld 408576698