• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<!--
2@MAC-ALLOW:AXSubrole=*
3-->
4<html>
5<body>
6Test that elements respawn in the accessibility tree after a modal dialog
7closes.
8<section>
9  <dialog>This dialog is closed and should not be in the tree</dialog>
10  <select>
11    <optgroup label="Group">
12      <option>This should be in the tree.</option>
13    </optgroup>
14  </select>
15</section>
16<input type=color>
17<script>
18var dialog = document.querySelector('dialog');
19dialog.showModal();
20dialog.close();
21</script>
22</body>
23</html>
24