summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1566684.html
blob: 328ec46a6b7501b994e3022c69bb824f4601ec48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<style>
  x { }
</style>
<script>
  var sheet = document.styleSheets[0];
  var rule = sheet.cssRules[0];
  var decl = rule.style;
  rule.expando = 5;
  decl.expando = 6;
  sheet.deleteRule(0);
  rule = decl = null;
  SpecialPowers.forceGC();
  SpecialPowers.forceCC();
  SpecialPowers.forceGC();
</script>