mirror of
https://github.com/servo/servo.git
synced 2025-07-10 08:53:41 +01:00
20 lines
559 B
JavaScript
20 lines
559 B
JavaScript
// META: global=sharedworker
|
|
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
|
|
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');
|
|
idl_array.add_objects({ FormData: ['new FormData(form)'] });
|
|
}
|
|
}
|
|
);
|