OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE HTML> |
| 2 <html> |
| 3 <head> |
| 4 <script src="../../../resources/js-test.js"></script> |
| 5 </head> |
| 6 <body> |
| 7 <script> |
| 8 description("Accessing SpeechRecognition on a detached window should not crash."
); |
| 9 |
| 10 window.jsTestIsAsync = true; |
| 11 |
| 12 if (window.testRunner) { |
| 13 testRunner.dumpAsText(); |
| 14 testRunner.waitUntilDone(); |
| 15 testRunner.setCanOpenWindows(); |
| 16 } |
| 17 |
| 18 var w; |
| 19 var recognition; |
| 20 |
| 21 function processMessage(event) { |
| 22 if (event.data == "opened") { |
| 23 recognition = new w.webkitSpeechRecognition(); |
| 24 w.close(); |
| 25 } else if (event.data == "closed") { |
| 26 shouldBeUndefined("recognition.start()"); |
| 27 shouldBeUndefined("recognition.stop()"); |
| 28 shouldBeUndefined("recognition.abort()"); |
| 29 finishJSTest(); |
| 30 } |
| 31 } |
| 32 |
| 33 w = window.open('../../../resources/window-postmessage-open-close.html'); |
| 34 window.addEventListener("message", processMessage, false); |
| 35 </script> |
| 36 </body> |
| 37 </html> |
OLD | NEW |