summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/url/idlharness.any.js
blob: 4a0e52f12b3c32b63cd4723b6b68bfd793e02700 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js

idl_test(
  ['url'],
  [], // no deps
  idl_array => {
    idl_array.add_objects({
      URL: ['new URL("http://foo")'],
      URLSearchParams: ['new URLSearchParams("hi=there&thank=you")']
    });
  }
);