Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <body> | |
| 3 <script src="submit.js"></script> | |
| 4 <div> | |
| 5 <form action="nonExistingTarget.html" method="POST" enctype="text/plain"> | |
| 6 <input name="text1" id="text1" type="text" value="TEST_TEXT_1" /> | |
| 7 <!-- | |
| 8 <label for="file1">Filename:</label> | |
| 9 <input name="file1" id="file1" type="file" /> | |
| 10 <label for="file2">Filename:</label> | |
| 11 <input name="file2" id="file2" type="file" /> | |
| 12 --> | |
|
battre
2012/07/11 12:28:43
delete?
vabr (Chromium)
2012/07/12 15:13:11
Done.
| |
| 13 <input name="text2" id="text2" type="text" value="TEST_TEXT_2" /> | |
| 14 <input name="text3" id="text3" type="text" value="TEST_TEXT_3" /> | |
| 15 <input name="pw" id="pw" type="password" value="pw" /> | |
| 16 <input name="radio" id="radio" type="radio" value="Yes" checked /> Yes | |
| 17 <input name="radio" id="radio" type="radio" value="No" /> No | |
| 18 <input name="chck" id="chck" type="checkbox" value="option_A" checked /> A | |
| 19 <input name="chck" id="chck" type="checkbox" value="option_B" /> B | |
| 20 <textarea name="txtarea" id="txtarea" rows="2" cols="20">Text</textarea> | |
| 21 <select name="select" id="select"> | |
| 22 <option value="one">one</option> | |
| 23 <option value="two">two</option> | |
| 24 <option value="three">three</option> | |
| 25 </select> | |
| 26 <input type="submit" /> | |
| 27 </form> | |
| 28 </div> | |
| 29 </body> | |
| 30 </html> | |
| OLD | NEW |