1<!-- 2@MAC-ALLOW:AXSubrole=* 3--> 4<html> 5<body> 6Test for modal dialog opened in an iframe. 7<iframe></iframe> 8<script> 9var frameCode = 10 '<dialog>Text in the dialog.</dialog>\n' + 11 '<button>I should not be in the AT tree.</button>\n'; 12 13var iframeDoc = document.querySelector('iframe').contentDocument; 14iframeDoc.open(); 15iframeDoc.write(frameCode); 16iframeDoc.close(); 17 18var dialog = iframeDoc.querySelector('dialog'); 19dialog.showModal(); 20</script> 21</body> 22</html> 23