aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml58
1 files changed, 0 insertions, 58 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml
deleted file mode 100644
index 21f6b5f90b..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml
+++ /dev/null
@@ -1,58 +0,0 @@
-import QtQuick 1.0
-import "content"
-
-Rectangle {
- id: page
- color: "white"
- width: 520; height: 260
- Grid{
- columns: 4
- spacing: 4
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 60; maxHeight: 120
- source: "content/colors.png"; margin: 15
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 60; maxHeight: 120
- source: "content/colors.png"; margin: 15
- horizontalMode: BorderImage.Repeat; verticalMode: BorderImage.Repeat
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 60; maxHeight: 120
- source: "content/colors.png"; margin: 15
- horizontalMode: BorderImage.Stretch; verticalMode: BorderImage.Repeat
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 60; maxHeight: 120
- source: "content/colors.png"; margin: 15
- horizontalMode: BorderImage.Round; verticalMode: BorderImage.Round
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 40; maxHeight: 120
- source: "content/bw.png"; margin: 10
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 40; maxHeight: 120
- source: "content/bw.png"; margin: 10
- horizontalMode: BorderImage.Repeat; verticalMode: BorderImage.Repeat
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 40; maxHeight: 120
- source: "content/bw.png"; margin: 10
- horizontalMode: BorderImage.Stretch; verticalMode: BorderImage.Repeat
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 40; maxHeight: 120
- source: "content/bw.png"; margin: 10
- horizontalMode: BorderImage.Round; verticalMode: BorderImage.Round
- }
- }
-}