blob: d40b49177aa7c5777b87bb892d77110ef699cb02 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html class="reftest-wait">
<link rel='stylesheet' type='text/css' href='style.css'>
<script>
function focusHandler()
{
document.documentElement.removeAttribute('class');
}
</script>
<body>
<input><input autofocus onfocus="focusHandler();"><input autofocus onfocus="focusHandler();">
</body>
</html>
|