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

Side by Side Diff: content/test/data/accessibility/html/modal-dialog-opened.html

Issue 815463006: Separating ARIA, HTML & event AX test. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 12 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:AXSubrole=* 2 @MAC-ALLOW:AXSubrole=*
3 --> 3 -->
4 <html> 4 <html>
5 <body> 5 <body>
6 Test for modal dialog blocking a document. 6 Test for modal dialog blocking a document.
7 <section> 7 <section>
8 <dialog id="top-dialog"> 8 <dialog id="top-dialog">
9 The dialog subtree should be the only text content in the accessibility tree . 9 The dialog subtree should be the only text content in the accessibility tree .
10 <a name="anchor" href="#link">Link inside the dialog.</a> 10 <a name="anchor" href="#link">Link inside the dialog.</a>
11 </dialog> 11 </dialog>
12 <select> 12 <select>
13 <optgroup label="Group"> 13 <optgroup label="Group">
14 <option>This should be pruned out of the tree.</option> 14 <option>This should be pruned out of the tree.</option>
15 </optgroup> 15 </optgroup>
16 </select> 16 </select>
17 </section> 17 </section>
18 <input type=file> 18 <input type=file>
19 <dialog id="bottom-dialog"> 19 <dialog id="bottom-dialog">
20 This is the pending dialog and should be pruned out. 20 This is the pending dialog and should be pruned out.
21 </dialog> 21 </dialog>
22 <script> 22 <script>
23 document.querySelector('#bottom-dialog').showModal(); 23 document.querySelector('#bottom-dialog').showModal();
24 document.querySelector('#top-dialog').showModal(); 24 document.querySelector('#top-dialog').showModal();
25 </script> 25 </script>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698