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

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

Issue 2538953002: Remove hidden elements from MHTML (Closed)
Patch Set: Fix trybots 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
« 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 <head>
3 <meta charset="utf8">
4 <style>
5 h1 { display: none; }
6 h2 { visibility: hidden; }
7 </style>
8 <title>Test Hidden Elements</title>
9 <link rel="next" href="next.html">
10 </head>
11 <body">
12 <h1>Title</h1>
13 <h2>Subtitle</h2>
14 <p id="hidden_id" hidden>Invisible</p>
15 <p id="visible_id">Visible</p>
16 <form>
17 <input type="text" size="10">
18 <input type="hidden" name="foo" value="bar">
19 <input list="items">
20 <datalist id="items" default="i1">
21 <option value="i1">i1</option>
22 </datalist>
23 </form>
24 <div itemscope>
25 <meta itemprop="name" content="value">
26 </div>
27 </body>
28 </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