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

Unified Diff: tests/html/xhr_test.dart

Issue 24427003: Removed HttpRequestProgressEvent (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 3 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
« no previous file with comments | « tests/html/html.status ('k') | tools/dom/scripts/dartmetadata.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/html/xhr_test.dart
diff --git a/tests/html/xhr_test.dart b/tests/html/xhr_test.dart
index 989488807a0dceea856de92e58b70aed610500d0..b39ab1cadbc38103b33dfa4f6900f54130a1be01 100644
--- a/tests/html/xhr_test.dart
+++ b/tests/html/xhr_test.dart
@@ -37,12 +37,6 @@ main() {
expect(xhr.responseText, equals(''));
}
- group('supported_HttpRequestProgressEvent', () {
- test('supported', () {
- expect(HttpRequestProgressEvent.supported, isTrue);
- });
- });
-
group('supported_onProgress', () {
test('supported', () {
expect(HttpRequest.supportsProgressEvent, isTrue);
@@ -166,15 +160,6 @@ main() {
}
});
- test('HttpRequestProgressEvent', () {
- var expectation = HttpRequestProgressEvent.supported ?
- returnsNormally : throws;
- expect(() {
- var event = new Event.eventType('XMLHttpRequestProgressEvent', '');
- expect(event is HttpRequestProgressEvent, isTrue);
- }, expectation);
- });
-
test('overrideMimeType', () {
var expectation =
HttpRequest.supportsOverrideMimeType ? returnsNormally : throws;
« no previous file with comments | « tests/html/html.status ('k') | tools/dom/scripts/dartmetadata.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698