Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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> |