Title: [90307] trunk/Source/WebCore
Revision
90307
Author
[email protected]
Date
2011-07-01 18:05:59 -0700 (Fri, 01 Jul 2011)

Log Message

2011-07-01  Tim Horton  <[email protected]>

        Reviewed by Darin Adler.

        SVG data:image/svg+xml;base64 URLs inside CSS throw mime type warning
        https://bugs.webkit.org/show_bug.cgi?id=54325

        Add image/svg+xml to the list of acceptable MIME types for the Image type.

        * inspector/front-end/inspector.js:
        (WebInspector):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (90306 => 90307)


--- trunk/Source/WebCore/ChangeLog	2011-07-02 00:55:59 UTC (rev 90306)
+++ trunk/Source/WebCore/ChangeLog	2011-07-02 01:05:59 UTC (rev 90307)
@@ -2,6 +2,18 @@
 
         Reviewed by Darin Adler.
 
+        SVG data:image/svg+xml;base64 URLs inside CSS throw mime type warning
+        https://bugs.webkit.org/show_bug.cgi?id=54325
+        
+        Add image/svg+xml to the list of acceptable MIME types for the Image type.
+
+        * inspector/front-end/inspector.js:
+        (WebInspector):
+
+2011-07-01  Tim Horton  <[email protected]>
+
+        Reviewed by Darin Adler.
+
         Errors encountered within SVG documents should be reported to the console
         https://bugs.webkit.org/show_bug.cgi?id=62599
 

Modified: trunk/Source/WebCore/inspector/front-end/inspector.js (90306 => 90307)


--- trunk/Source/WebCore/inspector/front-end/inspector.js	2011-07-02 00:55:59 UTC (rev 90306)
+++ trunk/Source/WebCore/inspector/front-end/inspector.js	2011-07-02 01:05:59 UTC (rev 90307)
@@ -1601,6 +1601,7 @@
     "image/png":                   {2: true},
     "image/gif":                   {2: true},
     "image/bmp":                   {2: true},
+    "image/svg+xml":               {2: true},
     "image/vnd.microsoft.icon":    {2: true},
     "image/x-icon":                {2: true},
     "image/x-xbitmap":             {2: true},
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to