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

Side by Side Diff: chrome/browser/resources/md_bookmarks/list.html

Issue 2885353002: MD Bookmarks: Prevent keyboard shortcuts when the toolbar/dialogs are focused (Closed)
Patch Set: Add a test Created 3 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 2
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-list/iron-list.htm l">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm l">
6 <link rel="import" href="chrome://bookmarks/command_manager.html">
6 <link rel="import" href="chrome://bookmarks/item.html"> 7 <link rel="import" href="chrome://bookmarks/item.html">
7 <link rel="import" href="chrome://bookmarks/shared_style.html"> 8 <link rel="import" href="chrome://bookmarks/shared_style.html">
8 <link rel="import" href="chrome://bookmarks/store_client.html"> 9 <link rel="import" href="chrome://bookmarks/store_client.html">
9 <link rel="import" href="chrome://bookmarks/util.html"> 10 <link rel="import" href="chrome://bookmarks/util.html">
10 11
11 <dom-module id="bookmarks-list"> 12 <dom-module id="bookmarks-list">
12 <template> 13 <template>
13 <style include="shared-style"> 14 <style include="shared-style">
14 :host { 15 :host {
15 overflow-y: auto; 16 overflow-y: auto;
(...skipping 27 matching lines...) Expand all
43 </bookmarks-item> 44 </bookmarks-item>
44 </template> 45 </template>
45 </iron-list> 46 </iron-list>
46 <div id="message" class="centered-message" 47 <div id="message" class="centered-message"
47 hidden$="[[!isEmptyList_(displayedList_.length)]]"> 48 hidden$="[[!isEmptyList_(displayedList_.length)]]">
48 [[emptyListMessage_(searchTerm_)]] 49 [[emptyListMessage_(searchTerm_)]]
49 </div> 50 </div>
50 </template> 51 </template>
51 <script src="chrome://bookmarks/list.js"></script> 52 <script src="chrome://bookmarks/list.js"></script>
52 </dom-module> 53 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/folder_node.js ('k') | chrome/browser/resources/md_bookmarks/list.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698