Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<iframe></iframe>
<script>
promise_test(async t => {
const iframe = document.querySelector('iframe');
const childSharedStorage = iframe.contentWindow.sharedStorage;
iframe.remove();
try {
await childSharedStorage.run("operation1");
} catch (e) {
assert_equals(e.name, 'InvalidAccessError');
return;
}
assert_unreached("did not reject");
}, 'run() when frame is detached');
</script>
</body>