OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <style type="text/css" media="screen"> | 4 <style type="text/css" media="screen"> |
5 .target { | 5 .target { |
6 position: absolute; | 6 position: absolute; |
7 top: 100px; | 7 top: 100px; |
8 left: 0; | 8 left: 0; |
9 height: 100px; | 9 height: 100px; |
10 width: 100px; | 10 width: 100px; |
11 } | 11 } |
12 #box { | 12 #box { |
13 background-color: green; | 13 background-color: green; |
14 transform: translateX(200px) scale(1) translateZ(0); | 14 transform: translateX(200px) scale(1) translateZ(0); |
15 opacity: 0.5; | 15 opacity: 0.5; |
16 } | 16 } |
17 #indicator { | 17 #indicator { |
18 left: 200px; | 18 left: 200px; |
19 background-color: red; | 19 background-color: red; |
20 } | 20 } |
21 </style> | 21 </style> |
22 </head> | 22 </head> |
23 <body> | 23 <body> |
24 <div class="target" id="indicator"></div> | 24 <div class="target" id="indicator"></div> |
25 <div class="target" id="box"></div> | 25 <div class="target" id="box"></div> |
26 <div id="result"> | 26 <div id="result"> |
27 PASS - "webkitTransform.4" property for "box" element at 0.5s saw something clos
e to: 200</div> | 27 PASS - "transform.4" property for "box" element at 0.5s saw something close to:
200</div> |
28 </body> | 28 </body> |
29 </html> | 29 </html> |
OLD | NEW |