Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / basic-inputs.html
blob5b32da58837465897450a02553203736e273a694
1 <html>
2 <body style="width:470px">
3 <style>
4 div {
5 border:1px solid red;
6 margin:10px;
8 </style>
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>
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>
29 <div>
30 a<input value="foo" type="checkbox" />checkbox
31 <input value="foo" type="checkbox" DISABLED />b
32 </div>
34 <div>
35 a<input value="foo" type="radio" />radio
36 <input value="foo" type="radio" DISABLED />b
37 </div>
39 </body>
40 </html>