update components

This commit is contained in:
Luke Pulverenti 2016-03-10 15:07:23 -05:00
parent 411b85f351
commit 709f0726da
8 changed files with 108 additions and 58 deletions

View file

@ -129,6 +129,25 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
return style.transform || style.webkitTransform;
}
suite('basic', function() {
test('can be created imperatively', function() {
var container = document.createElement('paper-input-container');
var input = document.createElement('input', 'iron-input');
input.className = 'paper-input-input';
input.id = 'input';
var label = document.createElement('label');
label.innerHTML = 'label';
Polymer.dom(container).appendChild(label);
Polymer.dom(container).appendChild(input);
document.body.appendChild(container);
assert.isOk(container);
document.body.removeChild(container);
});
});
suite('label position', function() {
test('label is visible by default', function() {