| OLD | NEW |
| 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"> | |
| 9 <link rel="import" href="chrome://bookmarks/shared_style.html"> | 8 <link rel="import" href="chrome://bookmarks/shared_style.html"> |
| 10 <link rel="import" href="chrome://bookmarks/store_client.html"> | 9 <link rel="import" href="chrome://bookmarks/store_client.html"> |
| 11 | 10 |
| 12 <dom-module id="bookmarks-item"> | 11 <dom-module id="bookmarks-item"> |
| 13 <template> | 12 <template> |
| 14 <style include="shared-style"> | 13 <style include="shared-style"> |
| 15 :host { | 14 :host { |
| 16 display: block; | 15 display: block; |
| 17 flex-direction: row; | 16 flex-direction: row; |
| 18 position: relative; | 17 position: relative; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 <div id="icon" hidden$="[[isFolder_]]"></div> | 65 <div id="icon" hidden$="[[isFolder_]]"></div> |
| 67 </div> | 66 </div> |
| 68 <div id="website-title"> | 67 <div id="website-title"> |
| 69 [[item_.title]] | 68 [[item_.title]] |
| 70 </div> | 69 </div> |
| 71 <button is="paper-icon-button-light" | 70 <button is="paper-icon-button-light" |
| 72 class="more-vert-button" | 71 class="more-vert-button" |
| 73 tabindex$="[[ironListTabIndex]]" | 72 tabindex$="[[ironListTabIndex]]" |
| 74 title="$i18n{moreActionsButtonTitle}" | 73 title="$i18n{moreActionsButtonTitle}" |
| 75 on-click="onMenuButtonClick_" | 74 on-click="onMenuButtonClick_" |
| 76 on-dblclick="onMenuButtonDblClick_" | 75 on-dblclick="onMenuButtonDblClick_"> |
| 77 on-focus="clearMouseFocus"> | |
| 78 <div></div> | 76 <div></div> |
| 79 <div></div> | 77 <div></div> |
| 80 <div></div> | 78 <div></div> |
| 81 </button> | 79 </button> |
| 82 </div> | 80 </div> |
| 83 </template> | 81 </template> |
| 84 <script src="chrome://bookmarks/item.js"></script> | 82 <script src="chrome://bookmarks/item.js"></script> |
| 85 <dom-module> | 83 <dom-module> |
| OLD | NEW |