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

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

Issue 2158913007: Roll Polymer from 1.5.0 -> 1.6.0 to pick up native CSS custom props (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 4 years, 4 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 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{language}"><head><!- - 1 <!DOCTYPE html><html dir="$i18n{textdirection}" lang="$i18n{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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after
448 bottom: 0; 448 bottom: 0;
449 left: 0; 449 left: 0;
450 }; 450 };
451 451
452 } 452 }
453 453
454 </style> 454 </style>
455 455
456 456
457 <dom-module id="iron-icon" assetpath="chrome://resources/polymer/v1_0/iron-icon/ "> 457 <dom-module id="iron-icon" assetpath="chrome://resources/polymer/v1_0/iron-icon/ ">
458 <template>
459 <style>
460 :host {
461 @apply(--layout-inline);
462 @apply(--layout-center-center);
463 position: relative;
458 464
459 <style> 465 vertical-align: middle;
460 :host {
461 @apply(--layout-inline);
462 @apply(--layout-center-center);
463 position: relative;
464 466
465 vertical-align: middle; 467 fill: var(--iron-icon-fill-color, currentcolor);
468 stroke: var(--iron-icon-stroke-color, none);
466 469
467 fill: var(--iron-icon-fill-color, currentcolor); 470 width: var(--iron-icon-width, 24px);
468 stroke: var(--iron-icon-stroke-color, none); 471 height: var(--iron-icon-height, 24px);
469 472 }
470 width: var(--iron-icon-width, 24px); 473 </style>
471 height: var(--iron-icon-height, 24px);
472 }
473 </style>
474
475 <template>
476 </template> 474 </template>
477 475
478 </dom-module> 476 </dom-module>
479 <dom-module id="paper-ripple" assetpath="chrome://resources/polymer/v1_0/paper-r ipple/"> 477 <dom-module id="paper-ripple" assetpath="chrome://resources/polymer/v1_0/paper-r ipple/">
480 478
481 <template> 479 <template>
482 <style> 480 <style>
483 :host { 481 :host {
484 display: block; 482 display: block;
485 position: absolute; 483 position: absolute;
(...skipping 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after
1982 1980
1983 <content></content> 1981 <content></content>
1984 </template> 1982 </template>
1985 1983
1986 </dom-module> 1984 </dom-module>
1987 1985
1988 <script src="chrome://resources/polymer/v1_0/web-animations-js/web-animations-ne xt-lite.min.js"></script> 1986 <script src="chrome://resources/polymer/v1_0/web-animations-js/web-animations-ne xt-lite.min.js"></script>
1989 1987
1990 1988
1991 <dom-module id="iron-dropdown" assetpath="chrome://resources/polymer/v1_0/iron-d ropdown/"> 1989 <dom-module id="iron-dropdown" assetpath="chrome://resources/polymer/v1_0/iron-d ropdown/">
1992 <style> 1990 <template>
1993 :host { 1991 <style>
1994 position: fixed; 1992 :host {
1995 } 1993 position: fixed;
1994 }
1996 1995
1997 #contentWrapper ::content > * { 1996 #contentWrapper ::content > * {
1998 overflow: auto; 1997 overflow: auto;
1999 } 1998 }
2000 1999
2001 #contentWrapper.animating ::content > * { 2000 #contentWrapper.animating ::content > * {
2002 overflow: hidden; 2001 overflow: hidden;
2003 } 2002 }
2004 </style> 2003 </style>
2005 <template> 2004
2006 <div id="contentWrapper"> 2005 <div id="contentWrapper">
2007 <content id="content" select=".dropdown-content"></content> 2006 <content id="content" select=".dropdown-content"></content>
2008 </div> 2007 </div>
2009 </template> 2008 </template>
2010 2009
2011 </dom-module> 2010 </dom-module>
2012 <dom-module id="paper-menu-button" assetpath="chrome://resources/polymer/v1_0/pa per-menu-button/"> 2011 <dom-module id="paper-menu-button" assetpath="chrome://resources/polymer/v1_0/pa per-menu-button/">
2013 <template> 2012 <template>
2014 <style> 2013 <style>
2015 :host { 2014 :host {
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
2052 bottom: 10px; 2051 bottom: 10px;
2053 margin-bottom: -10px; 2052 margin-bottom: -10px;
2054 margin-top: 20px; 2053 margin-top: 20px;
2055 } 2054 }
2056 </style> 2055 </style>
2057 2056
2058 <div id="trigger" on-tap="toggle"> 2057 <div id="trigger" on-tap="toggle">
2059 <content select=".dropdown-trigger"></content> 2058 <content select=".dropdown-trigger"></content>
2060 </div> 2059 </div>
2061 2060
2062 <iron-dropdown id="dropdown" opened="{{opened}}" horizontal-align="[[horizon talAlign]]" vertical-align="[[verticalAlign]]" horizontal-offset="[[horizontalOf fset]]" vertical-offset="[[verticalOffset]]" open-animation-config="[[openAnimat ionConfig]]" close-animation-config="[[closeAnimationConfig]]" no-animations="[[ noAnimations]]" focus-target="[[_dropdownContent]]" restore-focus-on-close="" on -iron-overlay-canceled="__onIronOverlayCanceled"> 2061 <iron-dropdown id="dropdown" opened="{{opened}}" horizontal-align="[[horizon talAlign]]" vertical-align="[[verticalAlign]]" dynamic-align="[[dynamicAlign]]" horizontal-offset="[[horizontalOffset]]" vertical-offset="[[verticalOffset]]" no -overlap="[[noOverlap]]" open-animation-config="[[openAnimationConfig]]" close-a nimation-config="[[closeAnimationConfig]]" no-animations="[[noAnimations]]" focu s-target="[[_dropdownContent]]" allow-outside-scroll="[[allowOutsideScroll]]" re store-focus-on-close="" on-iron-overlay-canceled="__onIronOverlayCanceled">
2063 <div class="dropdown-content"> 2062 <div class="dropdown-content">
2064 <content id="content" select=".dropdown-content"></content> 2063 <content id="content" select=".dropdown-content"></content>
2065 </div> 2064 </div>
2066 </iron-dropdown> 2065 </iron-dropdown>
2067 </template> 2066 </template>
2068 2067
2069 </dom-module> 2068 </dom-module>
2070 <dom-module id="paper-icon-button" assetpath="chrome://resources/polymer/v1_0/pa per-icon-button/"> 2069 <dom-module id="paper-icon-button" assetpath="chrome://resources/polymer/v1_0/pa per-icon-button/">
2071 <template strip-whitespace=""> 2070 <template strip-whitespace="">
2072 <style> 2071 <style>
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
2152 <g id="warning"><path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4 z"></path></g> 2151 <g id="warning"><path d="M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4 z"></path></g>
2153 <if expr="chromeos"> 2152 <if expr="chromeos">
2154 <g id="star-border"><path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3. 32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path></g> 2153 <g id="star-border"><path d="M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3. 32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z"></path></g>
2155 </if> 2154 </if>
2156 </defs> 2155 </defs>
2157 </svg> 2156 </svg>
2158 </iron-iconset-svg> 2157 </iron-iconset-svg>
2159 2158
2160 2159
2161 <dom-module id="iron-a11y-announcer" assetpath="chrome://resources/polymer/v1_0/ iron-a11y-announcer/"> 2160 <dom-module id="iron-a11y-announcer" assetpath="chrome://resources/polymer/v1_0/ iron-a11y-announcer/">
2162 <style>
2163 :host {
2164 display: inline-block;
2165 position: fixed;
2166 clip: rect(0px,0px,0px,0px);
2167 }
2168 </style>
2169
2170 <template> 2161 <template>
2162 <style>
2163 :host {
2164 display: inline-block;
2165 position: fixed;
2166 clip: rect(0px,0px,0px,0px);
2167 }
2168 </style>
2171 <div aria-live$="[[mode]]">[[_text]]</div> 2169 <div aria-live$="[[mode]]">[[_text]]</div>
2172 </template> 2170 </template>
2173 2171
2174 </dom-module> 2172 </dom-module>
2175 <dom-module id="paper-input-container" assetpath="chrome://resources/polymer/v1_ 0/paper-input/"> 2173 <dom-module id="paper-input-container" assetpath="chrome://resources/polymer/v1_ 0/paper-input/">
2176 <template> 2174 <template>
2177 <style> 2175 <style>
2178 :host { 2176 :host {
2179 display: block; 2177 display: block;
2180 padding: 8px 0; 2178 padding: 8px 0;
2181 2179
2182 @apply(--paper-input-container); 2180 @apply(--paper-input-container);
2183 } 2181 }
2184 2182
2185 :host[inline] { 2183 :host([inline]) {
2186 display: inline-block; 2184 display: inline-block;
2187 } 2185 }
2188 2186
2189 :host([disabled]) { 2187 :host([disabled]) {
2190 pointer-events: none; 2188 pointer-events: none;
2191 opacity: 0.33; 2189 opacity: 0.33;
2192 2190
2193 @apply(--paper-input-container-disabled); 2191 @apply(--paper-input-container-disabled);
2194 } 2192 }
2195 2193
(...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after
2769 <command id="undo-command" shortcut="Meta|z"></command> 2767 <command id="undo-command" shortcut="Meta|z"></command>
2770 <command id="find-command" shortcut="Meta|f"></command> 2768 <command id="find-command" shortcut="Meta|f"></command>
2771 </if> 2769 </if>
2772 <if expr="not is_macosx"> 2770 <if expr="not is_macosx">
2773 <command id="clear-all-command" shortcut="Alt|c"></command> 2771 <command id="clear-all-command" shortcut="Alt|c"></command>
2774 <command id="undo-command" shortcut="Ctrl|z"></command> 2772 <command id="undo-command" shortcut="Ctrl|z"></command>
2775 <command id="find-command" shortcut="Ctrl|f"></command> 2773 <command id="find-command" shortcut="Ctrl|f"></command>
2776 </if> 2774 </if>
2777 <link rel="import" href="chrome://resources/html/polymer.html"> 2775 <link rel="import" href="chrome://resources/html/polymer.html">
2778 <script src="crisper.js"></script></body></html> 2776 <script src="crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_downloads/crisper.js ('k') | third_party/polymer/v1_0/chromium.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698