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

14 lines
243 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>