summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/compositing/text-with-svg-background-ref.html
blob: dfbde22f66bb425049452613f15476906a5aae85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
    <title>CSS mix-blend-mode API Test</title>
    <link rel="author" title="dmyang" href="mailto:yangdemo@gmail.com">
    <link rel="reviewer" title="Rik Cabanier" href="mailto:cabanier@adobe.com"><!-- 11-09-2013 @TestTWF Shenzhen -->
    <meta name="flags" content="svg">
    <style type="text/css">
      .svg {
        background-color: #888;
        width: 500px;
        display: block;
        height: 60px;
        margin: 10px auto;
      }
      .svg text {
        font-size: 25px;
        line-height: 50px;
        mix-blend-mode: normal;
      }
    </style>
    <style id="insert"></style>
</head>
<body>
    <svg class="svg">
        <text class="multiply" x="10" y="20">mix-blend-mode: multiply;</text>
    </svg>
    <svg class="svg">
        <text class="screen" x="10" y="20">mix-blend-mode: screen;</text>
    </svg>
    <svg class="svg">
        <text class="overlay" x="10" y="20">mix-blend-mode: overlay;</text>
    </svg>
    <svg class="svg">
        <text class="darken" x="10" y="20">mix-blend-mode: darken;</text>
    </svg>
    <svg class="svg">
        <text class="lighten" x="10" y="20">mix-blend-mode: lighten;</text>
    </svg>
    <svg class="svg">
        <text class="color-dodge" x="10" y="20">mix-blend-mode: color-dodge;</text>
    </svg>
    <svg class="svg">
        <text class="color-burn" x="10" y="20">mix-blend-mode: color-burn;</text>
    </svg>
    <svg class="svg">
        <text class="hard-light" x="10" y="20">mix-blend-mode: hard-light;</text>
    </svg>
    <svg class="svg">
        <text class="soft-light" x="10" y="20">mix-blend-mode: soft-light;</text>
    </svg>
    <svg class="svg">
        <text class="difference" x="10" y="20">mix-blend-mode: difference;</text>
    </svg>
    <svg class="svg">
        <text class="exclusion" x="10" y="20">mix-blend-mode: exclusion;</text>
    </svg>
</body>
</html>