cannotConnect.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <html xmlns="http://www.w3.org/1999/xhtml" hasBrowserHandlers="true">
  2. <head>
  3. <title>无法连接到服务器</title>
  4. <link rel="stylesheet" href="aboutNetError.css" type="text/css" media="all" />
  5. <!-- If the location of the favicon is changed here, the FAVICON_ERRORPAGE_URL symbol in
  6. toolkit/components/places/src/nsFaviconService.h should be updated. -->
  7. <link rel="icon" type="image/png" id="favicon" href="chrome://storage/errors/warning-16.png" />
  8. </head>
  9. <body dir="ltr">
  10. <!-- PAGE CONTAINER (for styling purposes only) -->
  11. <div id="errorPageContainer">
  12. <!-- Error Title -->
  13. <div id="errorTitle">
  14. <h1 id="errorTitleText">无法连接到服务器</h1>
  15. </div>
  16. <!-- LONG CONTENT (the section most likely to require scrolling) -->
  17. <div id="errorLongContent">
  18. <!-- Short Description -->
  19. <div id="errorShortDesc">
  20. <p id="errorShortDescText">无法连接到服务器。您可能已断开与internet的连接,或者网站可能已脱机。</p>
  21. </div>
  22. <!-- Long Description (Note: See netError.dtd for used XHTML tags) -->
  23. <div id="errorLongDesc">
  24. <ul>
  25. <li>确保您的internet连接正常。</li>
  26. <li>检查URL是否正确。</li>
  27. </ul>
  28. </div>
  29. <!-- Override section - For ssl errors only. Removed on init for other
  30. error types. -->
  31. </div>
  32. <!-- Retry Button -->
  33. <!--<button id="errorTryAgain" autocomplete="off" onclick="host.refreshActiveTab();" autofocus="true">Try Again</button>-->
  34. </div>
  35. </body>
  36. </html>