Title: [121161] trunk/Source/WebCore
Revision
121161
Author
[email protected]
Date
2012-06-25 09:56:21 -0700 (Mon, 25 Jun 2012)

Log Message

Remove responseBlob field from XMLHttpResponse.idl
https://bugs.webkit.org/show_bug.cgi?id=89859

Reviewed by Eric Seidel.

Remove XMLHttpResponse.responseBlob from XMLHttpResponse.idl, which
has only been exposed for a very limited time (since r120574) but
probably should not have been done so since XHR2 spec no longer has
the field.  A quick search also showed that no one seems to be using the field.

(More context: the field was added long time ago with a runtime guard
which had never been enabled until the guard was removed in r120574
to remove XHR_RESPONSE_BLOB on all platforms.)

No new tests as no tests use this field.

* xml/XMLHttpRequest.idl: Removed responseBlob field.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (121160 => 121161)


--- trunk/Source/WebCore/ChangeLog	2012-06-25 16:30:49 UTC (rev 121160)
+++ trunk/Source/WebCore/ChangeLog	2012-06-25 16:56:21 UTC (rev 121161)
@@ -1,3 +1,23 @@
+2012-06-25  Kinuko Yasuda  <[email protected]>
+
+        Remove responseBlob field from XMLHttpResponse.idl
+        https://bugs.webkit.org/show_bug.cgi?id=89859
+
+        Reviewed by Eric Seidel.
+
+        Remove XMLHttpResponse.responseBlob from XMLHttpResponse.idl, which
+        has only been exposed for a very limited time (since r120574) but
+        probably should not have been done so since XHR2 spec no longer has
+        the field.  A quick search also showed that no one seems to be using the field.
+
+        (More context: the field was added long time ago with a runtime guard
+        which had never been enabled until the guard was removed in r120574
+        to remove XHR_RESPONSE_BLOB on all platforms.)
+
+        No new tests as no tests use this field.
+
+        * xml/XMLHttpRequest.idl: Removed responseBlob field.
+
 2012-06-25  Huang Dongsung  <[email protected]>
 
         Add static qualifier to GraphicsContext3D::extractImageData.

Modified: trunk/Source/WebCore/xml/XMLHttpRequest.idl (121160 => 121161)


--- trunk/Source/WebCore/xml/XMLHttpRequest.idl	2012-06-25 16:30:49 UTC (rev 121160)
+++ trunk/Source/WebCore/xml/XMLHttpRequest.idl	2012-06-25 16:56:21 UTC (rev 121161)
@@ -93,8 +93,6 @@
             getter raises(DOMException);
         readonly attribute Document responseXML
             getter raises(DOMException);
-        readonly attribute Blob responseBlob
-            getter raises(DOMException);
 
         attribute DOMString responseType
             setter raises(DOMException);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to