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> |