Changeset 44000
- Timestamp:
- 05/21/09 16:22:24 (10 months ago)
- Location:
- trunk/WebCore
- Files:
-
- 2 modified
-
ChangeLog (modified) (1 diff)
-
platform/MIMETypeRegistry.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r43993 r44000 1 2009-05-21 Dan Bernstein <mitz@apple.com> 2 3 Rubber-stamped by Mark Rowe. 4 5 - fix https://bugs.webkit.org/show_bug.cgi?id=25947 6 Assertion failure in FrameLoader::transitionToCommitted on launch in 7 Safari with r43985 8 9 Rolled out r43985. 10 11 * platform/MIMETypeRegistry.cpp: 12 (WebCore::initializeSupportedNonImageMimeTypes): 13 (WebCore::MIMETypeRegistry::isSupportedNonImageMIMEType): 14 1 15 2009-05-21 Sam Weinig <sam@webkit.org> 2 16 -
trunk/WebCore/platform/MIMETypeRegistry.cpp
r43979 r44000 191 191 static const char* types[] = { 192 192 #if ENABLE(WML) 193 "text/vnd.wap.wml", 193 194 "application/vnd.wap.wmlc", 194 195 #endif 196 "text/html", 197 "text/xml", 198 "text/xsl", 199 "text/plain", 200 "text/", 195 201 "application/xml", 196 202 "application/xhtml+xml", … … 384 390 if (mimeType.isEmpty()) 385 391 return false; 386 if (mimeType.startsWith("text/"))387 return true;388 392 if (!supportedNonImageMIMETypes) 389 393 initializeMIMETypeRegistry();