| 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 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 [ | 39 [ |
| 40 GlobalContext=Window&WorkerGlobalScope, | 40 GlobalContext=Window&WorkerGlobalScope, |
| 41 ActiveDOMObject, | 41 ActiveDOMObject, |
| 42 Constructor, | 42 Constructor, |
| 43 ConstructorCallWith=ScriptExecutionContext, | 43 ConstructorCallWith=ScriptExecutionContext, |
| 44 CustomConstructor(optional XMLHttpRequestOptions options) | 44 CustomConstructor(optional XMLHttpRequestOptions options) |
| 45 ] interface XMLHttpRequest : EventTarget { | 45 ] interface XMLHttpRequest : EventTarget { |
| 46 // From XMLHttpRequestEventTarget | 46 // From XMLHttpRequestEventTarget |
| 47 // event handler attributes | 47 // event handler attributes |
| 48 attribute EventListener onabort; | 48 attribute EventHandler onabort; |
| 49 attribute EventListener onerror; | 49 attribute EventHandler onerror; |
| 50 attribute EventListener onload; | 50 attribute EventHandler onload; |
| 51 attribute EventListener onloadend; | 51 attribute EventHandler onloadend; |
| 52 attribute EventListener onloadstart; | 52 attribute EventHandler onloadstart; |
| 53 attribute EventListener onprogress; | 53 attribute EventHandler onprogress; |
| 54 attribute EventListener ontimeout; | 54 attribute EventHandler ontimeout; |
| 55 | 55 |
| 56 // event handler attributes | 56 // event handler attributes |
| 57 attribute EventListener onreadystatechange; | 57 attribute EventHandler onreadystatechange; |
| 58 | 58 |
| 59 // state | 59 // state |
| 60 const unsigned short UNSENT = 0; | 60 const unsigned short UNSENT = 0; |
| 61 const unsigned short OPENED = 1; | 61 const unsigned short OPENED = 1; |
| 62 const unsigned short HEADERS_RECEIVED = 2; | 62 const unsigned short HEADERS_RECEIVED = 2; |
| 63 const unsigned short LOADING = 3; | 63 const unsigned short LOADING = 3; |
| 64 const unsigned short DONE = 4; | 64 const unsigned short DONE = 4; |
| 65 | 65 |
| 66 [SetterRaisesException] attribute unsigned long timeout; | 66 [SetterRaisesException] attribute unsigned long timeout; |
| 67 readonly attribute unsigned short readyState; | 67 readonly attribute unsigned short readyState; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 86 | 86 |
| 87 [SetterRaisesException] attribute XMLHttpRequestResponseType responseType; | 87 [SetterRaisesException] attribute XMLHttpRequestResponseType responseType; |
| 88 [CustomGetter, GetterRaisesException] readonly attribute Object response; | 88 [CustomGetter, GetterRaisesException] readonly attribute Object response; |
| 89 | 89 |
| 90 [GetterRaisesException] readonly attribute unsigned short status; | 90 [GetterRaisesException] readonly attribute unsigned short status; |
| 91 [GetterRaisesException] readonly attribute DOMString statusText; | 91 [GetterRaisesException] readonly attribute DOMString statusText; |
| 92 | 92 |
| 93 // Extension | 93 // Extension |
| 94 void overrideMimeType(DOMString override); | 94 void overrideMimeType(DOMString override); |
| 95 }; | 95 }; |
| OLD | NEW |