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