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

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: 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">
dmazzoni 2015/01/21 07:16:56 Could you add two optgroups? It might be more clea
14 <option value="listbox_e1" id="listbox_option_enabled">One</option>
dmazzoni 2015/01/21 07:16:56 Two elements have the same id
15 <option value="listbox_e2">Two</option>
16 <option value="listbox_e3">Three</option>
17 <option value="listbox_e4">Four</option>
18 </optgroup>
19 </select>
20
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698