6 <script src=
"../../resources/js-test.js"></script>
8 description("iframes added to a subtree that's being removed should not load");
9 var container
= document
.querySelector('#container');
10 var input
= document
.querySelector('input');
12 input
.addEventListener('blur', function() {
13 iframe
= document
.createElement('iframe');
14 input
.parentNode
.appendChild(iframe
);
16 container
.innerHTML
= '';
17 shouldBeNull("iframe.contentWindow");