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

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: style nit for layout test. 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
« no previous file with comments | « LayoutTests/fast/dom/shadow/tabstop-property.html ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
35 Test tabStop with invalid value
36 PASS div.tabStop is false
37 PASS div.getAttribute('tabstop') is "false"
20 PASS div.tabStop is true 38 PASS div.tabStop is true
39 PASS div.getAttribute('tabstop') is "invalid"
40 PASS div.tabStop is true
41 PASS div.getAttribute('tabstop') is "true"
21 PASS div.tabStop is false 42 PASS div.tabStop is false
43 PASS div.getAttribute('tabstop') is "invalid"
22 Test finished. 44 Test finished.
23 PASS successfullyParsed is true 45 PASS successfullyParsed is true
24 46
25 TEST COMPLETE 47 TEST COMPLETE
26 48
OLDNEW
« 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