Change-Id: I8df26018b784ef9235b9e827abd2ac6100f2a198
Signed-off-by: qunfang.lin <qunfang.lin@samsung.com>
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");