https://bugs.webkit.org/show_bug.cgi?id=105815
Patch by KwangYong Choi <ky0.choi@samsung.com> on 2013-01-01
Reviewed by Laszlo Gombos.
.:
ENABLE_MHTML is now ON for EFL.
* Source/cmake/OptionsEfl.cmake:
Source/WebCore:
Add application/x-mimearchive type to archive mime types.
Add mht and mhtml to extension map.
No new tests. Existing layout tests pass.
* loader/archive/ArchiveFactory.cpp:
(WebCore::archiveMIMETypes):
* platform/efl/MIMETypeRegistryEfl.cpp:
(WebCore):
Source/WebKit2:
Add missing include directory for ENABLE_MHTML.
* CMakeLists.txt:
Tools:
Enable MHTML feature for EFL port by default.
* Scripts/webkitperl/FeatureList.pm:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@138605
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2013-01-01 KwangYong Choi <ky0.choi@samsung.com>
+
+ [EFL] Enable MHTML feature
+ https://bugs.webkit.org/show_bug.cgi?id=105815
+
+ Reviewed by Laszlo Gombos.
+
+ ENABLE_MHTML is now ON for EFL.
+
+ * Source/cmake/OptionsEfl.cmake:
+
2012-12-31 Kondapally Kalyan <kalyan.kondapally@intel.com>
[EFL][WebGL] Add compile time support for GLES2.
+2013-01-01 KwangYong Choi <ky0.choi@samsung.com>
+
+ [EFL] Enable MHTML feature
+ https://bugs.webkit.org/show_bug.cgi?id=105815
+
+ Reviewed by Laszlo Gombos.
+
+ Add application/x-mimearchive type to archive mime types.
+ Add mht and mhtml to extension map.
+
+ No new tests. Existing layout tests pass.
+
+ * loader/archive/ArchiveFactory.cpp:
+ (WebCore::archiveMIMETypes):
+ * platform/efl/MIMETypeRegistryEfl.cpp:
+ (WebCore):
+
2013-01-01 Mike West <mkwst@chromium.org>
seamless iframes don't inherit styles when srcdoc is used
mimeTypes.set("multipart/related", archiveFactoryCreate<MHTMLArchive>);
#if PLATFORM(GTK)
mimeTypes.set("message/rfc822", archiveFactoryCreate<MHTMLArchive>);
-#elif PLATFORM(QT)
+#elif PLATFORM(QT) || PLATFORM(EFL)
mimeTypes.set("application/x-mimearchive", archiveFactoryCreate<MHTMLArchive>);
#endif
#endif
{ "jpeg", "image/jpeg" },
{ "jpg", "image/jpeg" },
{ "js", "application/x-javascript" },
+ { "mht", "application/x-mimearchive" },
+ { "mhtml", "application/x-mimearchive" },
{ "mng", "video/x-mng" },
{ "pbm", "image/x-portable-bitmap" },
{ "pgm", "image/x-portable-graymap" },
"${WEBCORE_DIR}/html/track"
"${WEBCORE_DIR}/inspector"
"${WEBCORE_DIR}/loader"
+ "${WEBCORE_DIR}/loader/archive"
"${WEBCORE_DIR}/loader/icon"
"${WEBCORE_DIR}/loader/cache"
"${WEBCORE_DIR}/page"
+2013-01-01 KwangYong Choi <ky0.choi@samsung.com>
+
+ [EFL] Enable MHTML feature
+ https://bugs.webkit.org/show_bug.cgi?id=105815
+
+ Reviewed by Laszlo Gombos.
+
+ Add missing include directory for ENABLE_MHTML.
+
+ * CMakeLists.txt:
+
2012-12-30 Sam Weinig <sam@webkit.org>
Add supplementability for WebContext
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_LLINT ON)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_CAPTURE ON)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEMORY_SAMPLER ON)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MHTML ON)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MICRODATA ON)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_NAVIGATOR_CONTENT_UTILS ON)
WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_NETSCAPE_PLUGIN_API ON)
+2013-01-01 KwangYong Choi <ky0.choi@samsung.com>
+
+ [EFL] Enable MHTML feature
+ https://bugs.webkit.org/show_bug.cgi?id=105815
+
+ Reviewed by Laszlo Gombos.
+
+ Enable MHTML feature for EFL port by default.
+
+ * Scripts/webkitperl/FeatureList.pm:
+
2013-01-01 Alan Cutter <alancutter@chromium.org>
sheriff-bot should know who the gardeners/sheriffs are
define => "ENABLE_METER_ELEMENT", default => !isAppleWinWebKit(), value => \$meterTagSupport },
{ option => "mhtml", desc => "Toggle MHTML support",
- define => "ENABLE_MHTML", default => isGtk(), value => \$mhtmlSupport },
+ define => "ENABLE_MHTML", default => (isGtk() || isEfl()), value => \$mhtmlSupport },
{ option => "microdata", desc => "Toggle Microdata support",
define => "ENABLE_MICRODATA", default => (isEfl() || isBlackBerry() || isGtk()), value => \$microdataSupport },