Fix 'Unknown commands' in qtdeclarative documentation.
[profile/ivi/qtdeclarative.git] / tests / auto / quick / qquickcanvas / data / AnimationsWhileHidden.qml
1 import QtQuick 2.0
2 import QtQuick.Window 2.0 as Window
3
4 Window.Window
5 {
6     id: win
7     visible: true
8     width: 250
9     height: 250
10
11     SequentialAnimation {
12         PauseAnimation { duration: 500 }
13         PropertyAction { target: win; property: "visible"; value: true }
14         loops: Animation.Infinite
15         running: true
16     }
17 }