update components

This commit is contained in:
Luke Pulverenti 2015-07-13 17:26:11 -04:00
parent 697257670c
commit 02ae9ec81e
123 changed files with 13600 additions and 531 deletions

View file

@ -45,6 +45,12 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
assert.isFalse(node.hasAttribute('aria-invalid'), 'aria-invalid is unset');
});
test('validate() is true if a validator isn\'t set', function() {
var node = fixture('basic');
var valid = node.validate();
assert.isTrue(valid);
});
});
</script>