summaryrefslogtreecommitdiff
path: root/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp')
-rw-r--r--Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp b/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp
index bf986e1a8..71891dcb4 100644
--- a/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp
+++ b/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp
@@ -786,7 +786,11 @@ void LayoutTestController::evaluateScriptInIsolatedWorld(unsigned worldID, JSObj
void LayoutTestController::removeAllVisitedLinks()
{
- notImplemented();
+ Ewk_History* history = ewk_view_history_get(browser->mainView());
+ if (!history)
+ return;
+
+ ewk_history_clear(history);
}
bool LayoutTestController::callShouldCloseOnWebView()