Title: [98893] trunk/Source/WebCore
Revision
98893
Author
[email protected]
Date
2011-10-31 15:52:58 -0700 (Mon, 31 Oct 2011)

Log Message

Update XMLHttpRequest.send idl declaration to match implementation.
https://bugs.webkit.org/show_bug.cgi?id=71121

Reviewed by Adam Barth.

* xml/XMLHttpRequest.idl:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (98892 => 98893)


--- trunk/Source/WebCore/ChangeLog	2011-10-31 22:51:19 UTC (rev 98892)
+++ trunk/Source/WebCore/ChangeLog	2011-10-31 22:52:58 UTC (rev 98893)
@@ -1,3 +1,12 @@
+2011-10-31  Pavel Podivilov  <[email protected]>
+
+        Update XMLHttpRequest.send idl declaration to match implementation.
+        https://bugs.webkit.org/show_bug.cgi?id=71121
+
+        Reviewed by Adam Barth.
+
+        * xml/XMLHttpRequest.idl:
+
 2011-10-31  Anders Carlsson  <[email protected]>
 
         More work on making plug-ins work better with transforms

Modified: trunk/Source/WebCore/xml/XMLHttpRequest.idl (98892 => 98893)


--- trunk/Source/WebCore/xml/XMLHttpRequest.idl	2011-10-31 22:51:19 UTC (rev 98892)
+++ trunk/Source/WebCore/xml/XMLHttpRequest.idl	2011-10-31 22:52:58 UTC (rev 98893)
@@ -71,10 +71,18 @@
         void setRequestHeader(in DOMString header, in DOMString value)
             raises(DOMException);
 
-        // void send();
-        // void send(in DOMString data);
+        [Custom] void send()
+            raises(DOMException);
+        [Custom] void send(in ArrayBuffer data)
+            raises(DOMException);
+        [Conditional=BLOB, Custom] void send(in Blob data)
+            raises(DOMException);
         [Custom] void send(in Document data)
             raises(DOMException);
+        [Custom] void send(in DOMString data)
+            raises(DOMException);
+        [Custom] void send(in DOMFormData data)
+            raises(DOMException);
 
         void abort();
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to