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

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

Issue 2713193003: Added a quick heuristic to determine which objects are the target of in-page links and stop ignorin… (Closed)
Patch Set: Fixed Android test. Created 3 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 This tests the clickable property of various elements, and tests that a role of an anchor element changes to link when it has a click listener. 1 This tests the clickable property of various elements, and tests that a role of an anchor element changes to link when it has a click listener.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS isAXElementClickable('link') is true 6 PASS isAXElementClickable('link') is true
7 PASS isAXElementClickable('button') is true 7 PASS isAXElementClickable('button') is true
8 PASS isAXElementClickable('labeled-button') is true 8 PASS isAXElementClickable('labeled-button') is true
9 PASS isAXElementClickable('button-with-title') is true 9 PASS isAXElementClickable('button-with-title') is true
10 PASS isAXElementClickable('text') is true 10 PASS isAXElementClickable('text') is true
11 PASS isAXElementClickable('checkbox') is true 11 PASS isAXElementClickable('checkbox') is true
12 PASS isAXElementClickable('number') is true 12 PASS isAXElementClickable('number') is true
13 PASS isAXElementClickable('radio') is true 13 PASS isAXElementClickable('radio') is true
14 PASS isAXElementClickable('slider') is false 14 PASS isAXElementClickable('slider') is false
15 PASS isAXElementClickable('submit') is true 15 PASS isAXElementClickable('submit') is true
16 PASS isAXElementClickable('combobox') is true 16 PASS isAXElementClickable('combobox') is true
17 PASS isAXElementClickable('listbox') is false 17 PASS isAXElementClickable('listbox') is false
18 PASS isAXElementClickable('textarea') is true 18 PASS isAXElementClickable('textarea') is true
19 PASS isAXElementClickable('focusable') is false 19 PASS isAXElementClickable('focusable') is false
20 PASS isAXElementClickable('heading') is false 20 PASS isAXElementClickable('heading') is false
21 PASS isAXElementClickable('aria-button') is true 21 PASS isAXElementClickable('aria-button') is true
22 PASS isAXElementClickable('aria-link') is true 22 PASS isAXElementClickable('aria-link') is true
23 PASS isAXElementClickable('div') is false 23 PASS isAXElementClickable('div') is false
24 PASS isAXElementClickable('onclick') is true 24 PASS isAXElementClickable('onclick') is true
25 PASS isAXElementClickable('keydown-listener') is false 25 PASS isAXElementClickable('keydown-listener') is false
26 PASS isAXElementClickable('click-listener') is true 26 PASS isAXElementClickable('click-listener') is true
27 PASS isAXElementClickable('mousedown-listener') is true 27 PASS isAXElementClickable('mousedown-listener') is true
28 PASS axRole('empty-anchor') is 'AXRole: AXUnknown' 28 PASS axRole('empty-anchor') is 'AXRole: AXAnchor'
29 PASS axRole('href-anchor') is 'AXRole: AXLink' 29 PASS axRole('href-anchor') is 'AXRole: AXLink'
30 PASS axRole('onclick-anchor') is 'AXRole: AXLink' 30 PASS axRole('onclick-anchor') is 'AXRole: AXLink'
31 PASS axRole('click-listener-anchor') is 'AXRole: AXLink' 31 PASS axRole('click-listener-anchor') is 'AXRole: AXLink'
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