| 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");
|
|
|
|
|