diff options
Diffstat (limited to 'layout/generic/crashtests/423098.html')
-rw-r--r-- | layout/generic/crashtests/423098.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/generic/crashtests/423098.html b/layout/generic/crashtests/423098.html new file mode 100644 index 000000000..5bb9534e4 --- /dev/null +++ b/layout/generic/crashtests/423098.html @@ -0,0 +1,22 @@ +<html> +<head> +<script type="text/javascript"> + +function boom() +{ + document.getElementById("b").style.position = "static"; + document.body.offsetHeight; + document.getElementById("a").style.fontSize = "110%"; +} + +</script> +</head> + +<body style="-moz-column-count: 1;" onload="boom();"> + <div id="a" style="float: right; height: 80px;"> + <div id="b" style="position: absolute; height: 10px;"></div> + <div style="height: 100px; width: 11px;"></div> + </div> +</body> + +</html> |