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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
243 B
HTML
Raw Normal View History

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