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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iteration.html

Issue 2867883003: [CSS Typed OM] Delete obsolete number and length classes from Typed OM (Closed)
Patch Set: rebase Created 3 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/inlinestyle/inlineStylePropertyMap_iteration.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iteration.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iteration.html
index 371d50c81de43d8df83c7cc772e4d6b17460adcf..f669834b7474eb96de9e26a57e75d6820ea55517 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iteration.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iteration.html
@@ -28,7 +28,7 @@ test(function() {
assert_true(iterator.next().done);
assert_equals(entry.value[0], 'width');
- assert_equals(entry.value[1].constructor.name, CSSSimpleLength.name);
+ assert_equals(entry.value[1].constructor.name, CSSUnitValue.name);
assert_equals(entry.value[1].cssText, '50px');
}, "Iterator for single entry returns iterator with a single value");
@@ -53,7 +53,7 @@ test(function() {
// Should only be one entry.
assert_true(iterator.next().done);
- assert_equals(entry.value.constructor.name, CSSSimpleLength.name);
+ assert_equals(entry.value.constructor.name, CSSUnitValue.name);
assert_equals(entry.value.cssText, '70px');
}, "Iterator for single value returns iterator with a single value");

Powered by Google App Engine
This is Rietveld 408576698