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

Unified 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 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
« no previous file with comments | « third_party/WebKit/Source/web/tests/WebFrameSerializerTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..c6adbad1189d3b249409122aba30c0f44fe9bf5e
--- /dev/null
+++ b/third_party/WebKit/Source/web/tests/data/frameserialization/hidden_elements.html
@@ -0,0 +1,28 @@
+<html>
+<head>
+<meta charset="utf8">
+<style>
+h1 { display: none; }
+h2 { visibility: hidden; }
+</style>
+<title>Test Hidden Elements</title>
+<link rel="next" href="next.html">
+</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">
+ <input list="items">
+ <datalist id="items" default="i1">
+ <option value="i1">i1</option>
+ </datalist>
+</form>
+<div itemscope>
+ <meta itemprop="name" content="value">
+</div>
+</body>
+</html>
« 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