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