OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <head> | |
4 <script src="../../resources/js-test.js"></script> | |
5 </head> | |
6 <script> | |
7 description("This tests that the mock speech synthesizer is well behaved whe n attempting to pause/resume without first speaking."); | |
8 | |
9 if (window.internals) | |
10 window.internals.enableMockSpeechSynthesizer(document); | |
11 | |
12 shouldBeUndefined("speechSynthesis.pause()"); | |
13 shouldBeUndefined("speechSynthesis.resume()"); | |
14 </script> | |
15 </body> | |
16 </html> | |
OLD | NEW |