chromium/third_party/blink/web_tests/css3/blending/background-blend-mode-data-uri-svg-image.html

<!DOCTYPE HTML>
<html>
<head>
<style>
    div {
        border: 5px navy;
        border-style: dotted double;
        background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDEwMCAxMDAiPgogIDxjaXJjbGUgY3g9IjUwIiBjeT0iNTAiIHI9IjQwIiBmaWxsPSJyZWQiLz4KPC9zdmc+'), green;
        width: 200px;
        height: 200px;
    }
</style>
<!-- This file should contain an svg circle on top of a solid color green background, with every type of blending. The container should have a visible border. -->
<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>