diff options
Diffstat (limited to 'layout/generic/crashtests/373859-1.html')
-rw-r--r-- | layout/generic/crashtests/373859-1.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/generic/crashtests/373859-1.html b/layout/generic/crashtests/373859-1.html new file mode 100644 index 0000000000..f9e4aa0214 --- /dev/null +++ b/layout/generic/crashtests/373859-1.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> +<head> +<script> +function boom() +{ + document.getElementById("k").style.display = "-moz-inline-box"; +} +</script> + +<body onload="boom();"> + +<div style="display: table;"><div id="k" style="height: 18000000px;">x</div></div> + +</body> +</html> |