gecko-dev/layout/reftests/backgrounds/background-clip-text-1b.html
CJKu 2c14cf0ee3 Bug 1269971 - Part 6. Modify reftest according to the way we generate bg-clip:text; r=jfkthame
MozReview-Commit-ID: LhvH5SS0SJY

--HG--
extra : rebase_source : f1b4f885d574e478b59d3155b34491d8a5fdf277
2016-05-13 00:09:28 +08:00

26 lines
614 B
HTML

<!doctype HTML>
<html>
<head>
<title>background-clip: text</title>
<style>
div.out {
width: 500px;
height: 300px;
margin: 0px;
background-image: linear-gradient(green, green);
background-clip: text;
color: transparent;
font-size: 100px;
font-family: serif;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body style="margin: 0px;">
<div class="out">
<p style="display:inline-block;">TEXT clip</p>
<div style="display:inline-block; width:0px; height:200px;"/>
</div>
</body>
</html>