summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/621596-1.html
blob: 95bb498bf7c5bf1b0a59f4b40d88a5d75d9fd81a (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.columnWidth = "1px";
  document.documentElement.style.MozOutlineRadiusBottomleft = "100%";
  document.documentElement.style.padding = "2251799813685249em";
  window.getComputedStyle(document.documentElement).MozOutlineRadiusBottomleft;
}

</script>
</head>

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