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

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

Issue 2074813002: Roll Polymer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chromium.patch Created 4 years, 6 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) 2016 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2016 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 1936 matching lines...) Expand 10 before | Expand all | Expand 10 after
1947 </style> 1947 </style>
1948 1948
1949 <div class="selectable-content"> 1949 <div class="selectable-content">
1950 <content></content> 1950 <content></content>
1951 </div> 1951 </div>
1952 </template> 1952 </template>
1953 1953
1954 </dom-module> 1954 </dom-module>
1955 <dom-module id="iron-overlay-backdrop" assetpath="chrome://resources/polymer/v1_ 0/iron-overlay-behavior/"> 1955 <dom-module id="iron-overlay-backdrop" assetpath="chrome://resources/polymer/v1_ 0/iron-overlay-behavior/">
1956 1956
1957 <style> 1957 <template>
1958 :host { 1958 <style>
1959 position: fixed; 1959 :host {
1960 top: 0; 1960 position: fixed;
1961 left: 0; 1961 top: 0;
1962 width: 100%; 1962 left: 0;
1963 height: 100%; 1963 width: 100%;
1964 background-color: var(--iron-overlay-backdrop-background-color, #000); 1964 height: 100%;
1965 opacity: 0; 1965 background-color: var(--iron-overlay-backdrop-background-color, #000);
1966 transition: opacity 0.2s; 1966 opacity: 0;
1967 pointer-events: none; 1967 transition: opacity 0.2s;
1968 @apply(--iron-overlay-backdrop); 1968 pointer-events: none;
1969 } 1969 @apply(--iron-overlay-backdrop);
1970 }
1970 1971
1971 :host(.opened) { 1972 :host(.opened) {
1972 opacity: var(--iron-overlay-backdrop-opacity, 0.6); 1973 opacity: var(--iron-overlay-backdrop-opacity, 0.6);
1973 pointer-events: auto; 1974 pointer-events: auto;
1974 @apply(--iron-overlay-backdrop-opened); 1975 @apply(--iron-overlay-backdrop-opened);
1975 } 1976 }
1976 </style> 1977 </style>
1977 1978
1978 <template>
1979 <content></content> 1979 <content></content>
1980 </template> 1980 </template>
1981 1981
1982 </dom-module> 1982 </dom-module>
1983 1983
1984 <script src="chrome://resources/polymer/v1_0/web-animations-js/web-animations-ne xt-lite.min.js"></script> 1984 <script src="chrome://resources/polymer/v1_0/web-animations-js/web-animations-ne xt-lite.min.js"></script>
1985 1985
1986 1986
1987 <dom-module id="iron-dropdown" assetpath="chrome://resources/polymer/v1_0/iron-d ropdown/"> 1987 <dom-module id="iron-dropdown" assetpath="chrome://resources/polymer/v1_0/iron-d ropdown/">
1988 <style> 1988 <style>
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
2048 bottom: 10px; 2048 bottom: 10px;
2049 margin-bottom: -10px; 2049 margin-bottom: -10px;
2050 margin-top: 20px; 2050 margin-top: 20px;
2051 } 2051 }
2052 </style> 2052 </style>
2053 2053
2054 <div id="trigger" on-tap="toggle"> 2054 <div id="trigger" on-tap="toggle">
2055 <content select=".dropdown-trigger"></content> 2055 <content select=".dropdown-trigger"></content>
2056 </div> 2056 </div>
2057 2057
2058 <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]]" on-iron-overlay-canceled="__ onIronOverlayCanceled"> 2058 <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">
2059 <div class="dropdown-content"> 2059 <div class="dropdown-content">
2060 <content id="content" select=".dropdown-content"></content> 2060 <content id="content" select=".dropdown-content"></content>
2061 </div> 2061 </div>
2062 </iron-dropdown> 2062 </iron-dropdown>
2063 </template> 2063 </template>
2064 2064
2065 </dom-module> 2065 </dom-module>
2066 <dom-module id="paper-icon-button" assetpath="chrome://resources/polymer/v1_0/pa per-icon-button/"> 2066 <dom-module id="paper-icon-button" assetpath="chrome://resources/polymer/v1_0/pa per-icon-button/">
2067 <template strip-whitespace=""> 2067 <template strip-whitespace="">
2068 <style> 2068 <style>
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after
2760 <if expr="is_macosx"> 2760 <if expr="is_macosx">
2761 <command id="undo-command" shortcut="Meta-U+005A"></command> 2761 <command id="undo-command" shortcut="Meta-U+005A"></command>
2762 <command id="find-command" shortcut="Meta-U+0046"></command> 2762 <command id="find-command" shortcut="Meta-U+0046"></command>
2763 </if> 2763 </if>
2764 <if expr="not is_macosx"> 2764 <if expr="not is_macosx">
2765 <command id="undo-command" shortcut="Ctrl-U+005A"></command> 2765 <command id="undo-command" shortcut="Ctrl-U+005A"></command>
2766 <command id="find-command" shortcut="Ctrl-U+0046"></command> 2766 <command id="find-command" shortcut="Ctrl-U+0046"></command>
2767 </if> 2767 </if>
2768 <link rel="import" href="chrome://resources/html/polymer.html"> 2768 <link rel="import" href="chrome://resources/html/polymer.html">
2769 <script src="crisper.js"></script></body></html> 2769 <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