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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/chunked-progress-event-expectedLength.html

Issue 1681923002: Remove XMLHttpRequestProgressEvent (position and totalSize) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update tests Created 4 years, 10 months 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: third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/chunked-progress-event-expectedLength.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/chunked-progress-event-expectedLength.html b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/chunked-progress-event-expectedLength.html
index a8cb532a7dfeeeec2b7fa8ab9f6e004addda2314..e394e5c2fab7e19ac8289305faf5c8dd8df29238 100644
--- a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/chunked-progress-event-expectedLength.html
+++ b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/chunked-progress-event-expectedLength.html
@@ -33,11 +33,11 @@ function test()
if (e.loaded == 4 && e.total == 0 && !e.lengthComputable)
log("PASS");
else if (e.total != 0 && !e.lengthComputable)
- log("FAIL: XMLHttpRequestProgressEvent lengthComputable=false but total is non-zero: " + e.total);
+ log("FAIL: ProgressEvent lengthComputable=false but total is non-zero: " + e.total);
}
xhr.onreadystatechange = function(e) {
- if (xhr.readyState == xhr.DONE)
+ if (xhr.readyState == xhr.DONE)
{
if (window.testRunner)
testRunner.notifyDone();

Powered by Google App Engine
This is Rietveld 408576698