OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style> | 4 <style> |
5 #test0 { | 5 #test0 { |
6 counter-reset: c; | 6 counter-reset: c; |
7 } | 7 } |
8 #test0::after { | 8 #test0::after { |
9 content: counter(c); | 9 content: counter(c); |
10 counter-reset: c; | 10 counter-reset: c; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 test2.appendChild(test3); | 53 test2.appendChild(test3); |
54 test2.style.display = 'table-footer-group'; | 54 test2.style.display = 'table-footer-group'; |
55 document.body.offsetTop; | 55 document.body.offsetTop; |
56 setTimeout("finish()", 10); | 56 setTimeout("finish()", 10); |
57 } | 57 } |
58 </script> | 58 </script> |
59 </head> | 59 </head> |
60 <body> | 60 <body> |
61 </body> | 61 </body> |
62 </html> | 62 </html> |
OLD | NEW |