summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/webview/embedding/egg.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2010-05-13 16:36:15 (GMT)
committerAlan Alpert <alan.alpert@nokia.com>2010-05-13 16:36:15 (GMT)
commitcce4e4393277298b5b5246ab79e615173b2cb13a (patch)
tree239d0fab1217e07748510cca01a733d348ee7da5 /tests/auto/declarative/qmlvisual/webview/embedding/egg.qml
parent3c1cb52aae6f7a5bd94c28a0b183e2375526724b (diff)
downloadQt-cce4e4393277298b5b5246ab79e615173b2cb13a.zip
Qt-cce4e4393277298b5b5246ab79e615173b2cb13a.tar.gz
Qt-cce4e4393277298b5b5246ab79e615173b2cb13a.tar.bz2
Minor declarative webview tweaks
Added a comment to the class docs, and cleaned up the visual tests a little. However the visual tests are old and text heavy, and since we never seem to check them we might wait on updating them for a little longer.
Diffstat (limited to 'tests/auto/declarative/qmlvisual/webview/embedding/egg.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/webview/embedding/egg.qml26
1 files changed, 0 insertions, 26 deletions
diff --git a/tests/auto/declarative/qmlvisual/webview/embedding/egg.qml b/tests/auto/declarative/qmlvisual/webview/embedding/egg.qml
deleted file mode 100644
index c569c9a..0000000
--- a/tests/auto/declarative/qmlvisual/webview/embedding/egg.qml
+++ /dev/null
@@ -1,26 +0,0 @@
-import Qt 4.7
-
-Item {
- property variant period : 250
- property variant color : "black"
- id: root
-
- Item {
- x: root.width/2
- y: root.height/2
- Rectangle {
- radius: width/2
- color: root.color
- x: -width/2
- y: -height/2
- width: root.width*1.5
- height: root.height*1.5
- }
- rotation: NumberAnimation {
- from: 0
- to: 360
- repeat: true
- duration: root.period
- }
- }
-}