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

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

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. Created 6 years 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;.style.fontSize:fontsize"> 2 <html i18n-values="dir:textdirection;.style.fontSize:fontsize">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0, 5 <meta name="viewport" content="width=device-width, initial-scale=1.0,
6 maximum-scale=1.0, user-scalable=no"> 6 maximum-scale=1.0, user-scalable=no">
7 <title i18n-content="title"></title> 7 <title i18n-content="title"></title>
8 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
8 <link rel="stylesheet" href="../security_warnings/interstitial_v2.css"> 9 <link rel="stylesheet" href="../security_warnings/interstitial_v2.css">
9 <link rel="stylesheet" href="../../../renderer/resources/neterror.css"> 10 <link rel="stylesheet" href="../../../renderer/resources/neterror.css">
10 <script src="../../../../ui/webui/resources/js/util.js"></script> 11 <script src="../../../../ui/webui/resources/js/util.js"></script>
11 <script src="neterror.js"></script> 12 <script src="neterror.js"></script>
12 <script src="../../../renderer/resources/offline.js"></script> 13 <script src="../../../renderer/resources/offline.js"></script>
13 </head> 14 </head>
14 <body id="t" i18n-values=".style.fontFamily:fontfamily"> 15 <body id="t">
15 <div id="main-frame-error" class="interstitial-wrapper"> 16 <div id="main-frame-error" class="interstitial-wrapper">
16 <img class="icon" 17 <img class="icon"
17 jseval="updateIconClass(this.classList, iconClass)"> 18 jseval="updateIconClass(this.classList, iconClass)">
18 <div id="main-message"> 19 <div id="main-message">
19 <h1 i18n-content="heading"></h1> 20 <h1 i18n-content="heading"></h1>
20 <p i18n-values=".innerHTML:primaryParagraph"></p> 21 <p i18n-values=".innerHTML:primaryParagraph"></p>
21 <div id="buttons" class="nav-wrapper suggested-right"> 22 <div id="buttons" class="nav-wrapper suggested-right">
22 <div id="control-buttons"> 23 <div id="control-buttons">
23 <button id="reload-button" onclick="location = this.url" 24 <button id="reload-button" onclick="location = this.url"
24 jsselect="reload" jsvalues=".url:reloadUrl" 25 jsselect="reload" jsvalues=".url:reloadUrl"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 <img id="2x-restart" src="../../../renderer/resources/default_200_percent/ offline/200-restart.png"> 74 <img id="2x-restart" src="../../../renderer/resources/default_200_percent/ offline/200-restart.png">
74 </div> 75 </div>
75 <template id="audio-resources"> 76 <template id="audio-resources">
76 <audio id="offline-sound-press" src="../../../renderer/resources/sounds/bu tton-press.mp3"></audio> 77 <audio id="offline-sound-press" src="../../../renderer/resources/sounds/bu tton-press.mp3"></audio>
77 <audio id="offline-sound-hit" src="../../../renderer/resources/sounds/hit. mp3"></audio> 78 <audio id="offline-sound-hit" src="../../../renderer/resources/sounds/hit. mp3"></audio>
78 <audio id="offline-sound-reached" src="../../../renderer/resources/sounds/ score-reached.mp3"></audio> 79 <audio id="offline-sound-reached" src="../../../renderer/resources/sounds/ score-reached.mp3"></audio>
79 </template> 80 </template>
80 </div> 81 </div>
81 </body> 82 </body>
82 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698