Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: Source/core/xmlhttprequest/XMLHttpRequestEventTarget.idl

Issue 1155313002: Rearrange the XHR interfaces to match the spec order (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add spec link Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/xmlhttprequest/XMLHttpRequest.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xmlhttprequest/XMLHttpRequestEventTarget.idl
diff --git a/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.idl b/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.idl
index 7b5cd5d3435ae9f5eee929ccdad3f11aa4f3593e..3a16c7737310523d19a8220bf54ac8b86a6c9398 100644
--- a/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.idl
+++ b/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.idl
@@ -24,14 +24,17 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+// https://xhr.spec.whatwg.org/#xmlhttprequesteventtarget
+
[
Exposed=(Window,DedicatedWorker,SharedWorker)
] interface XMLHttpRequestEventTarget : EventTarget {
+ // event handlers
+ attribute EventHandler onloadstart;
+ attribute EventHandler onprogress;
attribute EventHandler onabort;
attribute EventHandler onerror;
attribute EventHandler onload;
- attribute EventHandler onloadend;
- attribute EventHandler onloadstart;
- attribute EventHandler onprogress;
attribute EventHandler ontimeout;
+ attribute EventHandler onloadend;
};
« no previous file with comments | « Source/core/xmlhttprequest/XMLHttpRequest.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698