text-transform-ref.html (1004B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 </head> 6 <body> 7 <span>THIS TEXT SHOULD BE UPPER-CASE.</span><br /> 8 9 <input type="text" value="this text should be lower-case."><br /> 10 11 <select> 12 <option>this text should be lower-case.</option> 13 </select><br /> 14 <select multiple> 15 <option>this text should be lower-case.</option> 16 </select><br /> 17 <select multiple> 18 <optgroup label="this text should be lower-case."> 19 <option>this text should be lower-case.</option> 20 </optgroup> 21 </select><br /> 22 23 <select> 24 <option>THIS TEXT SHOULD BE UPPER-CASE.</option> 25 </select><br /> 26 <select multiple> 27 <option>THIS TEXT SHOULD BE UPPER-CASE.</option> 28 </select><br /> 29 <select multiple> 30 <optgroup label="THIS TEXT SHOULD BE UPPER-CASE."> 31 <option>THIS TEXT SHOULD BE UPPER-CASE.</option> 32 </optgroup> 33 </select><br /> 34 35 <button>this text should be lower-case.</button><br /> 36 37 <textarea>this text should be lower-case.</textarea><br /> 38 </body> 39 </html>