[Webkit-unassigned] [Bug 18675] blur/focus events on body aren't fired when the focus moves between tabs in the same window

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Dec 9 23:25:08 PST 2008


https://bugs.webkit.org/show_bug.cgi?id=18675





------- Comment #2 from lbrt21 at yahoo.com.ph  2008-12-09 23:25 PDT -------
Hi,

This bug is also present in Safari 3.2.1 with Mac OS X 10.5.5 when tabbing
using trigger window.onblur

The following HTML is the test code used here.

<html>
  <head>
    <title>test</title>
<script type="text/javascript">

window.onblur = onBodyBlur;
window.onfocus = onBodyFocus;

function onBodyFocus() {
  document.title = 'onBodyFocus';
}

function onBodyBlur() {
  document.title = 'onBodyBlur';
}
</script>
  </head>
    <body>
  </body>
</html>


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list