2 <p>This page will try to set the outerText on an element that is no longer in the DOM tree.
3 You should see a description of an expected error.
5 <div id=
"div">this is a
<i id=
"test">test
</i> or something
</div>
9 testRunner
.dumpAsText();
10 var test
= document
.getElementById("test");
11 test
.outerText
= "big test";
13 test
.outerText
= "mistake";
16 document
.write("<div> Expected error - " + e
+ "</div>");