browser/base/content/sync/progress.xhtml

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     3    - License, v. 2.0. If a copy of the MPL was not distributed with this
     4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     6 <!DOCTYPE html [
     7   <!ENTITY % htmlDTD
     8     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     9     "DTD/xhtml1-strict.dtd">
    10   %htmlDTD;
    11   <!ENTITY % syncProgressDTD
    12     SYSTEM "chrome://browser/locale/syncProgress.dtd">
    13     %syncProgressDTD;
    14   <!ENTITY % syncSetupDTD
    15     SYSTEM "chrome://browser/locale/syncSetup.dtd">
    16     %syncSetupDTD;
    17   <!ENTITY % globalDTD 
    18     SYSTEM "chrome://global/locale/global.dtd">
    19     %globalDTD;
    20 ]>
    22 <html xmlns="http://www.w3.org/1999/xhtml">
    23   <head>
    24     <title>&syncProgress.pageTitle;</title>
    26     <link rel="stylesheet" type="text/css" media="all"
    27           href="chrome://browser/skin/syncProgress.css"/>
    29     <link rel="icon" type="image/png" id="favicon"
    30           href="chrome://browser/skin/sync-16.png"/>
    32     <script type="text/javascript;version=1.8"
    33             src="chrome://browser/content/sync/progress.js"/>
    34   </head>
    35   <body onload="onLoad(event)" onunload="onUnload(event)" dir="&locale.dir;">
    36     <title>&setup.successPage.title;</title>
    37     <div id="floatingBox" class="main-content">
    38       <div id="title">
    39         <h1>&setup.successPage.title;</h1>
    40       </div>
    41       <div id="successLogo">
    42         <img id="brandSyncLogo" src="chrome://browser/skin/sync-128.png" alt="&syncProgress.logoAltText;" />
    43       </div>
    44       <div id="loadingText">
    45         <p id="blurb">&syncProgress.textBlurb; </p>
    46       </div>
    47       <div id="progressBar">
    48         <progress id="uploadProgressBar" value="0"/>
    49       </div>
    50       <div id="bottomRow">
    51         <button id="closeButton" onclick="closeTab()">&syncProgress.closeButton; </button>
    52       </div>
    53     </div>
    54   </body>
    55 </html>

mercurial