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.

git-svn-id: svn://10.0.0.236/trunk@181486 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jruderman%hmc.edu 2005-10-03 19:34:55 +00:00
parent 1871e81671
commit a0b67e34d7

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>