| Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
|
| index 2ee532760c5b152b5a0dd51ecfe2da24439802ad..2cc04a3c2291a4be75583b82c8ff002d84e1e24b 100644
|
| --- a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/inlineStylePropertyMap_delete.html
|
| @@ -9,7 +9,7 @@
|
| // Delete
|
| test(function() {
|
| testElement.style.width = '80px';
|
| - assert_equals(testElement.styleMap.get('width').cssString, '80px');
|
| + assert_equals(testElement.styleMap.get('width').cssText, '80px');
|
|
|
| testElement.styleMap.delete('width');
|
| assert_equals(testElement.styleMap.get('width'), null);
|
| @@ -18,7 +18,7 @@ test(function() {
|
|
|
| test(function() {
|
| testElement.styleMap.set('width', new CSSSimpleLength(100, 'px'));
|
| - assert_equals(testElement.styleMap.get('width').cssString, '100px');
|
| + assert_equals(testElement.styleMap.get('width').cssText, '100px');
|
|
|
| testElement.styleMap.delete('width');
|
| assert_equals(testElement.styleMap.get('width'), null);
|
| @@ -27,7 +27,7 @@ test(function() {
|
|
|
| test(function() {
|
| testElement.style.width = '90px';
|
| - assert_equals(testElement.styleMap.get('width').cssString, '90px');
|
| + assert_equals(testElement.styleMap.get('width').cssText, '90px');
|
|
|
| testElement.styleMap.delete('WIdtH');
|
| assert_equals(testElement.styleMap.get('width'), null);
|
|
|