7 testRunner
.dumpAsText();
8 var table
= document
.getElementById('table');
9 table
.offsetHeight
; // Trigger layout.
10 table
.createCaption(); // Add a caption and mark the table as needing layout.
11 table
.style
.cssText
= ''; // Remove the absolute positioning.
12 table
.innerHTML
= 'PASS: If there is no crash, the test passed.'; // Blow away the caption, knowing the housekeeping won't be done.
16 <body onload=
"test()">
17 <table border=
"1" id=
"table" style=
"position: absolute; top: 10"></table>