summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/idlharness.any.js
blob: 2e0e0c89636b34d9456f4caf1dc60f554d7fc136 (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
// META: global=window,dedicatedworker,sharedworker
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: timeout=long

idl_test(
  ['xhr'],
  ['dom', 'html'],
  idl_array => {
    idl_array.add_objects({
      XMLHttpRequest: ['new XMLHttpRequest()'],
      XMLHttpRequestUpload: ['(new XMLHttpRequest()).upload'],
      FormData: ['new FormData()'],
      ProgressEvent: ['new ProgressEvent("type")'],
    });
    if (self.Window) {
      self.form = document.createElement('form');
      self.submitter = document.createElement('button');
      self.form.appendChild(self.submitter);
      idl_array.add_objects({
        FormData: [
          'new FormData(form)',
          'new FormData(form, submitter)'
        ],
      });
    }
  }
);