corrade-http-templates – Blame information for rev 57

Subversion Repositories:
Rev:
Rev Author Line No. Line
57 office 1 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>jQuery UI Effects Test Suite</title>
6  
7 <script src="../../../external/requirejs/require.js"></script>
8 <script src="../../lib/css.js"></script>
9 <script src="../../lib/bootstrap.js" data-modules="core scale">
10 </script>
11 <style>
12 #qunit-fixture {
13 width: 1000px;
14 height: 1000px;
15 }
16 .hidden {
17 display: none;
18 }
19 .test {
20 background: #000;
21 border: 0;
22 width: 100px;
23 height: 100px;
24 }
25 .testAddBorder {
26 border: 10px solid #000;
27 }
28 .testChildren,
29 .testChangeBackground {
30 background: #fff;
31 }
32 .test h2 {
33 font-size: 10px;
34 }
35 .testChildren h2 {
36 font-size: 20px;
37 }
38  
39 .relWidth {
40 width: 50%;
41 }
42  
43 .relHeight {
44 height: 50%;
45 }
46  
47 .testScale {
48 border: 5px solid #000;
49 padding: 5px;
50 margin: 5px;
51 width: 50px;
52 height: 50px;
53 }
54  
55 .ticket7106 {
56 width: 50px;
57 height: 50px;
58 }
59 .ticket7106.animate {
60 width: 100px;
61 }
62  
63 .relative {
64 position: relative;
65 top: 0px;
66 left: 0px;
67 }
68 .absolute {
69 position: absolute;
70 top: 0px;
71 left: 0px;
72 }
73 .fixed {
74 position: fixed;
75 top: 0px;
76 left: 0px;
77 }
78 .static {
79 position: static;
80 }
81  
82 </style>
83 </head>
84 <body>
85  
86 <div id="qunit"></div>
87 <div id="qunit-fixture">
88 <div id="elem" class="test"></div>
89 <div class="hidden test">
90 <div>.</div>
91 </div>
92 <div class="animateClass test">
93 <h2>Child Element Test</h2>
94 </div>
95 <div class="relWidth relHeight testAddBorder">
96 <h2>Slide with relative width</h2>
97 </div>
98 <div class="testScale"></div>
99 <div class="ticket7106"></div>
100 <div class="relative"></div>
101 <div class="absolute"></div>
102 <div class="fixed"></div>
103 <div class="static"></div>
104 </div>
105 </body>
106 </html>