diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-14 12:13:01 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-14 12:13:01 +0100 |
commit | 35c61a027dc6f4d58ca9d33e06da79adf2503ebd (patch) | |
tree | 8ec4f35ab71eb895d3ea993faf4deec39e4ad258 /dom/animation/test/css-transitions/test_event-dispatch.html | |
parent | c58cec26c73da9a5c48f7d75555c6a2409965693 (diff) | |
download | UXP-35c61a027dc6f4d58ca9d33e06da79adf2503ebd.tar UXP-35c61a027dc6f4d58ca9d33e06da79adf2503ebd.tar.gz UXP-35c61a027dc6f4d58ca9d33e06da79adf2503ebd.tar.lz UXP-35c61a027dc6f4d58ca9d33e06da79adf2503ebd.tar.xz UXP-35c61a027dc6f4d58ca9d33e06da79adf2503ebd.zip |
Bug 1264125: Fire transitioncancel event when a transition is canceled (added tests + style clean up)
Issue #55
Diffstat (limited to 'dom/animation/test/css-transitions/test_event-dispatch.html')
-rw-r--r-- | dom/animation/test/css-transitions/test_event-dispatch.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/animation/test/css-transitions/test_event-dispatch.html b/dom/animation/test/css-transitions/test_event-dispatch.html new file mode 100644 index 000000000..c90431cd1 --- /dev/null +++ b/dom/animation/test/css-transitions/test_event-dispatch.html @@ -0,0 +1,14 @@ +<!doctype html> +<meta charset=utf-8> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<div id="log"></div> +<script> +'use strict'; +setup({explicit_done: true}); +SpecialPowers.pushPrefEnv( + { "set": [["dom.animations-api.core.enabled", true]]}, + function() { + window.open("file_event-dispatch.html"); + }); +</script> |