Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / forms / button-default-title.html
blobf6bf7bc1fb4c6fdc0563840c85a43570ac43883a
1 <html>
3 <head>
4 <style type="text/css">
5 .testButton {
6 background: green;
7 height: 21px;
8 width: 80px;
10 </style>
11 </head>
13 <body>
15 <h3>&lt;input type=&quot;submit&quot;&gt;</h3>
17 <p>This button should have the default submit button title:</p>
18 <input type="submit" class="testButton"/>
20 <p>This button should should have the title &quot;Foo&quot;:</p>
21 <input type="submit" value="Foo" class="testButton"/>
23 <p>This button should have a single space in its title:</p>
24 <input type="submit" value=" " class="testButton"/>
26 <p>This button should have no title:</p>
27 <input type="submit" value="" class="testButton"/>
30 <h3>&lt;input type=&quot;reset&quot;&gt;</h3>
32 <p>This button should have the default reset button title:</p>
33 <input type="reset" class="testButton"/>
35 <p>This button should should have the title &quot;Foo&quot;:</p>
36 <input type="reset" value="Foo" class="testButton"/>
38 <p>This button should have a single space in its title:</p>
39 <input type="reset" value=" " class="testButton"/>
41 <p>This button should have no title:</p>
42 <input type="reset" value="" class="testButton"/>
44 </body>
46 </html>