diff options
Diffstat (limited to 'dom/base/crashtests/1780790.html')
-rw-r--r-- | dom/base/crashtests/1780790.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dom/base/crashtests/1780790.html b/dom/base/crashtests/1780790.html new file mode 100644 index 0000000000..0bc4364763 --- /dev/null +++ b/dom/base/crashtests/1780790.html @@ -0,0 +1,15 @@ +<html class="reftest-wait"> + <head> + <script> + function test() { + let ac = new AbortController(); + scheduler.postTask(()=> { ac.abort(); throw "Foobar"; }, { signal: ac.signal }); + scheduler.postTask(()=> document.documentElement.removeAttribute('class')); + } + </script> + <style> + </style> + </head> + <body onload="test()"> + </body> +</html> |