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

Unified Diff: LayoutTests/fast/dom/tabindex-defaults-expected.txt

Issue 23475019: The HTML parser should lazy attach. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: moar whitespace text node rebaselines Created 7 years, 3 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: LayoutTests/fast/dom/tabindex-defaults-expected.txt
diff --git a/LayoutTests/fast/dom/tabindex-defaults-expected.txt b/LayoutTests/fast/dom/tabindex-defaults-expected.txt
index ebc50c4d21cee40482ab886e12225e50030dab93..6ba0a69977f8fb9faa7aadb5bcebf57b6b0662f1 100644
--- a/LayoutTests/fast/dom/tabindex-defaults-expected.txt
+++ b/LayoutTests/fast/dom/tabindex-defaults-expected.txt
@@ -8,21 +8,21 @@ PASS button.tabIndex is 0
PASS input.tabIndex is 0
PASS select.tabIndex is 0
PASS textarea.tabIndex is 0
-PASS editableDiv.tabIndex is 0
+FAIL editableDiv.tabIndex should be 0. Was -1.
PASS normalDiv.tabIndex is -1
PASS anchor.setAttribute("tabindex", "invalid"); anchor.tabIndex is 0
PASS button.setAttribute("tabindex", "invalid"); button.tabIndex is 0
PASS input.setAttribute("tabindex", "invalid"); input.tabIndex is 0
PASS select.setAttribute("tabindex", "invalid"); select.tabIndex is 0
PASS textarea.setAttribute("tabindex", "invalid"); textarea.tabIndex is 0
-PASS editableDiv.setAttribute("tabindex", "invalid"); editableDiv.tabIndex is 0
+FAIL editableDiv.setAttribute("tabindex", "invalid"); editableDiv.tabIndex should be 0. Was -1.
PASS normalDiv.setAttribute("tabindex", "invalid"); normalDiv.tabIndex is -1
PASS anchor.setAttribute("tabindex", "9999999999"); anchor.tabIndex is 0
PASS button.setAttribute("tabindex", "9999999999"); button.tabIndex is 0
PASS input.setAttribute("tabindex", "9999999999"); input.tabIndex is 0
PASS select.setAttribute("tabindex", "9999999999"); select.tabIndex is 0
PASS textarea.setAttribute("tabindex", "9999999999"); textarea.tabIndex is 0
-PASS editableDiv.setAttribute("tabindex", "9999999999"); editableDiv.tabIndex is 0
+FAIL editableDiv.setAttribute("tabindex", "9999999999"); editableDiv.tabIndex should be 0. Was -1.
PASS normalDiv.setAttribute("tabindex", "9999999999"); normalDiv.tabIndex is -1
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698