Bug 621596 - Followup to add the test file. (CLOSED TREE)

This commit is contained in:
Cameron McCormack 2015-10-30 19:16:34 +11:00
parent 5dcbb9c6e2
commit feea0ea4b7

View File

@ -0,0 +1,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>