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

Unified Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iterationWithModification.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_iterationWithModification.html
diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iterationWithModification.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iterationWithModification.html
index 84434bdd449549179c416a6dbcdc2040fa741f88..6306562b44932586897f2742ab2b8135c3d8fdc1 100644
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iterationWithModification.html
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iterationWithModification.html
@@ -12,7 +12,7 @@ test(function() {
var iterator = testElement.styleMap.entries();
var entry = iterator.next();
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, '60px');
// This shouldn't appear in the iterator.
@@ -20,7 +20,7 @@ test(function() {
entry = iterator.next();
assert_equals(entry.value[0], 'border-left-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, '30px');
assert_true(iterator.next().done);
@@ -31,14 +31,14 @@ test(function() {
var iterator = testElement.styleMap.values();
var entry = iterator.next();
- assert_equals(entry.value.constructor.name, CSSSimpleLength.name);
+ assert_equals(entry.value.constructor.name, CSSUnitValue.name);
assert_equals(entry.value.cssText, '60px');
// This shouldn't appear in the iterator.
testElement.style.borderTopWidth = '10px';
entry = iterator.next();
- assert_equals(entry.value.constructor.name, CSSSimpleLength.name);
+ assert_equals(entry.value.constructor.name, CSSUnitValue.name);
assert_equals(entry.value.cssText, '30px');
assert_true(iterator.next().done);

Powered by Google App Engine
This is Rietveld 408576698