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

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

Issue 2955563002: MD Bookmarks: Initial screenreader accessibility improvements (Closed)
Patch Set: Privatize and rebase Created 3 years, 5 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/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
4 <link rel="import" href="chrome://resources/html/icon.html"> 4 <link rel="import" href="chrome://resources/html/icon.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
7 <link rel="import" href="chrome://bookmarks/actions.html"> 7 <link rel="import" href="chrome://bookmarks/actions.html">
8 <link rel="import" href="chrome://bookmarks/mouse_focus_behavior.html"> 8 <link rel="import" href="chrome://bookmarks/mouse_focus_behavior.html">
9 <link rel="import" href="chrome://bookmarks/shared_style.html"> 9 <link rel="import" href="chrome://bookmarks/shared_style.html">
10 <link rel="import" href="chrome://bookmarks/store_client.html"> 10 <link rel="import" href="chrome://bookmarks/store_client.html">
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 </style> 61 </style>
62 <div id="url"> 62 <div id="url">
63 <div id="icon-wrapper"> 63 <div id="icon-wrapper">
64 <iron-icon id="folder-icon" icon="cr:folder" hidden$="[[!isFolder_]]"> 64 <iron-icon id="folder-icon" icon="cr:folder" hidden$="[[!isFolder_]]">
65 </iron-icon> 65 </iron-icon>
66 <div id="icon" hidden$="[[isFolder_]]"></div> 66 <div id="icon" hidden$="[[isFolder_]]"></div>
67 </div> 67 </div>
68 <div id="website-title"> 68 <div id="website-title">
69 [[item_.title]] 69 [[item_.title]]
70 </div> 70 </div>
71 <button is="paper-icon-button-light" class="more-vert-button" 71 <button is="paper-icon-button-light"
72 on-click="onMenuButtonClick_" on-dblclick="onMenuButtonDblClick_" 72 class="more-vert-button"
73 tabindex$="[[ironListTabIndex]]" on-focus="clearMouseFocus"> 73 tabindex$="[[ironListTabIndex]]"
74 title="$i18n{moreActionsButtonTitle}"
75 on-click="onMenuButtonClick_"
76 on-dblclick="onMenuButtonDblClick_"
77 on-focus="clearMouseFocus">
74 <div></div> 78 <div></div>
75 <div></div> 79 <div></div>
76 <div></div> 80 <div></div>
77 </button> 81 </button>
78 </div> 82 </div>
79 </template> 83 </template>
80 <script src="chrome://bookmarks/item.js"></script> 84 <script src="chrome://bookmarks/item.js"></script>
81 <dom-module> 85 <dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_bookmarks/folder_node.js ('k') | chrome/browser/resources/md_bookmarks/item.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698