73bcce88
luigser
COMPONENTS
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<!doctype html>
<!--
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<html>
<head>
<title>iron-collapse-horizontal</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../web-component-tester/browser.js"></script>
<script src="../../test-fixture/test-fixture-mocha.js"></script>
<link rel="import" href="../../test-fixture/test-fixture.html">
<link rel="import" href="../iron-collapse.html">
</head>
<body>
<test-fixture id="test">
<template>
<iron-collapse id="collapse" opened horizontal>
|
c5169e0e
Renato De Donato
a new hope
|
29
30
|
<div>
Forma temperiemque cornua sidera dissociata cornua recessit innabilis ligavit: solidumque coeptis nullus caelum sponte phoebe di regat mentisque tanta austro capacius amphitrite sui quin postquam semina fossae liquidum umor galeae coeptis caligine liberioris quin liquidum matutinis invasit posset: flexi glomeravit radiis certis invasit oppida postquam onerosior inclusum dominari opifex terris pace finxit quam aquae nunc sine altae auroram quam habentem homo totidemque scythiam in pondus ensis tegit caecoque poena lapidosos humanas coeperunt poena aetas totidem nec natura aethera locavit caelumque distinxit animalibus phoebe cingebant moderantum porrexerat terrae possedit sua sole diu summaque obliquis melioris orbem
|
73bcce88
luigser
COMPONENTS
|
31
32
33
34
35
36
37
38
39
40
|
</div>
</iron-collapse>
</template>
</test-fixture>
<script>
suite('horizontal', function() {
var collapse;
|
c5169e0e
Renato De Donato
a new hope
|
41
42
|
var delay = 500;
var collapseHeight;
|
73bcce88
luigser
COMPONENTS
|
43
44
45
|
setup(function () {
collapse = fixture('test');
|
73bcce88
luigser
COMPONENTS
|
46
47
48
49
50
51
52
53
54
55
|
});
test('opened attribute', function() {
assert.equal(collapse.opened, true);
});
test('horizontal attribute', function() {
assert.equal(collapse.horizontal, true);
});
|
c5169e0e
Renato De Donato
a new hope
|
56
57
58
59
60
61
62
63
|
test('default opened width', function(done) {
setTimeout(function() {
// store actual width
width = getComputedStyle(collapse).width;
// verify width not 0px
assert.notEqual(width, '0px');
done();
}, delay);
|
73bcce88
luigser
COMPONENTS
|
64
65
|
});
|
c5169e0e
Renato De Donato
a new hope
|
66
|
test('set opened to false', function(done) {
|
73bcce88
luigser
COMPONENTS
|
67
|
collapse.opened = false;
|
c5169e0e
Renato De Donato
a new hope
|
68
69
70
71
72
73
|
setTimeout(function() {
var h = getComputedStyle(collapse).width;
// verify width is 0px
assert.equal(h, '0px');
done();
}, delay);
|
73bcce88
luigser
COMPONENTS
|
74
|
});
|
c5169e0e
Renato De Donato
a new hope
|
75
76
77
78
79
80
81
82
83
84
85
|
test('set opened to true', function(done) {
collapse.opened = true;
setTimeout(function() {
var h = getComputedStyle(collapse).width;
// verify width
assert.equal(h, width);
done();
}, delay);
});
|
73bcce88
luigser
COMPONENTS
|
86
87
88
89
90
91
|
});
</script>
</body>
</html>
|