summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wai-aria/idlharness.window.js
blob: 590bf9e2e9fec8773a4ba01fd34bb71250a58c33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

'use strict';

idl_test(
  ['wai-aria'],
  ['dom'],
  idl_array => {
    idl_array.add_objects({
      Element: ['element'],
    });
    self.element = document.createElementNS(null, "test");
  }
);