summaryrefslogtreecommitdiffstats
path: root/dom/canvas/crashtests/1771007-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/crashtests/1771007-1.html')
-rw-r--r--dom/canvas/crashtests/1771007-1.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/dom/canvas/crashtests/1771007-1.html b/dom/canvas/crashtests/1771007-1.html
new file mode 100644
index 0000000000..1e5642e3ad
--- /dev/null
+++ b/dom/canvas/crashtests/1771007-1.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <script id="worker1" type="javascript/worker">
+ self.onmessage = async function (e) {
+ const canvas = new OffscreenCanvas(82, 127)
+ canvas.getContext('2d', {})
+ canvas.width = 134
+ await canvas.convertToBlob({})
+ canvas.transferToImageBitmap()
+ }
+ </script>
+ <script>
+ window.addEventListener('load', () => {
+ const blob = new Blob([document.querySelector('#worker1').textContent], { type: 'text/javascript' })
+ const worker = new Worker(window.URL.createObjectURL(blob))
+ worker.postMessage([], [])
+ setTimeout('self.close()', 500)
+ })
+ </script>
+</head>
+</html> \ No newline at end of file