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.

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

mercurial