Open
Bug 994787
Opened 11 years ago
Updated 2 years ago
onBlur is not triggered by Windows.Print pop-up when "Cancel" is clicked FF 28.0
Categories
(Core :: General, defect)
Tracking
()
UNCONFIRMED
People
(Reporter: Herb.Sammons, Unassigned)
Details
User Agent: Mozilla/5.0 (Windows NT 5.2; rv:28.0) Gecko/20100101 Firefox/28.0 (Beta/Release)
Build ID: 20140314220517
Steps to reproduce:
Using Javascript in FireFox 28.0, OS = Server 2003
<body onBlur = "Window_OnBlur();">
.
.
.
window.print(); // This should fire the onBlur
.
.
.
function Window_OnBlur()
{
// If the "Ok" button in the Windows Print popup window
// is clicked this routine IS called - BUT if the
// print "Cancel" button is clicked this routine is
// NOT called... AND the focus is no longer in this
// window - clicking in another window does not
// trigger this windows onBlur
//
// Works in IE 6.0 and on - use to work in FireFox
}
Actual results:
event handler not called
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•