- 
    
Bug
 - 
    Resolution: Incomplete
 - 
    
P3: Somewhat important
 - 
    None
 - 
    5.0.0, 5.0.1
 - 
    Linux/X11
 
The following example uses 99% CPU:
import QtQuick 2.0
Item {
    property real performanceProblem: 0
    SequentialAnimation on performanceProblem {
        loops: Animation.Infinite
        running: true
        NumberAnimation 
NumberAnimation
{ from: 500; to: 0; duration: 2000 }    }
}