Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            - /webaudio/the-audio-api/the-audiocontext-interface/crashtests/currentTime-after-discard.html - WPT Dashboard Interop Dashboard
 
<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>