Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <html> |
michael@0 | 2 | <head> |
michael@0 | 3 | <script> |
michael@0 | 4 | function doe() { |
michael@0 | 5 | document.getElementById('a').style.display = 'table-column-group'; |
michael@0 | 6 | document.body.offsetHeight; |
michael@0 | 7 | } |
michael@0 | 8 | </script> |
michael@0 | 9 | |
michael@0 | 10 | <style> |
michael@0 | 11 | div::before { content:"b";} |
michael@0 | 12 | div::after { content:"a";} |
michael@0 | 13 | </style> |
michael@0 | 14 | </head> |
michael@0 | 15 | |
michael@0 | 16 | <body onload="document.body.offsetHeight; setTimeout(doe,0);"> |
michael@0 | 17 | <div style="display: table;"> |
michael@0 | 18 | <span id="a" style="display: table-header-group; "></span> |
michael@0 | 19 | </div> |
michael@0 | 20 | </body> |
michael@0 | 21 | </html> |