| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style type="text/css"> | 3 <style type="text/css"> |
| 4 #container { | 4 #container { |
| 5 margin: 80px 0px; | 5 margin: 80px 0px; |
| 6 height: 300px; | 6 height: 300px; |
| 7 width: 300px; | 7 width: 300px; |
| 8 -webkit-perspective: 500; | 8 -webkit-perspective: 500; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 position: absolute; | 26 position: absolute; |
| 27 top: 120px; | 27 top: 120px; |
| 28 left: 115px; | 28 left: 115px; |
| 29 width: 20px; | 29 width: 20px; |
| 30 height: 200px; | 30 height: 200px; |
| 31 background-color: red; | 31 background-color: red; |
| 32 } | 32 } |
| 33 </style> | 33 </style> |
| 34 <script> | 34 <script> |
| 35 if (window.testRunner) | 35 if (window.testRunner) |
| 36 testRunner.dumpAsText(true); | 36 testRunner.dumpAsTextWithPixelResults(); |
| 37 </script> | 37 </script> |
| 38 </head> | 38 </head> |
| 39 <body> | 39 <body> |
| 40 <!-- This div should be covered up --> | 40 <!-- This div should be covered up --> |
| 41 <div id="bad"></div> | 41 <div id="bad"></div> |
| 42 | 42 |
| 43 <div id="container"> | 43 <div id="container"> |
| 44 <div id="parent"> | 44 <div id="parent"> |
| 45 <div id="child"></div> | 45 <div id="child"></div> |
| 46 </div> | 46 </div> |
| 47 </div> | 47 </div> |
| 48 </body> | 48 </body> |
| 49 </html> | 49 </html> |
| OLD | NEW |