Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/HTMLOutputElement/dom-token-list.html

Issue 2895903002: DOMTokenList: Update serialization algorithm on add()/remove() (Closed)
Patch Set: Remove one -expected.txt Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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');

Powered by Google App Engine
This is Rietveld 408576698