2 <html style="font-family: ahem; font-size: 50px; -webkit-font-smoothing: none;">
\r
5 document.body.offsetTop;
\r
6 test = document.createElement('div');
\r
7 document.body.appendChild(test)
\r
8 test.appendChild(document.createElement('td'));
\r
9 td = document.createElement('td');
\r
10 test.appendChild(td);
\r
11 document.body.offsetTop;
\r
12 test.insertBefore(document.createElement('div'), td);
\r