| OLD | NEW |
| 1 <!DOCTYPE html><html i18n-values="dir:textdirection;lang:language"><head><!-- | 1 <!DOCTYPE html><html i18n-values="dir:textdirection;lang:language"><head><!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. |
| 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
| 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 9 --><!-- | 9 --><!-- |
| 10 @license | 10 @license |
| (...skipping 3241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3252 <template> | 3252 <template> |
| 3253 <div id="title"> | 3253 <div id="title"> |
| 3254 <h1 i18n-content="title"></h1> | 3254 <h1 i18n-content="title"></h1> |
| 3255 </div> | 3255 </div> |
| 3256 <div id="actions"> | 3256 <div id="actions"> |
| 3257 <paper-button class="clear-all" i18n-content="clearAll" on-click="onClearA
llClick_"></paper-button> | 3257 <paper-button class="clear-all" i18n-content="clearAll" on-click="onClearA
llClick_"></paper-button> |
| 3258 <paper-button i18n-content="openDownloadsFolder" on-click="onOpenDownloads
FolderClick_"></paper-button> | 3258 <paper-button i18n-content="openDownloadsFolder" on-click="onOpenDownloads
FolderClick_"></paper-button> |
| 3259 </div> | 3259 </div> |
| 3260 <div id="search"> | 3260 <div id="search"> |
| 3261 <cr-search-field id="search-input" i18n-values="label:search;clear-label:c
learSearch"></cr-search-field> | 3261 <cr-search-field id="search-input" i18n-values="label:search;clear-label:c
learSearch"></cr-search-field> |
| 3262 <paper-menu-button id="more" horizontal-align="right"> | 3262 <paper-menu-button id="more" horizontal-align="[[overflowAlign_]]"> |
| 3263 <paper-icon-button icon="more-vert" i18n-values="title:moreActions" clas
s="dropdown-trigger"></paper-icon-button> | 3263 <paper-icon-button icon="more-vert" i18n-values="title:moreActions" clas
s="dropdown-trigger"></paper-icon-button> |
| 3264 <paper-menu class="dropdown-content"> | 3264 <paper-menu class="dropdown-content"> |
| 3265 <paper-item class="clear-all" i18n-content="clearAll" on-click="onClea
rAllClick_"></paper-item> | 3265 <paper-item class="clear-all" i18n-content="clearAll" on-click="onClea
rAllClick_"></paper-item> |
| 3266 <paper-item i18n-content="openDownloadsFolder" on-click="onOpenDownloa
dsFolderClick_"></paper-item> | 3266 <paper-item i18n-content="openDownloadsFolder" on-click="onOpenDownloa
dsFolderClick_"></paper-item> |
| 3267 </paper-menu> | 3267 </paper-menu> |
| 3268 </paper-menu-button> | 3268 </paper-menu-button> |
| 3269 </div> | 3269 </div> |
| 3270 </template> | 3270 </template> |
| 3271 <style> | 3271 <style> |
| 3272 /* Copyright 2015 The Chromium Authors. All rights reserved. | 3272 /* Copyright 2015 The Chromium Authors. All rights reserved. |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3485 </div> | 3485 </div> |
| 3486 <downloads-manager></downloads-manager> | 3486 <downloads-manager></downloads-manager> |
| 3487 <command id="clear-all-command" shortcut="Alt-U+0043"></command> | 3487 <command id="clear-all-command" shortcut="Alt-U+0043"></command> |
| 3488 <if expr="is_macosx"> | 3488 <if expr="is_macosx"> |
| 3489 <command id="undo-command" shortcut="Meta-U+005A"></command> | 3489 <command id="undo-command" shortcut="Meta-U+005A"></command> |
| 3490 </if> | 3490 </if> |
| 3491 <if expr="not is_macosx"> | 3491 <if expr="not is_macosx"> |
| 3492 <command id="undo-command" shortcut="Ctrl-U+005A"></command> | 3492 <command id="undo-command" shortcut="Ctrl-U+005A"></command> |
| 3493 </if> | 3493 </if> |
| 3494 <script src="crisper.js"></script></body></html> | 3494 <script src="crisper.js"></script></body></html> |
| OLD | NEW |