3 <style type=
"text/css">
4 div
{ counter-reset: c
}
5 iframe
{ counter-reset: c
}
6 h1:after
{ content: counter
(c
) }
10 testRunner
.dumpAsText();
12 window
.onload = function () {
13 var testElement
= document
.getElementById("test");
14 document
.body
.removeChild(testElement
);
15 var p
= document
.createElement("p");
16 p
.appendChild(document
.createTextNode("TEST PASSED"));
17 document
.body
.appendChild(p
);
22 This test is to ensure that we do not crash when destroying counter nodes.