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

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: 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..6fcab23d2e3c187941de5a65fd47b0ed5af834db 100644
--- a/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.idl
+++ b/Source/core/xmlhttprequest/XMLHttpRequestEventTarget.idl
@@ -27,11 +27,12 @@
[
vivekg 2015/05/27 00:39:22 nit: Can you please add spec link here?
philipj_slow 2015/05/27 08:47:11 Done.
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