| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script> | 3 <script> |
| 4 if (window.testRunner) | 4 if (window.testRunner) |
| 5 testRunner.dumpAsText(); | 5 testRunner.dumpAsText(); |
| 6 </script> | 6 </script> |
| 7 <style> | 7 <style> |
| 8 .container { | 8 .container { |
| 9 position: relative; | 9 position: relative; |
| 10 height: 350px; | 10 height: 350px; |
| 11 width: 400px; | 11 width: 400px; |
| 12 border: 1px solid black; | 12 border: 1px solid black; |
| 13 margin: 10px; | 13 margin: 10px; |
| 14 } | 14 } |
| 15 | 15 |
| 16 .container > a { | 16 .container > a { |
| 17 transform: rotate(20deg); | 17 transform: rotate(20deg); |
| 18 } | 18 } |
| 19 </style> | 19 </style> |
| 20 </head> | 20 </head> |
| 21 <body> | 21 <body> |
| 22 Inline with -webkit-transform that contains positioned element. This should
not crash. | 22 Inline with -webkit-transform that contains positioned element. This should
not crash. |
| 23 <div class="container"> | 23 <div class="container"> |
| 24 <a href="#"> | 24 <a href="#"> |
| 25 <div style="height: 150px; top: 100px; width: 160px; background-colo
r: grey; position: absolute; left: 134px;"><p>some text here</p></div> | 25 <div style="height: 150px; top: 100px; width: 160px; background-colo
r: grey; position: absolute; left: 134px;"><p>some text here</p></div> |
| 26 </a> | 26 </a> |
| 27 </div> | 27 </div> |
| 28 </body> | 28 </body> |
| 29 </html> | 29 </html> |
| OLD | NEW |