WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED INVALID
20244
Why does WebCore know about QuickTime?
https://bugs.webkit.org/show_bug.cgi?id=20244
Summary
Why does WebCore know about QuickTime?
Eric Seidel (no email)
Reported
2008-07-31 12:31:10 PDT
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.
Attachments
Add attachment
proposed patch, testcase, etc.
Alexey Proskuryakov
Comment 1
2011-02-18 10:34:09 PST
This seems quite reasonable to me - this is just platform knowledge, and not something a client needs to decide upon. Platform knowledge belongs to WebCore. Please feel free to reopen if you still find this odd.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug