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

@ -22,6 +22,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
<link rel="import" href="../iron-icon.html">
<link rel="import" href="../../iron-iconset/iron-iconset.html">
<link rel="import" href="../../promise-polyfill/promise-polyfill.html">
<link rel="import" href="../../test-fixture/test-fixture.html">
</head>
@ -48,6 +49,18 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
</template>
</test-fixture>
<test-fixture id="UsingAsyncIconset">
<template>
<iron-icon icon="async:location"></iron-icon>
</template>
</test-fixture>
<test-fixture id="AsyncIconset">
<template>
<iron-iconset name="async" icons="location blank" src="location.png" size="24" width="48"></iron-iconset>
</template>
</test-fixture>
<script>
function iconElementFor (node) {
var nodes = Polymer.dom(node.root).childNodes;
@ -113,6 +126,23 @@ suite('<iron-icon>', function() {
fixture('WithoutAnIconSource');
});
})
suite('when loading async', function() {
test('will get icon after iconset is added', function() {
var icon = fixture('UsingAsyncIconset');
expect(hasIcon(icon)).to.be.false;
return new Promise(function(resolve, reject) {
window.addEventListener('iron-iconset-added', function() {
if (hasIcon(icon)) {
resolve();
} else {
reject(new Error('icon didn\'t load after iconset loaded'));
}
});
fixture('AsyncIconset');
});
});
});
});
</script>