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

Side by Side Diff: chrome/browser/resources/downloads/downloads.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/browser/resources/crashes.html ('k') | chrome/browser/resources/downloads/downloads.js » ('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="title"></title> 5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
7 <!-- This has to come after chrome_shared.css --> 7 <!-- This has to come after chrome_shared.css -->
8 <link rel="stylesheet" href="downloads.css"> 8 <link rel="stylesheet" href="downloads.css">
9 <script src="chrome://resources/js/action_link.js"></script>
9 <script src="chrome://resources/js/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="chrome://resources/js/util.js"></script> 11 <script src="chrome://resources/js/util.js"></script>
11 <script src="chrome://downloads/downloads.js"></script> 12 <script src="chrome://downloads/downloads.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> 15 <header>
15 <h2 i18n-content="downloads"></h2> 16 <h2 i18n-content="downloads"></h2>
16 <input id="term" type="search" tabindex=1 17 <input id="term" type="search" tabindex=1
17 i18n-values="placeholder:searchbutton" autofocus incremental> 18 i18n-values="placeholder:searchbutton" autofocus incremental>
18 </header> 19 </header>
19 <div class="main"> 20 <div class="main">
20 <div class="summary" id="downloads-summary"> 21 <div class="summary" id="downloads-summary">
21 <span id="downloads-summary-text"></span> 22 <span id="downloads-summary-text"></span>
22 <span id="downloads-actions"> 23 <span id="downloads-actions">
23 <a id="open-downloads-folder" href="#" 24 <a is="action-link" id="open-downloads-folder"
24 i18n-content="open_downloads_folder"> 25 i18n-content="open_downloads_folder"></a>
25 </a>
26 <span id="clear-all-holder"></span> 26 <span id="clear-all-holder"></span>
27 </span> 27 </span>
28 </div> 28 </div>
29 <div id="downloads-display"></div> 29 <div id="downloads-display"></div>
30 </div> 30 </div>
31 <script src="chrome://downloads/strings.js"></script> 31 <script src="chrome://downloads/strings.js"></script>
32 <script src="chrome://resources/js/i18n_template2.js"></script> 32 <script src="chrome://resources/js/i18n_template2.js"></script>
33 </body> 33 </body>
34 </html> 34 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/crashes.html ('k') | chrome/browser/resources/downloads/downloads.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698