OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
5 <style> | 5 <style> |
6 .outer { | 6 .outer { |
7 width: 120px; | 7 width: 120px; |
8 height: 230px; | 8 height: 230px; |
9 margin: 20px; | 9 margin: 20px; |
10 border: 1px solid black; | 10 border: 1px solid black; |
11 -webkit-box-reflect: right 10px; | 11 -webkit-box-reflect: right 10px; |
12 } | 12 } |
13 | 13 |
14 .inner { | 14 .inner { |
15 margin: 10px; | 15 margin: 10px; |
16 width: 100px; | 16 width: 100px; |
17 height: 100px; | 17 height: 100px; |
18 background-color: green; | 18 background-color: green; |
19 text-align: center; | 19 text-align: center; |
20 font-size: 50pt; | 20 font-size: 50pt; |
21 -webkit-box-reflect: below 10px; | 21 -webkit-box-reflect: below 10px; |
22 } | 22 } |
23 | 23 |
24 .composited { | 24 .composited { |
25 -webkit-transform: translateZ(0); | 25 transform: translateZ(0); |
26 } | 26 } |
27 </style> | 27 </style> |
28 <script type="text/javascript" charset="utf-8"> | 28 <script type="text/javascript" charset="utf-8"> |
29 function doTest() | 29 function doTest() |
30 { | 30 { |
31 document.getElementById('inner').style.webkitTransform = 'rotate(10deg)'; | 31 document.getElementById('inner').style.webkitTransform = 'rotate(10deg)'; |
32 } | 32 } |
33 window.addEventListener('load', doTest, false); | 33 window.addEventListener('load', doTest, false); |
34 </script> | 34 </script> |
35 </head> | 35 </head> |
36 <body> | 36 <body> |
37 <p>Test transform change on reflected elements. Left and right side should be
symmetrical.</p> | 37 <p>Test transform change on reflected elements. Left and right side should be
symmetrical.</p> |
38 <div class="outer composited"> | 38 <div class="outer composited"> |
39 <div id="inner" class="inner composited"> | 39 <div id="inner" class="inner composited"> |
40 1 | 40 1 |
41 </div> | 41 </div> |
42 </div> | 42 </div> |
43 </body> | 43 </body> |
44 </html> | 44 </html> |
OLD | NEW |