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

Side by Side Diff: LayoutTests/platform/chromium/accessibility/readonly-expected.txt

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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
(Empty)
1 Link Button
2 Focusable
3 Heading
4
5 ARIA button
6 ARIA toggle button
7 ARIA link
8 Button
9 This tests which elements expose themselves as readonly. Readonly here refers to whether the item is not editable, not whether a control value can be changed vs if it's unavailable.
10
11 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
12
13
14 link1
15 PASS document.activeElement == element is true
16 PASS axElement.isReadOnly is true
17
18 button1
19 PASS document.activeElement == element is true
20 PASS axElement.isReadOnly is true
21
22 text1
23 PASS document.activeElement == element is true
24 PASS axElement.isReadOnly is false
25
26 checkbox1
27 PASS document.activeElement == element is true
28 PASS axElement.isReadOnly is true
29
30 number1
31 PASS document.activeElement == element is true
32 PASS axElement.isReadOnly is false
33
34 radio1
35 PASS document.activeElement == element is true
36 PASS axElement.isReadOnly is true
37
38 slider1
39 PASS document.activeElement == element is true
40 PASS axElement.isReadOnly is true
41
42 submit1
43 PASS document.activeElement == element is true
44 PASS axElement.isReadOnly is true
45
46 combobox1
47 PASS document.activeElement == element is true
48 PASS axElement.isReadOnly is true
49
50 listbox1
51 PASS document.activeElement == element is true
52 PASS axElement.isReadOnly is true
53
54 textarea1
55 PASS document.activeElement == element is true
56 PASS axElement.isReadOnly is false
57
58 focusable1
59 PASS document.activeElement == element is true
60 PASS axElement.isReadOnly is true
61
62 heading1
63 PASS document.activeElement == element is true
64 PASS axElement.isReadOnly is true
65
66 aria-button1
67 PASS document.activeElement == element is true
68 PASS axElement.isReadOnly is true
69
70 aria-togglebutton1
71 PASS document.activeElement == element is true
72 PASS axElement.isReadOnly is true
73
74 aria-link1
75 PASS document.activeElement == element is true
76 PASS axElement.isReadOnly is true
77
78 contenteditable_root1
79 PASS document.activeElement == element is true
80 PASS axElement.isReadOnly is false
81
82 contenteditable_button1
83 PASS document.activeElement == element is true
84 PASS axElement.isReadOnly is false
85
86 PASS successfullyParsed is true
87
88 TEST COMPLETE
89
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698