chromium/third_party/blink/web_tests/external/wpt/shared-storage/run-operation-in-detached-frame.tentative.https.sub.html

<!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>