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 | <!DOCTYPE HTML> |
michael@0 | 2 | <html class="reftest-wait"><head> |
michael@0 | 3 | <meta charset="utf-8"> |
michael@0 | 4 | <title>Testcase for bug 750066</title> |
michael@0 | 5 | <style> |
michael@0 | 6 | iframe { -moz-transition: width 2000ms ease-out 0s; } |
michael@0 | 7 | </style> |
michael@0 | 8 | |
michael@0 | 9 | <script> |
michael@0 | 10 | function resize(w) { |
michael@0 | 11 | var win = window.frames[0]; |
michael@0 | 12 | win.frameElement.style.width = w; |
michael@0 | 13 | } |
michael@0 | 14 | function doTest() { |
michael@0 | 15 | resize('1000px'); |
michael@0 | 16 | setTimeout(function(){ |
michael@0 | 17 | resize('500px'); |
michael@0 | 18 | setTimeout(function(){ |
michael@0 | 19 | document.documentElement.removeAttribute("class"); |
michael@0 | 20 | },0); |
michael@0 | 21 | },500); |
michael@0 | 22 | } |
michael@0 | 23 | </script> |
michael@0 | 24 | </head> |
michael@0 | 25 | <body> |
michael@0 | 26 | |
michael@0 | 27 | <iframe src="750066-iframe.html"></iframe> |
michael@0 | 28 | |
michael@0 | 29 | <script> |
michael@0 | 30 | window.addEventListener("MozReftestInvalidate", doTest, false); |
michael@0 | 31 | </script> |
michael@0 | 32 | |
michael@0 | 33 | </body> |
michael@0 | 34 | </html> |