summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/smil/shadow-dom-01.html
blob: 01a33093407f2fbe567b12b52a16af0daedfce8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html class="reftest-wait">
  <svg width="100%" height="100%" viewBox="0 0 100 100">
    <rect width="100" height="100" fill="red">
      <set attributeName="width" to="0" begin="0s" fill="freeze"/>
    </rect>
  </svg>
  <p></p>
  <script>
    let p = document.querySelector("p")
    let shadow = p.attachShadow({mode: 'open'});
    shadow.appendChild(document.querySelector("svg"))
    document.documentElement.removeAttribute("class");
  </script>
  <style>
    * {
      margin: 0;
    }
    html {
      background-color: lime;
    }
  </style>
</html>