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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/tests/data/frameserialization/hidden_elements.html
diff --git a/third_party/WebKit/Source/web/tests/data/frameserialization/hidden_elements.html b/third_party/WebKit/Source/web/tests/data/frameserialization/hidden_elements.html
new file mode 100644
index 0000000000000000000000000000000000000000..bc363d50256ccf0e6408c1f49e5defc2467ed070
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/frameserialization/hidden_elements.html
@@ -0,0 +1,19 @@
+<html>
+<head>
+<meta charset="utf8">
+<style>
+h1 { display: none; }
+h2 { visibility: hidden; }
+</style>
+</head>
+<body">
+<h1>Title</h1>
+<h2>Subtitle</h2>
+<p id="hidden_id" hidden>Invisible</p>
+<p id="visible_id">Visible</p>
+<form>
+ <input type="text" size="10">
+ <input type="hidden" name="foo" value="bar">
+</form>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698