blob: 8fe770d6cbbc29a1eb887b7fd857fa2aa3ee93fd [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
div {
display: inline-block;
width: 200px;
height: 100px;
background-image: repeating-linear-gradient(red 10%, green 10%, green 30%);
}
.ref {
background-image: repeating-linear-gradient(green 10%, green 30%);
}
</style>
</head>
<body>
<!-- You should see two green rectangles, with no red. -->
<div></div>
<div class="ref"></div>
</body>
</html>