summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/test_globalObjects_content.html
blob: 2358fdc619ed58772baa5576a78f7021030ad487 (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
<!--
  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()
  {
    const name = window.location.pathname;

    // Test for IDBKeyRange and indexedDB availability in content windows.
    let keyRange = IDBKeyRange.only(42);
    ok(keyRange, "Got keyRange");

    let request = indexedDB.open(name, 1);
    request.onerror = errorHandler;
    request.onsuccess = grabEventAndContinueHandler;
    let event = yield undefined;

    let db = event.target.result;
    ok(db, "Got database");

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

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

</html>