Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(588)

Unified Diff: third_party/WebKit/Source/web/tests/data/frameserialization/form.html

Issue 2560693002: Disable form elements in MHTML (Closed)
Patch Set: Patch Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698