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

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

Powered by Google App Engine
This is Rietveld 408576698