diff options
Diffstat (limited to 'dom/animation/test/crashtests/1239889-1.html')
-rw-r--r-- | dom/animation/test/crashtests/1239889-1.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dom/animation/test/crashtests/1239889-1.html b/dom/animation/test/crashtests/1239889-1.html new file mode 100644 index 000000000..476f3322b --- /dev/null +++ b/dom/animation/test/crashtests/1239889-1.html @@ -0,0 +1,12 @@ +<!doctype html> +<html> + <head> + <title>Bug 1239889</title> + </head> + <body> + </body> + <script> + var div = document.createElement('div'); + var effect = new KeyframeEffectReadOnly(div, { opacity: [0, 1] }); + </script> +</html> |