summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scoping/shadow-link-rel-stylesheet.html
blob: d67929a1adbd42b807500685c6a36a9e61e22fed (plain)
1
2
3
4
5
6
7
8
9
10
11
<!doctype html>
<title>CSS Test: &lt;link rel="stylesheet"&gt; in Shadow DOM</title>
<link rel="help" href="https://html.spec.whatwg.org/#link-type-stylesheet">
<link rel="match" href="reference/green-box.html">
<p>Test passes if you see a single 100px by 100px green box below.</p>
<div id="host">FAIL</div>
<script>
  host.attachShadow({ mode: "open" }).innerHTML = `
    <link rel="stylesheet" href="resources/host-green-box.css">
  `;
</script>