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

Side by Side 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: Guard tabstop attribute to be enabled via about:flags Created 5 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 This is basic behavior test for tabStop attribute. 1 This is basic behavior test for tabStop attribute.
2 2
3 Testing tabStop property and attribute 3 Testing tabStop property and attribute
4 Test tabStop normal assignment behavior 4 Test tabStop normal assignment behavior
5 PASS div.tabStop is false 5 PASS div.tabStop is false
6 PASS div.tabStop is false 6 PASS div.tabStop is false
7 PASS div.getAttribute('tabstop') is "false"
7 PASS div.tabStop is false 8 PASS div.tabStop is false
8 Test tabStop override by tabindex property 9 PASS div.hasAttribute('tabstop') is false
10 PASS div.tabStop is true
11 PASS div.getAttribute('tabstop') is "true"
12 PASS div.tabStop is false
13 PASS div.hasAttribute('tabstop') is false
14 Test tabStop value implicitly set by tabindex property
9 PASS div.tabStop is true 15 PASS div.tabStop is true
10 PASS div.tabStop is false 16 PASS div.tabStop is false
11 PASS div.tabStop is true 17 PASS div.tabStop is true
12 Test tabStop override by tabindex attribute 18 PASS div.tabStop is false
19 Test explicit tabStop not overridable by tabindex attribute
20 PASS div.tabStop is false
21 PASS div.getAttribute('tabstop') is "false"
22 PASS div.tabStop is true
23 PASS div.getAttribute('tabstop') is "true"
24 PASS div.tabStop is false
25 PASS div.getAttribute('tabstop') is "false"
26 PASS div.tabStop is false
27 PASS div.hasAttribute('tabstop') is false
28 Test tabStop change with explicit tabindex change
13 PASS div.tabStop is true 29 PASS div.tabStop is true
14 PASS div.tabStop is false 30 PASS div.tabStop is false
15 PASS div.tabStop is true 31 PASS div.getAttribute('tabstop') is "false"
16 Test tabStop change after tabindex change
17 PASS div.tabStop is false 32 PASS div.tabStop is false
18 PASS div.tabStop is true 33 PASS div.tabStop is true
19 Test tabStop change before tabindex change which will be overridden 34 PASS div.getAttribute('tabstop') is "true"
20 PASS div.tabStop is true
21 PASS div.tabStop is false
22 Test finished. 35 Test finished.
23 PASS successfullyParsed is true 36 PASS successfullyParsed is true
24 37
25 TEST COMPLETE 38 TEST COMPLETE
26 39
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698