3 <title>CSS4 media query test: color-gamut.</title>
4 <style type="text/css">
5 #a { background-color: green; color: white; }
6 #b { background-color: green; color: white; }
8 @media (color-gamut: p3) {
9 #b { background-color: blue; }
14 <p id="a">This paragraph should have a green background.</p>
15 <p id="b">This paragraph should have a blue background on a device with a display that supports something close to P3. Otherwise the background should be green.</p>
16 <p>Note that the expected results of this test assume a display that is not significantly wider than sRGB.</p>