diff options
Diffstat (limited to 'js/xpconnect/crashtests/467693-1.html')
-rw-r--r-- | js/xpconnect/crashtests/467693-1.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/js/xpconnect/crashtests/467693-1.html b/js/xpconnect/crashtests/467693-1.html new file mode 100644 index 0000000000..4775abea56 --- /dev/null +++ b/js/xpconnect/crashtests/467693-1.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> +<head> +<script type="text/javascript"> + +function boom() +{ + ({})[document.createElement('unsupported').tagName]; + uneval(Ci.nsIWebNavigationInfo); +} + +</script> +</head> + +<body onload="boom();"></body> +</html> |