blob: 3c27ed9d421651d4b685c548b39835653147e2c0 (
plain)
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
29
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css" media="screen">
.target {
position: absolute;
top: 100px;
left: 0;
height: 100px;
width: 100px;
}
#box {
background-color: green;
transform: translateX(200px) scale(1) translateZ(0);
opacity: 0.5;
}
#indicator {
left: 200px;
background-color: red;
}
</style>
</head>
<body>
<div class="target" id="indicator"></div>
<div class="target" id="box"></div>
<div id="result">
PASS - "webkitTransform.4" property for "box" element at 0.5s saw something close to: 200</div>
</body>
</html>
|