Changeset 87244 in webkit
- Timestamp:
- May 24, 2011, 5:48:00 PM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r87239 r87244 1 2011-05-24 Andy Estes <aestes@apple.com> 2 3 Reviewed by Geoffrey Garen. 4 5 REGRESSION (r70748): WebKit cannot play QuickTime movies on Mac OS X Wiki Server pages 6 https://bugs.webkit.org/show_bug.cgi?id=61229 7 8 This site-specific hack maintains compatibility with Mac OS X Wiki Server, 9 which embeds QuickTime movies using an object tag containing QuickTime's 10 ActiveX classid. Treat this classid as valid only if OS X Server's unique 11 'generator' meta tag is present. Only apply this quirk if there is no 12 fallback content, which ensures the quirk will disable itself if Wiki 13 Server is updated to generate an alternate embed tag as fallback content. 14 15 * html/HTMLObjectElement.cpp: 16 (WebCore::HTMLObjectElement::shouldAllowQuickTimeClassIdQuirk): Return 17 true if site-specific quirks are enabled, the object element has no 18 fallback content, the classid attribute matches QuickTime's classid and 19 the document has a 'generator' meta tag matching Mac OS X Web Services 20 Server's unique generator string. 21 (WebCore::HTMLObjectElement::hasValidClassId): Call 22 shouldAllowQuickTimeClassIdQuirk() 23 * html/HTMLObjectElement.h: 24 1 25 2011-05-24 Nate Chapin <japhet@chromium.org> 2 26 -
trunk/Source/WebCore/html/HTMLObjectElement.cpp
r87125 r87244 33 33 #include "HTMLFormElement.h" 34 34 #include "HTMLImageLoader.h" 35 #include "HTMLMetaElement.h" 35 36 #include "HTMLNames.h" 36 37 #include "HTMLParamElement.h" 37 38 #include "HTMLParserIdioms.h" 38 39 #include "MIMETypeRegistry.h" 40 #include "NodeList.h" 41 #include "Page.h" 39 42 #include "RenderEmbeddedObject.h" 40 43 #include "RenderImage.h" 41 44 #include "RenderWidget.h" 42 45 #include "ScriptEventListener.h" 46 #include "Settings.h" 43 47 #include "Text.h" 44 48 … … 236 240 } 237 241 242 bool HTMLObjectElement::shouldAllowQuickTimeClassIdQuirk() 243 { 244 // This site-specific hack maintains compatibility with Mac OS X Wiki Server, 245 // which embeds QuickTime movies using an object tag containing QuickTime's 246 // ActiveX classid. Treat this classid as valid only if OS X Server's unique 247 // 'generator' meta tag is present. Only apply this quirk if there is no 248 // fallback content, which ensures the quirk will disable itself if Wiki 249 // Server is updated to generate an alternate embed tag as fallback content. 250 if (!document()->page() 251 || !document()->page()->settings()->needsSiteSpecificQuirks() 252 || hasFallbackContent() 253 || !equalIgnoringCase(classId(), "clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B")) 254 return false; 255 256 RefPtr<NodeList> metaElements = document()->getElementsByTagName(HTMLNames::metaTag.localName()); 257 unsigned length = metaElements->length(); 258 for (unsigned i = 0; i < length; ++i) { 259 ASSERT(metaElements->item(i)->isHTMLElement()); 260 HTMLMetaElement* metaElement = static_cast<HTMLMetaElement*>(metaElements->item(i)); 261 if (equalIgnoringCase(metaElement->name(), "generator") && metaElement->content().startsWith("Mac OS X Server Web Services Server", false)) 262 return true; 263 } 264 265 return false; 266 } 267 238 268 bool HTMLObjectElement::hasValidClassId() 239 269 { … … 244 274 245 275 if (MIMETypeRegistry::isJavaAppletMIMEType(serviceType()) && classId().startsWith("java:", false)) 276 return true; 277 278 if (shouldAllowQuickTimeClassIdQuirk()) 246 279 return true; 247 280 -
trunk/Source/WebCore/html/HTMLObjectElement.h
r87125 r87244 96 96 void parametersForPlugin(Vector<String>& paramNames, Vector<String>& paramValues, String& url, String& serviceType); 97 97 98 bool shouldAllowQuickTimeClassIdQuirk(); 98 99 bool hasValidClassId(); 99 100
Note:
See TracChangeset
for help on using the changeset viewer.