| Index: tests/html/xhr_test.dart
|
| diff --git a/tests/html/xhr_test.dart b/tests/html/xhr_test.dart
|
| index b39ab1cadbc38103b33dfa4f6900f54130a1be01..6394ef4db1a45213b62265052a7f98afdf8feae0 100644
|
| --- a/tests/html/xhr_test.dart
|
| +++ b/tests/html/xhr_test.dart
|
| @@ -246,4 +246,13 @@ main() {
|
| }));
|
| });
|
| });
|
| +
|
| + group('headers', () {
|
| + test('xhr responseHeaders', () {
|
| + return HttpRequest.request(url, mimeType: 'application/binary').then(
|
| + (xhr) {
|
| + expect(xhr.responseHeaders['content-type'], 'application/binary');
|
| + });
|
| + });
|
| + });
|
| }
|
|
|