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

Side by Side Diff: chrome/browser/resources/chromeos/offline_load.html

Issue 14311003: Fix font on offline load page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months 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
« no previous file with comments | « chrome/browser/chromeos/offline/offline_load_page.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html id="template_root" i18n-values="dir:textdirection"> 2 <html id="template_root" i18n-values="dir:textdirection">
3 <head> 3 <head>
4 <title i18n-content="title"> 4 <title i18n-content="title">
5 </title> 5 </title>
6 <style> 6 <style>
7 html { 7 html {
8 height: 100%; 8 height: 100%;
9 } 9 }
10 body { 10 body {
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 document.addEventListener('DOMContentLoaded', function() { 118 document.addEventListener('DOMContentLoaded', function() {
119 var timeToWait = localStrings.getString('time_to_wait'); 119 var timeToWait = localStrings.getString('time_to_wait');
120 var showActivation = localStrings.getString('show_activation') == 'true'; 120 var showActivation = localStrings.getString('show_activation') == 'true';
121 window.setTimeout(showPage, timeToWait); 121 window.setTimeout(showPage, timeToWait);
122 var lower = document.getElementById('lower'); 122 var lower = document.getElementById('lower');
123 if (showActivation) 123 if (showActivation)
124 lower.style.display = 'block'; 124 lower.style.display = 'block';
125 }); 125 });
126 </script> 126 </script>
127 127
128 <body oncontextmenu="return false;"> 128 <body oncontextmenu="return false;"
129 i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
129 <div id="mainview"> 130 <div id="mainview">
130 <div id="left"> 131 <div id="left">
131 <div class="upper"> 132 <div class="upper">
132 <div id="logo-container"> 133 <div id="logo-container">
133 <img i18n-values=".src:icon"> 134 <img i18n-values=".src:icon">
134 <div id="product-name" i18n-content="product_name"></div> 135 <div id="product-name" i18n-content="product_name"></div>
135 </div> 136 </div>
136 <div id="heading" i18n-content="heading"></div> 137 <div id="heading" i18n-content="heading"></div>
137 <div id="message" i18n-content="msg"></div> 138 <div id="message" i18n-content="msg"></div>
138 <div id="button"> 139 <div id="button">
139 <button onclick="sendCommand('open_network_settings')" 140 <button onclick="sendCommand('open_network_settings')"
140 i18n-content="network_settings"></button> 141 i18n-content="network_settings"></button>
141 </div> 142 </div>
142 </div> 143 </div>
143 <div id="lower" class="hidden"> 144 <div id="lower" class="hidden">
144 <div class="activation_message"> 145 <div class="activation_message">
145 <div class="splitter"></div> 146 <div class="splitter"></div>
146 <iframe src="chrome-extension://iadeocfgjdjdmpenejdbfeaocpbikmab/activ ation_in_offline.html" 147 <iframe src="chrome-extension://iadeocfgjdjdmpenejdbfeaocpbikmab/activ ation_in_offline.html"
147 id="carrierPage" frameborder="0"></iframe> 148 id="carrierPage" frameborder="0"></iframe>
148 </div> 149 </div>
149 </div> 150 </div>
150 </div> 151 </div>
151 <div id="right"> 152 <div id="right">
152 <img src="images/broken_robot.png"> 153 <img src="images/broken_robot.png">
153 </div> 154 </div>
154 </div> 155 </div>
155 </body> 156 </body>
156 </html> 157 </html>
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/offline/offline_load_page.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698