337268-1.html (567B)
1 <html class="reftest-wait"> 2 <head> 3 <script> 4 5 window.addEventListener("load", foo1); 6 7 function foo1() 8 { 9 document.getElementById("a").style.width = "20em"; 10 setTimeout(foo2, 30); 11 } 12 13 function foo2() 14 { 15 document.getElementById("b").style.width = "auto"; 16 document.documentElement.removeAttribute("class"); 17 } 18 19 </script> 20 </head> 21 22 <body> 23 24 <table> 25 <tr> 26 <td id="a"> 27 28 <table style="display: -moz-inline-box;"> 29 <tr> 30 <td width="100%"> 31 32 XXX XXX 33 34 <div id="b" style="width: 200%; display: table-column-group;"></div> 35 36 </td> 37 </tr> 38 </table> 39 40 </td> 41 </tr> 42 </table> 43 44 </body> 45 </html>