| Index: client/html/src/XMLHttpRequestWrappingImplementation.dart | 
| diff --git a/client/html/src/XMLHttpRequestWrappingImplementation.dart b/client/html/src/XMLHttpRequestWrappingImplementation.dart | 
| index f129149542def5786948189388e81bdecb3b3a38..fb30d24681d4d8914ff8042c41b28fd170fd46ac 100644 | 
| --- a/client/html/src/XMLHttpRequestWrappingImplementation.dart | 
| +++ b/client/html/src/XMLHttpRequestWrappingImplementation.dart | 
| @@ -53,7 +53,7 @@ class XMLHttpRequestWrappingImplementation extends EventTargetWrappingImplementa | 
|  | 
| void set responseType(String value) { _ptr.responseType = value; } | 
|  | 
| -  Document get responseXML() => LevelDom.wrapDocument(_ptr.responseXML); | 
| +  XMLDocument get responseXML() => LevelDom.wrapDocument(_ptr.responseXML); | 
|  | 
| int get status() => _ptr.status; | 
|  | 
|  |