Reviewed by Tim H.
Fixes: http://bugs.webkit.org/show_bug.cgi?id=11512
Bug 11512: [Drosera] Scrolling via keyboard breaks after clicking in function popup.
* Drosera/debugger.js: blur() the function popup when we're done with it.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17600
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-11-04 David Smith <catfish.man@gmail.com>
+
+ Reviewed by Tim H.
+
+ Fixes: http://bugs.webkit.org/show_bug.cgi?id=11512
+ Bug 11512: [Drosera] Scrolling via keyboard breaks after clicking in function popup.
+
+ * Drosera/debugger.js: blur() the function popup when we're done with it.
+
2006-11-04 Mark Rowe <bdash@webkit.org>
Reviewed by Darin.
var currentFunction = selectedFunction.value;
var currentFunctionElement = sourcesFrame.document.getElementById(currentFunction);
+ functionSelect.blur();
sourcesFrame.focus();
selection.setBaseAndExtent(currentFunctionElement, 0, currentFunctionElement, 1);
sourcesFrame.location.hash = "#function-" + selectedFunction.value;