summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-color/tagged-images-003.html
blob: 14f154b88acfd622c72f50f3d8f1fe4641a6ee00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Color 4: Color Space of Tagged Images. CSS background property</title>
<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
<link rel="help" href="https://drafts.csswg.org/css-color-4/#tagged-images">
<link rel="help" href="https://w3c.github.io/PNG-spec/#11iCCP">
<meta name="assert" content="Tagged RGB images... if the color profile or other identifying information is valid, must be treated as being in the specified color space.">
<link rel="match" href="./greensquare-090-ref.html">
<style>
    .test { background-color: red; width: 12em; height: 6em; margin-top: 0; }
    .ref { background-color: #090; width: 12em; height: 6em; margin-bottom: 0; } /* red-green swap of #900 sRGB */
    /* solid color #990000 PNG image, iCCP with v2 ICC swapped red-green sRGB profile */
    .test { background: url(./support/swap-990000-iCCP.png); }
</style>
<body>
    <p>Test passes if you see a green square, and no red.</p>
    <div class="ref"></div>
    <div class="test"></div>

</body>