update translations

This commit is contained in:
Luke Pulverenti 2015-09-25 01:15:29 -04:00
parent 764a5ac824
commit c2e474e8e9
105 changed files with 13294 additions and 12883 deletions

View file

@ -119,6 +119,20 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
expect(dropdownMenu.selectedItem).to.be.equal(secondItem);
});
});
suite('deselecting', function() {
var menu;
setup(function() {
dropdownMenu = fixture('PreselectedDropdownMenu');
menu = Polymer.dom(dropdownMenu).querySelector('.dropdown-content');
});
test('an `iron-deselect` event clears the current selection', function() {
menu.selected = null;
expect(dropdownMenu.selectedItem).to.be.equal(null);
});
});
});
</script>