Title: [116341] trunk
- Revision
- 116341
- Author
- [email protected]
- Date
- 2012-05-07 13:10:51 -0700 (Mon, 07 May 2012)
Log Message
[EFL] Page caching permission from EFL's FrameLoaderClient
https://bugs.webkit.org/show_bug.cgi?id=85620
Patch by Mikhail Pozdnyakov <[email protected]> on 2012-05-07
Reviewed by Gustavo Noronha Silva.
Source/WebKit/efl:
FrameLoaderClientEfl::canCachePage() returns true.
* WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::canCachePage):
LayoutTests:
Unskip bug-related testcases.
* platform/efl/Skipped:
Modified Paths
Diff
Modified: trunk/LayoutTests/ChangeLog (116340 => 116341)
--- trunk/LayoutTests/ChangeLog 2012-05-07 20:06:32 UTC (rev 116340)
+++ trunk/LayoutTests/ChangeLog 2012-05-07 20:10:51 UTC (rev 116341)
@@ -1,3 +1,14 @@
+2012-05-07 Mikhail Pozdnyakov <[email protected]>
+
+ [EFL] Page caching permission from EFL's FrameLoaderClient
+ https://bugs.webkit.org/show_bug.cgi?id=85620
+
+ Reviewed by Gustavo Noronha Silva.
+
+ Unskip bug-related testcases.
+
+ * platform/efl/Skipped:
+
2012-05-07 Andy Estes <[email protected]>
Update mac-wk2 baselines.
Modified: trunk/LayoutTests/platform/efl/Skipped (116340 => 116341)
--- trunk/LayoutTests/platform/efl/Skipped 2012-05-07 20:06:32 UTC (rev 116340)
+++ trunk/LayoutTests/platform/efl/Skipped 2012-05-07 20:10:51 UTC (rev 116341)
@@ -1038,24 +1038,13 @@
fast/text/midword-break-after-breakable-char.html
fast/canvas/webgl
fast/dom/Window/timer-resume-on-navigation-back.html
-fast/events/pagehide-timeout.html
-fast/events/pageshow-pagehide-on-back-cached-with-frames.html
-fast/events/pageshow-pagehide-on-back-cached.html
fast/events/tab-focus-anchor.html
-fast/harness/page-cache-crash-on-data-urls.html
-fast/harness/use-page-cache.html
fast/history/back-forward-reset-after-error-handling.html
-fast/history/timed-refresh-in-cached-frame.html
-fast/images/animated-gif-restored-from-bfcache.html
-fast/media/media-query-list-04.html
-fast/overflow/horizontal-scroll-after-back.html
fast/repaint/no-caret-repaint-in-non-content-editable-element.html
-fast/viewport/viewport-128.html
http/tests/canvas/webgl/origin-clean-conformance.html
http/tests/inspector/network/ping.html
http/tests/navigation/go-back-to-error-page.html
loader/go-back-to-different-window-size.html
-media/restore-from-page-cache.html
fast/spatial-navigation/snav-container-white-space.html
fast/spatial-navigation/snav-fully-aligned-horizontally.html
fast/spatial-navigation/snav-iframe-no-scrollable-content.html
@@ -1493,7 +1482,6 @@
fast/events/platform-wheelevent-paging-y-in-scrolling-page.html
fast/events/pointer-events-2.html
fast/events/remove-target-with-shadow-in-drag.html
-fast/events/suspend-timers.html
fast/files/blob-builder-crash.html
fast/files/blob-slice-overflow.html
fast/files/blob-slice-test.html
@@ -1879,7 +1867,6 @@
http/tests/misc/iframe-invalid-source-crash.html
http/tests/misc/submit-post-keygen.html
http/tests/navigation/forward-and-cancel.html
-http/tests/navigation/https-in-page-cache.html
http/tests/navigation/new-window-redirect-history.html
http/tests/navigation/no-referrer-reset.html
http/tests/navigation/no-referrer-target-blank.html
Modified: trunk/Source/WebKit/efl/ChangeLog (116340 => 116341)
--- trunk/Source/WebKit/efl/ChangeLog 2012-05-07 20:06:32 UTC (rev 116340)
+++ trunk/Source/WebKit/efl/ChangeLog 2012-05-07 20:10:51 UTC (rev 116341)
@@ -1,3 +1,15 @@
+2012-05-07 Mikhail Pozdnyakov <[email protected]>
+
+ [EFL] Page caching permission from EFL's FrameLoaderClient
+ https://bugs.webkit.org/show_bug.cgi?id=85620
+
+ Reviewed by Gustavo Noronha Silva.
+
+ FrameLoaderClientEfl::canCachePage() returns true.
+
+ * WebCoreSupport/FrameLoaderClientEfl.cpp:
+ (WebCore::FrameLoaderClientEfl::canCachePage):
+
2012-05-07 Grzegorz Czajkowski <[email protected]>
[EFL] Icon database path may be NULL when a new path was set.
Modified: trunk/Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp (116340 => 116341)
--- trunk/Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp 2012-05-07 20:06:32 UTC (rev 116340)
+++ trunk/Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.cpp 2012-05-07 20:10:51 UTC (rev 116341)
@@ -884,7 +884,7 @@
bool FrameLoaderClientEfl::canCachePage() const
{
- return false;
+ return true;
}
Frame* FrameLoaderClientEfl::dispatchCreatePage(const NavigationAction&)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes