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 d9c1e167deadeb449545d8167b441059c5841bea..0bb2d495d9b449b2300633ad0d9cd8fc270273a1 100644 |
--- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iterationWithModification.html |
+++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_iterationWithModification.html |
@@ -13,7 +13,7 @@ test(function() { |
var entry = iterator.next(); |
assert_equals(entry.value[0], 'width'); |
assert_true(entry.value[1] instanceof CSSSimpleLength); |
- assert_equals(entry.value[1].cssString, '60px'); |
+ assert_equals(entry.value[1].cssText, '60px'); |
// This shouldn't appear in the iterator. |
testElement.style.borderTopWidth = '10px'; |
@@ -21,7 +21,7 @@ test(function() { |
entry = iterator.next(); |
assert_equals(entry.value[0], 'border-left-width'); |
assert_true(entry.value[1] instanceof CSSSimpleLength); |
- assert_equals(entry.value[1].cssString, '30px'); |
+ assert_equals(entry.value[1].cssText, '30px'); |
assert_true(iterator.next().done); |
}, "Adding a property while iterating over entries() doesn't affect iterator"); |
@@ -32,14 +32,14 @@ test(function() { |
var iterator = testElement.styleMap.values(); |
var entry = iterator.next(); |
assert_true(entry.value instanceof CSSSimpleLength); |
- assert_equals(entry.value.cssString, '60px'); |
+ assert_equals(entry.value.cssText, '60px'); |
// This shouldn't appear in the iterator. |
testElement.style.borderTopWidth = '10px'; |
entry = iterator.next(); |
assert_true(entry.value instanceof CSSSimpleLength); |
- assert_equals(entry.value.cssString, '30px'); |
+ assert_equals(entry.value.cssText, '30px'); |
assert_true(iterator.next().done); |
}, "Adding a property while iterating over values() doesn't affect current iterator"); |