Sha256: f5518d3dc8611ed083da609d3e1c899aa847eb3845bb49deb0583f706704c127
Contents?: true
Size: 1.53 KB
Versions: 10
Compression:
Stored size: 1.53 KB
Contents
<!DOCTYPE html> <html> <!-- Test for #8135 Thanks John Firebaugh for this test page based on his gist https://gist.github.com/807090 Access this page through a web server, then stop said server and click the button. --> <head> <title> jQuery Network Error Test for Firefox </title> <style> div { margin-top: 10px; } </style> <script src="../dist/jquery.min.js"></script> <script type="text/javascript"> $('button').live('click', function () { $.ajax({ url: '/', error: function() { console.log( "abort", arguments ); } }).abort(); $.ajax({ url: '/', error: function() { console.log( "complete", arguments ); } }); return false; }) </script> </head> <body> <h1> jQuery Network Error Test for Firefox </h1> <div> This is a test page for <a href="http://bugs.jquery.com/ticket/8135"> #8135 </a> which was reported in Firefox when accessing properties of an XMLHttpRequest object after a network error occured. </div> <div>Take the following steps:</div> <ol> <li> make sure you accessed this page through a web server, </li> <li> stop the web server, </li> <li> open the console, </li> <li> click this <button>button</button> , </li> <li> wait for both requests to fail. </li> </ol> <div> Test passes if you get two log lines: <ul> <li> the first starting with "abort", </li> <li> the second starting with "complete", </li> </ul> </div> <div> Test fails if the browser notifies an exception. </div> </body> </html>
Version data entries
10 entries across 10 versions & 1 rubygems