tizen beta release
[framework/web/webkit-efl.git] / LayoutTests / fast / css / clip-text-in-scaled-div.html
1 <html>
2 <style>
3     .scaled {
4         -webkit-transform:scale(2);
5         -webkit-transform-origin: top left;
6     }
7     .clip-text {
8         background-color:red;
9         -webkit-background-clip:text;
10         -webkit-text-fill-color:transparent
11     }
12 </style>
13 <body>
14     <div class="scaled">
15         <span class="clip-text">This text should be nice and sharp.</span>
16     </div>
17 </body>
18 </html>