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

Side by Side Diff: chrome/browser/resources/crashes.html

Issue 26536002: chrome://crashes: add a link on CrOS for triggering crash uploading (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="crashesTitle"></title> 5 <title i18n-content="crashesTitle"></title>
6 <link rel="stylesheet" href="crashes.css"> 6 <link rel="stylesheet" href="crashes.css">
7 <script src="chrome://resources/js/load_time_data.js"></script> 7 <script src="chrome://resources/js/load_time_data.js"></script>
8 <script src="chrome://resources/js/util.js"></script> 8 <script src="chrome://resources/js/util.js"></script>
9 <script src="chrome://crashes/strings.js"></script> 9 <script src="chrome://crashes/strings.js"></script>
10 <script src="chrome://crashes/crashes.js"></script> 10 <script src="chrome://crashes/crashes.js"></script>
11 </head> 11 </head>
12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 12 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
13 <header><h1 i18n-content="crashesTitle"></h1></header> 13 <header><h1 i18n-content="crashesTitle"></h1></header>
14 <div id="crashUploadStatus" hidden>
15 <a id="uploadCrashesLink" href="#upload_crashes"><span i18n-content="uploadC rashesLinkText"></span></a>
Lei Zhang 2013/10/08 20:08:57 Probably should be a <button> with the appropriate
vapier 2013/10/08 20:16:24 it is a valid <a>, it just links to an anchor poin
16 </div>
14 <div id="enabledMode"> 17 <div id="enabledMode">
15 <h2 id="countBanner"></h2> 18 <h2 id="countBanner"></h2>
16 <div id="crashList"></div> 19 <div id="crashList"></div>
17 <p id="noCrashes" i18n-content="noCrashesMessage" hidden></p> 20 <p id="noCrashes" i18n-content="noCrashesMessage" hidden></p>
18 </div> 21 </div>
19 <div id="disabledMode" hidden> 22 <div id="disabledMode" hidden>
20 <h2 i18n-content="disabledHeader"></h2> 23 <h2 i18n-content="disabledHeader"></h2>
21 <p i18n-values=".innerHTML:disabledMessage"></p> 24 <p i18n-values=".innerHTML:disabledMessage"></p>
22 </div> 25 </div>
23 <script src="chrome://resources/js/i18n_template2.js"></script> 26 <script src="chrome://resources/js/i18n_template2.js"></script>
24 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 27 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
25 </body> 28 </body>
26 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698