summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-scoping/shadow-link-rel-stylesheet-no-style-leak.html
blob: 8ca69ccd1b287ad36283405c8ca95742ad08299e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<title>CSS Test: &lt;link rel="stylesheet"&gt; in Shadow DOM doesn't affect the normal DOM</title>
<link rel="help" href="https://html.spec.whatwg.org/#link-type-stylesheet">
<link rel="help" href="https://drafts.csswg.org/css-scoping/#selectors-data-model">
<link rel="match" href="reference/green-box.html">
<p>Test passes if you see a single 100px by 100px green box below.</p>
<style>
  #light-dom {
    width: 100px;
    height: 100px;
    background: green;
    color: green;
  }
</style>
<div id="host">FAIL</div>
<div id="light-dom"></div>
<script>
  host.attachShadow({ mode: "open" }).innerHTML = `
    <link rel="stylesheet" href="data:text/css,div { background: red !important }">
  `;
</script>