Title: [144403] trunk
Revision
144403
Author
[email protected]
Date
2013-02-28 17:51:26 -0800 (Thu, 28 Feb 2013)

Log Message

[EFL] Focus problem in inspector/extensions/extensions-panel.html
https://bugs.webkit.org/show_bug.cgi?id=97077

Patch by Seokju Kwon <[email protected]> on 2013-02-28
Reviewed by Laszlo Gombos.

Source/WebKit/efl:

* WebCoreSupport/InspectorClientEfl.cpp:
(WebCore::InspectorFrontendClientEfl::bringToFront): Set focus on inspectorView.

LayoutTests:

Remove inspector/extensions/extensions-panel.html from TestExpectations.

* platform/efl-wk1/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (144402 => 144403)


--- trunk/LayoutTests/ChangeLog	2013-03-01 01:50:08 UTC (rev 144402)
+++ trunk/LayoutTests/ChangeLog	2013-03-01 01:51:26 UTC (rev 144403)
@@ -1,3 +1,14 @@
+2013-02-28  Seokju Kwon  <[email protected]>
+
+        [EFL] Focus problem in inspector/extensions/extensions-panel.html
+        https://bugs.webkit.org/show_bug.cgi?id=97077
+
+        Reviewed by Laszlo Gombos.
+
+        Remove inspector/extensions/extensions-panel.html from TestExpectations.
+
+        * platform/efl-wk1/TestExpectations:
+
 2013-02-28  Levi Weintraub  <[email protected]>
 
         Stale FrameSelection in removed iframe causes crash

Modified: trunk/LayoutTests/platform/efl-wk1/TestExpectations (144402 => 144403)


--- trunk/LayoutTests/platform/efl-wk1/TestExpectations	2013-03-01 01:50:08 UTC (rev 144402)
+++ trunk/LayoutTests/platform/efl-wk1/TestExpectations	2013-03-01 01:51:26 UTC (rev 144403)
@@ -262,9 +262,6 @@
 webkit.org/b/87972 fast/loader/policy-delegate-action-hit-test-zoomed.html [ Failure ]
 webkit.org/b/87972 fast/encoding/mailto-always-utf-8.html [ Failure ]
 
-# Frame does not get focus as expected
-webkit.org/b/97077 inspector/extensions/extensions-panel.html [ Failure ]
-
 # Fails after r133322
 webkit.org/b/98523 fast/images/repaint-subrect-grid.html [ Failure ]
 

Modified: trunk/Source/WebKit/efl/ChangeLog (144402 => 144403)


--- trunk/Source/WebKit/efl/ChangeLog	2013-03-01 01:50:08 UTC (rev 144402)
+++ trunk/Source/WebKit/efl/ChangeLog	2013-03-01 01:51:26 UTC (rev 144403)
@@ -1,3 +1,13 @@
+2013-02-28  Seokju Kwon  <[email protected]>
+
+        [EFL] Focus problem in inspector/extensions/extensions-panel.html
+        https://bugs.webkit.org/show_bug.cgi?id=97077
+
+        Reviewed by Laszlo Gombos.
+
+        * WebCoreSupport/InspectorClientEfl.cpp:
+        (WebCore::InspectorFrontendClientEfl::bringToFront): Set focus on inspectorView.
+
 2013-02-23  Jason Anderssen  <[email protected]>
 
         Move setAutofilled from TestRunner to WebCore

Modified: trunk/Source/WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp (144402 => 144403)


--- trunk/Source/WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp	2013-03-01 01:50:08 UTC (rev 144402)
+++ trunk/Source/WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp	2013-03-01 01:51:26 UTC (rev 144403)
@@ -175,7 +175,7 @@
 
 void InspectorFrontendClientEfl::bringToFront()
 {
-    notImplemented();
+    evas_object_focus_set(m_inspectorView, true);
 }
 
 void InspectorFrontendClientEfl::closeWindow()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to