summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scoping/host-is-005.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-scoping/host-is-005.html')
-rw-r--r--testing/web-platform/tests/css/css-scoping/host-is-005.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-scoping/host-is-005.html b/testing/web-platform/tests/css/css-scoping/host-is-005.html
new file mode 100644
index 0000000000..1e2209abda
--- /dev/null
+++ b/testing/web-platform/tests/css/css-scoping/host-is-005.html
@@ -0,0 +1,22 @@
+<!doctype html>
+<meta charset="utf-8">
+<title>:host and :is() (with pseudos)</title>
+<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
+<link rel="author" title="Mozilla" href="https://mozilla.org">
+<link rel="help" href="https://drafts.csswg.org/selectors/#featureless">
+<link rel="match" href="/css/reference/ref-filled-green-100px-square-only.html">
+<p>Test passes if there is a filled green square.</p>
+<div id="host"></div>
+<script>
+ host.attachShadow({mode: "open"}).innerHTML = `
+ <style>
+ :is(:host)::before {
+ display: block;
+ content: "";
+ width: 100px;
+ height: 100px;
+ background-color: green;
+ }
+ </style>
+ `;
+</script>