| 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..5504496536ac0a2d4229df2bb77f237700a38c52
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/web/tests/data/frameserialization/form.html
|
| @@ -0,0 +1,33 @@
|
| +<html>
|
| +<meta charset="utf8">
|
| +<body>
|
| +<form>
|
| +<input type="text" name="dname" value="" disabled>
|
| +<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" disabled>Foo</button>
|
| +<button type="button">Validate</button>
|
| +<input type="button" value="Click">
|
| +<input type="reset">
|
| +<input type="submit" value="Submit">
|
| +</form>
|
| +</body>
|
| +</html>
|
|
|