summaryrefslogtreecommitdiffstats
path: root/dom/media/webspeech/recognition/test/test_recognition_service_error.html
blob: e8e59e2afc530e6b7e74c257c0ba75057ccdf21a (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=650295
-->
<head>
  <meta charset="utf-8">
  <title>Test for Bug 650295 -- Behavior on recognition service error</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript" src="head.js"></script>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=650295">Mozilla Bug 650295</a>
<p id="display"></p>
<div id="content" style="display: none">

</div>
<pre id="test">
<script type="text/javascript">
  SimpleTest.waitForExplicitFinish();

  performTest({
    eventsToRequest: [
      'EVENT_RECOGNITIONSERVICE_ERROR'
    ],
    expectedEvents: {
      'start': null,
      'audiostart': null,
      'speechstart': null,
      'speechend': null,
      'audioend': null,
      'error': buildErrorCallback(errorCodes.NETWORK),
      'end': null
    },
    doneFunc: SimpleTest.finish,
    prefs: [["media.webspeech.test.fake_fsm_events", true],
            ["media.webspeech.test.fake_recognition_service", true],
            ["media.webspeech.recognition.timeout", 100000]]
  });

</script>
</pre>
</body>
</html>