Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: chrome/browser/resources/mobile_setup.html

Issue 5072001: Improved activation logic to cover few more edge cases. Removed button that w... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5 <title i18n-content="title"></title> 5 <title i18n-content="title"></title>
6 <style> 6 <style>
7 body { 7 body {
8 font-size: 100%; 8 font-size: 100%;
9 -webkit-user-select: none; 9 -webkit-user-select: none;
10 } 10 }
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 102
103 </style> 103 </style>
104 <script src="chrome://resources/js/cr.js"></script> 104 <script src="chrome://resources/js/cr.js"></script>
105 <script src="chrome://resources/js/local_strings.js"></script> 105 <script src="chrome://resources/js/local_strings.js"></script>
106 <script src="chrome://resources/js/util.js"></script> 106 <script src="chrome://resources/js/util.js"></script>
107 <script src="mobile_setup.js"></script> 107 <script src="mobile_setup.js"></script>
108 </head> 108 </head>
109 <body onload="mobile.MobileSetup.loadPage();" 109 <body onload="mobile.MobileSetup.loadPage();"
110 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 110 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
111 <iframe class="hidden" id="paymentForm" frameborder="0"></iframe> 111 <iframe class="hidden" id="paymentForm" frameborder="0"></iframe>
112 <div id="systemStatus" class="startup hidden"> 112 <div id="systemStatus" class="overlay hidden">
113 <div><h3 id="statusHeader"></h3></div> 113 <div class="startup">
114 <div id="errorMessage"></div> 114 <div><h3 id="statusHeader"></h3></div>
115 <canvas id="canvas" width="56" height="56"></canvas> 115 <div id="errorMessage"></div>
116 <div id="splitter"></div> 116 <canvas id="canvas" width="56" height="56"></canvas>
117 <div id="activationLogo" class="logo"></div> 117 <div id="splitter"></div>
118 <div id="activationLogo" class="logo"></div>
119 </div>
118 </div> 120 </div>
119 <div id="finalMessage" class="overlay hidden"> 121 <div id="finalMessage" class="overlay hidden">
120 <div class="box"> 122 <div class="box">
121 <div> 123 <div>
122 <div class="header"><h3 i18n-content="completed_header"></h3></div> 124 <div class="header"><h3 i18n-content="completed_header"></h3></div>
123 <div id="action" i18n-content="completed_text"></div> 125 <div id="action" i18n-content="completed_text"></div>
124 </div> 126 </div>
125 <div id="finalLogo" class="logo"></div> 127 <div id="finalLogo" class="logo"></div>
126 </div> 128 </div>
127 </div> 129 </div>
128 <div class="testing-only">
129 <button id="cheat">Fake activation!</button>
130 </div>
131 </body> 130 </body>
132 </html> 131 </html>
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/dom_ui/mobile_setup_ui.cc ('k') | chrome/browser/resources/mobile_setup.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698