blob: d8edc4b2a2757e8905ccef33c0122dc0707fe470 [file] [log] [blame]
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<iframe></iframe>
<script>
test(function() {
var frame = document.querySelector('iframe');
frame.contentWindow.addEventListener('focus', function() {
frame.remove();
});
frame.focus();
}, 'Removing an IFRAME from the document tree while focusing on the IFRAME should not crash.');
</script>