Ticket #15475: testcase.html

File testcase.html, 187 bytes (added by madmax, 3 years ago)

background-fill: text, with text-fill-color: transparent and a background to see through the text, of course. You should see red text in this sample file

Line 
1<html><head>
2<style>
3p {
4 background: red;
5 -webkit-background-clip: text;
6 -webkit-text-fill-color: transparent;
7 font-size: 72px;
8}
9</style></head>
10<body><p>Some text</p></body></html>