[Webkit-unassigned] [Bug 20244] New: Why does WebCore know about QuickTime?

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 31 12:31:11 PDT 2008


https://bugs.webkit.org/show_bug.cgi?id=20244

           Summary: Why does WebCore know about QuickTime?
           Product: WebKit
           Version: 526+ (Nightly build)
          Platform: Macintosh
        OS/Version: Mac OS X 10.5
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Plug-ins
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: eric at webkit.org
                CC: sam at webkit.org


This seems like an odd thing to have in WebCore:

    // Allow other plug-ins to win over QuickTime because if the user has
installed a plug-in that
    // can handle TIFF (which QuickTime can also handle) they probably intended
to override QT.
    if (m_frame->page() && (mimeType == "image/tiff" || mimeType == "image/tif"
|| mimeType == "image/x-tiff")) {
        String pluginName =
m_frame->page()->pluginData()->pluginNameForMimeType(mimeType);
        if (!pluginName.isEmpty() && !pluginName.contains("QuickTime", false)) 
            return true;
    }

Probably should just be pushed up into the default Client call.


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list