| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 @license | 3 @license |
| 4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 4 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
| 5 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 5 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
| 6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 6 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
| 7 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 7 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
| 8 Code distributed by Google as part of the polymer project is also | 8 Code distributed by Google as part of the polymer project is also |
| 9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 9 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
| 10 --> | 10 --> |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 | 143 |
| 144 test('tap #wrapper', function() { | 144 test('tap #wrapper', function() { |
| 145 assertInteractionCausesRipple(ripple, ripple.$.wrapper, true, '#wr
apper'); | 145 assertInteractionCausesRipple(ripple, ripple.$.wrapper, true, '#wr
apper'); |
| 146 }); | 146 }); |
| 147 | 147 |
| 148 test('tap #separate', function() { | 148 test('tap #separate', function() { |
| 149 assertInteractionCausesRipple(ripple, ripple.$.separate, false, '#
separate') | 149 assertInteractionCausesRipple(ripple, ripple.$.separate, false, '#
separate') |
| 150 }); | 150 }); |
| 151 }); | 151 }); |
| 152 | 152 |
| 153 suite('container = separate', function(done) { | 153 suite('container = separate', function() { |
| 154 | 154 |
| 155 setup(function() { | 155 setup(function() { |
| 156 ripple = fixture('ShadowBasic'); | 156 ripple = fixture('ShadowBasic'); |
| 157 ripple._rippleContainer = ripple.$.separate; | 157 ripple._rippleContainer = ripple.$.separate; |
| 158 }); | 158 }); |
| 159 | 159 |
| 160 test('tap host', function() { | 160 test('tap host', function() { |
| 161 assertInteractionCausesRipple(ripple, ripple, false, 'ripple'); | 161 assertInteractionCausesRipple(ripple, ripple, false, 'ripple'); |
| 162 }); | 162 }); |
| 163 | 163 |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 assertInteractionCausesRipple(ripple, source, false, '#source'); | 326 assertInteractionCausesRipple(ripple, source, false, '#source'); |
| 327 }); | 327 }); |
| 328 }); | 328 }); |
| 329 }); | 329 }); |
| 330 }); | 330 }); |
| 331 }); | 331 }); |
| 332 </script> | 332 </script> |
| 333 | 333 |
| 334 </body> | 334 </body> |
| 335 </html> | 335 </html> |
| OLD | NEW |