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

Side by Side Diff: chrome/browser/resources/quota_internals/main.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: cros 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 Copyright (c) 2011 The Chromium Authors. All rights reserved. 3 Copyright (c) 2011 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <html i18n-values="dir:textdirection;"> 7 <html i18n-values="dir:textdirection;lang:language">
8 <title>Quota Internals</title> 8 <title>Quota Internals</title>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
11 <link rel="stylesheet" href="main.css"> 11 <link rel="stylesheet" href="main.css">
12 12
13 <script src="chrome://resources/js/util.js"></script> 13 <script src="chrome://resources/js/util.js"></script>
14 <script src="chrome://resources/js/cr.js"></script> 14 <script src="chrome://resources/js/cr.js"></script>
15 <script src="chrome://resources/js/cr/event_target.js"></script> 15 <script src="chrome://resources/js/cr/event_target.js"></script>
16 <script src="chrome://resources/js/load_time_data.js"></script> 16 <script src="chrome://resources/js/load_time_data.js"></script>
17 17
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 <!-- Data --> 70 <!-- Data -->
71 <button id="dump-button">Dump</button> 71 <button id="dump-button">Dump</button>
72 <pre id="dump-field"></pre> 72 <pre id="dump-field"></pre>
73 </tabpanel> 73 </tabpanel>
74 </tabpanels> 74 </tabpanels>
75 </tabbox> 75 </tabbox>
76 76
77 <script src="chrome://resources/js/i18n_template2.js"></script> 77 <script src="chrome://resources/js/i18n_template2.js"></script>
78 </body> 78 </body>
79 </html> 79 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698