aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml66
1 files changed, 0 insertions, 66 deletions
diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml
deleted file mode 100644
index 33d8cb8566..0000000000
--- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated-smooth.qml
+++ /dev/null
@@ -1,66 +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
- antialiased: true
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 60; maxHeight: 120
- source: "content/colors.png"; margin: 15
- horizontalMode: BorderImage.Repeat; verticalMode: BorderImage.Repeat
- antialiased: true
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 60; maxHeight: 120
- source: "content/colors.png"; margin: 15
- horizontalMode: BorderImage.Stretch; verticalMode: BorderImage.Repeat
- antialiased: true
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 60; maxHeight: 120
- source: "content/colors.png"; margin: 15
- horizontalMode: BorderImage.Round; verticalMode: BorderImage.Round
- antialiased: true
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 40; maxHeight: 120
- source: "content/bw.png"; margin: 10
- antialiased: true
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 40; maxHeight: 120
- source: "content/bw.png"; margin: 10
- horizontalMode: BorderImage.Repeat; verticalMode: BorderImage.Repeat
- antialiased: true
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 40; maxHeight: 120
- source: "content/bw.png"; margin: 10
- horizontalMode: BorderImage.Stretch; verticalMode: BorderImage.Repeat
- antialiased: true
- }
- MyBorderImage {
- minWidth: 60; maxWidth: 120
- minHeight: 40; maxHeight: 120
- source: "content/bw.png"; margin: 10
- horizontalMode: BorderImage.Round; verticalMode: BorderImage.Round
- antialiased: true
- }
- }
-}