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

Side by Side Diff: components/neterror/resources/neterror.html

Issue 2009673004: Fix flash of bullet point on refresh of neterror page (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;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="../../../components/security_interstitials/core/b rowser/resources/interstitial_v2.css"> 8 <link rel="stylesheet" href="../../../components/security_interstitials/core/b rowser/resources/interstitial_v2.css">
9 <link rel="stylesheet" href="neterror.css"> 9 <link rel="stylesheet" href="neterror.css">
10 <script src="../../../components/security_interstitials/core/browser/resources /interstitial_v2_mobile.js"></script> 10 <script src="../../../components/security_interstitials/core/browser/resources /interstitial_v2_mobile.js"></script>
11 <script src="neterror.js"></script> 11 <script src="neterror.js"></script>
12 <script src="offline.js"></script> 12 <script src="offline.js"></script>
13 </head> 13 </head>
14 <body id="t" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize" > 14 <body id="t" i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize" >
15 <div id="main-frame-error" class="interstitial-wrapper"> 15 <div id="main-frame-error" class="interstitial-wrapper">
16 <div id="main-content"> 16 <div id="main-content">
17 <div class="icon" 17 <div class="icon"
18 jseval="updateIconClass(this.classList, iconClass)"></div> 18 jseval="updateIconClass(this.classList, iconClass)"></div>
19 <div id="main-message"> 19 <div id="main-message">
20 <h1 jsselect="heading" jsvalues=".innerHTML:msg"></h1> 20 <h1 jsselect="heading" jsvalues=".innerHTML:msg"></h1>
21 <p jsselect="summary" jsvalues=".innerHTML:msg"></p> 21 <p jsselect="summary" jsvalues=".innerHTML:msg"></p>
22 <div id="suggestions-list" 22 <div id="suggestions-list" style="display:none"
23 jsdisplay="(suggestionsSummaryList && suggestionsSummaryList.length) "> 23 jsdisplay="(suggestionsSummaryList && suggestionsSummaryList.length) ">
24 <p jsvalues=".innerHTML:suggestionsSummaryListHeader"></p> 24 <p jsvalues=".innerHTML:suggestionsSummaryListHeader"></p>
25 <ul jsvalues=".className:suggestionsSummaryList.length == 1 ? 'single- suggestion' : ''"> 25 <ul jsvalues=".className:suggestionsSummaryList.length == 1 ? 'single- suggestion' : ''">
26 <li jsselect="suggestionsSummaryList" jsvalues=".innerHTML:summary"> </li> 26 <li jsselect="suggestionsSummaryList" jsvalues=".innerHTML:summary"> </li>
27 </ul> 27 </ul>
28 </div> 28 </div>
29 <div class="error-code" jscontent="errorCode"></div> 29 <div class="error-code" jscontent="errorCode"></div>
30 <div id="diagnose-frame" class="hidden"></div> 30 <div id="diagnose-frame" class="hidden"></div>
31 </div> 31 </div>
32 </div> 32 </div>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 <img id="offline-resources-1x" src="default_100_percent/offline/100-offline- sprite.png"> 76 <img id="offline-resources-1x" src="default_100_percent/offline/100-offline- sprite.png">
77 <img id="offline-resources-2x" src="default_200_percent/offline/200-offline- sprite.png"> 77 <img id="offline-resources-2x" src="default_200_percent/offline/200-offline- sprite.png">
78 <template id="audio-resources"> 78 <template id="audio-resources">
79 <audio id="offline-sound-press" src="sounds/button-press.mp3"></audio> 79 <audio id="offline-sound-press" src="sounds/button-press.mp3"></audio>
80 <audio id="offline-sound-hit" src="sounds/hit.mp3"></audio> 80 <audio id="offline-sound-hit" src="sounds/hit.mp3"></audio>
81 <audio id="offline-sound-reached" src="sounds/score-reached.mp3"></audio> 81 <audio id="offline-sound-reached" src="sounds/score-reached.mp3"></audio>
82 </template> 82 </template>
83 </div> 83 </div>
84 </body> 84 </body>
85 </html> 85 </html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698