| Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html
|
| index 372cddedac9133e51f127056d6463f4e5591c694..6ceb5967a5ff5d6e10ce21c3703fdc42b737a783 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_getAll.html
|
| @@ -11,7 +11,7 @@ test(function() {
|
| testElement.styleMap.set('width', new CSSSimpleLength(90, 'px'));
|
| var result = testElement.styleMap.getAll('width');
|
| assert_equals(result.length, 1);
|
| - assert_equals(result[0].cssString, '90px');
|
| + assert_equals(result[0].cssText, '90px');
|
| }, "getAll() returns a list of values");
|
|
|
| test(function() {
|
| @@ -23,9 +23,9 @@ test(function() {
|
| assert_equals(lowerResult.length, 1);
|
| assert_equals(upperResult.length, 1);
|
| assert_equals(mixedResult.length, 1);
|
| - assert_equals(lowerResult[0].cssString, '100px');
|
| - assert_equals(upperResult[0].cssString, '100px');
|
| - assert_equals(mixedResult[0].cssString, '100px');
|
| + assert_equals(lowerResult[0].cssText, '100px');
|
| + assert_equals(upperResult[0].cssText, '100px');
|
| + assert_equals(mixedResult[0].cssText, '100px');
|
| }, "getAll is case-insensitive for the property name");
|
|
|
| test(function() {
|
|
|