blob: 6e3765305760a5737374ca8de9257563870e5931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Test for Bug 1305344: Utterance not repeating in Firefox</title>
<script type="application/javascript">
window.SimpleTest = parent.SimpleTest;
window.ok = parent.ok;
</script>
<script src="common.js"></script>
</head>
<body>
<script>
var utterance = new SpeechSynthesisUtterance("repeating?");
var counter = 0;
utterance.addEventListener('start', function(e) {
if (counter++ === 1) {
ok(true)
SimpleTest.finish();
}
});
speechSynthesis.speak(utterance);
speechSynthesis.speak(utterance);
</script>
</body>
</html>
|