OLD | NEW |
| (Empty) |
1 <body> | |
2 <p>Test that loading a javascript URL works correctly.</p> | |
3 <embed type="application/x-webkit-test-netscape" id="testPlugin" onURLNotify="do
ne()"> | |
4 <div id="result">Testing...</div> | |
5 <script> | |
6 if (window.testRunner) { | |
7 testRunner.dumpAsText(); | |
8 testRunner.waitUntilDone(); | |
9 } | |
10 | |
11 function done() | |
12 { | |
13 document.getElementById("result").innerHTML = "PASS, no assertion failure."; | |
14 if (window.testRunner) | |
15 testRunner.notifyDone(); | |
16 } | |
17 | |
18 var testPlugin = document.getElementById('testPlugin'); | |
19 testPlugin.getURLNotify("javascript:12345", null, "callback"); | |
20 </script> | |
21 </body> | |
OLD | NEW |