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>
3 <!--
4 Test 3 for Mixed Content Blocker User Override - Mixed Script and Display
5 https://bugzilla.mozilla.org/show_bug.cgi?id=822367
6 -->
7 <head>
8 <meta charset="utf-8">
9 <title>Test 3 for Bug 822367</title>
10 <script>
11 function foo() {
12 var x = document.createElement('p');
13 x.setAttribute("id", "p2");
14 x.innerHTML = "bye";
15 document.getElementById("testContent").appendChild(x);
16 }
17 </script>
18 </head>
19 <body>
20 <div id="testContent">
21 <p id="p1"></p>
22 <img src="http://example.com/tests/image/test/mochitest/blue.png" onload="foo()">
23 </div>
24 <script src="http://example.com/browser/browser/base/content/test/general/file_bug822367_1.js">
25 </script>
26 </body>
27 </html>