Mypal/editor/reftests/caret_after_reframe.html

15 lines
348 B
HTML

<!DOCTYPE html>
<html class="reftest-wait">
<body>
<input onfocus="focused()" autofocus>
<script>
function focused() {
var i = document.querySelector("input");
i.style.display = "block";
document.offsetWidth;
document.documentElement.removeAttribute("class");
}
</script>
</body>
</html>