OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html style="font-family: ahem; font-size: 50px; -webkit-font-smoothing: none;"> | 2 <html style="font-family: ahem; font-size: 50px; -webkit-font-smoothing: none;"> |
3 <body> | 3 <body> |
4 <style> | 4 <style> |
5 #test::after { | 5 #test::after { |
6 display: table-row; | 6 display: table-row; |
7 content: ''; | 7 content: ''; |
8 } | 8 } |
9 </style> | 9 </style> |
10 <script> | 10 <script> |
11 document.body.offsetTop; | 11 document.body.offsetTop; |
12 test = document.createElement('div'); | 12 test = document.createElement('div'); |
13 test.setAttribute('id', 'test'); | 13 test.setAttribute('id', 'test'); |
14 document.body.appendChild(test) | 14 document.body.appendChild(test) |
15 test.appendChild(document.createElement('thead')); | 15 test.appendChild(document.createElement('thead')); |
16 document.body.offsetTop; | 16 document.body.offsetTop; |
17 test.appendChild(document.createElement('div')); | 17 test.appendChild(document.createElement('div')); |
18 </script> | 18 </script> |
19 </body> | 19 </body> |
20 </html> | 20 </html> |
OLD | NEW |