Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /streams/readable-streams/crashtests/strategy-worker-terminate.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<meta charset="utf-8">
<script>
var c = new Worker("/streams/readable-streams/crashtests/strategy-worker.js");
c.onmessage = () => {
c.terminate();
document.documentElement.classList.remove("test-wait");
}
</script>