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

Side by Side Diff: content/test/data/accessibility/html/optgroup.html

Issue 1768753003: Implemented the reporting of text style and language information on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test expectations. Created 4 years, 9 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 <!-- 1 <!--
2 @MAC-ALLOW:AXRole* 2 @MAC-ALLOW:AXRole*
3 @WIN-ALLOW:xml-roles* 3 @WIN-ALLOW:xml-roles*
4 @WIN-ALLOW:IA2_STATE_VERTICAL 4 @WIN-ALLOW:IA2_STATE_VERTICAL
5 @WIN-ALLOW:SELECTABLE 5 @WIN-ALLOW:SELECTABLE
6 @WIN-ALLOW:invalid*
7 --> 6 -->
8 <!DOCTYPE html> 7 <!DOCTYPE html>
9 <html> 8 <html>
10 <body> 9 <body>
11 10
12 <select size="10" id="listbox"> 11 <select size="10" id="listbox">
13 <optgroup label="Enabled" id="listbox_optgroup_enabled"> 12 <optgroup label="Enabled" id="listbox_optgroup_enabled">
14 <option value="listbox_e1" id="listbox_option_enabled_one">One</option> 13 <option value="listbox_e1" id="listbox_option_enabled_one">One</option>
15 <option value="listbox_e2">Two</option> 14 <option value="listbox_e2">Two</option>
16 <option value="listbox_e3">Three</option> 15 <option value="listbox_e3">Three</option>
17 <option value="listbox_e4">Four</option> 16 <option value="listbox_e4">Four</option>
18 </optgroup> 17 </optgroup>
19 <optgroup label="Disabled" disabled id="listbox_optgroup_disabled"> 18 <optgroup label="Disabled" disabled id="listbox_optgroup_disabled">
20 <option value="listbox_d1" id="listbox_option_disabled_one">One</option> 19 <option value="listbox_d1" id="listbox_option_disabled_one">One</option>
21 <option value="listbox_d2">Two</option> 20 <option value="listbox_d2">Two</option>
22 <option value="listbox_d3">Three</option> 21 <option value="listbox_d3">Three</option>
23 <option value="listbox_d4">Four</option> 22 <option value="listbox_d4">Four</option>
24 </optgroup> 23 </optgroup>
25 </select> 24 </select>
26 25
27 </body> 26 </body>
28 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698