summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scoping/host-is-001.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-scoping/host-is-001.html')
-rw-r--r--testing/web-platform/tests/css/css-scoping/host-is-001.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-scoping/host-is-001.html b/testing/web-platform/tests/css/css-scoping/host-is-001.html
new file mode 100644
index 0000000000..16d0dd7669
--- /dev/null
+++ b/testing/web-platform/tests/css/css-scoping/host-is-001.html
@@ -0,0 +1,21 @@
+<!doctype html>
+<meta charset="utf-8">
+<title>:host and :is (basic) </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) .nested {
+ width: 100px;
+ height: 100px;
+ background-color: green;
+ }
+ </style>
+ <div class="nested"></div>
+ `;
+</script>