OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> | 3 <body style="font-family: ahem; -webkit-font-smoothing: none;"> |
4 <style> | 4 <style> |
5 div.table { display: table; } | 5 div.table { display: table; } |
6 div.section { display: table-row-group; } | 6 div.section { display: table-row-group; } |
7 </style> | 7 </style> |
8 | 8 |
9 <div class="table" id="table-1"> | 9 <div class="table" id="table-1"> |
10 <div class="section" id="tbody-1"> | 10 <div class="section" id="tbody-1"> |
(...skipping 16 matching lines...) Expand all Loading... |
27 var before = document.getElementById(beforeID); | 27 var before = document.getElementById(beforeID); |
28 table.insertBefore(createSpan(), before); | 28 table.insertBefore(createSpan(), before); |
29 } | 29 } |
30 | 30 |
31 document.body.offsetTop; | 31 document.body.offsetTop; |
32 | 32 |
33 insertSpan("table-1", "tbody-2"); | 33 insertSpan("table-1", "tbody-2"); |
34 </script> | 34 </script> |
35 </body> | 35 </body> |
36 </html> | 36 </html> |
OLD | NEW |