Chromium Code Reviews| Index: third_party/WebKit/Source/web/tests/data/frameserialization/form.html |
| diff --git a/third_party/WebKit/Source/web/tests/data/frameserialization/form.html b/third_party/WebKit/Source/web/tests/data/frameserialization/form.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7a68bc89ec1fd82a953902ad4d86b674555c457e |
| --- /dev/null |
| +++ b/third_party/WebKit/Source/web/tests/data/frameserialization/form.html |
| @@ -0,0 +1,31 @@ |
| +<html> |
| +<meta charset="utf8"> |
| +<body> |
| +<form> |
|
carlosk
2016/12/07 21:07:23
I'd suggest also adding a few input attributes tha
jianli
2016/12/07 22:10:48
Done.
|
| +<input type="text" name="name" value=""> |
| +<input type="password" name="pwd"> |
| +<input type="email" name="email"> |
| +<input type="file" name="attachment"> |
| +<input type="date" name="date"> |
| +<input type="time" name="time"> |
| +<input type="radio" name="radio" value="1"> |
| +<input type="checkbox" name="checkbox" value="here"> |
| +<input type="number" name="quantity" min="1" max="5"> |
| +<input type="color" name="favcolor"> |
| +<input type="range" name="points" min="0" max="10"> |
| +<textarea name="message" rows="2" cols="20"></textarea> |
| +<select name="choices"> |
| + <option value="c1">c1</option> |
| +</select> |
| +<input list="items"> |
| +<datalist id="items" default="i1"> |
| + <option value="i1">i1</option> |
| +</datalist> |
| +<output name="sum" for=""></output> |
| +<button type="button">Validate</button> |
| +<input type="button" value="Click"> |
| +<input type="reset"> |
| +<input type="submit" value="Submit"> |
| +</form> |
| +</body> |
| +</html> |