Git init
[framework/web/webkit-efl.git] / LayoutTests / fast / forms / basic-inputs.html
1 <html>
2 <body style="width:470px">
3 <style>
4 div {
5     border:1px solid red;
6     margin:10px;
7 }
8 </style>
9
10 This tests basic inputs. Here's what you should see:
11 <br><br>
12 first line: the letter "a" and then a text input field filled with repeating "foobarbaz",  then the word "text" followed by a disabled text input field filled with "foo" and then the letter "b" and then "a"
13 <br><br>
14 second line: and then a password input field that's filled and then the word "password" and then a disabled password field that's filled
15 and then the letter "b"
16 <br><br>
17 third line: the letter "a" and then a checkbox (unchecked) with the word "checkbox" and then a disabled checkbox and letter "b"
18 <br><br>
19 fourth line: the last line has the letter "a" and then a redio button (unselected) and then the word "radio" and then a disabled radio button and the letter "b"
20 <br><br>
21
22 <div>
23     a<input value="foobarbazfoobarbazfoobarbaz" type="text" />text
24     <input value="foo" type="text" DISABLED />b
25     a<input value="foo" type="password" />password
26     <input value="foo" type="password" DISABLED />b
27 </div>
28
29 <div>
30     a<input value="foo" type="checkbox" />checkbox
31     <input value="foo" type="checkbox" DISABLED />b
32 </div>
33
34 <div>
35     a<input value="foo" type="radio" />radio
36     <input value="foo" type="radio" DISABLED />b
37 </div>
38
39 </body>
40 </html>