diff options
Diffstat (limited to 'layout/base/crashtests/736924-1.html')
-rw-r--r-- | layout/base/crashtests/736924-1.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/base/crashtests/736924-1.html b/layout/base/crashtests/736924-1.html new file mode 100644 index 0000000000..b9274bd78c --- /dev/null +++ b/layout/base/crashtests/736924-1.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<script> +function boom() +{ + var a = document.createElementNS("http://www.w3.org/1999/xhtml", "span"); + var b = document.createElementNS("http://www.w3.org/1999/xhtml", "span"); + var x = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); + var y = document.createElementNS("http://www.w3.org/1999/xhtml", "basefont"); + var z = document.createElementNS("http://www.w3.org/1999/xhtml", "body"); + z.setAttributeNS(null, "link", "#333333"); + + document.documentElement.appendChild(a); + b.appendChild(x); + b.appendChild(y); + document.documentElement.offsetHeight; + a.appendChild(b); + document.documentElement.offsetHeight; + document.createElementNS("http://www.w3.org/1999/xhtml", "div").appendChild(y); + b.appendChild(z); +} +</script> +<body onload="boom();"></body> |