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

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

Issue 668983004: Add <a is="action-link">, a web component extension of <a> for in-page actions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 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
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | chrome/browser/resources/downloads/downloads.html » ('j') | 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;"> 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="chrome://resources/css/widgets.css"> 6 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
7 <link rel="stylesheet" href="crashes.css"> 7 <link rel="stylesheet" href="crashes.css">
8 <script src="chrome://resources/js/action_link.js"></script>
8 <script src="chrome://resources/js/load_time_data.js"></script> 9 <script src="chrome://resources/js/load_time_data.js"></script>
9 <script src="chrome://resources/js/util.js"></script> 10 <script src="chrome://resources/js/util.js"></script>
10 <script src="chrome://crashes/strings.js"></script> 11 <script src="chrome://crashes/strings.js"></script>
11 <script src="chrome://crashes/crashes.js"></script> 12 <script src="chrome://crashes/crashes.js"></script>
12 </head> 13 </head>
13 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
14 <header><h1 i18n-content="crashesTitle"></h1></header> 15 <header><h1 i18n-content="crashesTitle"></h1></header>
15 <div id="crashUploadStatus" hidden> 16 <div id="crashUploadStatus" hidden>
16 <button id="uploadCrashes" class="link-button" 17 <a is="action-link" id="uploadCrashes"
17 i18n-content="uploadCrashesLinkText"> 18 i18n-content="uploadCrashesLinkText"></a>
18 </div> 19 </div>
19 <div id="enabledMode"> 20 <div id="enabledMode">
20 <h2 id="countBanner"></h2> 21 <h2 id="countBanner"></h2>
21 <div id="crashList"></div> 22 <div id="crashList"></div>
22 <p id="noCrashes" i18n-content="noCrashesMessage" hidden></p> 23 <p id="noCrashes" i18n-content="noCrashesMessage" hidden></p>
23 </div> 24 </div>
24 <div id="disabledMode" hidden> 25 <div id="disabledMode" hidden>
25 <h2 i18n-content="disabledHeader"></h2> 26 <h2 i18n-content="disabledHeader"></h2>
26 <p i18n-values=".innerHTML:disabledMessage"></p> 27 <p i18n-values=".innerHTML:disabledMessage"></p>
27 </div> 28 </div>
28 <script src="chrome://resources/js/i18n_template2.js"></script> 29 <script src="chrome://resources/js/i18n_template2.js"></script>
29 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 30 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
30 </body> 31 </body>
31 </html> 32 </html>
OLDNEW
« no previous file with comments | « chrome/app/google_chrome_strings.grd ('k') | chrome/browser/resources/downloads/downloads.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698