tor-browser

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

backplate-bg-image-008.html (571B)


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