summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/test_open_for_principal.html
blob: bd9da12f74ad7845a8e80b14865b80d0b46aeaec (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
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<html>
<head>
  <title>Indexed Database Property Test</title>

  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>

  <script type="text/javascript">
  function* testSteps()
  {
    is("open" in indexedDB, true, "open() defined");
    is("openForPrincipal" in indexedDB, false, "openForPrincipal() not defined");

    is("deleteDatabase" in indexedDB, true, "deleteDatabase() defined");
    is("deleteForPrincipal" in indexedDB, false, "deleteForPrincipal() not defined");

    finishTest();
  }
  </script>
  <script type="text/javascript" src="helpers.js"></script>

</head>

<body onload="runTest();"></body>

</html>