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

Side by Side Diff: third_party/WebKit/Source/web/tests/data/frameserialization/hidden_elements.html

Issue 2624953002: Set width and height attributes for <img> if image is loaded from srcset (Closed)
Patch Set: Fix another typo Created 3 years, 11 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
1 <html> 1 <html>
2 <head> 2 <head>
3 <meta charset="utf8"> 3 <meta charset="utf8">
4 <style> 4 <style>
5 h1 { display: none; } 5 h1 { display: none; }
6 h2 { visibility: hidden; } 6 h2 { visibility: hidden; }
7 </style> 7 </style>
8 <title>Test Hidden Elements</title> 8 <title>Test Hidden Elements</title>
9 <link rel="next" href="next.html"> 9 <link rel="next" href="next.html">
10 </head> 10 </head>
11 <body"> 11 <body>
12 <h1>Title</h1> 12 <h1>Title</h1>
13 <h2>Subtitle</h2> 13 <h2>Subtitle</h2>
14 <p id="hidden_id" hidden>Invisible</p> 14 <p id="hidden_id" hidden>Invisible</p>
15 <p id="visible_id">Visible</p> 15 <p id="visible_id">Visible</p>
16 <form> 16 <form>
17 <input type="text" size="10"> 17 <input type="text" size="10">
18 <input type="hidden" name="foo" value="bar"> 18 <input type="hidden" name="foo" value="bar">
19 <input list="items"> 19 <input list="items">
20 <datalist id="items" default="i1"> 20 <datalist id="items" default="i1">
21 <option value="i1">i1</option> 21 <option value="i1">i1</option>
22 </datalist> 22 </datalist>
23 </form> 23 </form>
24 <div itemscope> 24 <div itemscope>
25 <meta itemprop="name" content="value"> 25 <meta itemprop="name" content="value">
26 </div> 26 </div>
27 </body> 27 </body>
28 </html> 28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698