| OLD | NEW |
| 1 CONSOLE MESSAGE: XMLHttpRequest cannot load http://localhost:8000/xmlhttprequest
/xmlhttprequest-sync-vs-async-assertion-failure.html. Origin http://127.0.0.1:80
00 is not allowed by Access-Control-Allow-Origin. | 1 CONSOLE MESSAGE: XMLHttpRequest cannot load http://localhost:8000/xmlhttprequest
/xmlhttprequest-sync-vs-async-assertion-failure.html. Origin http://127.0.0.1:80
00 is not allowed by Access-Control-Allow-Origin. |
| 2 Test for: | 2 Test for: |
| 3 | 3 |
| 4 bug 40996: Progress event should not be fired during synchronous XMLHttpRequest; | 4 bug 40996: Progress event should not be fired during synchronous XMLHttpRequest; |
| 5 bug 17502: Assertion failure when trying to restart a sync XMLHttpRequest as an
async one from onreadystatechange. | 5 bug 17502: Assertion failure when trying to restart a sync XMLHttpRequest as an
async one from onreadystatechange. |
| 6 Step 1: Same origin request | 6 Step 1: Same origin request |
| 7 readystatechange 4 | 7 readystatechange 4 |
| 8 load | 8 load |
| 9 loadend | 9 loadend |
| 10 | 10 |
| 11 Step 2: Cross origin request, disallowed | 11 Step 2: Cross origin request, disallowed |
| 12 readystatechange 4 | 12 readystatechange 4 |
| 13 error | 13 error |
| 14 loadend | 14 loadend |
| 15 Error: NETWORK_ERR: XMLHttpRequest Exception 101 | 15 Error: NetworkError: DOM Exception 19 |
| 16 | 16 |
| 17 Step 3: Cross origin request, allowed | 17 Step 3: Cross origin request, allowed |
| 18 readystatechange 4 | 18 readystatechange 4 |
| 19 load | 19 load |
| 20 loadend | 20 loadend |
| 21 | 21 |
| 22 Step 4: Cross origin request, check that preflight isn't attempted | 22 Step 4: Cross origin request, check that preflight isn't attempted |
| 23 readystatechange 4 | 23 readystatechange 4 |
| 24 load | 24 load |
| 25 loadend | 25 loadend |
| 26 | 26 |
| OLD | NEW |