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

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

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

Powered by Google App Engine
This is Rietveld 408576698