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

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple.html

Issue 1633603004: Add script to remove prefixed CSS from third_party/polymer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Process CSS files too. Created 4 years, 10 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 <!-- 1 <!--
2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 2 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
3 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 3 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 4 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
5 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 5 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
6 Code distributed by Google as part of the polymer project is also 6 Code distributed by Google as part of the polymer project is also
7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 7 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
8 --><html><head><link rel="import" href="../polymer/polymer.html"> 8 --><html><head><link rel="import" href="../polymer/polymer.html">
9 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html "> 9 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html ">
10 10
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 } 102 }
103 103
104 :host([animating]) { 104 :host([animating]) {
105 /* This resolves a rendering issue in Chrome (as of 40) where the 105 /* This resolves a rendering issue in Chrome (as of 40) where the
106 ripple is not properly clipped by its parent (which may have 106 ripple is not properly clipped by its parent (which may have
107 rounded corners). See: http://jsbin.com/temexa/4 107 rounded corners). See: http://jsbin.com/temexa/4
108 108
109 Note: We only apply this style conditionally. Otherwise, the browser 109 Note: We only apply this style conditionally. Otherwise, the browser
110 will create a new compositing layer for every ripple element on the 110 will create a new compositing layer for every ripple element on the
111 page, and that would be bad. */ 111 page, and that would be bad. */
112 -webkit-transform: translate(0, 0);
113 transform: translate3d(0, 0, 0); 112 transform: translate3d(0, 0, 0);
114 } 113 }
115 114
116 #background, 115 #background,
117 #waves, 116 #waves,
118 .wave-container, 117 .wave-container,
119 .wave { 118 .wave {
120 pointer-events: none; 119 pointer-events: none;
121 position: absolute; 120 position: absolute;
122 top: 0; 121 top: 0;
(...skipping 25 matching lines...) Expand all
148 :host(.circle) .wave-container { 147 :host(.circle) .wave-container {
149 overflow: hidden; 148 overflow: hidden;
150 } 149 }
151 </style> 150 </style>
152 151
153 <div id="background"></div> 152 <div id="background"></div>
154 <div id="waves"></div> 153 <div id="waves"></div>
155 </template> 154 </template>
156 </dom-module> 155 </dom-module>
157 <script src="paper-ripple-extracted.js"></script></body></html> 156 <script src="paper-ripple-extracted.js"></script></body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698