|
1 <?xml version="1.0" encoding="utf-8"?> |
|
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
|
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
|
4 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
5 <head> |
|
6 <title>Bug 294258 Testcase</title> |
|
7 <meta http-equiv="Content-Type" content="application/xhtml+xml"/> |
|
8 <style type="text/css"> |
|
9 * { |
|
10 font-family: monospace; |
|
11 } |
|
12 </style> |
|
13 </head> |
|
14 <body> |
|
15 <div> |
|
16 <p> |
|
17 input type="text": <input id="text" type="text"/> |
|
18 </p> |
|
19 <p> |
|
20 input type="checkbox": <input id="checkbox" type="checkbox"/> |
|
21 </p> |
|
22 <p> |
|
23 input type="file": <input id="file" type="file"/> |
|
24 </p> |
|
25 <p> |
|
26 input type="radio": |
|
27 <input type="radio" id="radio1" name="radio" value="radio1"/> |
|
28 <input id="radio2" type="radio" name="radio" value="radio2"/> |
|
29 </p> |
|
30 <p> |
|
31 textarea: <textarea id="textarea" rows="4" cols="80"></textarea> |
|
32 </p> |
|
33 <p> |
|
34 select -> option: <select id="select"> |
|
35 <option>1</option> |
|
36 <option>2</option> |
|
37 <option>3</option> |
|
38 <option>4</option> |
|
39 </select> |
|
40 </p> |
|
41 </div> |
|
42 </body> |
|
43 </html> |