blob: 8cf2cd253a4ba7485ad1a578f0c647972b264eae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<meta name="flags" content="ahem">
<link rel="stylesheet" href="/fonts/ahem.css" />
<style>
text {
font: 50px/1 Ahem;
}
</style>
<svg>
<defs>
<clipPath id="c">
<text x="30" y="50">Hello</text>
</clipPath>
</defs>
<rect width="200" height="100" fill="green" clip-path="url(#c)"/>
</svg>
|