1
0
Fork 0
firefox/testing/web-platform/tests/xhr/idlharness.any.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 lines
784 B
JavaScript

// 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)'
],
});
}
}
);