| OLD | NEW |
| (Empty) |
| 1 <html> | |
| 2 <script> | |
| 3 var NPERR_NO_ERROR = 0; | |
| 4 var NPERR_GENERIC_ERROR = 1; | |
| 5 | |
| 6 function callback(result) { | |
| 7 var d = document.getElementById('result'); | |
| 8 | |
| 9 if (result == NPERR_NO_ERROR) | |
| 10 d.innerHTML = "SUCCESS" | |
| 11 else | |
| 12 d.innerHTML = "FAILED - got error code " + result | |
| 13 | |
| 14 testRunner.notifyDone(); | |
| 15 } | |
| 16 | |
| 17 function runtest() { | |
| 18 if (window.testRunner) { | |
| 19 testRunner.dumpAsText(); | |
| 20 testRunner.waitUntilDone(); | |
| 21 plg.getURLNotify("data:,hello world", "frame", "callback"); | |
| 22 } else { | |
| 23 document.write("Cannot run interactively"); | |
| 24 } | |
| 25 } | |
| 26 </script> | |
| 27 <body onload="runtest()"> | |
| 28 <embed id="plg" type="application/x-webkit-test-netscape"></embed> | |
| 29 This tests that the plugin properly receives NPP_URLNotify for subframe loads. | |
| 30 <div id="result">FAILED</div> | |
| 31 <iframe id="frame" name="frame"></iframe> | |
| 32 </body> | |
| 33 </html> | |
| OLD | NEW |