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

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

Issue 639823008: Include load_time_data.js automatically with GetI18nTemplateHtml (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix comment Created 6 years, 2 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection"> 2 <html 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 {
11 -webkit-user-select: none; 11 -webkit-user-select: none;
12 background: white; 12 background: white;
13 color: #000; 13 color: #000;
14 display: -webkit-box; 14 display: -webkit-box;
15 font-family: arial, sans-serif; 15 font-family: arial, sans-serif;
16 height: 100%; 16 height: 100%;
17 margin: 0; 17 margin: 0;
18 padding: 0; 18 padding: 0;
19 visibility: hidden; 19 visibility: hidden;
20 width: 100%; 20 width: 100%;
21 } 21 }
22 22
23 .header { 23 .header {
24 font-family: Sans-serif; 24 font-family: Sans-serif;
25 padding: 3px; 25 padding: 3px;
26 width: 80%; 26 width: 80%;
27 } 27 }
28 </style> 28 </style>
29 <script src="../../../../ui/webui/resources/js/load_time_data.js"></script>
30 29
31 <script> 30 <script>
32 31
33 function sendCommand(cmd) { 32 function sendCommand(cmd) {
34 window.domAutomationController.setAutomationId(1); 33 window.domAutomationController.setAutomationId(1);
35 window.domAutomationController.send(cmd); 34 window.domAutomationController.send(cmd);
36 } 35 }
37 36
38 // Show the interstitial page. 37 // Show the interstitial page.
39 function showPage() { 38 function showPage() {
(...skipping 11 matching lines...) Expand all
51 window.setTimeout(showPage, showDelayTime); 50 window.setTimeout(showPage, showDelayTime);
52 window.setTimeout(forceLoad, totalWaitTime); 51 window.setTimeout(forceLoad, totalWaitTime);
53 }); 52 });
54 </script> 53 </script>
55 54
56 <body oncontextmenu="return false;"> 55 <body oncontextmenu="return false;">
57 <div class="header" i18n-content="heading" id="mgs"> 56 <div class="header" i18n-content="heading" id="mgs">
58 </div> 57 </div>
59 </body> 58 </body>
60 </html> 59 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/about_sys/about_sys.html ('k') | chrome/browser/resources/chromeos/mobile_setup.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698