chromium/third_party/blink/web_tests/css3/blending/background-blend-mode-svg-color.html

<!DOCTYPE HTML>
<html>
<head>
<style>
    div {
        width: 130px;
        height: 130px;
        background: url('resources/blue-circle.svg'), green;
        background-size: 130px 130px;
        float: left;
        margin: 5px;
    }
</style>
</head>
<!-- This file should contain an svg on top of a background color with every type of blending. -->
<body>
    <div style="background-blend-mode: normal, normal"></div>
    <div style="background-blend-mode: multiply, normal"></div>
    <div style="background-blend-mode: screen, normal"></div>
    <div style="background-blend-mode: overlay, normal"></div>
    <div style="background-blend-mode: darken, normal"></div>
    <div style="background-blend-mode: lighten, normal"></div>
    <div style="background-blend-mode: color-dodge, normal"></div>
    <div style="background-blend-mode: color-burn, normal"></div>
    <div style="background-blend-mode: hard-light, normal"></div>
    <div style="background-blend-mode: soft-light, normal"></div>
    <div style="background-blend-mode: difference, normal"></div>
    <div style="background-blend-mode: exclusion, normal"></div>
    <div style="background-blend-mode: hue, normal;"></div>
    <div style="background-blend-mode: saturation, normal"></div>
    <div style="background-blend-mode: color, normal"></div>
    <div style="background-blend-mode: luminosity, normal"></div>
</body>
</html>