]> git.ipfire.org Git - ipfire.org.git/blame - src/scss/bootstrap-4.0.0-alpha.6/js/tests/visual/collapse.html
Introduce autotools
[ipfire.org.git] / src / scss / bootstrap-4.0.0-alpha.6 / js / tests / visual / collapse.html
CommitLineData
91e44d91
S
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
6 <link rel="stylesheet" href="../../../dist/css/bootstrap.min.css">
7 <title>Collapse</title>
8 </head>
9 <body>
10 <div class="container">
11 <h1>Collapse <small>Bootstrap Visual Test</small></h1>
12
13 <div id="accordion" role="tablist" aria-multiselectable="true">
14 <div class="card">
15 <div class="card-header" role="tab" id="headingOne">
16 <h5 class="mb-0">
17 <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
18 Collapsible Group Item #1
19 </a>
20 </h5>
21 </div>
22
23 <div id="collapseOne" class="collapse show" role="tabpanel" aria-labelledby="headingOne">
24 <div class="card-block">
25 Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
26 </div>
27 </div>
28 </div>
29 <div class="card">
30 <div class="card-header" role="tab" id="headingTwo">
31 <h5 class="mb-0">
32 <a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
33 Collapsible Group Item #2
34 </a>
35 </h5>
36 </div>
37 <div id="collapseTwo" class="collapse" role="tabpanel" aria-labelledby="headingTwo">
38 <div class="card-block">
39 Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
40 </div>
41 </div>
42 </div>
43 <div class="card">
44 <div class="card-header" role="tab" id="headingThree">
45 <h5 class="mb-0">
46 <a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
47 Collapsible Group Item #3
48 </a>
49 </h5>
50 </div>
51 <div id="collapseThree" class="collapse" role="tabpanel" aria-labelledby="headingThree">
52 <div class="card-block">
53 Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
54 </div>
55 </div>
56 </div>
57 </div>
58 </div>
59
60 <script src="../../../docs/assets/js/vendor/jquery-slim.min.js"></script>
61 <script src="../../dist/util.js"></script>
62 <script src="../../dist/collapse.js"></script>
63 <script>
64 // JavaScript Test
65 $(function () {
66 testCollapseTransitionError()
67 });
68
69 // Should throw an error because carousel is in transition
70 function testCollapseTransitionError() {
71 var err = false
72 $('#collapseOne').on('hidden.bs.collapse', function (e) {
73 $(this).off('hidden.bs.collapse')
74 if (!err) {
75 alert('No error thrown for : testCollapseTransitionError')
76 }
77 })
78
79 try {
80 $('#collapseOne').collapse('hide').collapse('show')
81 }
82 catch (e) {
83 err = true
84 console.error(e.message)
85 }
86 }
87 </script>
88 </body>
89</html>