зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
694 B
HTML
24 строки
694 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('textarea');
|
|
i.autofocus = false;
|
|
body.appendChild(i);
|
|
|
|
i = document.createElement('textarea');
|
|
i.autofocus = true;
|
|
i.onfocus = function() { setTimeout(document.documentElement.removeAttribute('class'), 0); };
|
|
body.appendChild(i);
|
|
|
|
i = document.createElement('textarea');
|
|
i.autofocus = true;
|
|
i.onfocus = function() { setTimeout(document.documentElement.removeAttribute('class'), 0); };
|
|
body.appendChild(i);
|
|
</script>
|
|
</body>
|
|
</html>
|