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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/upload-progress-events.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/upload-progress-events.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/upload-progress-events.html b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/upload-progress-events.html
index eb52ff108a678e793cf80324116b755a58c0fea2..3df1de60812d933ad3fb10077daf45cc2d1f462c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/upload-progress-events.html
+++ b/third_party/WebKit/LayoutTests/http/tests/xmlhttprequest/upload-progress-events.html
@@ -25,10 +25,10 @@ test.step(function() {
{
if (xhr.readyState == xhr.DONE) {
var expectedLog =
- "loadstart: [object XMLHttpRequestProgressEvent]\n" +
- "progress: [object XMLHttpRequestProgressEvent] (loaded=4, total=4)\n" +
- "load: [object XMLHttpRequestProgressEvent]\n" +
- "loadend: [object XMLHttpRequestProgressEvent]\n"
+ "loadstart: [object ProgressEvent]\n" +
+ "progress: [object ProgressEvent] (loaded=4, total=4)\n" +
+ "load: [object ProgressEvent]\n" +
+ "loadend: [object ProgressEvent]\n"
assert_equals(log, expectedLog);
test.done();
}

Powered by Google App Engine
This is Rietveld 408576698