chromium/third_party/blink/web_tests/external/wpt/cookie-store/cookieStore_in_detached_frame.https.html

<!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/cookie-store">
<link rel="author" href="[email protected]" 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>