summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/clip-text-in-scaled-div.html
blob: 5a1347ca56307b68faae0483fd3d88b47865cb3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<style>
    body { overflow: hidden; }
    .scaled {
        transform:scale(2);
        -webkit-transform-origin: top left;
    }
    .clip-text {
        background-color:red;
        -webkit-background-clip:text;
        -webkit-text-fill-color:transparent
    }
</style>
<body>
    <div class="scaled">
        <span class="clip-text">This text should be nice and sharp.</span>
    </div>
</body>
</html>