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.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp b/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp
index 3352fe678..6bf963542 100644
--- a/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp
+++ b/Tools/DumpRenderTree/efl/LayoutTestControllerEfl.cpp
@@ -765,17 +765,18 @@ void LayoutTestController::setAsynchronousSpellCheckingEnabled(bool)
void LayoutTestController::showWebInspector()
{
- notImplemented();
+ ewk_view_web_inspector_show(browser->mainView());
+ browser->waitInspectorLoadFinished();
}
void LayoutTestController::closeWebInspector()
{
- notImplemented();
+ ewk_view_web_inspector_close(browser->mainView());
}
-void LayoutTestController::evaluateInWebInspector(long, JSStringRef)
+void LayoutTestController::evaluateInWebInspector(long callId, JSStringRef script)
{
- notImplemented();
+ DumpRenderTreeSupportEfl::evaluateInWebInspector(browser->mainView(), callId, String(script->ustring().impl()));
}
void LayoutTestController::evaluateScriptInIsolatedWorldAndReturnValue(unsigned, JSObjectRef, JSStringRef)