summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/IndexedDB/interfaces.html
blob: 9c2919094b2277605a8a4c30e5916a363f091bc6 (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
<!doctype html>
<meta charset=utf-8>
<title>IndexedDB IDL tests</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/resources/WebIDLParser.js></script>
<script src=/resources/idlharness.js></script>

<h1>IndexedDB IDL tests</h1>
<div id=log></div>

<script>
"use strict";
setup(function() {
  var idlArray = new IdlArray();

  var request = new XMLHttpRequest();
  request.open("GET", "interfaces.idl");
  request.send();
  request.onload = function() {
    var idls = request.responseText;

    idlArray.add_untested_idls("[PrimaryGlobal] interface Window { };");
    idlArray.add_untested_idls("[Exposed=(Window,Worker)] interface Event { };");
    idlArray.add_untested_idls("[Exposed=(Window,Worker)] interface EventTarget { };");
    idlArray.add_untested_idls("[NoInterfaceObject, Exposed=(Window,Worker)] interface WindowOrWorkerGlobalScope { };");

    // From Indexed DB:
    idlArray.add_idls(idls);
    idlArray.add_idls("Window implements WindowOrWorkerGlobalScope;");

    idlArray.add_objects({
      IDBCursor: [],
      IDBCursorWithValue: [],
      IDBDatabase: [],
      IDBFactory: ["window.indexedDB"],
      IDBIndex: [],
      IDBKeyRange: ["IDBKeyRange.only(0)"],
      IDBObjectStore: [],
      IDBOpenDBRequest: [],
      IDBRequest: [],
      IDBTransaction: [],
      IDBVersionChangeEvent: ["new IDBVersionChangeEvent('foo')"],
    });

    idlArray.test();
    done();
  };
}, {explicit_done: true});
</script>