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

Unified Diff: third_party/polymer/components/iron-selector/test/basic.html

Issue 2113853002: Run bower update (Closed) Base URL: https://github.com/catapult-project/catapult@polymer10-migration
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/polymer/components/iron-selector/test/basic.html
diff --git a/third_party/polymer/components/iron-selector/test/basic.html b/third_party/polymer/components/iron-selector/test/basic.html
index 972421eba4501bc2cf4023ff21d1bc58dccf9804..08866bb35112f307cc2c314f0b9b5395ae36aeb1 100644
--- a/third_party/polymer/components/iron-selector/test/basic.html
+++ b/third_party/polymer/components/iron-selector/test/basic.html
@@ -196,8 +196,12 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
newItem.id = 'item999';
- s2.addEventListener('iron-items-changed', function() {
+ s2.addEventListener('iron-items-changed', function(event) {
changeCount++;
+ var mutation = event.detail;
+ assert.notEqual(mutation, undefined);
+ assert.notEqual(mutation.addedNodes, undefined);
+ assert.notEqual(mutation.removedNodes, undefined);
});
Polymer.dom(s2).appendChild(newItem);

Powered by Google App Engine
This is Rietveld 408576698