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 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <script>
6 function doTest()
7 {
8 var r = document.documentElement;
9 while(r.firstChild) { r.removeChild(r.firstChild); }
10 var body = document.createElementNS("http://www.w3.org/1999/xhtml", "body");
11 r.appendChild(body);
12 body.contentEditable = "true";
13 document.execCommand("inserthtml", false, "<span style=\"position:relative;left:0.8px\">a<select></select>a</span>");
15 document.documentElement.removeAttribute("class");
16 }
18 document.addEventListener("MozReftestInvalidate", doTest, false);
19 </script>
20 </head>
22 <body></body>
23 </html>