| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 setter raises(DOMException); | 62 setter raises(DOMException); |
| 63 | 63 |
| 64 [Custom] void open(in DOMString method, in DOMString url, in [Optional]
boolean async, in [Optional] DOMString user, in [Optional] DOMString password) | 64 [Custom] void open(in DOMString method, in DOMString url, in [Optional]
boolean async, in [Optional] DOMString user, in [Optional] DOMString password) |
| 65 raises(DOMException); | 65 raises(DOMException); |
| 66 | 66 |
| 67 void setRequestHeader(in DOMString header, in DOMString value) | 67 void setRequestHeader(in DOMString header, in DOMString value) |
| 68 raises(DOMException); | 68 raises(DOMException); |
| 69 | 69 |
| 70 [Custom] void send() | 70 [Custom] void send() |
| 71 raises(DOMException); | 71 raises(DOMException); |
| 72 [Custom] void send(in ArrayBuffer data) | 72 [Custom] void send(in ArrayBuffer data) // FIXME: this should be eventua
lly deprecated. |
| 73 raises(DOMException); |
| 74 [Custom] void send(in ArrayBufferView data) |
| 73 raises(DOMException); | 75 raises(DOMException); |
| 74 [Conditional=BLOB, Custom] void send(in Blob data) | 76 [Conditional=BLOB, Custom] void send(in Blob data) |
| 75 raises(DOMException); | 77 raises(DOMException); |
| 76 [Custom] void send(in Document data) | 78 [Custom] void send(in Document data) |
| 77 raises(DOMException); | 79 raises(DOMException); |
| 78 [Custom] void send(in DOMString data) | 80 [Custom] void send(in DOMString data) |
| 79 raises(DOMException); | 81 raises(DOMException); |
| 80 [Custom] void send(in DOMFormData data) | 82 [Custom] void send(in DOMFormData data) |
| 81 raises(DOMException); | 83 raises(DOMException); |
| 82 | 84 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 112 in EventListener listener, | 114 in EventListener listener, |
| 113 in [Optional] boolean useCapture); | 115 in [Optional] boolean useCapture); |
| 114 void removeEventListener(in DOMString type, | 116 void removeEventListener(in DOMString type, |
| 115 in EventListener listener, | 117 in EventListener listener, |
| 116 in [Optional] boolean useCapture); | 118 in [Optional] boolean useCapture); |
| 117 boolean dispatchEvent(in Event evt) | 119 boolean dispatchEvent(in Event evt) |
| 118 raises(EventException); | 120 raises(EventException); |
| 119 }; | 121 }; |
| 120 | 122 |
| 121 } | 123 } |
| OLD | NEW |