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

Unified Diff: polymer_1.2.3/bower_components/paper-behaviors/test/paper-radio-button-behavior.html

Issue 1581713003: [third_party] add polymer 1.2.3 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: 1.2.3 Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: polymer_1.2.3/bower_components/paper-behaviors/test/paper-radio-button-behavior.html
diff --git a/polymer_1.0.4/bower_components/paper-behaviors/test/paper-radio-button-behavior.html b/polymer_1.2.3/bower_components/paper-behaviors/test/paper-radio-button-behavior.html
similarity index 87%
copy from polymer_1.0.4/bower_components/paper-behaviors/test/paper-radio-button-behavior.html
copy to polymer_1.2.3/bower_components/paper-behaviors/test/paper-radio-button-behavior.html
index 890d0bb487c0ae6d17d2cc827b9ddb90bc175f19..0418057dd1dc719cf84112e3f775433e73a02448 100644
--- a/polymer_1.0.4/bower_components/paper-behaviors/test/paper-radio-button-behavior.html
+++ b/polymer_1.2.3/bower_components/paper-behaviors/test/paper-radio-button-behavior.html
@@ -33,26 +33,22 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<script>
suite('basic', function() {
var button;
- var ink;
setup(function() {
button = fixture('basic');
- ink = button.querySelector('paper-ripple');
MockInteractions.blur(button);
});
test('normal (no states)', function() {
assert.isFalse(button.focused);
- assert.isFalse(ink._animating);
- assert.equal(ink.ripples.length, 0);
+ assert.isFalse(button.hasRipple());
});
test('receives focus', function() {
MockInteractions.focus(button);
assert.isTrue(button.focused);
- assert.isTrue(ink._animating);
- assert.equal(ink.ripples.length, 1);
+ assert.isTrue(button.hasRipple());
});
});

Powered by Google App Engine
This is Rietveld 408576698