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

Side by Side Diff: chrome/browser/resources/pdf/elements/viewer-bookmark/viewer-bookmark.html

Issue 2893063002: [WebUI] move polymer.html to first import (Closed)
Patch Set: Created 3 years, 7 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">
2
1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> 3 <link rel="import" href="chrome://resources/cr_elements/icons.html">
2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp le.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp le.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
5 6
6 <dom-module id="viewer-bookmark" attributes="bookmark"> 7 <dom-module id="viewer-bookmark" attributes="bookmark">
7 <template> 8 <template>
8 <style> 9 <style>
9 #item { 10 #item {
10 @apply(--layout-center); 11 @apply(--layout-center);
11 @apply(--layout-horizontal); 12 @apply(--layout-horizontal);
12 cursor: pointer; 13 cursor: pointer;
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 are opened. --> 65 are opened. -->
65 <template is="dom-if" if="{{childrenShown}}" id="sub-bookmarks"> 66 <template is="dom-if" if="{{childrenShown}}" id="sub-bookmarks">
66 <template is="dom-repeat" items="{{bookmark.children}}"> 67 <template is="dom-repeat" items="{{bookmark.children}}">
67 <viewer-bookmark bookmark="{{item}}" depth="{{childDepth}}"> 68 <viewer-bookmark bookmark="{{item}}" depth="{{childDepth}}">
68 </viewer-bookmark> 69 </viewer-bookmark>
69 </template> 70 </template>
70 </template> 71 </template>
71 </template> 72 </template>
72 <script src="viewer-bookmark.js"></script> 73 <script src="viewer-bookmark.js"></script>
73 </dom-module> 74 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698