Skip to content
Snippets Groups Projects
Commit df55d884 authored by Ben Kelly's avatar Ben Kelly
Browse files

Bug 1369874 Make fetch-response-xhr.https.html not depend on window.event. r=asuth

parent 7d937678
No related branches found
No related tags found
No related merge requests found
[fetch-response-xhr.https.html]
type: testharness
expected: TIMEOUT
[Verify the response of FetchEvent using XMLHttpRequest]
expected: TIMEOUT
......@@ -26,7 +26,7 @@ function coalesce_headers_test() {
return new Promise(function(resolve) {
window.addEventListener('message', function handle(evt) {
if (event.data !== 'ACK') {
if (evt.data !== 'ACK') {
return;
}
......@@ -40,7 +40,7 @@ function coalesce_headers_test() {
window.addEventListener('message', function(evt) {
var port;
if (event.data !== 'START') {
if (evt.data !== 'START') {
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment