Index: third_party/WebKit/LayoutTests/imported/wpt/html/editing/the-hidden-attribute/hidden-1c.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/html/editing/the-hidden-attribute/hidden-1c.html b/third_party/WebKit/LayoutTests/imported/wpt/html/editing/the-hidden-attribute/hidden-1c.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8a8cc63c481b5a19bef3eb3e6dc6e9718043c074 |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/html/editing/the-hidden-attribute/hidden-1c.html |
@@ -0,0 +1,12 @@ |
+<!doctype html> |
+<title>The hidden attribute</title> |
+<link rel=match href=hidden-1-ref.html> |
+<link rel=author title=Ms2ger href=mailto:Ms2ger@gmail.com> |
+<link rel=help href=https://html.spec.whatwg.org/multipage/#the-hidden-attribute> |
+<link rel=help href=https://html.spec.whatwg.org/multipage/#hidden-elements> |
+<p hidden>This line should be visible. |
+<p>This line should not be visible. |
+<script> |
+document.getElementsByTagName("p")[0].hidden = false; |
+document.getElementsByTagName("p")[1].hidden = true; |
+</script> |