| <!doctype html> | |
| <html class="reftest-wait"> | |
| <script src="../../../resources/ui-helper.js"></script> | |
| <iframe srcdoc="<input type=checkbox switch onclick=parent.end()>"></iframe> | |
| <script> | |
| window.onload = () => { | |
| UIHelper.activateAt(20, 20); | |
| } | |
| function end() { | |
| setTimeout(() => { | |
| document.querySelector("iframe").remove(); | |
| document.documentElement.removeAttribute("class"); | |
| }, 50); | |
| } | |
| </script> |