blob: 0e43cbe77a9daf453640c9f1b3d6db7dfa09bab2 (
plain)
1
2
3
4
5
6
|
<html>
<body onload="document.getElementById('inp').focus()">
This test makes sure we don't crash when calling focus() on an element that has no renderer.
<input id="inp" style="display:none"></input>
</body>
</html>
|