summaryrefslogtreecommitdiffstats
path: root/dom/file/tests/crashtests/1747185.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/file/tests/crashtests/1747185.html')
-rw-r--r--dom/file/tests/crashtests/1747185.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/dom/file/tests/crashtests/1747185.html b/dom/file/tests/crashtests/1747185.html
new file mode 100644
index 0000000000..89af55504f
--- /dev/null
+++ b/dom/file/tests/crashtests/1747185.html
@@ -0,0 +1,11 @@
+<html>
+<head>
+ <script>
+ window.addEventListener('load', () => {
+ let a = new Blob([new Uint8Array(2147483647)])
+ let b = new File([a], '')
+ b.stream()
+ })
+ </script>
+</head>
+</html>