chromium/third_party/blink/web_tests/fast/backgrounds/background-fast-path-simple-color.html

<!doctype html>
<html>
<head>
<!--
Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=59274">https://bugs.webkit.org/show_bug.cgi?id=59274</a>
The test passes if you see a green rectangle below.
-->
<style type="text/css" media="screen">
    div {
        width:100px;
        height:100px;
        display:block;
        background-repeat:no-repeat;
        background-image:none, url(../../http/tests/multipart/resources/green-100x100.png);
        background-position:0px 0px, 0px 0px;
    }

    div:first-child {
        background-color: red;
    }
</style>
</head>
<body>
<div></div>
</body>
</html>