diff options
Diffstat (limited to 'testing/web-platform/tests/html/editing/the-hidden-attribute')
11 files changed, 97 insertions, 0 deletions
diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/.gitkeep b/testing/web-platform/tests/html/editing/the-hidden-attribute/.gitkeep new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/.gitkeep diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1-ref.html b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1-ref.html new file mode 100644 index 000000000..7346ce919 --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1-ref.html @@ -0,0 +1,4 @@ +<!doctype html> +<title>The hidden attribute</title> +<link rel=author title=Ms2ger href=mailto:Ms2ger@gmail.com> +<p>This line should be visible. diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1a.html b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1a.html new file mode 100644 index 000000000..036bfc88b --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1a.html @@ -0,0 +1,8 @@ +<!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>This line should be visible. +<p hidden>This line should not be visible. diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1b.html b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1b.html new file mode 100644 index 000000000..3d8b05d34 --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1b.html @@ -0,0 +1,11 @@ +<!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> +<style> +p { display: none; } +[hidden] { display: block; } +</style> +<p hidden>This line should be visible. diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1c.html b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1c.html new file mode 100644 index 000000000..8a8cc63c4 --- /dev/null +++ b/testing/web-platform/tests/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> diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1d.html b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1d.html new file mode 100644 index 000000000..e759148f2 --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1d.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].removeAttribute("hidden"); +document.getElementsByTagName("p")[1].setAttribute("hidden", ""); +</script> diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1e.html b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1e.html new file mode 100644 index 000000000..2f3f3c617 --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1e.html @@ -0,0 +1,10 @@ +<!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> +<style> +p { display: block; } +</style> +<p hidden>This line should be visible. diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1f.html b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1f.html new file mode 100644 index 000000000..6df30a614 --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1f.html @@ -0,0 +1,10 @@ +<!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> +<style> +p { display: block !important; } +</style> +<p hidden>This line should be visible. diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1g.html b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1g.html new file mode 100644 index 000000000..849d61fe1 --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-1g.html @@ -0,0 +1,11 @@ +<!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>This line should be visible. +<p hidden=hidden>This line should not be visible. +<p hidden=blue>This line should not be visible. +<p hidden=true>This line should not be visible. +<p hidden=false>This line should not be visible. diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-2-ref.svg b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-2-ref.svg new file mode 100644 index 000000000..10931bfca --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-2-ref.svg @@ -0,0 +1,7 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"> +<metadata> + <link xmlns="http://www.w3.org/1999/xhtml" rel="author" title="Ms2ger" + href="mailto:Ms2ger@gmail.com"/> +</metadata> +<rect height="20" width="20"/> +</svg> diff --git a/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-2.svg b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-2.svg new file mode 100644 index 000000000..a5f08f6b2 --- /dev/null +++ b/testing/web-platform/tests/html/editing/the-hidden-attribute/hidden-2.svg @@ -0,0 +1,12 @@ +<svg xmlns="http://www.w3.org/2000/svg" height="20" width="20"> +<metadata> + <link xmlns="http://www.w3.org/1999/xhtml" rel="match" href="hidden-2-ref.svg" /> + <link xmlns="http://www.w3.org/1999/xhtml" rel="author" title="Ms2ger" + href="mailto:Ms2ger@gmail.com"/> + <link xmlns="http://www.w3.org/1999/xhtml" rel="help" + href="https://html.spec.whatwg.org/multipage/#the-hidden-attribute"/> + <link xmlns="http://www.w3.org/1999/xhtml" rel="help" + href="https://html.spec.whatwg.org/multipage/#hidden-elements"/> +</metadata> +<rect hidden="" height="20" width="20"/> +</svg> |