diff options
Diffstat (limited to '')
-rw-r--r-- | dom/svg/crashtests/831561.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/dom/svg/crashtests/831561.html b/dom/svg/crashtests/831561.html new file mode 100644 index 0000000000..d86a8cb5bd --- /dev/null +++ b/dom/svg/crashtests/831561.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> + <body> + <script> + var clipPath = document.createElementNS("http://www.w3.org/2000/svg", + "clipPath"); + clipPath["hasExtension"].apply(clipPath,[]); + </script> + </body> +</html> |