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

Side by Side Diff: third_party/WebKit/LayoutTests/accessibility/focusable-div-expected.txt

Issue 1417213006: Switch all LayoutTests to use new AX name calculation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix canvas-fallback-content-labels-expected.txt Created 5 years, 1 month 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
OLDNEW
1 A 1 A
2 B 2 B
3 C 3 C
4 Link 4 Link
5 Initial text before linkLink 5 Initial text before linkLink
6 List item 6 List item
7 Initial text before list 7 Initial text before list
8 List item 8 List item
9 This test makes sure that a generic focusable div can get accessibility focus an d gets its accessible text from contents.. 9 This test makes sure that a generic focusable div can get accessibility focus an d gets its accessible text from contents..
10 10
11 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 11 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
12 12
13 13
14 PASS document.activeElement == link is true 14 PASS document.activeElement == link is true
15 PASS lastChar(axLink.deprecatedTitle) is "A" 15 PASS axLink.name is "A"
16 PASS document.activeElement == div is true 16 PASS document.activeElement == div is true
17 PASS lastChar(axDiv.deprecatedTitle) is "B" 17 PASS axDiv.name is ""
18 PASS document.activeElement == div2 is true 18 PASS document.activeElement == div2 is true
19 PASS lastChar(axDiv2.deprecatedTitle) is "C" 19 PASS axDiv2.name is ""
20 PASS document.activeElement == div3 is true 20 PASS document.activeElement == div3 is true
21 PASS lastChar(axDiv3.deprecatedDescription) is "D" 21 PASS axDiv3.name is "D"
22 PASS document.activeElement == div4 is true 22 PASS document.activeElement == div4 is true
23 PASS axDiv4.deprecatedTitle.indexOf('Link') is -1 23 PASS axDiv4.name is ""
24 PASS document.activeElement == div5 is true 24 PASS document.activeElement == div5 is true
25 PASS axDiv5.deprecatedTitle.indexOf('Link') is -1 25 PASS axDiv5.name is ""
26 PASS axDiv5.deprecatedTitle.indexOf('Initial text before link') >= 0 is true
27 PASS document.activeElement == div6 is true 26 PASS document.activeElement == div6 is true
28 PASS axDiv6.deprecatedTitle.indexOf('List item') is -1 27 PASS axDiv6.name is ""
29 PASS document.activeElement == div7 is true 28 PASS document.activeElement == div7 is true
30 PASS axDiv7.deprecatedTitle.indexOf('List item') is -1 29 PASS axDiv7.name is ""
31 PASS axDiv7.deprecatedTitle.indexOf('Initial text before list') >= 0 is true
32 PASS successfullyParsed is true 30 PASS successfullyParsed is true
33 31
34 TEST COMPLETE 32 TEST COMPLETE
35 33
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698