diff options
Diffstat (limited to 'layout/generic/crashtests/387058-1.html')
-rw-r--r-- | layout/generic/crashtests/387058-1.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/layout/generic/crashtests/387058-1.html b/layout/generic/crashtests/387058-1.html new file mode 100644 index 0000000000..5a3eebcaa5 --- /dev/null +++ b/layout/generic/crashtests/387058-1.html @@ -0,0 +1,16 @@ +<html> +<head> +<script> +function boom() +{ + document.getElementById("div").style.letterSpacing = ""; +} +</script> +</head> +<body onload="boom()" style="font-family: monospace; width: 20em;"> +<div id="div" style="white-space: pre-wrap; letter-spacing: 3em;"> + x x x x x x + x x x x x x +</div> +</body> +</html> |