6 background: url('resources/Aurora.jpg');
7 -webkit-background-size:
100%
100%;
8 font-family:
"Lucida Grande";
18 #features
> li
> .picture {
19 -webkit-transition-property: transform;
20 -webkit-transition-duration:
500ms;
21 -webkit-transition-timing-function: ease-in;
22 transform: rotate(-
5deg);
24 border:
5px solid white;
25 background-color: gray;
33 #features
> li.enabled
> .picture {
34 -webkit-transition-timing-function: ease-out;
35 transform:rotate(
10deg);
38 #features
> li
> .description {
39 -webkit-transition-property: transform;
40 -webkit-transition-duration:
560ms;
41 -webkit-transition-timing-function: ease-in;
44 background-color: black;
48 border:
3px solid white;
49 -webkit-border-radius:
9px;
56 #features
> li.enabled
> .description {
57 transform:translate3d(
100px,
0,
0);
61 if (window
.testRunner
) {
62 testRunner
.waitUntilDone();
63 testRunner
.dumpAsText();
68 document
.getElementById("item").className
= "enabled";
69 setTimeout(check
, 1000);
74 var results
= document
.getElementById('results');
75 results
.innerHTML
+= s
+ '<br>';
80 var transform
= window
.getComputedStyle(document
.getElementById('description')).transform
;
81 if (transform
== "matrix(1, 0, 0, 1, 100, 0)")
82 log('transform="'+transform
+'" as expected: PASS');
84 log('transform="'+transform
+'", expected "matrix(1, 0, 0, 1, 100, 0)": FAIL');
86 if (window
.testRunner
)
87 testRunner
.notifyDone();
91 <body onload=
"init()">
95 <div class=
"picture"></div>
96 <div id=
"description" class=
"description">
97 <b>Spaces
</b> lets you group your application windows and banish
98 clutter completely. Leopard gives you a space for everything and
99 makes it easy to switch between your spaces. Start by simply
100 clicking the Spaces icon in the Dock.
104 <div id=
"results"></div>