blob: 2ff9f4d4b0fd5e1b93f6ef7dc6a762365b282df8 [file]
<!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>