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

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

Issue 1086753004: Switch LayoutTests to use renamed methods for deprecated text alternatives (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
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.title) is "A" 15 PASS lastChar(axLink.deprecatedTitle) is "A"
16 PASS document.activeElement == div is true 16 PASS document.activeElement == div is true
17 PASS lastChar(axDiv.title) is "B" 17 PASS lastChar(axDiv.deprecatedTitle) is "B"
18 PASS document.activeElement == div2 is true 18 PASS document.activeElement == div2 is true
19 PASS lastChar(axDiv2.title) is "C" 19 PASS lastChar(axDiv2.deprecatedTitle) is "C"
20 PASS document.activeElement == div3 is true 20 PASS document.activeElement == div3 is true
21 PASS lastChar(axDiv3.description) is "D" 21 PASS lastChar(axDiv3.deprecatedDescription) is "D"
22 PASS document.activeElement == div4 is true 22 PASS document.activeElement == div4 is true
23 PASS axDiv4.title.indexOf('Link') is -1 23 PASS axDiv4.deprecatedTitle.indexOf('Link') is -1
24 PASS document.activeElement == div5 is true 24 PASS document.activeElement == div5 is true
25 PASS axDiv5.title.indexOf('Link') is -1 25 PASS axDiv5.deprecatedTitle.indexOf('Link') is -1
26 PASS axDiv5.title.indexOf('Initial text before link') >= 0 is true 26 PASS axDiv5.deprecatedTitle.indexOf('Initial text before link') >= 0 is true
27 PASS document.activeElement == div6 is true 27 PASS document.activeElement == div6 is true
28 PASS axDiv6.title.indexOf('List item') is -1 28 PASS axDiv6.deprecatedTitle.indexOf('List item') is -1
29 PASS document.activeElement == div7 is true 29 PASS document.activeElement == div7 is true
30 PASS axDiv7.title.indexOf('List item') is -1 30 PASS axDiv7.deprecatedTitle.indexOf('List item') is -1
31 PASS axDiv7.title.indexOf('Initial text before list') >= 0 is true 31 PASS axDiv7.deprecatedTitle.indexOf('Initial text before list') >= 0 is true
32 PASS successfullyParsed is true 32 PASS successfullyParsed is true
33 33
34 TEST COMPLETE 34 TEST COMPLETE
35 35
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698