tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

image-set-content-rendering.html (740B)


      1 <!DOCTYPE html>
      2 <title>Image set is supported in the content property</title>
      3 <link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
      4 <link rel="author" title="Noam Rosenthal" href="mailto:noam@webkit.org">
      5 <link rel="author" title="Traian Captan" href="mailto:tcaptan@chromium.org">
      6 <link rel="help" href="https://drafts.csswg.org/css-images-4/#image-set-notation">
      7 <link rel="help" href="https://drafts.csswg.org/css-content/#content-property">
      8 <link rel="match"  href="reference/image-set-rendering-ref.html">
      9 <meta name="assert" content="image-set content rendering">
     10 <style>
     11  #test {
     12    content: image-set(url("/images/green.png") 1x);
     13    width: 100px;
     14    height: 100px;
     15  }
     16 </style>
     17 <div id="test"></div>