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

Side by Side Diff: LayoutTests/accessibility/element-role-mapping-focusable.html

Issue 1161433004: Enable element-role-mapping-focusable.html in LayoutTests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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 <html> 1 <html>
2 <script src="../resources/js-test.js"></script> 2 <script src="../resources/js-test.js"></script>
3 <script> 3 <script>
4 function mouseDown() { 4 function mouseDown() {
5 document.getElementById("mousedown_link").style.color = "red"; 5 document.getElementById("mousedown_link").style.color = "red";
6 } 6 }
7 </script> 7 </script>
8 <a id="normal_link_id" href="http://www.chromium.org">Visit Chromium</a> 8 <a id="normal_link_id" href="http://www.chromium.org">Visit Chromium</a>
9 <a id="mousedown_link_id" onmousedown="mouseDown()">Click the text!</a> 9 <a id="mousedown_link_id" onmousedown="mouseDown()">Click the text!</a>
10 <button id="button_id" type="button">Button</button> 10 <button id="button_id" type="button">Button</button>
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 hasRole("input_date_id", "AXRole: AXDateField"); 115 hasRole("input_date_id", "AXRole: AXDateField");
116 hasRole("input_datetime_id", "AXRole: AXTextField"); 116 hasRole("input_datetime_id", "AXRole: AXTextField");
117 hasRole("input_datetime-local_id", "AXRole: AXDateTimeField"); 117 hasRole("input_datetime-local_id", "AXRole: AXDateTimeField");
118 hasRole("input_month_id", "AXRole: AXDateTimeField"); 118 hasRole("input_month_id", "AXRole: AXDateTimeField");
119 hasRole("input_week_id", "AXRole: AXDateTimeField"); 119 hasRole("input_week_id", "AXRole: AXDateTimeField");
120 120
121 hasRole("input_file_id", "AXRole: AXButton"); 121 hasRole("input_file_id", "AXRole: AXButton");
122 hasRole("input_number_id", "AXRole: AXSpinButton"); 122 hasRole("input_number_id", "AXRole: AXSpinButton");
123 hasRole("input_range_id", "AXRole: AXSlider"); 123 hasRole("input_range_id", "AXRole: AXSlider");
124 hasRole("input_color_id", "AXRole: AXColorWell"); 124 hasRole("input_color_id", "AXRole: AXColorWell");
125 hasRole("input_time_id", "AXRole: AXUnknown"); 125 hasRole("input_time_id", "AXRole: AXInputTime");
126 hasRole("input_reset_id", "AXRole: AXButton"); 126 hasRole("input_reset_id", "AXRole: AXButton");
127 127
128 hasSingleSelectRole("select_id", "select_option_id"); 128 hasSingleSelectRole("select_id", "select_option_id");
129 hasRole("select_multiple_id", "AXRole: AXListBox"); 129 hasRole("select_multiple_id", "AXRole: AXListBox");
130 hasRole("select_multiple_option_id", "AXRole: AXListBoxOption"); 130 hasRole("select_multiple_option_id", "AXRole: AXListBoxOption");
131 131
132 hasRole("textarea_id", "AXRole: AXTextField"); 132 hasRole("textarea_id", "AXRole: AXTextField");
133 133
134 hasRole("meter_id", "AXRole: AXMeter"); 134 hasRole("meter_id", "AXRole: AXMeter");
135 hasRole("output_id", "AXRole: AXStatus"); 135 hasRole("output_id", "AXRole: AXStatus");
136 hasRole("input_radio_id", "AXRole: AXRadioButton"); 136 hasRole("input_radio_id", "AXRole: AXRadioButton");
137 hasRole("legend_id", "AXRole: AXLegend"); 137 hasRole("legend_id", "AXRole: AXLegend");
138 hasRole("input_text_id", "AXRole: AXTextField"); 138 hasRole("input_text_id", "AXRole: AXTextField");
139 hasRole("input_password_id", "AXRole: AXTextField"); 139 hasRole("input_password_id", "AXRole: AXTextField");
140 } 140 }
141 </script> 141 </script>
142 </html> 142 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/accessibility/element-role-mapping-focusable-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698