blob: 6c2ef969a2002b8c92809b9d32e14729a3e4ad1f [file] [log] [blame]
<!doctype html>
<title>expected interface objects/constructors</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(t => {
const expected = 'XMLHttpRequest WebSocket EventSource MessageChannel Worker SharedWorker ApplicationCache'.split(' ');
const supported = [];
for (let i = 0; i < expected.length; ++i) {
if (expected[i] in window)
supported.push(expected[i]);
}
const worker = new SharedWorker('interface-objects.js');
worker.port.start();
worker.port.postMessage(supported);
worker.port.onmessage = t.step_func_done(e => {
assert_equals(e.data, '');
});
}, 'Test if interface objects exist in a shared worker');
</script>