1 <p>Test of createContextualFragment. If the test succeeds you will see the word
"success" below in bold.
</p>
4 var r
= document
.createRange();
5 var node
= document
.getElementById("a");
6 r
.selectNodeContents(node
);
7 node
.appendChild(r
.createContextualFragment("<b>SUCCESS</b>"));