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

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

Issue 889983002: Revert of Update SSL/malware/net error interstitial design (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 <html i18n-values="dir:textdirection;lang:language"> 2 <html i18n-values="dir:textdirection;.style.fontSize:fontsize;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 <div id="details" class="hidden"> 34 <!-- Outer and inner divs are needed both for margins and sizing. -->
35 <div jsselect="summary"> 35 <div id="help-box-outer" class="hidden">
36 <span jsvalues=".innerHTML:msg"></span> 36 <div id="details">
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>
37 </div> 47 </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>
45 </div> 48 </div>
46 </div> 49 </div>
47 <div id="sub-frame-error"> 50 <div id="sub-frame-error">
48 <!-- Show details when hovering over the icon, in case the details are 51 <!-- Show details when hovering over the icon, in case the details are
49 hidden because they're too large. --> 52 hidden because they're too large. -->
50 <img class="icon" jseval="updateIconClass(this.classList, iconClass)" 53 <img class="icon" jseval="updateIconClass(this.classList, iconClass)"
51 jsvalues=".title:errorDetails"> 54 jsvalues=".title:errorDetails">
52 <div id="sub-frame-error-details" jsvalues=".innerHTML:errorDetails"></div> 55 <div id="sub-frame-error-details" jsvalues=".innerHTML:errorDetails"></div>
53 </div> 56 </div>
54 <div id="offline-resources"> 57 <div id="offline-resources">
(...skipping 16 matching lines...) Expand all
71 <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">
72 </div> 75 </div>
73 <template id="audio-resources"> 76 <template id="audio-resources">
74 <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>
75 <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>
76 <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>
77 </template> 80 </template>
78 </div> 81 </div>
79 </body> 82 </body>
80 </html> 83 </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