BhupeshReddy - 2005-03-29

Hi, 

I am facing problems with the javascript onUnload() method. Is the onUnload() method supproted??

my onUnload() method does something like

if (window.opener && !window.opener.closed) {
window.opener.location = window.opener.location.href ="<%= request.getContextPath() %>/logout_close.jsp";
window.close();
}

but it is not working in the HttpUnit test. 

When i test it manually in my IE6.0 it works fine.