summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/page-lifecycle/idlharness.html
blob: 55a7cbc2429c81a182c1373780f4bba457060a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!doctype html>
<title>Page Lifecycle IDL tests</title>
<meta name="timeout" content="long">
<link rel="help" href="https://wicg.github.io/page-lifecycle/">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/WebIDLParser.js"></script>
<script src="/resources/idlharness.js"></script>

<script>
  'use strict';

  idl_test(
    ['page-lifecycle'],
    ['service-workers', 'html', 'dom'],
    idl_array => {
      idl_array.add_objects({
        Document: ['document'],
        // TODO: Client.
      });
    }
  );
</script>