tor-browser

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

inline-cache-base-uri-cssom.html (446B)


      1 <!doctype html>
      2 <title>Relative URI in potentially-cached stylesheet</title>
      3 <link rel="help" href="https://drafts.csswg.org/css-values-4/#relative-urls">
      4 <link rel="match" href="inline-cache-base-uri-cssom-ref.html">
      5 <style>
      6  :root { background-color: red; }
      7 </style>
      8 <base href="/images/">
      9 <style>
     10  :root { background-color: red; }
     11 </style>
     12 <script>
     13 document.styleSheets[1].insertRule(`:root { background-image: url(green.png) }`);
     14 </script>