summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/493968-1.html
blob: a725be25fc21aa2ea9a42d873464cbf698d8d58d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
  <head>
    <style>body { color: red; }</style>
    <link rel="stylesheet" href="data:text/css,@import 'data:text/css,body { color: green }'; @import 'data:text/css,foopy {}';" id="r">
    <link rel="stylesheet" href="data:text/css,@import 'data:text/css,body { color: green }'; @import 'data:text/css,foopy {}';">
    <script>
      // Force a unique inner for the second linked sheet
      document.styleSheets[2].cssRules[0];

      // Ditch the first sheet
      var r = document.getElementById("r");
      r.remove();
    </script>
  </head>
  <body>
    This should be green
  </body>
</html>