mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
f474b789e2
--HG-- extra : rebase_source : 673601ada34f5d1eefc61303f7420dd74363e2b3
15 lines
348 B
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>
|