update polymer

This commit is contained in:
Luke Pulverenti 2015-09-14 21:17:19 -04:00
parent 571dd964e6
commit c526176a6a
23 changed files with 707 additions and 243 deletions

View file

@ -178,6 +178,36 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
});
});
test('value should notify', function(done) {
var targetValue = 10;
slider.addEventListener('value-changed', function(e) {
assert.equal(e.detail.value, targetValue);
done();
});
slider.min = 0;
slider.max = 100;
slider.value = targetValue;
});
test('immediateValue should notify', function(done) {
var targetValue = 50;
slider.addEventListener('immediate-value-changed', function(e) {
assert.equal(e.detail.value, targetValue);
assert.equal(slider.immediateValue, targetValue);
done();
});
var cursor = MockInteractions.topLeftOfNode(slider.$.sliderBar);
cursor.x += slider.$.sliderBar.getBoundingClientRect().width * targetValue/100;
slider.min = 0;
slider.max = 100;
MockInteractions.down(slider.$.sliderBar, cursor);
});
});
</script>