summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/621596-1.html
blob: 8bfd68185be0d1fc0906dafc4dcd548b991273f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
<head>
<script>

function boom()
{
  document.documentElement.style.MozColumnWidth = "1px";
  document.documentElement.style.MozOutlineRadiusBottomleft = "100%";
  document.documentElement.style.padding = "2251799813685249em";
  window.getComputedStyle(document.documentElement).MozOutlineRadiusBottomleft;
}

</script>
</head>

<body onload="boom();"></body>
</html>