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

Side by Side Diff: Source/WebKit/chromium/tests/data/pageserializer/input-image/input-image.html

Issue 16520007: Serialize <input type="image"> images (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added test framework and a test Created 7 years, 6 months 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 <!doctype html>
2 <html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <title>PageSerializer Test - Image Button</title>
6 </head>
7 <body>
8 <h1>PageSerializer Test - Image Button</h1>
9 <form>
10 <table border="1">
11 <thead>
12 <tr><th>Type</th><th>Image Button</th></tr>
13 </thead>
14 <tbody>
15 <tr><td>Existing</td><td><input type="image" src="button.png"></td></tr>
16 <tr><td>Non-existing</td><td><input type="image" src="non-existing-butto n.png"></td></tr>
17 <tr><td>Empty src</td><td><input type="image" src=""></td></tr>
18 <tr><td>No src</td><td><input type="image"></td></tr>
19 <tr><td>Data URI</td><td><input type="image" src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAABQAAAAUBAMAAAB/pwA+AAAAElBMVEVFR0J7f3N8mzuoqqedzTbT1dLa w9sTAAAAD0lEQVQI12NwgQOG4cYEANXmNSHGLZJkAAAAAElFTkSuQmCC"></td></tr>
20 </tbody>
21 </table>
22 </form>
23 </body>
24 </html>
25
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698