summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-import/436261-1.html
blob: fa13935aeb15ae98d88d34662e51cac275e273d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
  <body>
    <script type="text/javascript">
      var 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);
      el.title = "theme"; // comment this line to make the test work!
    </script>
    <p>test</p>
  </body>
</html>