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

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

Issue 588363002: WebUI: Update some more uses of the old-style i18ntemplate/LocalStrings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: relative Created 6 years, 3 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 id="t" i18n-values="dir:textdirection;"> 2 <html id="t" i18n-values="dir:textdirection;">
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 6
7 <link rel="stylesheet" href="about_sys.css"> 7 <link rel="stylesheet" href="about_sys.css">
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://resources/js/local_strings.js"></script> 9 <script src="chrome://resources/js/i18n_template_no_process.js"></script>
10 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
11 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="about_sys.js"></script> 12 <script src="about_sys.js"></script>
11 </head> 13 </head>
12 <body> 14 <body>
13 <div id="header"> 15 <div id="header">
14 <h1 i18n-content="title"></h1> 16 <h1 i18n-content="title"></h1>
15 <p i18n-content="description"></p> 17 <p i18n-content="description"></p>
16 </div> 18 </div>
17 <div id="content"> 19 <div id="content">
18 <h2 id="tableTitle" i18n-content="tableTitle"></h2> 20 <h2 id="tableTitle" i18n-content="tableTitle"></h2>
19 <div id="anchor" jscontent="anchor"></div> 21 <div id="anchor" jscontent="anchor"></div>
(...skipping 13 matching lines...) Expand all
33 </td> 35 </td>
34 <td class="number"> 36 <td class="number">
35 <div class="stat-value" jscontent="statValue" 37 <div class="stat-value" jscontent="statValue"
36 jsvalues="id:statName + '-value'"></div> 38 jsvalues="id:statName + '-value'"></div>
37 </td> 39 </td>
38 </tr> 40 </tr>
39 </table> 41 </table>
40 </div> 42 </div>
41 </body> 43 </body>
42 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698