summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-highlight-api/highlight-priority-painting-ref.html
blob: 1865f1e104917ebeb3d6e9cb53de06977ea8623c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
    <title>Highlight priority attribute painting</title>
    <style>
    #green-highlight {
        background-color: green;
    }
    .yellow-highlight {
        background-color: yellow;
    }
    .blue-highlight {
        background-color: blue;
    }
    </style>
</head>
<body>
    <span id="green-highlight">Green</span>
    <span class="yellow-highlight">Yellow</span>
    <span class="blue-highlight">Blue</span>
    <span class="yellow-highlight">Yellow</span><span class="blue-highlight">-Blue</span>
</body>
</html>