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

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: 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
OLDNEW
(Empty)
1 <html>
2 <head>
3 <meta charset="utf8">
4 <style>
5 h1 { display: none; }
6 h2 { visibility: hidden; }
7 </style>
8 </head>
9 <body">
10 <h1>Title</h1>
11 <h2>Subtitle</h2>
12 <p id="hidden_id" hidden>Invisible</p>
13 <p id="visible_id">Visible</p>
14 <form>
15 <input type="text" size="10">
16 <input type="hidden" name="foo" value="bar">
17 </form>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698