gecko/layout/style/crashtests/605689-1.html

14 lines
249 B
HTML

<!DOCTYPE html>
<script>
function boom()
{
var r = document.documentElement;
r.style.display = "table-cell";
r.style.MozTransitionProperty = "x";
window.getComputedStyle(r).MozTransitionProperty;
}
</script>
<body onload="boom();"></body>