| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../resources/js-test.js"></script> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <p id="description"></p> | 6 <p id="description"></p> |
| 7 <div id="console"></div> | 7 <div id="console"></div> |
| 8 | 8 |
| 9 <script> | 9 <script> |
| 10 var newStreamCalled = false; | 10 var newStreamCalled = false; |
| 11 var destroyStreamCalled = false; | 11 var destroyStreamCalled = false; |
| 12 | 12 |
| 13 function main() { | 13 function main() { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 var plugin = document.getElementById("plugin"); | 49 var plugin = document.getElementById("plugin"); |
| 50 | 50 |
| 51 plugin.returnNegativeOneFromWrite = true; | 51 plugin.returnNegativeOneFromWrite = true; |
| 52 shouldBeTrue("plugin.returnNegativeOneFromWrite"); | 52 shouldBeTrue("plugin.returnNegativeOneFromWrite"); |
| 53 | 53 |
| 54 plugin.getURLNotify("data:text/html,Test", null, "callback"); | 54 plugin.getURLNotify("data:text/html,Test", null, "callback"); |
| 55 </script> | 55 </script> |
| 56 </html> | 56 </html> |
| 57 | 57 |
| OLD | NEW |