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

Unified Diff: LayoutTests/fast/dom/shadow/tabstop-property-expected.txt

Issue 1046853002: Implement 'tabstop' as an HTML attribute (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: style nit for layout test. Created 5 years, 9 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
« no previous file with comments | « LayoutTests/fast/dom/shadow/tabstop-property.html ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/shadow/tabstop-property-expected.txt
diff --git a/LayoutTests/fast/dom/shadow/tabstop-property-expected.txt b/LayoutTests/fast/dom/shadow/tabstop-property-expected.txt
index a8389d49281d19bf535ecf7bda33cdc1743a11bc..d4d92fffe079fd962edbed6894e53553bfa962aa 100644
--- a/LayoutTests/fast/dom/shadow/tabstop-property-expected.txt
+++ b/LayoutTests/fast/dom/shadow/tabstop-property-expected.txt
@@ -4,21 +4,43 @@ Testing tabStop property and attribute
Test tabStop normal assignment behavior
PASS div.tabStop is false
PASS div.tabStop is false
+PASS div.getAttribute('tabstop') is "false"
PASS div.tabStop is false
-Test tabStop override by tabindex property
+PASS div.hasAttribute('tabstop') is false
PASS div.tabStop is true
+PASS div.getAttribute('tabstop') is "true"
PASS div.tabStop is false
+PASS div.hasAttribute('tabstop') is false
+Test tabStop value implicitly set by tabindex property
PASS div.tabStop is true
-Test tabStop override by tabindex attribute
+PASS div.tabStop is false
+PASS div.tabStop is true
+PASS div.tabStop is false
+Test explicit tabStop not overridable by tabindex attribute
+PASS div.tabStop is false
+PASS div.getAttribute('tabstop') is "false"
PASS div.tabStop is true
+PASS div.getAttribute('tabstop') is "true"
+PASS div.tabStop is false
+PASS div.getAttribute('tabstop') is "false"
+PASS div.tabStop is false
+PASS div.hasAttribute('tabstop') is false
+Test tabStop change with explicit tabindex change
+PASS div.tabStop is true
+PASS div.tabStop is false
+PASS div.getAttribute('tabstop') is "false"
PASS div.tabStop is false
PASS div.tabStop is true
-Test tabStop change after tabindex change
+PASS div.getAttribute('tabstop') is "true"
+Test tabStop with invalid value
PASS div.tabStop is false
+PASS div.getAttribute('tabstop') is "false"
PASS div.tabStop is true
-Test tabStop change before tabindex change which will be overridden
+PASS div.getAttribute('tabstop') is "invalid"
PASS div.tabStop is true
+PASS div.getAttribute('tabstop') is "true"
PASS div.tabStop is false
+PASS div.getAttribute('tabstop') is "invalid"
Test finished.
PASS successfullyParsed is true
« no previous file with comments | « LayoutTests/fast/dom/shadow/tabstop-property.html ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698