| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <title>Test XmlHttpRequest onreadystatechange being called for each chunk of dat
a</title> | 3 <title>Test XmlHttpRequest onreadystatechange being called at the same frequency
as dispatching of the "progress" ProgressEvent</title> |
| 4 <body> | 4 <body> |
| 5 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=7392">bug 7392</a>: | 5 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=7392">bug 7392</a>: |
| 6 GMAIL: XMLHttpRequest does not correctly report "Interactive" state on receipt o
f load data.</p> | 6 GMAIL: XMLHttpRequest does not correctly report "Interactive" state on receipt o
f load data.</p> |
| 7 <script> | 7 <script> |
| 8 | 8 |
| 9 if (window.testRunner) { | 9 if (window.testRunner) { |
| 10 testRunner.dumpAsText(); | 10 testRunner.dumpAsText(); |
| 11 testRunner.waitUntilDone(); | 11 testRunner.waitUntilDone(); |
| 12 } | 12 } |
| 13 | 13 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 testRunner.notifyDone(); | 55 testRunner.notifyDone(); |
| 56 } | 56 } |
| 57 } | 57 } |
| 58 | 58 |
| 59 // start async steps | 59 // start async steps |
| 60 get('interactive-state.cgi', true); | 60 get('interactive-state.cgi', true); |
| 61 | 61 |
| 62 </script> | 62 </script> |
| 63 </body> | 63 </body> |
| 64 </html> | 64 </html> |
| OLD | NEW |