mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-20 10:33:36 +00:00
24 lines
688 B
HTML
24 lines
688 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<body>
|
|
<script>
|
|
var body = document.body;
|
|
|
|
var i = document.createElement('select');
|
|
i.autofocus = false;
|
|
body.appendChild(i);
|
|
|
|
i = document.createElement('select');
|
|
i.autofocus = true;
|
|
i.onfocus = function() { setTimeout(document.documentElement.removeAttribute('class'), 0); };
|
|
body.appendChild(i);
|
|
|
|
i = document.createElement('select');
|
|
i.autofocus = true;
|
|
i.onfocus = function() { setTimeout(document.documentElement.removeAttribute('class'), 0); };
|
|
body.appendChild(i);
|
|
</script>
|
|
</body>
|
|
</html>
|