diff options
Diffstat (limited to 'editor/libeditor/crashtests/667321-1.html')
-rw-r--r-- | editor/libeditor/crashtests/667321-1.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/editor/libeditor/crashtests/667321-1.html b/editor/libeditor/crashtests/667321-1.html new file mode 100644 index 0000000000..2752695221 --- /dev/null +++ b/editor/libeditor/crashtests/667321-1.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> +<script> + +function boom() +{ + document.body.style.cssFloat = "left"; + document.createElement("div").appendChild(document.querySelector("legend")); +} + +</script> +</head> +<body onload="boom();"><fieldset><legend></legend><textarea></textarea></fieldset></body> +</html> |