From f72c97b6073b194fa05039835114ef836528189c Mon Sep 17 00:00:00 2001 From: dhrname Date: Thu, 31 Mar 2016 21:22:36 +0900 Subject: [PATCH] Modify the init method of the object --- org/w3c/dom/smil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org/w3c/dom/smil.js b/org/w3c/dom/smil.js index 7ac2122..6e7fb3c 100644 --- a/org/w3c/dom/smil.js +++ b/org/w3c/dom/smil.js @@ -1433,7 +1433,7 @@ base("$calcMode").up("$attribute").mix( { d = d && (d + " "); /*他のanimateTransform要素がadditive属性の値にreplaceをすでに設定していた場合、 *初期値であるdは反映されなくなる*/ - if (list.numberOfReplace >= 0) { + if ( (list.numberOfReplace !== void 0) && (list.numberOfReplace >= 0) ) { d = ""; } if (this.isSum) { -- 2.11.0