image-set-first-match-rendering.html (638B)
1 <!DOCTYPE html> 2 <title>Image set type first match rendering</title> 3 <link rel="author" title="Noam Rosenthal" href="mailto:noam@webkit.org"> 4 <link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org"> 5 <link rel="help" href="https://drafts.csswg.org/css-images-4/#image-set-notation"> 6 <link rel="match" href="reference/image-set-rendering-ref.html"> 7 <meta name="assert" content="image-set rendering picks first valid match"> 8 <style> 9 #test { 10 background-image: image-set( 11 url("/images/green.png") 1x, 12 url("/images/red.png") 1x 13 ); 14 width: 100px; 15 height: 100px; 16 } 17 </style> 18 <div id="test"></div>