5 // We had an assertion failure in ChildNodeRemovalNotifier::notifyNodeRemovedFromTree.
7 testRunner
.dumpAsText();
8 var d
= document
.createElement('div');
9 var s
= document
.createElement('script');
10 s
.textContent
= 'document.currentScript.nextSibling.remove();';
12 d
.appendChild(document
.createElement('input'));
13 document
.body
.appendChild(d
);
14 document
.body
.innerHTML
= 'PASS';