diff options
Diffstat (limited to 'dom/animation/test/crashtests/1875441.html')
-rw-r--r-- | dom/animation/test/crashtests/1875441.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/dom/animation/test/crashtests/1875441.html b/dom/animation/test/crashtests/1875441.html new file mode 100644 index 0000000000..d7a4ff911c --- /dev/null +++ b/dom/animation/test/crashtests/1875441.html @@ -0,0 +1,12 @@ +<!doctype html> +<style> +@property --my-property { + syntax: "<length>", + inherits: false, + initial-value: 0, +} +</style> +<div id="box"></div> +<script> +SpecialPowers.DOMWindowUtils.computeAnimationDistance(box, "--my-property", "red", "blue"); +</script> |