diff options
Diffstat (limited to '')
-rw-r--r-- | gfx/tests/crashtests/419095-1.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gfx/tests/crashtests/419095-1.html b/gfx/tests/crashtests/419095-1.html new file mode 100644 index 0000000000..9f47af2626 --- /dev/null +++ b/gfx/tests/crashtests/419095-1.html @@ -0,0 +1,20 @@ +<!DOCTYPE html> +<html> +<head> +<script type="text/javascript"> + +function boom() +{ + document.body.appendChild(document.createTextNode(String.fromCharCode(0x202E))); + document.body.appendChild(document.createTextNode(String.fromCharCode(0x000D))); + document.body.appendChild(document.createTextNode(String.fromCharCode(0x200D))); + document.body.appendChild(document.createTextNode(String.fromCharCode(0xD75A))); + document.body.appendChild(document.createTextNode(String.fromCharCode(0xD63F))); +} + +</script> +</head> + +<body onload="boom();"> +</body> +</html>
\ No newline at end of file |