tor-browser

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

text-transform.html (1196B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <link rel="match" href="text-transform-ref.html">
      6 </head>
      7 <body style="text-transform: uppercase;">
      8  <span>this text should be upper-case.</span><br />
      9 
     10  <input type="text" value="this text should be lower-case."><br />
     11 
     12  <select>
     13    <option>this text should be lower-case.</option>
     14  </select><br />
     15  <select multiple>
     16    <option>this text should be lower-case.</option>
     17  </select><br />
     18  <select multiple>
     19    <optgroup label="this text should be lower-case.">
     20      <option>this text should be lower-case.</option>
     21    </optgroup>
     22  </select><br />
     23 
     24  <select style="text-transform: uppercase;">
     25    <option>this text should be upper-case.</option>
     26  </select><br />
     27  <select multiple style="text-transform: uppercase;">
     28    <option>this text should be upper-case.</option>
     29  </select><br />
     30  <select multiple style="text-transform: uppercase;">
     31    <optgroup label="this text should be upper-case.">
     32      <option>this text should be upper-case.</option>
     33    </optgroup>
     34  </select><br />
     35 
     36  <button>this text should be lower-case.</button><br />
     37 
     38  <textarea>this text should be lower-case.</textarea><br />
     39 </body>
     40 </html>