chromium/third_party/blink/web_tests/fast/backgrounds/background-repeat-with-background-color.html

<!DOCTYPE html>
<html>
<head>
<style>
div {
  display: inline-block;
  width: 130px;
  height: 110px;
  margin: 10px;
  background-color: green;
  background-image: url(resources/green-24x24.png);
}
</style>
</head>

<body>
  <div style="background-repeat: repeat repeat;"></div>
  <div style="background-repeat: repeat space;"></div>
  <div style="background-repeat: repeat round;"></div>
  <br>

  <div style="background-repeat: space repeat;"></div>
  <div style="background-repeat: space space;"></div>
  <div style="background-repeat: space round;"></div>
  <br>

  <div style="background-repeat: round repeat;"></div>
  <div style="background-repeat: round space;"></div>
  <div style="background-repeat: round round;"></div>
  <br>

</body>
</html>