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

Side by Side Diff: chrome/browser/resources/md_downloads/vulcanized.html

Issue 1385113002: MD Downloads: a step toward better RTL support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « chrome/browser/resources/md_downloads/toolbar.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/toolbar.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698