blob: 142f494bb610d1cc89924e920f73fdb532c93779 [file] [log] [blame]
<!DOCTYPE html>
<body>
<a href="javascript:" id="target">link</a>
<script src="../../../resources/js-test.js"></script>
<script>
jsTestIsAsync = true;
var target = document.getElementById('target');
window.onload = function() {
debug('Remove href.');
target.focus();
shouldBe('document.activeElement', 'target');
target.removeAttribute('href');
shouldBe('document.activeElement', 'document.body');
debug('Update href.');
target.href = 'javascript:';
target.focus();
target.href = 'javascript:undefined';
shouldBe('document.activeElement', 'target');
target.remove();
finishJSTest();
};
</script>
</body>