| <!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> |