blob: fa248a9ce42305d6e67073406c2f3128d1ed3cfe [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>
<script>
if (window.testRunner) {
testRunner.dumpAsTextWithPixelResults();
}
</script>
</head>
<body>
<!-- You should see two green rectangles, with no red. -->
<div></div>
<div class="ref"></div>
</body>
</html>