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

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

Issue 2560693002: Disable form elements in MHTML (Closed)
Patch Set: Address feedback 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
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameSerializerTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameSerializerTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698