| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |