diff options
Diffstat (limited to 'Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp')
| -rw-r--r-- | Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp b/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp index 6e23dd301..09d7d4033 100644 --- a/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp +++ b/Tools/DumpRenderTree/efl/DumpRenderTreeChrome.cpp @@ -292,6 +292,8 @@ void DumpRenderTreeChrome::resetDefaultsToConsistentValues() ewk_history_clear(ewk_view_history_get(mainView())); + ewk_frame_feed_focus_in(mainFrame()); + ewk_cookies_clear(); ewk_cookies_policy_set(EWK_COOKIE_JAR_ACCEPT_NO_THIRD_PARTY); @@ -311,6 +313,7 @@ void DumpRenderTreeChrome::resetDefaultsToConsistentValues() DumpRenderTreeSupportEfl::setLoadsSiteIconsIgnoringImageLoadingSetting(mainView(), false); DumpRenderTreeSupportEfl::setSerializeHTTPLoads(false); DumpRenderTreeSupportEfl::setMinimumLogicalFontSize(mainView(), 9); + DumpRenderTreeSupportEfl::setCSSRegionsEnabled(mainView(), true); // Reset capacities for the memory cache for dead objects. static const unsigned cacheTotalCapacity = 8192 * 1024; @@ -513,7 +516,7 @@ void DumpRenderTreeChrome::onFrameTitleChanged(void*, Evas_Object* frame, void* } if (!done && gTestRunner->dumpTitleChanges()) - printf("TITLE CHANGED: %s\n", (titleText && titleText->string) ? titleText->string : ""); + printf("TITLE CHANGED: '%s'\n", (titleText && titleText->string) ? titleText->string : ""); if (!done && gTestRunner->dumpHistoryDelegateCallbacks()) printf("WebView updated the title for history URL \"%s\" to \"%s\".\n", ewk_frame_uri_get(frame) |
