blob: aea380abd9293216773a5aecac6081ed5371fb41 [file] [log] [blame]
<!doctype html>
<meta charset="utf-8">
<title>cookieStore on DOMWindow of detached iframe (crbug.com/774626)</title>
<link rel="help" href="https://github.com/WICG/async-cookies-api">
<link rel="author" href="pwnall@chromium.org" title="Victor Costan">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<iframe id="iframe"></iframe>
<script>
'use strict';
test(() => {
const iframe = document.getElementById('iframe');
const frameWindow = iframe.contentWindow;
iframe.parentNode.removeChild(iframe);
assert_equals(null, frameWindow.cookieStore);
});
</script>