| OLD | NEW |
| (Empty) | |
| 1 <html> |
| 2 <meta charset="utf8"> |
| 3 <body> |
| 4 <form> |
| 5 <input type="text" name="dname" value="" disabled> |
| 6 <input type="text" name="name" value=""> |
| 7 <input type="password" name="pwd"> |
| 8 <input type="email" name="email"> |
| 9 <input type="file" name="attachment"> |
| 10 <input type="date" name="date"> |
| 11 <input type="time" name="time"> |
| 12 <input type="radio" name="radio" value="1"> |
| 13 <input type="checkbox" name="checkbox" value="here"> |
| 14 <input type="number" name="quantity" min="1" max="5"> |
| 15 <input type="color" name="favcolor"> |
| 16 <input type="range" name="points" min="0" max="10"> |
| 17 <textarea name="message" rows="2" cols="20"></textarea> |
| 18 <select name="choices"> |
| 19 <option value="c1">c1</option> |
| 20 </select> |
| 21 <input list="items"> |
| 22 <datalist id="items" default="i1"> |
| 23 <option value="i1">i1</option> |
| 24 </datalist> |
| 25 <output name="sum" for=""></output> |
| 26 <button type="button" disabled>Foo</button> |
| 27 <button type="button">Validate</button> |
| 28 <input type="button" value="Click"> |
| 29 <input type="reset"> |
| 30 <input type="submit" value="Submit"> |
| 31 </form> |
| 32 </body> |
| 33 </html> |
| OLD | NEW |