Changeset 50793 in webkit


Ignore:
Timestamp:
Nov 11, 2009 12:36:58 AM (14 years ago)
Author:
eric@webkit.org
Message:

2009-11-11 Philippe Normand <pnormand@igalia.com>

Reviewed by Xan Lopez.

https://bugs.webkit.org/show_bug.cgi?id=30221
[GTK] fails to load media embedded in iframe element

  • platform/gtk/Skipped: Unskip fixed tests.

2009-11-11 Philippe Normand <pnormand@igalia.com>

Reviewed by Xan Lopez.

https://bugs.webkit.org/show_bug.cgi?id=30221
[GTK] fails to load media embedded in iframe element

The FrameLoader can show Media if the audio/video support is
enabled at compile time.

  • WebCoreSupport/FrameLoaderClientGtk.cpp: (WebKit::FrameLoaderClient::canShowMIMEType):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r50788 r50793  
     12009-11-11  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=30221
     6        [GTK] fails to load media embedded in iframe element
     7
     8        * platform/gtk/Skipped: Unskip fixed tests.
     9
    1102009-11-10  Roland Steiner  <rolandsteiner@chromium.org>
    211
  • trunk/LayoutTests/platform/gtk/Skipped

    r50778 r50793  
    35793579media/video-controls-zoomed.html
    35803580media/video-size-intrinsic-scale.html
    3581 # See https://bugs.webkit.org/show_bug.cgi?id=30221
    3582 media/video-document-types.html
    3583 media/video-click-dblckick-standalone.html
    35843581# Missing API from https://bugs.webkit.org/show_bug.cgi?id=24001
    35853582media/restore-from-page-cache.html
  • trunk/WebKit/gtk/ChangeLog

    r50724 r50793  
     12009-11-11  Philippe Normand  <pnormand@igalia.com>
     2
     3        Reviewed by Xan Lopez.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=30221
     6        [GTK] fails to load media embedded in iframe element
     7
     8        The FrameLoader can show Media if the audio/video support is
     9        enabled at compile time.
     10
     11        * WebCoreSupport/FrameLoaderClientGtk.cpp:
     12        (WebKit::FrameLoaderClient::canShowMIMEType):
     13
    1142009-11-10  Martin Robinson  <martin.james.robinson@gmail.com>
    215
  • trunk/WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp

    r50225 r50793  
    770770bool FrameLoaderClient::canShowMIMEType(const String& type) const
    771771{
    772     return MIMETypeRegistry::isSupportedImageMIMEType(type) || MIMETypeRegistry::isSupportedNonImageMIMEType(type) ||
    773         PluginDatabase::installedPlugins()->isMIMETypeRegistered(type);
     772    return (MIMETypeRegistry::isSupportedImageMIMEType(type)
     773            || MIMETypeRegistry::isSupportedNonImageMIMEType(type)
     774            || MIMETypeRegistry::isSupportedMediaMIMEType(type)
     775            || PluginDatabase::installedPlugins()->isMIMETypeRegistered(type));
    774776}
    775777
Note: See TracChangeset for help on using the changeset viewer.