Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | <html class="reftest-wait"> |
michael@0 | 2 | <head> |
michael@0 | 3 | <script> |
michael@0 | 4 | |
michael@0 | 5 | window.addEventListener("load", foo1, false); |
michael@0 | 6 | |
michael@0 | 7 | function foo1() |
michael@0 | 8 | { |
michael@0 | 9 | document.getElementById("a").style.width = "20em"; |
michael@0 | 10 | setTimeout(foo2, 30); |
michael@0 | 11 | } |
michael@0 | 12 | |
michael@0 | 13 | function foo2() |
michael@0 | 14 | { |
michael@0 | 15 | document.getElementById("b").style.width = "auto"; |
michael@0 | 16 | document.documentElement.removeAttribute("class"); |
michael@0 | 17 | } |
michael@0 | 18 | |
michael@0 | 19 | </script> |
michael@0 | 20 | </head> |
michael@0 | 21 | |
michael@0 | 22 | <body> |
michael@0 | 23 | |
michael@0 | 24 | <table> |
michael@0 | 25 | <tr> |
michael@0 | 26 | <td id="a"> |
michael@0 | 27 | |
michael@0 | 28 | <table style="display: -moz-inline-box;"> |
michael@0 | 29 | <tr> |
michael@0 | 30 | <td width="100%"> |
michael@0 | 31 | |
michael@0 | 32 | XXX XXX |
michael@0 | 33 | |
michael@0 | 34 | <div id="b" style="width: 200%; display: table-column-group;"></div> |
michael@0 | 35 | |
michael@0 | 36 | </td> |
michael@0 | 37 | </tr> |
michael@0 | 38 | </table> |
michael@0 | 39 | |
michael@0 | 40 | </td> |
michael@0 | 41 | </tr> |
michael@0 | 42 | </table> |
michael@0 | 43 | |
michael@0 | 44 | </body> |
michael@0 | 45 | </html> |