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

Side by Side Diff: content/test/data/accessibility/aria-combobox.html

Issue 11785038: Update and rebaseline many DumpAccessibilityTree tests. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: remove bug comments that no longer apply Created 7 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
1 <!-- 1 <!--
2 @MAC-DENY:subrole*
3 @WIN-DENY:description* 2 @WIN-DENY:description*
4 --> 3 -->
5 <html> 4 <html>
6 <body> 5 <body>
7 <span id="state_label">State</span> 6 <span id="state_label">State</span>
8 <input type="text" 7 <input type="text"
9 role="combobox" 8 role="combobox"
10 aria-labelledby="state_label" 9 aria-labelledby="state_label"
11 aria-autocomplete="list" 10 aria-autocomplete="list"
12 aria-owns="state_list" 11 aria-owns="state_list"
13 aria-readonly="true" 12 aria-readonly="true"
14 aria-activedescendant="state2"/> 13 aria-activedescendant="state2"/>
15 <ul id="state_list" tabindex="-1" aria-expanded="true"> 14 <ul id="state_list" role="listbox" aria-expanded="true">
16 <li id="state1" role="option">Alabama</li> 15 <li id="state1" role="option" tabindex="-1">Alabama</li>
17 <li id="state2" role="option">Alaska</li> 16 <li id="state2" role="option" tabindex="-1">Alaska</li>
18 </ul> 17 </ul>
19 </body> 18 </body>
20 </html> 19 </html>
OLDNEW
« no previous file with comments | « content/test/data/accessibility/aria-application.html ('k') | content/test/data/accessibility/aria-combobox-expected-mac.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698