| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 "", | 30 "", |
| 31 "arraybuffer", | 31 "arraybuffer", |
| 32 "blob", | 32 "blob", |
| 33 "document", | 33 "document", |
| 34 "json", | 34 "json", |
| 35 "text", | 35 "text", |
| 36 "stream" | 36 "stream" |
| 37 }; | 37 }; |
| 38 | 38 |
| 39 [ | 39 [ |
| 40 WillBeGarbageCollected, |
| 40 ActiveDOMObject, | 41 ActiveDOMObject, |
| 41 CustomConstructor(optional XMLHttpRequestOptions options), | 42 CustomConstructor(optional XMLHttpRequestOptions options), |
| 42 GlobalContext=Window&WorkerGlobalScope, | 43 Exposed=Window&Worker |
| 43 ] interface XMLHttpRequest : XMLHttpRequestEventTarget { | 44 ] interface XMLHttpRequest : XMLHttpRequestEventTarget { |
| 44 // event handler attributes | 45 // event handler attributes |
| 45 attribute EventHandler onreadystatechange; | 46 attribute EventHandler onreadystatechange; |
| 46 | 47 |
| 47 // state | 48 // state |
| 48 const unsigned short UNSENT = 0; | 49 const unsigned short UNSENT = 0; |
| 49 const unsigned short OPENED = 1; | 50 const unsigned short OPENED = 1; |
| 50 const unsigned short HEADERS_RECEIVED = 2; | 51 const unsigned short HEADERS_RECEIVED = 2; |
| 51 const unsigned short LOADING = 3; | 52 const unsigned short LOADING = 3; |
| 52 const unsigned short DONE = 4; | 53 const unsigned short DONE = 4; |
| 53 | 54 |
| 54 [RaisesException=Setter] attribute unsigned long timeout; | 55 [RaisesException=Setter] attribute unsigned long timeout; |
| 55 readonly attribute unsigned short readyState; | 56 readonly attribute unsigned short readyState; |
| 56 | 57 |
| 57 [RaisesException=Setter] attribute boolean withCredentials; | 58 [RaisesException=Setter] attribute boolean withCredentials; |
| 58 | 59 |
| 59 [Custom, ActivityLogging=ForAllWorlds, RaisesException] void open(DOMString
method, DOMString url, optional boolean async, optional DOMString user, optional
DOMString password); | 60 [Custom, LogActivity, LogAllWorlds, RaisesException] void open(DOMString met
hod, DOMString url, optional boolean async, optional DOMString user, optional DO
MString password); |
| 60 | 61 |
| 61 [ActivityLogging=ForAllWorlds, RaisesException] void setRequestHeader(DOMStr
ing header, DOMString value); | 62 [LogActivity, LogAllWorlds, RaisesException] void setRequestHeader(DOMString
header, DOMString value); |
| 62 | 63 |
| 63 [Custom, RaisesException] void send(); | 64 [Custom, RaisesException] void send(); |
| 65 // FIXMEDART: send(ArrayBuffer data) should be eventually deprecated. |
| 66 [DartCustom=New] void send(ArrayBuffer data); |
| 67 [DartCustom=New] void send(ArrayBufferView data); |
| 68 [DartCustom=New] void send(Blob data); |
| 69 [DartCustom=New] void send(Document data); |
| 70 [DartCustom=New] void send(DOMString data); |
| 71 [DartCustom=New] void send(FormData data); |
| 64 | 72 |
| 65 void abort(); | 73 void abort(); |
| 66 | 74 |
| 67 readonly attribute XMLHttpRequestUpload upload; | 75 readonly attribute XMLHttpRequestUpload upload; |
| 68 | 76 |
| 69 // response | 77 // response |
| 70 [TreatReturnedNullStringAs=Undefined] DOMString getAllResponseHeaders(); | 78 [TreatReturnedNullStringAs=Undefined] DOMString getAllResponseHeaders(); |
| 71 [TreatReturnedNullStringAs=Null] DOMString getResponseHeader(DOMString heade
r); | 79 [TreatReturnedNullStringAs=Null] DOMString getResponseHeader(DOMString heade
r); |
| 72 [Custom=Getter, RaisesException=Getter] readonly attribute DOMString respons
eText; // The custom getter implements TreatReturnedNullStringAs=Null | 80 [Custom=Getter, RaisesException=Getter] readonly attribute DOMString respons
eText; // The custom getter implements TreatReturnedNullStringAs=Null |
| 73 [RaisesException=Getter] readonly attribute Document responseXML; | 81 [RaisesException=Getter] readonly attribute Document responseXML; |
| 74 | 82 |
| 75 [RaisesException=Setter] attribute XMLHttpRequestResponseType responseType; | 83 [RaisesException=Setter] attribute XMLHttpRequestResponseType responseType; |
| 76 [Custom=Getter, RaisesException=Getter] readonly attribute object response; | 84 [Custom=Getter, RaisesException=Getter] readonly attribute object response; |
| 85 readonly attribute DOMString responseURL; |
| 77 | 86 |
| 78 readonly attribute unsigned short status; | 87 readonly attribute unsigned short status; |
| 79 readonly attribute DOMString statusText; | 88 readonly attribute DOMString statusText; |
| 80 | 89 |
| 81 // Extension | 90 // Extension |
| 82 void overrideMimeType(DOMString override); | 91 void overrideMimeType(DOMString override); |
| 83 }; | 92 }; |
| OLD | NEW |