blob: b9b4d2bf93cba2496e6ca054a57d5c66b2b109ff [file] [log] [blame]
commit-queue@webkit.org5fa0b772012-09-04 18:58:19 +00001<script>
2if (window.testRunner)
3 testRunner.dumpAsText();
4</script>
5This test passes if the activeElement is the input element rather than the body
6(which it would be if the sandbox didn't allow autofocus although allow-scripts flag is set).
fred.wang@free.frd6e82742017-08-25 17:28:53 +00007<iframe sandbox="allow-scripts allow-modals"
akling@apple.com35bb9a82014-11-19 00:20:07 +00008 src="data:text/html,<input autofocus onfocus><script>window.onload = function() { alert(document.activeElement.tagName) }</script>"></iframe>