1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/base/content/sync/progress.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,55 @@ 1.4 +<?xml version="1.0" encoding="UTF-8"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 + 1.9 +<!DOCTYPE html [ 1.10 + <!ENTITY % htmlDTD 1.11 + PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" 1.12 + "DTD/xhtml1-strict.dtd"> 1.13 + %htmlDTD; 1.14 + <!ENTITY % syncProgressDTD 1.15 + SYSTEM "chrome://browser/locale/syncProgress.dtd"> 1.16 + %syncProgressDTD; 1.17 + <!ENTITY % syncSetupDTD 1.18 + SYSTEM "chrome://browser/locale/syncSetup.dtd"> 1.19 + %syncSetupDTD; 1.20 + <!ENTITY % globalDTD 1.21 + SYSTEM "chrome://global/locale/global.dtd"> 1.22 + %globalDTD; 1.23 +]> 1.24 + 1.25 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.26 + <head> 1.27 + <title>&syncProgress.pageTitle;</title> 1.28 + 1.29 + <link rel="stylesheet" type="text/css" media="all" 1.30 + href="chrome://browser/skin/syncProgress.css"/> 1.31 + 1.32 + <link rel="icon" type="image/png" id="favicon" 1.33 + href="chrome://browser/skin/sync-16.png"/> 1.34 + 1.35 + <script type="text/javascript;version=1.8" 1.36 + src="chrome://browser/content/sync/progress.js"/> 1.37 + </head> 1.38 + <body onload="onLoad(event)" onunload="onUnload(event)" dir="&locale.dir;"> 1.39 + <title>&setup.successPage.title;</title> 1.40 + <div id="floatingBox" class="main-content"> 1.41 + <div id="title"> 1.42 + <h1>&setup.successPage.title;</h1> 1.43 + </div> 1.44 + <div id="successLogo"> 1.45 + <img id="brandSyncLogo" src="chrome://browser/skin/sync-128.png" alt="&syncProgress.logoAltText;" /> 1.46 + </div> 1.47 + <div id="loadingText"> 1.48 + <p id="blurb">&syncProgress.textBlurb; </p> 1.49 + </div> 1.50 + <div id="progressBar"> 1.51 + <progress id="uploadProgressBar" value="0"/> 1.52 + </div> 1.53 + <div id="bottomRow"> 1.54 + <button id="closeButton" onclick="closeTab()">&syncProgress.closeButton; </button> 1.55 + </div> 1.56 + </div> 1.57 + </body> 1.58 +</html>