I just solved the problem by ignoring animations and transitions. ```javascript if (!(/animation/.test(csName)) && !(/transition/.test(csName))) { dstNode.style.setProperty(csName, cs.getPropertyValue(csName), cs.getPropertyPriority(csName)); } ```