Index: tests/html/xhr_test.dart |
diff --git a/tests/html/xhr_test.dart b/tests/html/xhr_test.dart |
index c5d16a3287f550218061305821566093f914565a..66d495eeb6234886c632d09f6ba234456f9ab08f 100644 |
--- a/tests/html/xhr_test.dart |
+++ b/tests/html/xhr_test.dart |
@@ -51,6 +51,11 @@ main() { |
validate200Response(xhr); |
} |
}, () => xhr.readyState == HttpRequest.DONE)); |
+ |
+ xhr.onLoadEnd.listen(expectAsync1((ProgressEvent e) { |
+ expect(e.currentTarget, xhr); |
+ expect(e.target, xhr); |
+ })); |
xhr.send(); |
}); |