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