mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
Update web-platform-tests to revision 60220357131c65146444da1f54624d5b54d0975d
This commit is contained in:
parent
c45192614c
commit
775b784f79
2144 changed files with 58115 additions and 29658 deletions
|
@ -1,3 +1,4 @@
|
|||
spec: https://w3c.github.io/FileAPI/
|
||||
suggested_reviewers:
|
||||
- inexorabletash
|
||||
- zqzhang
|
||||
|
|
|
@ -22,28 +22,22 @@
|
|||
<script>
|
||||
'use strict';
|
||||
|
||||
promise_test(async () => {
|
||||
const idl = await fetch('/interfaces/FileAPI.idl').then(r => r.text());
|
||||
const dom = await fetch('/interfaces/dom.idl').then(r => r.text());
|
||||
const html = await fetch('/interfaces/html.idl').then(r => r.text());
|
||||
const url = await fetch('/interfaces/url.idl').then(r => r.text());
|
||||
|
||||
const idl_array = new IdlArray();
|
||||
idl_array.add_idls(idl);
|
||||
idl_array.add_dependency_idls(url);
|
||||
idl_array.add_dependency_idls(html);
|
||||
idl_array.add_dependency_idls(dom);
|
||||
idl_array.add_untested_idls("[Exposed=(Window,Worker)] interface ArrayBuffer {};");
|
||||
|
||||
idl_array.add_objects({
|
||||
Blob: ['new Blob(["TEST"])'],
|
||||
File: ['new File(["myFileBits"], "myFileName")'],
|
||||
FileList: ['document.querySelector("#fileChooser").files'],
|
||||
FileReader: ['new FileReader()']
|
||||
});
|
||||
|
||||
idl_array.test();
|
||||
}, 'Test FileAPI IDL implementation');
|
||||
idl_test(
|
||||
['FileAPI'],
|
||||
['dom', 'html', 'url'],
|
||||
idl_array => {
|
||||
idl_array.add_untested_idls(
|
||||
"[Exposed=(Window,Worker)] interface ArrayBuffer {};"
|
||||
);
|
||||
idl_array.add_objects({
|
||||
Blob: ['new Blob(["TEST"])'],
|
||||
File: ['new File(["myFileBits"], "myFileName")'],
|
||||
FileList: ['document.querySelector("#fileChooser").files'],
|
||||
FileReader: ['new FileReader()']
|
||||
});
|
||||
},
|
||||
'Test FileAPI IDL implementation'
|
||||
);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
|
|
@ -1,25 +1,22 @@
|
|||
importScripts("/resources/testharness.js");
|
||||
importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");
|
||||
|
||||
promise_test(async () => {
|
||||
const idl = await fetch('/interfaces/FileAPI.idl').then(r => r.text());
|
||||
const dom = await fetch('/interfaces/dom.idl').then(r => r.text());
|
||||
const html = await fetch('/interfaces/html.idl').then(r => r.text());
|
||||
const url = await fetch('/interfaces/url.idl').then(r => r.text());
|
||||
'use strict';
|
||||
|
||||
const idl_array = new IdlArray();
|
||||
idl_array.add_idls(idl);
|
||||
idl_array.add_dependency_idls(dom);
|
||||
idl_array.add_dependency_idls(html);
|
||||
idl_array.add_dependency_idls(url);
|
||||
idl_array.add_untested_idls("[Exposed=(Window,Worker)] interface ArrayBuffer {};");
|
||||
idl_array.add_objects({
|
||||
Blob: ['new Blob(["TEST"])'],
|
||||
File: ['new File(["myFileBits"], "myFileName")'],
|
||||
FileReader: ['new FileReader()'],
|
||||
FileReaderSync: ['new FileReaderSync()']
|
||||
});
|
||||
// https://w3c.github.io/FileAPI/
|
||||
|
||||
idl_array.test();
|
||||
}, 'Test FileAPI IDL implementation');
|
||||
idl_test(
|
||||
['FileAPI'],
|
||||
['dom', 'html', 'url'],
|
||||
idl_array => {
|
||||
idl_array.add_untested_idls("[Exposed=(Window,Worker)] interface ArrayBuffer {};");
|
||||
idl_array.add_objects({
|
||||
Blob: ['new Blob(["TEST"])'],
|
||||
File: ['new File(["myFileBits"], "myFileName")'],
|
||||
FileReader: ['new FileReader()'],
|
||||
FileReaderSync: ['new FileReaderSync()']
|
||||
});
|
||||
},
|
||||
'Test FileAPI IDL implementation'
|
||||
);
|
||||
done();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue