Changeset 51921 in webkit


Ignore:
Timestamp:
Dec 9, 2009 2:11:19 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-12-09 Philippe Normand <pnormand@igalia.com>

Reviewed by Eric Carlson.

Ogg mimetypes are incorrect
https://bugs.webkit.org/show_bug.cgi?id=27113

The ogg extension is handled by audio/ogg instead of
application/ogg. See
http://wiki.xiph.org/MIME_Types_and_File_Extensions

  • platform/MIMETypeRegistry.cpp: (WebCore::TypeExtensionPair::):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r51920 r51921  
     12009-12-09  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Eric Carlson.
     4
     5        Ogg mimetypes are incorrect
     6        https://bugs.webkit.org/show_bug.cgi?id=27113
     7
     8        The ogg extension is handled by audio/ogg instead of
     9        application/ogg. See
     10        http://wiki.xiph.org/MIME_Types_and_File_Extensions
     11
     12        * platform/MIMETypeRegistry.cpp:
     13        (WebCore::TypeExtensionPair::):
     14
    1152009-12-09  Sam Weinig  <sam@webkit.org>
    216
  • trunk/WebCore/platform/MIMETypeRegistry.cpp

    r48280 r51921  
    236236   
    237237        // Ogg
    238         { "application/ogg", "ogg" },
    239238        { "application/ogg", "ogx" },
     239        { "audio/ogg", "ogg" },
    240240        { "audio/ogg", "oga" },
    241241        { "video/ogg", "ogv" },
Note: See TracChangeset for help on using the changeset viewer.