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

Side by Side Diff: chrome/browser/resources/supervised_user_block_interstitial.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 <html i18n-values="dir:textdirection"> 2 <html i18n-values="dir:textdirection;lang:language">
3 <head> 3 <head>
4 <meta name="viewport" content="width=device-width"> 4 <meta name="viewport" content="width=device-width">
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title i18n-content="blockPageTitle"></title> 6 <title i18n-content="blockPageTitle"></title>
7 <link rel="stylesheet" href="../../../ui/webui/resources/css/widgets.css"> 7 <link rel="stylesheet" href="../../../ui/webui/resources/css/widgets.css">
8 <link rel="stylesheet" href="supervised_user_block_interstitial.css"> 8 <link rel="stylesheet" href="supervised_user_block_interstitial.css">
9 <script src="../../../ui/webui/resources/js/cr.js"></script> 9 <script src="../../../ui/webui/resources/js/cr.js"></script>
10 <script src="../../../ui/webui/resources/js/util.js"></script> 10 <script src="../../../ui/webui/resources/js/util.js"></script>
11 <script src="supervised_user_block_interstitial.js"></script> 11 <script src="supervised_user_block_interstitial.js"></script>
12 </head> 12 </head>
(...skipping 22 matching lines...) Expand all
35 </button> 35 </button>
36 <button id="request-access-button" class="custom-appearance" 36 <button id="request-access-button" class="custom-appearance"
37 i18n-content="requestAccessButton"> 37 i18n-content="requestAccessButton">
38 </button> 38 </button>
39 </div> 39 </div>
40 </div> 40 </div>
41 </div> 41 </div>
42 </div> 42 </div>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698