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

Unified Diff: polymer_0.5.4/bower_components/paper-shadow/test/basic.html

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 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_0.5.4/bower_components/paper-shadow/test/basic.html
diff --git a/polymer_0.5.0/bower_components/paper-shadow/test/basic.html b/polymer_0.5.4/bower_components/paper-shadow/test/basic.html
similarity index 90%
copy from polymer_0.5.0/bower_components/paper-shadow/test/basic.html
copy to polymer_0.5.4/bower_components/paper-shadow/test/basic.html
index 5e35f499ba4bbe598ed653fee3b854b5fb8a04bb..dfd12f5a1bb5db159095ab1f539e5ed0a1f206a7 100644
--- a/polymer_0.5.0/bower_components/paper-shadow/test/basic.html
+++ b/polymer_0.5.4/bower_components/paper-shadow/test/basic.html
@@ -42,12 +42,12 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
var fake = new Fake();
test('default', function() {
- assert.notEqual(getComputedStyle(s1.$['shadow-top'])['box-shadow'], 'none');
+ assert.notEqual(getComputedStyle(s1.$['shadow-bottom'])['box-shadow'], 'none');
});
test('shadows are pointer-events: none', function(done) {
var foo = document.getElementById('foo');
- PolymerGestures.addEventListener(document, 'tap', function(e) {
+ PolymerGestures.addEventListener(wrap(document), 'tap', function(e) {
assert.strictEqual(e.target, foo);
done();
});

Powered by Google App Engine
This is Rietveld 408576698