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

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

Issue 1325853006: MD Downloads: wrap some <paper-buttons>s in <template is="dom-if"> (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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;lang:language">
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/action_link.js"></script>
10 <link rel="import" href="chrome://resources/html/assert.html"> 10 <link rel="import" href="chrome://resources/html/assert.html">
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 <img class="icon" alt=""> 59 <img class="icon" alt="">
60 <div class="title-area"> 60 <div class="title-area">
61 <a is="action-link" class="name" focus-type="name"></a> 61 <a is="action-link" class="name" focus-type="name"></a>
62 <span class="name"></span> 62 <span class="name"></span>
63 <span class="status"></span> 63 <span class="status"></span>
64 </div> 64 </div>
65 <div class="url-container"> 65 <div class="url-container">
66 <a class="src-url" target="_blank" focus-type="url"></a> 66 <a class="src-url" target="_blank" focus-type="url"></a>
67 </div> 67 </div>
68 <div class="controls"> 68 <div class="controls">
69 <a is="action-link" class="show" focus-type="show" 69 <a is="action-link" class="show-in-folder"
Dan Beam 2015/09/05 01:00:44 i'll do this separately
70 focus-type="show-in-folder"
70 i18n-content="controlShowInFolder"></a> 71 i18n-content="controlShowInFolder"></a>
71 <a class="retry" focus-type="retry" i18n-content="controlRetry" 72 <a class="retry" focus-type="retry" i18n-content="controlRetry"
72 download></a> 73 download></a>
73 <a is="action-link" class="pause" focus-type="pause" 74 <a is="action-link" class="pause" focus-type="pause"
74 i18n-content="controlPause"></a> 75 i18n-content="controlPause"></a>
75 <a is="action-link" class="resume" focus-type="resume" 76 <a is="action-link" class="resume" focus-type="resume"
76 i18n-content="controlResume"></a> 77 i18n-content="controlResume"></a>
77 <a is="action-link" class="remove" focus-type="remove" 78 <a is="action-link" class="remove" focus-type="remove"
78 i18n-content="controlRemoveFromList"></a> 79 i18n-content="controlRemoveFromList"></a>
79 <a is="action-link" class="cancel" focus-type="cancel" 80 <a is="action-link" class="cancel" focus-type="cancel"
(...skipping 15 matching lines...) Expand all
95 i18n-content="dangerSave"></button> 96 i18n-content="dangerSave"></button>
96 <button class="discard" focus-type="discard" 97 <button class="discard" focus-type="discard"
97 i18n-content="dangerDiscard"></button> 98 i18n-content="dangerDiscard"></button>
98 </div> 99 </div>
99 </div> 100 </div>
100 </div> 101 </div>
101 <script src="chrome://downloads/strings.js"></script> 102 <script src="chrome://downloads/strings.js"></script>
102 <script src="chrome://resources/js/i18n_template.js"></script> 103 <script src="chrome://resources/js/i18n_template.js"></script>
103 </body> 104 </body>
104 </html> 105 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/downloads/focus_row.js » ('j') | chrome/browser/resources/md_downloads/item.html » ('J')

Powered by Google App Engine
This is Rietveld 408576698