diff options
Diffstat (limited to 'layout/generic/crashtests/438266-1.html')
-rw-r--r-- | layout/generic/crashtests/438266-1.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/generic/crashtests/438266-1.html b/layout/generic/crashtests/438266-1.html new file mode 100644 index 0000000000..1e7bdb84be --- /dev/null +++ b/layout/generic/crashtests/438266-1.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> +<head> +<script type="text/javascript"> + +function boom() +{ + document.getElementById("hr").removeAttribute("width"); + + document.documentElement.offsetHeight; + + var newTR = document.createElement("tr"); + document.getElementById("table").appendChild(newTR); +} + +</script> +</head> + +<body onload="boom()"> + +<table id="table"> + <tbody> + <tr> + <td> + <div><hr width="7000" id="hr"></div> + <div style="column-width: 100px;">x<li></li></div> + </td> + </tr> + </tbody> +</table> + +</body> +</html> |