| Index: tools/testing/dart/http_server.dart
|
| diff --git a/tools/testing/dart/http_server.dart b/tools/testing/dart/http_server.dart
|
| index e45c27ddbbb069a3846b2dfe4bac602405df8ec9..4e04773ec732057145d9973d8972c9d19e2133ea 100644
|
| --- a/tools/testing/dart/http_server.dart
|
| +++ b/tools/testing/dart/http_server.dart
|
| @@ -401,6 +401,8 @@ class TestingServers {
|
| response.headers.set('Content-Type', 'application/dart');
|
| } else if (path.filename.endsWith('.css')) {
|
| response.headers.set('Content-Type', 'text/css');
|
| + } else if (path.filename.endsWith('.xml')) {
|
| + response.headers.set('Content-Type', 'text/xml');
|
| }
|
| response.headers.removeAll("X-Frame-Options");
|
| file.openRead().pipe(response).catchError((e) {
|
|
|