tor-browser

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

text-transform-upperlower-105-ref.html (567B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>CSS Text Test: text-transform uppercase German sharp S and selection reference file</title>
      4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
      5 <style>
      6 #target {
      7  color: white;
      8  background: red;
      9 }
     10 #target::selection {
     11  background: green;
     12 }
     13 </style>
     14 
     15 <p>The test passes if you see no red below (when you select the text below you can select the whole "SS" text).</p>
     16 
     17 <span id="target" lang="de">SS</span>
     18 
     19 <script>
     20  window.getSelection().setBaseAndExtent(target, 0, target, 1);
     21 </script>