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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameSerializerTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <html>
2 <meta charset="utf8">
3 <body>
4 <form>
5 <input type="text" name="dname" value="" disabled>
6 <input type="text" name="name" value="">
7 <input type="password" name="pwd">
8 <input type="email" name="email">
9 <input type="file" name="attachment">
10 <input type="date" name="date">
11 <input type="time" name="time">
12 <input type="radio" name="radio" value="1">
13 <input type="checkbox" name="checkbox" value="here">
14 <input type="number" name="quantity" min="1" max="5">
15 <input type="color" name="favcolor">
16 <input type="range" name="points" min="0" max="10">
17 <textarea name="message" rows="2" cols="20"></textarea>
18 <select name="choices">
19 <option value="c1">c1</option>
20 </select>
21 <input list="items">
22 <datalist id="items" default="i1">
23 <option value="i1">i1</option>
24 </datalist>
25 <output name="sum" for=""></output>
26 <button type="button" disabled>Foo</button>
27 <button type="button">Validate</button>
28 <input type="button" value="Click">
29 <input type="reset">
30 <input type="submit" value="Submit">
31 </form>
32 </body>
33 </html>
OLDNEW
« 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