haikuwebkit/LayoutTests/fast/html/tabindex-removal.html

14 lines
308 B
HTML

<div id="a" tabindex="1">PASS</div>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
}
var a = document.getElementById('a');
a.removeAttribute('tabindex');
a.addEventListener('focus', function (e) {
a.innerText = 'FAIL';
}, false);
a.focus();
</script>