summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/tests/Harness_sanity/test_getweakmapkeys.html
blob: 58722d977fe4e0dafa969ec003aca0a88c448708 (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>
  <title>Test for SpecialPowers.nondeterministicGetWeakMapKeys</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>

<div id="content" class="testbody">
  <script type="text/javascript">
    var emptyMap = new WeakMap;
    is(SpecialPowers.nondeterministicGetWeakMapKeys(emptyMap).length, 0, "Empty map has no keys");
    var twoMap = new WeakMap;
    var x = {};
    var y = {};
    twoMap.set(x, 1);
    twoMap.set(y, 2);
    var twoMapKeys = SpecialPowers.nondeterministicGetWeakMapKeys(twoMap);
    is(twoMapKeys.length, 2, "Map with two things should have two keys");
    ok(twoMapKeys[0] == x || twoMapKeys[1] == x, "One of the keys should be x");
    ok(twoMapKeys[0] == y || twoMapKeys[1] == y, "One of the keys should be y");
  </script>
</div>
</body>
</html>