| OLD | NEW |
| 1 CONSOLE MESSAGE: XMLHttpRequest cannot load http://localhost:8000/xmlhttprequest
/xmlhttprequest-sync-vs-async-assertion-failure.html. No 'Access-Control-Allow-O
rigin' header is present on the requested resource. Origin 'http://127.0.0.1:800
0' is therefore not allowed access. | 1 CONSOLE ERROR: XMLHttpRequest cannot load http://localhost:8000/xmlhttprequest/x
mlhttprequest-sync-vs-async-assertion-failure.html. No 'Access-Control-Allow-Ori
gin' header is present on the requested resource. Origin 'http://127.0.0.1:8000'
is therefore not allowed access. |
| 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 NetworkError: A network error occurred. | 12 NetworkError: A network error occurred. |
| 13 | 13 |
| 14 Step 3: Cross origin request, allowed | 14 Step 3: Cross origin request, allowed |
| 15 readystatechange 4 | 15 readystatechange 4 |
| 16 load | 16 load |
| 17 loadend | 17 loadend |
| 18 | 18 |
| 19 Step 4: Cross origin request, check that preflight isn't attempted | 19 Step 4: Cross origin request, check that preflight isn't attempted |
| 20 readystatechange 4 | 20 readystatechange 4 |
| 21 load | 21 load |
| 22 loadend | 22 loadend |
| 23 | 23 |
| OLD | NEW |