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

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

Issue 880313002: webui: add [lang] attribute to <html> element on all webui pages so (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 2
3 <!-- 3 <!--
4 about:version template page 4 about:version template page
5 --> 5 -->
6 6
7 <html id="t" i18n-values="dir:textdirection;"> 7 <html id="t" i18n-values="dir:textdirection;lang:language">
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <title i18n-content="title"></title> 10 <title i18n-content="title"></title>
11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 11 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
12 <if expr="is_android"> 12 <if expr="is_android">
13 <meta name="viewport" content="width=device-width"> 13 <meta name="viewport" content="width=device-width">
14 </if> 14 </if>
15 <link rel="stylesheet" href="chrome://version/about_version.css"> 15 <link rel="stylesheet" href="chrome://version/about_version.css">
16 <if expr="is_android"> 16 <if expr="is_android">
17 <link rel="stylesheet" href="about_version_android.css"> 17 <link rel="stylesheet" href="about_version_android.css">
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 <tr id="build-id-section"> 99 <tr id="build-id-section">
100 <td class="label" i18n-content="build_id_name"></td> 100 <td class="label" i18n-content="build_id_name"></td>
101 <td class="version" i18n-content="build_id"></td> 101 <td class="version" i18n-content="build_id"></td>
102 </tr> 102 </tr>
103 </if> 103 </if>
104 </table> 104 </table>
105 </div> 105 </div>
106 <script src="chrome://resources/js/i18n_template2.js"></script> 106 <script src="chrome://resources/js/i18n_template2.js"></script>
107 </body> 107 </body>
108 </html> 108 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698