1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

update polymer

This commit is contained in:
Luke Pulverenti 2015-09-30 00:10:14 -04:00
parent 22a5e48860
commit 61d616c330
44 changed files with 447 additions and 156 deletions

View file

@ -45,11 +45,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
test('set value', function(done) {
range.value = 50;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, 50);
// test clamp value
range.value = 60.1;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, 60);
done();
});
@ -59,7 +59,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
test('set max', function(done) {
range.max = 10;
range.value = 11;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, range.max);
done();
});
@ -68,7 +68,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
test('test ratio', function(done) {
range.max = 10;
range.value = 5;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.ratio, 50);
done();
});
@ -78,10 +78,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
range.min = 10
range.max = 50;
range.value = 30;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.ratio, 50);
range.value = 0;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, range.min);
done();
});
@ -92,17 +92,34 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
range.min = 0;
range.max = 10;
range.value = 5.1;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, 5);
range.step = 0.1;
range.value = 5.1;
asyncPlatformFlush(function() {
flush(function() {
assert.equal(range.value, 5.1);
done();
});
});
});
test('odd values', function() {
range.min = 1;
range.max = 7;
range.step = 2;
range.value = 3;
flush(function() {
assert.equal(range.value, 3);
range.value += range.step;
assert.equal(range.value, 5);
range.value += range.step;
assert.equal(range.value, 7);
});
});
});
</script>