[common][animations][TSIX-1510, fix AnimationEvent issue] 49/226449/1
authorqunfang.lin <qunfang.lin@samsung.com>
Tue, 3 Mar 2020 19:19:39 +0000 (03:19 +0800)
committerqunfang.lin <qunfang.lin@samsung.com>
Tue, 3 Mar 2020 19:21:32 +0000 (03:21 +0800)
Change-Id: I8df26018b784ef9235b9e827abd2ac6100f2a198
Signed-off-by: qunfang.lin <qunfang.lin@samsung.com>
common/tct-animations-css3-tests/animations/CSS3Animations_animationEvent_constructor_base.html

index 6c0e9ddd4220a34a29e0b41a8dad10052d45776f..7c16f3e7b69c3a93c28d5cf9daa209b2dc722356 100755 (executable)
@@ -39,8 +39,8 @@ Authors:
                 if (!("Storage" in window)) {
                     assert_unreached("Storage is not in window");
                 }
-                var AnimationEvent = new WebKitAnimationEvent("AnimationEvent", {animationName : "", elapsedTime : 0.0, pseudoElement : ""});
-                if (typeof AnimationEvent == "object" && AnimationEvent instanceof WebKitAnimationEvent) {
+                var AE = new AnimationEvent("AnimationEvent", {animationName : "", elapsedTime : 0.0, pseudoElement : ""});
+                if (typeof AE == "object" && AE instanceof AnimationEvent) {
                     t.done();
                 } else {
                     assert_unreached("not create a AnimationEvent object");