| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <style type="text/css" media="screen"> | 5 <style type="text/css" media="screen"> |
| 6 body { | 6 body { |
| 7 position: relative; | 7 position: relative; |
| 8 } | 8 } |
| 9 .parent { | 9 .parent { |
| 10 position: relative; | 10 position: relative; |
| 11 width: 200px; | 11 width: 200px; |
| 12 height: 150px; | 12 height: 150px; |
| 13 padding: 20px; | 13 padding: 20px; |
| 14 border: 1px solid black; | 14 border: 1px solid black; |
| 15 -webkit-transform: translate(0px, 0px); | 15 transform: translate(0px, 0px); |
| 16 } | 16 } |
| 17 | 17 |
| 18 .child { | 18 .child { |
| 19 position: relative; | 19 position: relative; |
| 20 left: 100px; | 20 left: 100px; |
| 21 width: 250px; | 21 width: 250px; |
| 22 height: 100px; | 22 height: 100px; |
| 23 background-color: green; | 23 background-color: green; |
| 24 -webkit-transform: perspective(600) translate3D(-50px, 10px, 100px) rotat
eY(45deg); | 24 transform: perspective(600px) translate3D(-50px, 10px, 100px) rotateY(45d
eg); |
| 25 } | 25 } |
| 26 | 26 |
| 27 </style> | 27 </style> |
| 28 <script type="text/javascript" charset="utf-8"> | 28 <script type="text/javascript" charset="utf-8"> |
| 29 if (window.testRunner) | 29 if (window.testRunner) |
| 30 testRunner.waitUntilDone(); | 30 testRunner.waitUntilDone(); |
| 31 | 31 |
| 32 function doTest() | 32 function doTest() |
| 33 { | 33 { |
| 34 if (window.testRunner) | 34 if (window.testRunner) |
| (...skipping 11 matching lines...) Expand all Loading... |
| 46 <!-- Should see a green box in perspective. Layer tree should show nested laye
rs--> | 46 <!-- Should see a green box in perspective. Layer tree should show nested laye
rs--> |
| 47 <div id="parent" class="parent"> | 47 <div id="parent" class="parent"> |
| 48 This content is in the parent | 48 This content is in the parent |
| 49 <div id="child" class="child"> | 49 <div id="child" class="child"> |
| 50 Box should have perspective | 50 Box should have perspective |
| 51 </div> | 51 </div> |
| 52 </div> | 52 </div> |
| 53 </body> | 53 </body> |
| 54 </html> | 54 </html> |
| 55 | 55 |
| OLD | NEW |