test-network-exceptions.html (743B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8"> 5 <title>Web Console test for bug 618078 - exception in async network request 6 callback</title> 7 <!-- Any copyright is dedicated to the Public Domain. 8 http://creativecommons.org/publicdomain/zero/1.0/ --> 9 <script type="text/javascript"> 10 /* eslint-disable */ 11 var req = new XMLHttpRequest(); 12 req.open('GET', 'https://example.com', true); 13 req.onreadystatechange = function() { 14 if (req.readyState == 4) { 15 bug618078exception(); 16 } 17 }; 18 req.send(null); 19 </script> 20 </head> 21 <body> 22 <p>Web Console test for bug 618078 - exception in async network request 23 callback.</p> 24 </body> 25 </html>