chromium/third_party/blink/web_tests/external/wpt/webaudio/the-audio-api/the-audiocontext-interface/crashtests/currentTime-after-discard.html

<html>
<head>
  <title>
    Test currentTime after browsing context discard
  </title>
</head>
<script>
  const frame = document.createElement('frame');
  document.documentElement.appendChild(frame);
  const ctx = new frame.contentWindow.AudioContext();
  frame.remove();
  ctx.currentTime;
</script>
</html>