chromium/third_party/blink/web_tests/svg/as-background-image/same-image-two-instances-background-image.html

<!DOCTYPE html>
<html>
<head>
    <style>
         div {
            /* background-color: #EBF; */
            border: 2px dashed maroon;
            height: 50px;
            left: 100px;
            overflow: visible;
            padding: 3px;
            top: 20px;
            width: 200px;
            box-sizing: border-box;
        }
    </style>
</head>
<body>
    <!-- None of these images must look distorted -->
	<div style="background: url(../as-image/resources/circle-default-default.svg)"></div>
	<div style="background: url(../as-image/resources/circle-default-default.svg)"></div>
</body>
</html>