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

Side by Side Diff: content/test/data/accessibility/html/modal-dialog-stack.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, 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-ALLOW:AXSubrole=* 2 @MAC-ALLOW:AXSubrole=*
3 --> 3 -->
4 <html> 4 <html>
5 <body> 5 <body>
6 Test the accessibility tree after a pending modal dialog becomes active. 6 Test the accessibility tree after a pending modal dialog becomes active.
7 <section> 7 <section>
8 <dialog id="top-dialog"> 8 <dialog id="top-dialog">
9 This was the top dialog and should not be in the tree. 9 This was the top dialog and should not be in the tree.
10 </dialog> 10 </dialog>
(...skipping 22 matching lines...) Expand all
33 33
34 pendingDialog.showModal(); 34 pendingDialog.showModal();
35 bottomDialog.showModal(); 35 bottomDialog.showModal();
36 middleDialog.showModal(); 36 middleDialog.showModal();
37 topDialog.showModal(); 37 topDialog.showModal();
38 middleDialog.close(); 38 middleDialog.close();
39 topDialog.close(); 39 topDialog.close();
40 </script> 40 </script>
41 </body> 41 </body>
42 </html> 42 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698