haikuwebkit/LayoutTests/fast/css/stroke-color.html

29 lines
714 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
div {
font-size: 80px;
color: gray;
text-shadow: none;
stroke-width: 10px;
display: inline;
}
</style>
</head>
<body>
<div style="stroke-color: red;">&#x25fc;</div>
<div style="stroke-color: blue;">&#x25fc;</div>
<div style="stroke-color: #ff00ffff;">&#x25fc;</div>
<div style="stroke-color: #ffff00ff;">&#x25fc;</div>
<div style="stroke-color: red;"><span>&#x25fc;</span></div>
<div style="stroke-color: blue;"><span>&#x25fc;</span></div>
<div style="stroke-color: #ff00ffff;"><span>&#x25fc;</span></div>
<div style="stroke-color: #ffff00ff;"><span>&#x25fc;</span></div>
</body>
</html>