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> |
michael@0 | 3 | <head> |
michael@0 | 4 | <title>Test for SpecialPowers extension</title> |
michael@0 | 5 | <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 6 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> |
michael@0 | 7 | </head> |
michael@0 | 8 | <body> |
michael@0 | 9 | |
michael@0 | 10 | <pre id="test"> |
michael@0 | 11 | <script class="testbody" type="text/javascript"> |
michael@0 | 12 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 13 | |
michael@0 | 14 | var url = SimpleTest.getTestFileURL("SpecialPowersLoadChromeScript.js"); |
michael@0 | 15 | var script = SpecialPowers.loadChromeScript(url); |
michael@0 | 16 | |
michael@0 | 17 | var MESSAGE = { bar: true }; |
michael@0 | 18 | script.addMessageListener("bar", function (message) { |
michael@0 | 19 | is(JSON.stringify(message), JSON.stringify(MESSAGE), |
michael@0 | 20 | "received back message from the chrome script"); |
michael@0 | 21 | |
michael@0 | 22 | checkAssert(); |
michael@0 | 23 | }); |
michael@0 | 24 | |
michael@0 | 25 | function checkAssert() { |
michael@0 | 26 | script.sendAsyncMessage("valid-assert"); |
michael@0 | 27 | script.addMessageListener("valid-assert-done", endOfTest); |
michael@0 | 28 | } |
michael@0 | 29 | |
michael@0 | 30 | function endOfTest() { |
michael@0 | 31 | script.destroy(); |
michael@0 | 32 | SimpleTest.finish(); |
michael@0 | 33 | } |
michael@0 | 34 | |
michael@0 | 35 | script.sendAsyncMessage("foo", MESSAGE); |
michael@0 | 36 | </script> |
michael@0 | 37 | </pre> |
michael@0 | 38 | </body> |
michael@0 | 39 | </html> |