tor-browser

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

css-linked-parameters-precedence-2.html (561B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Link Parameters - url function with modifier take precedence over URL fragment identifier</title>
      4 <link rel="author" title="Divyansh Mangal" href="mailto:dmangal@microsoft.com">
      5 <link rel="help" href="https://drafts.csswg.org/css-link-params/#setting">
      6 <link rel="match" href="circle-green-ref.html"/>
      7 <style>
      8  .image-with-params {
      9  width:100px;
     10  height:100px;
     11  background-image: url("circle-with-parameters.svg#param(--color,red)" param(--color, green));
     12  }
     13 </style>
     14 <div class="image-with-params"></div>