2 <!-- This test passes if there is no crash or assert -->
4 text { text-transform: uppercase; }
8 document
.body
.offsetWidth
;
9 var test
= document
.getElementById('test');
10 test
.removeChild(test
.firstChild
);
11 var textNode
= document
.createTextNode("PASS");
12 test
.appendChild(textNode
);
15 if (window
.testRunner
)
16 testRunner
.dumpAsText();
18 <body onload=
"testCrash()">
20 <text id=
"test" x=
"0" y=
"15">FAIL
</text>