Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Unified Diff: LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html

Issue 66323004: XHR: compliant event sequencing on request errors and aborts. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html
diff --git a/LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html b/LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html
index 42e375b9ba180b27f17c428f046fa1c1b0a70b6a..b5e8c100dd7e2100c0b1842beb6234b6a2e6a44c 100644
--- a/LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html
+++ b/LayoutTests/http/tests/xmlhttprequest/simple-cross-origin-progress-events.html
@@ -16,6 +16,7 @@ function log(message)
var sawProgress;
var sawUploadProgress;
+var canSeeUploadProgress = false;
function progress(evt)
{
@@ -27,7 +28,7 @@ function progress(evt)
function uploadProgress(evt)
{
if (!sawUploadProgress)
- log("FAIL: upload.onprogress");
+ log((canSeeUploadProgress ? "" : "FAIL: ") + "upload.onprogress");
sawUploadProgress = true;
}
@@ -90,6 +91,7 @@ function test3()
{
sawProgress = false;
sawUploadProgress = false;
+ canSeeUploadProgress = true;
log("\nTest 3: The URL is not allowed for cross-origin requests and at least one upload event is listened for before doing the send.");

Powered by Google App Engine
This is Rietveld 408576698