gecko-dev/layout/reftests/backgrounds/background-clip-text-2.html
cku 41ffc01db5 Bug 1287705 - Part 3. reftest for text shadow. r=jfkthame
MozReview-Commit-ID: 9g43f8EN2SD

--HG--
extra : rebase_source : c29695d22f58b5a64cea485310609f8e420d3e81
2016-07-19 22:29:30 +08:00

29 lines
789 B
HTML

<!doctype HTML>
<html>
<head>
<title>background-clip: text shadow</title>
<style>
div.out {
width: 500px;
height: 300px;
margin: 0px;
background-image: linear-gradient(green, green);
background-clip: text;
color: transparent;
font-size: 50px;
font-family: serif;
text-shadow: 0px 60px 5px red;
-moz-osx-font-smoothing: grayscale;
}
</style>
</head>
<body style="margin: 0px;">
<div class="out">
Text Shadow
<div style="display:inline-block; width:0px; height:100px;"/>
</div>
<!-- A white div which is used to cover on text -->
<div style="position: absolute; top: 0px; left:0px; width:500px; height:110px;background-color:white;"/>
</body>
</html>