summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-text-decor/text-decoration-propagation-shadow.html
blob: ac365ee046666c7e2945d1e76622b38f723cf6a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<title>CSS Test: text-decoration propagation into shadow DOM boxes</title>
<link rel="help" href="https://drafts.csswg.org/css-text-decor/#line-decoration">
<link rel="match" href="reference/text-decoration-underline-ref.html">
<style>
  #host { text-decoration: underline }
</style>
<p>
  <div id="host">
    <span>This text should be underlined.</span>
  </div>
</p>
<script>
  const root = host.attachShadow({mode:"open"});
  root.appendChild(document.createElement("slot"));
</script>