blob: 9db553bb34c7f08f7157b39dfaea2c5c8e9cccf8 [file]
<!doctype html>
<html class="reftest-wait">
<script src="../../../resources/ui-helper.js"></script>
<input type=checkbox switch onclick=end()>
<script>
window.onload = async () => {
await UIHelper.activateAt(10, 10);
}
function end() {
setTimeout(() => {
document.querySelector("input").checked = true;
document.documentElement.removeAttribute("class");
}, 50);
}
</script>