summaryrefslogtreecommitdiffstats
path: root/dom/media/webspeech/synth/test/file_global_queue_pause.html
blob: e345eb4c98a0ce5c5ce6cf4db041988b44c9d7ad (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1188099
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 1188099: Calling pause() should work correctly with global queue</title>
  <script type="application/javascript">
    window.SimpleTest = parent.SimpleTest;
    window.info = parent.info;
    window.is = parent.is;
    window.isnot = parent.isnot;
    window.ok = parent.ok;
    window.todo = parent.todo;
  </script>
  <script type="application/javascript" src="common.js"></script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1188099">Mozilla Bug 1188099</a>
<iframe id="frame1"></iframe>
<iframe id="frame2"></iframe>
<div id="content" style="display: none">

</div>
<pre id="test">
<script type="application/javascript">
  Promise.all([loadFrame('frame1'), loadFrame('frame2')]).then(function ([frame1, frame2]) {
    var win1 = frame1.contentWindow;
    var win2 = frame2.contentWindow;

    var utterance1 = new win1.SpeechSynthesisUtterance("Speak utterance 1.");
    utterance1.lang = 'it-IT-noend';
    var utterance2 = new win2.SpeechSynthesisUtterance("Speak utterance 2.");
    var utterance3 = new win1.SpeechSynthesisUtterance("Speak utterance 3.");
    var utterance4 = new win2.SpeechSynthesisUtterance("Speak utterance 4.");
    var eventOrder = ['start1', 'pause1', 'resume1', 'end1', 'start2', 'end2',
      'start4', 'end4', 'start3', 'end3'];

    utterance1.addEventListener('start', function(e) {
      is(eventOrder.shift(), 'start1', 'start1');
      win1.speechSynthesis.pause();
    });
    utterance1.addEventListener('pause', function(e) {
      var expectedEvent = eventOrder.shift()
      is(expectedEvent, 'pause1', 'pause1');
      testSynthState(win1, { speaking: true, pending: false, paused: true});
      testSynthState(win2, { speaking: true, pending: true, paused: false});

      if (expectedEvent == 'pause1') {
        win1.speechSynthesis.resume();
      }
    });
    utterance1.addEventListener('resume', function(e) {
      is(eventOrder.shift(), 'resume1', 'resume1');
      testSynthState(win1, { speaking: true, pending: false, paused: false});
      testSynthState(win2, { speaking: true, pending: true, paused: false});

      win2.speechSynthesis.pause();

      testSynthState(win1, { speaking: true, pending: false, paused: false});
      testSynthState(win2, { speaking: true, pending: true, paused: true });

      // We now make the utterance end.
      SpecialPowers.wrap(win1.speechSynthesis).forceEnd();
    });
    utterance1.addEventListener('end', function(e) {
      is(eventOrder.shift(), 'end1', 'end1');
      testSynthState(win1, { speaking: false, pending: false, paused: false});
      testSynthState(win2, { speaking: false, pending: true, paused: true});

      win2.speechSynthesis.resume();
    });

    utterance2.addEventListener('start', function(e) {
      is(eventOrder.shift(), 'start2', 'start2');
      testSynthState(win1, { speaking: true, pending: false, paused: false});
      testSynthState(win2, { speaking: true, pending: false, paused: false});
    });
    utterance2.addEventListener('end', function(e) {
      is(eventOrder.shift(), 'end2', 'end2');
      testSynthState(win1, { speaking: false, pending: false, paused: false});
      testSynthState(win2, { speaking: false, pending: false, paused: false});

      win1.speechSynthesis.pause();

      testSynthState(win1, { speaking: false, pending: false, paused: true});
      testSynthState(win2, { speaking: false, pending: false, paused: false});

      win1.speechSynthesis.speak(utterance3);
      win2.speechSynthesis.speak(utterance4);

      testSynthState(win1, { speaking: false, pending: true, paused: true});
      testSynthState(win2, { speaking: false, pending: true, paused: false});
    });

    utterance4.addEventListener('start', function(e) {
      is(eventOrder.shift(), 'start4', 'start4');
      testSynthState(win1, { speaking: true, pending: true, paused: true});
      testSynthState(win2, { speaking: true, pending: false, paused: false});

      win1.speechSynthesis.resume();
    });
    utterance4.addEventListener('end', function(e) {
      is(eventOrder.shift(), 'end4', 'end4');
      testSynthState(win1, { speaking: false, pending: true, paused: false});
      testSynthState(win2, { speaking: false, pending: false, paused: false});
    });

    utterance3.addEventListener('start', function(e) {
      is(eventOrder.shift(), 'start3', 'start3');
      testSynthState(win1, { speaking: true, pending: false, paused: false});
      testSynthState(win2, { speaking: true, pending: false, paused: false});
    });

    utterance3.addEventListener('end', function(e) {
      is(eventOrder.shift(), 'end3', 'end3');
      testSynthState(win1, { speaking: false, pending: false, paused: false});
      testSynthState(win2, { speaking: false, pending: false, paused: false});

      SimpleTest.finish();
    });

    win1.speechSynthesis.speak(utterance1);
    win2.speechSynthesis.speak(utterance2);
  });
</script>
</pre>
</body>
</html>