summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-import/436261-3.html
blob: dbdcf61bdb8f44c85b7d7abd9e81fe5569690f42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
  <body>
    <script type="text/javascript">
      var el = document.createElement("link");
      el.type = "text/css";
      el.rel = "stylesheet";
      el.media = "print"
      el.href = "outer-sheet.css";
      var h = document.getElementsByTagName("HEAD")[0];
      h.appendChild(el);

      el = document.createElement("link");
      el.type = "text/css";
      el.rel = "stylesheet";
      el.href = "outer-sheet.css";
      var h = document.getElementsByTagName("HEAD")[0];
      h.appendChild(el);
    </script>
    <p>test</p>
  </body>
</html>