Bug 1850713: remove duplicated setting of early hint preloader id in `ScriptLoader...
[gecko.git] / dom / base / crashtests / 1780790.html
blob0bc4364763a2a74e69f6bf5ee17e8d65632c38b2
1 <html class="reftest-wait">
2 <head>
3 <script>
4 function test() {
5 let ac = new AbortController();
6 scheduler.postTask(()=> { ac.abort(); throw "Foobar"; }, { signal: ac.signal });
7 scheduler.postTask(()=> document.documentElement.removeAttribute('class'));
9 </script>
10 <style>
11 </style>
12 </head>
13 <body onload="test()">
14 </body>
15 </html>