summaryrefslogtreecommitdiffstats
path: root/layout/reftests/scoped-style/scoped-style-dynamic-005.html
blob: 38e8b56d2fd3153b11c285e29f3fc77223a54010 (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 scoped>
      p { color: green }
    </style>
    Second
  </p>
  <p>Third</p>
  <script>
    function f() {
      var style = document.getElementsByTagName("style")[0];
      style.removeAttribute("scoped");
    }
  </script>
</body>