summaryrefslogtreecommitdiffstats
path: root/testing/mochitest/tests/Harness_sanity/test_sanity_cleanup2.html
blob: b0b75238198b27b344c8edb70006cbd48d5f537a (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
<!-- Any copyright is dedicated to the Public Domain.
   - http://creativecommons.org/publicdomain/zero/1.0/ -->
<!DOCTYPE HTML>
<html>
<head>
  <title>SimpleTest.registerCleanupFunction test</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body>
<script class="testbody" type="text/javascript">
for (const pref of [1, 2]) {
  try {
    SpecialPowers.getBoolPref("simpletest.cleanup." + pref);
    ok(false, "Cleanup function should have unset pref");
  }
  catch(ex) {
    ok(true, "Pref was not set");
  }
}

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