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.
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "xhtml1-strict.dtd">
3 <html xmlns='http://www.w3.org/1999/xhtml' id="root" class="reftest-wait">
5 <div id="D1"><div id="D2"/></div>
7 <script>
8 <![CDATA[
10 function gE(id) { return document.getElementById(id); }
12 function init()
13 {
14 gE("root").style.display = "table";
16 gE("D1").style.position = "absolute";
18 setTimeout(function() {gE("D2").style.position = "fixed";}, 100);
19 setTimeout(function() {gE("D1").style.overflow = "hidden";}, 200);
20 setTimeout(function() {gE("root").style.width = "200%"; document.documentElement.removeAttribute("class"); }, 300);
21 }
23 window.addEventListener("load", init, false);
25 ]]>
26 </script>
28 </html>