gecko-dev/layout/style/crashtests/621596-1.html
Cameron McCormack d8893979ef Bug 621596 - Followup to add the test file. (CLOSED TREE)
--HG--
extra : rebase_source : 6b0e7e2402bdd8d7aa6650a6982680f17947d909
extra : amend_source : 01699d625cb9b060266ccdd0417da5d1f7ad89fb
2015-10-30 19:16:34 +11:00

19 lines
391 B
HTML

<!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>