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