Backing out my fix for bug 301471 (XUL error pages should have 'Try Again' button focused) because it caused a regression, bug 310774 (Unable to select most menu items using keyboard when error page is shown). a=asa for backout.

This commit is contained in:
jruderman%hmc.edu 2005-10-03 19:32:48 +00:00
parent 36778b8ea0
commit 34f40c0fa0

View File

@ -135,16 +135,6 @@
// remove undisplayed errors to avoid bug 39098
var errContainer = document.getElementById("errorContainer");
errContainer.parentNode.removeChild(errContainer);
// Focus the Try Again button. We can't just do this inline because of
// bug 232004. We can't use onload (see comment below). Since the
// <script> that calls initPage is the last DOM node in the document,
// a setTimeout of 0 should work.
setTimeout(function(){
var tryAgainButton = document.getElementById("errorTryAgain");
if (tryAgainButton)
tryAgainButton.focus();
}, 0);
}
]]></script>
</head>