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

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

Issue 882973003: Update SSL/malware/net error interstitial design (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge updates 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;.style.fontSize:fontsize;lang:language"> 2 <html i18n-values="dir:textdirection;lang:language">
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="chrome://resources/css/text_defaults.css">
9 <link rel="stylesheet" href="../security_warnings/interstitial_v2.css"> 9 <link rel="stylesheet" href="../security_warnings/interstitial_v2.css">
10 <link rel="stylesheet" href="../../../renderer/resources/neterror.css"> 10 <link rel="stylesheet" href="../../../renderer/resources/neterror.css">
11 <script src="../../../../ui/webui/resources/js/util.js"></script> 11 <script src="../../../../ui/webui/resources/js/util.js"></script>
12 <script src="neterror.js"></script> 12 <script src="neterror.js"></script>
(...skipping 11 matching lines...) Expand all
24 <button id="reload-button" onclick="location = this.url" 24 <button id="reload-button" onclick="location = this.url"
25 jsselect="reload" jsvalues=".url:reloadUrl" 25 jsselect="reload" jsvalues=".url:reloadUrl"
26 jscontent="msg"></button> 26 jscontent="msg"></button>
27 </div> 27 </div>
28 <button id="details-button" class="text-button small-link" 28 <button id="details-button" class="text-button small-link"
29 onclick="toggleHelpBox()" jscontent="details" 29 onclick="toggleHelpBox()" jscontent="details"
30 jsvalues=".detailsText:details; .hideDetailsText:hideDetails;" 30 jsvalues=".detailsText:details; .hideDetailsText:hideDetails;"
31 jsdisplay="details"></button> 31 jsdisplay="details"></button>
32 </div> 32 </div>
33 </div> 33 </div>
34 <!-- Outer and inner divs are needed both for margins and sizing. --> 34 <div id="details" class="hidden">
35 <div id="help-box-outer" class="hidden"> 35 <div jsselect="summary">
36 <div id="details"> 36 <span jsvalues=".innerHTML:msg"></span>
37 <div jsselect="summary">
38 <span jsvalues=".innerHTML:msg"></span>
39 </div>
40 <div class="suggestions" jsselect="suggestions">
41 <div class="suggestion-header" jsvalues=".innerHTML:header"></div>
42 <div class="suggestion-body" jsvalues=".innerHTML:body"></div>
43 </div>
44 <button id="diagnose-button" onclick="diagnoseErrors()"
45 jscontent="diagnose" jsdisplay="diagnose"></button>
46 <div class="error-code" jscontent="errorCode"></div>
47 </div> 37 </div>
38 <div class="suggestions" jsselect="suggestions">
39 <div class="suggestion-header" jsvalues=".innerHTML:header"></div>
40 <div class="suggestion-body" jsvalues=".innerHTML:body"></div>
41 </div>
42 <button id="diagnose-button" onclick="diagnoseErrors()"
43 jscontent="diagnose" jsdisplay="diagnose"></button>
44 <div class="error-code" jscontent="errorCode"></div>
48 </div> 45 </div>
49 </div> 46 </div>
50 <div id="sub-frame-error"> 47 <div id="sub-frame-error">
51 <!-- Show details when hovering over the icon, in case the details are 48 <!-- Show details when hovering over the icon, in case the details are
52 hidden because they're too large. --> 49 hidden because they're too large. -->
53 <img class="icon" jseval="updateIconClass(this.classList, iconClass)" 50 <img class="icon" jseval="updateIconClass(this.classList, iconClass)"
54 jsvalues=".title:errorDetails"> 51 jsvalues=".title:errorDetails">
55 <div id="sub-frame-error-details" jsvalues=".innerHTML:errorDetails"></div> 52 <div id="sub-frame-error-details" jsvalues=".innerHTML:errorDetails"></div>
56 </div> 53 </div>
57 <div id="offline-resources"> 54 <div id="offline-resources">
(...skipping 16 matching lines...) Expand all
74 <img id="2x-restart" src="../../../renderer/resources/default_200_percent/ offline/200-restart.png"> 71 <img id="2x-restart" src="../../../renderer/resources/default_200_percent/ offline/200-restart.png">
75 </div> 72 </div>
76 <template id="audio-resources"> 73 <template id="audio-resources">
77 <audio id="offline-sound-press" src="../../../renderer/resources/sounds/bu tton-press.mp3"></audio> 74 <audio id="offline-sound-press" src="../../../renderer/resources/sounds/bu tton-press.mp3"></audio>
78 <audio id="offline-sound-hit" src="../../../renderer/resources/sounds/hit. mp3"></audio> 75 <audio id="offline-sound-hit" src="../../../renderer/resources/sounds/hit. mp3"></audio>
79 <audio id="offline-sound-reached" src="../../../renderer/resources/sounds/ score-reached.mp3"></audio> 76 <audio id="offline-sound-reached" src="../../../renderer/resources/sounds/ score-reached.mp3"></audio>
80 </template> 77 </template>
81 </div> 78 </div>
82 </body> 79 </body>
83 </html> 80 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/neterror.js ('k') | chrome/browser/resources/security_warnings/interstitial_v2.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698