7 <fieldset id=aFieldSet form=noSuch
></fieldset>
11 testRunner
.dumpAsText();
12 testRunner
.waitUntilDone();
15 var aDivShadow
= aDiv
.createShadowRoot();
16 var bDiv
= document
.createElement("div");
17 aDivShadow
.appendChild(bDiv
);
19 var createdDoc
= document
.implementation
.createDocument("http://www.w3.org/1999/xhtml", "html");
20 createdDoc
.adoptNode(aDiv
);
21 bDiv
.appendChild(parentDiv
);
26 setTimeout(function() {
27 var url
= window
.location
.toString();
28 if (0 < url
.indexOf("**")) {
29 document
.body
.innerHTML
= "PASS unless crash.";
30 return testRunner
.notifyDone();
33 if (-1 == url
.indexOf("?"))
36 window
.location
= url
;