tor-browser

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

backplate-bg-image-009.html (671B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <link rel="stylesheet" type="text/css" href="ahem.css" />
      5    <title>Text in a non-native select object that overlaps a background image should be backplated.</title>
      6    <style>
      7    body {
      8      font: 20px Ahem;
      9    }
     10    select {
     11      font: 20px Ahem;
     12      border: 0px;
     13      /* This forces non-native styling */
     14    }
     15    .std {
     16      background-image: url("blue.png");
     17      height: 500px;
     18    }
     19    </style>
     20 </head>
     21 <body>
     22    <div class="std"><!-- no whitespace
     23    -->ppppp<!-- no whitespace
     24    --><select>
     25      <option>ppppp</option>
     26    </select><!-- no whitespace
     27    -->ppppp<!-- no whitespace
     28    --></div>
     29 </body>
     30 </html>