OLD | NEW |
(Empty) | |
| 1 <!-- |
| 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this |
| 3 * source code is governed by a BSD-style license that can be found in the |
| 4 * LICENSE file. |
| 5 --> |
| 6 <html> |
| 7 <body> |
| 8 <script src="submit.js"></script> |
| 9 <div> |
| 10 <form action="nonExistingTarget.html" method="POST" enctype="application/x-w
ww-form-urlencoded"> |
| 11 <input name="text1" id="text1" type="text" value="TEST_TEXT_1" /> |
| 12 <input name="text2" id="text2" type="text" value="TEST_TEXT_2" /> |
| 13 <input name="text3" id="text3" type="text" value="TEST_TEXT_3" /> |
| 14 <input name="password" id="password" type="password" value="password" /> |
| 15 <input name="radio" id="radio" type="radio" value="Yes" checked /> Yes |
| 16 <input name="radio" id="radio" type="radio" value="No" /> No |
| 17 <input name="check" id="check" type="checkbox" value="option_A" checked />
A |
| 18 <input name="check" id="check" type="checkbox" value="option_B" /> B |
| 19 <textarea name="txtarea" id="txtarea" rows="2" cols="20">Text</textarea> |
| 20 <select name="select" id="select"> |
| 21 <option value="one">one</option> |
| 22 <option value="two">two</option> |
| 23 <option value="three">three</option> |
| 24 </select> |
| 25 <input type="submit" /> |
| 26 </form> |
| 27 </div> |
| 28 </body> |
| 29 </html> |
OLD | NEW |