doc-navigation-when-paused.html (452B)
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public 2 - License, v. 2.0. If a copy of the MPL was not distributed with this 3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 4 <html> 5 <head> 6 <script> 7 window.onclick = () => { 8 Promise.resolve().then(() => { 9 throw new Error("Second"); 10 }); 11 12 throw new Error("First"); 13 }; 14 </script> 15 </head> 16 <body></body> 17 </html>