diff options
-rw-r--r-- | webkit/tools/test_shell/webwidget_host_gtk.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/test_shell/webwidget_host_gtk.cc b/webkit/tools/test_shell/webwidget_host_gtk.cc index 0b1439b..9c8b90b 100644 --- a/webkit/tools/test_shell/webwidget_host_gtk.cc +++ b/webkit/tools/test_shell/webwidget_host_gtk.cc @@ -212,7 +212,7 @@ class WebWidgetHostGtkWidget { // other's focus when running in parallel. if (!TestShell::layout_test_mode()) host->webwidget()->setFocus(true); - return FALSE; + return TRUE; } // Keyboard focus left. @@ -223,7 +223,7 @@ class WebWidgetHostGtkWidget { // other's focus when running in parallel. if (!TestShell::layout_test_mode()) host->webwidget()->setFocus(false); - return FALSE; + return TRUE; } // Mouse button down. |