<html> | |
<head> | |
<title>This tests that background image is filling up the space properly when on subpixel position.</title> | |
<style> | |
.gradient{ | |
width: 300px; | |
height: 100.8px; | |
position: absolute; | |
background-image: linear-gradient(white, black); | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="gradient">Pass if there's no black line at the top of the gradient.</div> | |
</div> | |
</body> | |
</html> |