blob: 8c74bd0aa1277602905c022408d7d3f4e16d1e14 [file] [log] [blame]
<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>