blob: 715b13c5ca33331abb4563ffb1ddf3d57db2cc7c [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 = async () => {
await UIHelper.activateAt(20, 20);
}
function end() {
setTimeout(() => {
document.querySelector("iframe").remove();
document.documentElement.removeAttribute("class");
}, 50);
}
</script>