error.html 801 B

12345678910111213141516171819202122
  1. <html>
  2. <head>
  3. <title>${code} ${reason}</title>
  4. <script language="javascript"><!--
  5. // Make websites look better by blanking out error pages in iframes.
  6. // frameElement can be null or throw an error (IE) due to cross-origin
  7. // policy, so blank out anyway if frameElement is missing, even though
  8. // we can't tell what kind of frame we're in (iframe or frameset).
  9. var co;
  10. if (window.screenLeft != null) // IE4 lacks try-catch
  11. eval('try { var x = window.frameElement; } catch (e) { co = true; }');
  12. if (co || ((window.self != window.top) && (!window.frameElement || (window.frameElement.tagName != "FRAME"))))
  13. document.location.href = "about:blank";
  14. --></script>
  15. </head>
  16. <body>
  17. <h1>${reason}</h1>
  18. <p>${description}</p>
  19. <hr>
  20. <i>${signature}</i>
  21. </body>
  22. </html>