mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
30 lines
809 B
HTML
30 lines
809 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<title>Storage API IDL tests</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/WebIDLParser.js"></script>
|
|
<script src="/resources/idlharness.js"></script>
|
|
|
|
<script>
|
|
'use strict';
|
|
promise_test(t => {
|
|
return fetch('interfaces.idl')
|
|
.then(response => response.text())
|
|
.then(idls => {
|
|
var idl_array = new IdlArray();
|
|
|
|
idl_array.add_untested_idls('interface Navigator {};');
|
|
idl_array.add_untested_idls('[Exposed=Worker] interface WorkerNavigator {};');
|
|
|
|
idl_array.add_idls(idls);
|
|
|
|
idl_array.add_objects({
|
|
StorageManager: ['navigator.storage']
|
|
});
|
|
|
|
idl_array.test();
|
|
t.done();
|
|
});
|
|
}, 'Storage API IDL test');
|
|
</script>
|