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 PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
michael@0 | 2 | "http://www.w3.org/TR/html4/loose.dtd"> |
michael@0 | 3 | <html class="reftest-wait"> |
michael@0 | 4 | <head> |
michael@0 | 5 | |
michael@0 | 6 | <style> |
michael@0 | 7 | #cat { float: left; } |
michael@0 | 8 | #zebra { background: lightgreen; } |
michael@0 | 9 | #zebra:after { content: "a b c d e"; } |
michael@0 | 10 | #zebra:first-letter { display: none; } |
michael@0 | 11 | </style> |
michael@0 | 12 | |
michael@0 | 13 | <script> |
michael@0 | 14 | function boom1() |
michael@0 | 15 | { |
michael@0 | 16 | document.getElementById("cat").style.outline = "1px solid yellow"; |
michael@0 | 17 | setTimeout(boom2, 30); |
michael@0 | 18 | } |
michael@0 | 19 | |
michael@0 | 20 | function boom2() |
michael@0 | 21 | { |
michael@0 | 22 | document.getElementById("cat").style.overflow = "auto"; |
michael@0 | 23 | document.documentElement.removeAttribute("class") |
michael@0 | 24 | } |
michael@0 | 25 | </script> |
michael@0 | 26 | |
michael@0 | 27 | </head> |
michael@0 | 28 | |
michael@0 | 29 | <body onload="setTimeout(boom1, 30)" style="overflow: scroll"> |
michael@0 | 30 | <div id="zebra"><b id="cat">Cat</b></div> |
michael@0 | 31 | <div style="direction: rtl">This is an RTL div</div> |
michael@0 | 32 | </body> |
michael@0 | 33 | </html> |