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

Unified Diff: xml/XMLHttpRequest.idl

Issue 13601015: Roll Blink IDLs forward. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 8 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 | « testing/Internals.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xml/XMLHttpRequest.idl
===================================================================
--- xml/XMLHttpRequest.idl (revision 20616)
+++ xml/XMLHttpRequest.idl (working copy)
@@ -26,6 +26,16 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
+enum XMLHttpRequestResponseType {
+ "",
+ "arraybuffer",
+ "blob",
+ "document",
+// FIXME: enable once support for json responseText is completed. (bug #73648)
+// "json",
+ "text"
+};
+
[
ActiveDOMObject,
Constructor,
@@ -85,7 +95,7 @@
readonly attribute Document responseXML
getter raises(DOMException);
- attribute DOMString responseType
+ attribute XMLHttpRequestResponseType responseType
setter raises(DOMException);
[CustomGetter] readonly attribute Object response
getter raises(DOMException);
« no previous file with comments | « testing/Internals.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698