| Index: third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/dom-token-list.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/dom-token-list.html b/third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/dom-token-list.html
|
| index 8b88878bf98f3549764532e2f1110c61cbf7aa30..79f86cde01a507913d00effc2b17799d3f7f1bfc 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/dom-token-list.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/dom-token-list.html
|
| @@ -58,7 +58,7 @@ shouldBeEqualToString('element.htmlFor.toString()', 'x');
|
| // http://simon.html5.org/test/html/dom/reflecting/DOMTokenList/getting/007.htm
|
| createElement('x x');
|
| element.htmlFor.add('x');
|
| -shouldBeEqualToString('element.htmlFor.toString()', 'x x');
|
| +shouldBeEqualToString('element.htmlFor.toString()', 'x x');
|
|
|
| // http://simon.html5.org/test/html/dom/reflecting/DOMTokenList/getting/008.htm
|
| createElement('y');
|
| @@ -111,11 +111,11 @@ shouldBeEqualToString('element.htmlFor.toString()', 'x y');
|
|
|
| createElement('x\t');
|
| element.htmlFor.add('y');
|
| -shouldBeEqualToString('element.htmlFor.toString()', 'x\ty');
|
| +shouldBeEqualToString('element.htmlFor.toString()', 'x y');
|
|
|
| createElement(' ');
|
| element.htmlFor.add('y');
|
| -shouldBeEqualToString('element.htmlFor.toString()', ' y');
|
| +shouldBeEqualToString('element.htmlFor.toString()', 'y');
|
|
|
|
|
| debug('- Test invalid tokens');
|
|
|