summaryrefslogtreecommitdiffstats
path: root/dom/settings/tests/test_settings_observer_killer.html
blob: 8e7ed973c887675ccb1f682d0ed7dfbe100ee344 (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
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1193469
-->
<head>
  <title>Test for Bug 1193469 Settings API</title>
  <script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
  <script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
</head>
<body>

<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1193469">Mozilla Bug 1193469</a>
<p id="display"></p>
<div id="content" style="display: none">
<iframe></iframe>
</div>
<pre id="test">
<script class="testbody" type="text/javascript;version=1.7">

var url = SimpleTest.getTestFileURL("file_loadserver.js");
var script = SpecialPowers.loadChromeScript(url);

SimpleTest.waitForExplicitFinish();

SpecialPowers.pushPrefEnv({
  set: [["dom.mozSettings.enabled", true]]
},
  function () {
    ok(true, "abusing observers");

    var obs;
    for (obs = 0; obs < 9; obs++) {
      navigator.mozSettings.addObserver("fake.setting.key", function(v) {
        // nothing to do for real ...
        ok(false, "should not be called");
      });
      ok(true, "first: added observer #" + obs);
    }
    ok(true, "adding first observers, should not have thrown");

    try {
      ok(true, "second: adding new observer");
      navigator.mozSettings.addObserver("fake.setting.key", function(v) {
        // nothing to do for real ...
        ok(false, "should not be called");
      });
      ok(false, "adding too many observers should have thrown");
    } catch (ex) {
      ok(true, "got exception when trying to add too many observers");
    }

    SimpleTest.finish();
  });

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