summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-dynamic-009.html
blob: 726cf672fc0d5e84151702938ca6eae970c50bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<body onload="f()">
  <p>First</p>
  <p>
    <style>
      p { color: green }
    </style>
    Second
  </p>
  <p>Third</p>
  <script>
    function f() {
      var style = document.getElementsByTagName("style")[0];
      style.scoped = true;
    }
  </script>
</body>