tfoot-crash-print.html (794B)
1 <!-- quirks --> 2 <!-- 3 This is just a crashtest, but there's no way to express that in wpt right 4 now, so we just ensure we don't render blank 5 --> 6 <link rel="mismatch" href="/common/blank.html"> 7 <link rel="help" href="https://drafts.csswg.org/css-tables/"> 8 <style> 9 big { 10 font-size-adjust: 66; 11 border-right-style: dotted; 12 } 13 </style> 14 <script> 15 window.addEventListener('load', () => { 16 const table = document.createElement('table') 17 table.tFoot = document.getElementById('tfoot_0') 18 const element_0 = document.createElement('div') 19 table.appendChild(element_0) 20 document.documentElement.appendChild(table) 21 }) 22 </script> 23 </head> 24 <table> 25 <tfoot id='tfoot_0'> 26 <tr> 27 <tr readonly> 28 <caption> 29 <big></big> 30 </caption> 31 </tr> 32 </tfoot> 33 </table>