From: Martin Jones Date: Mon, 30 May 2011 01:23:22 +0000 (+1000) Subject: qmlvisual is broken and unmaintained. Remove it. X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=0063c93d1ca1cc69b890e6263b95f18a7667b6ff;p=konrad%2Fqtdeclarative.git qmlvisual is broken and unmaintained. Remove it. Change-Id: I9d522d3db81586da8f24be2b3becfdbf2968d933 --- diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index 8273fa1..20fa854 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -23,7 +23,6 @@ SUBDIRS += \ qdeclarativeview \ qdeclarativeviewer \ qdeclarativexmlhttprequest \ - qmlvisual \ moduleqt47 contains(QT_CONFIG, private_tests) { diff --git a/tests/auto/declarative/qmlvisual/ListView/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/basic1.qml deleted file mode 100644 index 8c1b56e..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/basic1.qml +++ /dev/null @@ -1,30 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "blue" - width: 200 - height: 300 - id: page - ListView { - anchors.fill: parent - delegate: Rectangle { - color: "red" - width: 100 - height: 100 - Rectangle { - anchors.centerIn: parent - width: 60 - height: 60 - color: name - } - } - model: ListModel { - ListElement { - name: "palegoldenrod" - } - ListElement { - name: "lightsteelblue" - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/basic2.qml deleted file mode 100644 index 9d26c73..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/basic2.qml +++ /dev/null @@ -1,34 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "blue" - width: 200 - height: 300 - id: page - Component { - id: delegate - Rectangle { - color: "red" - width: 100 - height: 100 - Rectangle { - anchors.centerIn: parent - width: 60 - height: 60 - color: name - } - } - } - ListView { - anchors.fill: parent - delegate: delegate - model: ListModel { - ListElement { - name: "palegoldenrod" - } - ListElement { - name: "lightsteelblue" - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/basic3.qml deleted file mode 100644 index 982df9a..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/basic3.qml +++ /dev/null @@ -1,32 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "blue" - width: 200 - height: 300 - id: page - ListModel { - id: model - ListElement { - name: "palegoldenrod" - } - ListElement { - name: "lightsteelblue" - } - } - ListView { - anchors.fill: parent - model: model - delegate: Rectangle { - color: "red" - width: 100 - height: 100 - Rectangle { - anchors.centerIn: parent - width: 60 - height: 60 - color: name - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/basic4.qml deleted file mode 100644 index 2c5d1e3..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/basic4.qml +++ /dev/null @@ -1,36 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "blue" - width: 200 - height: 300 - id: page - ListModel { - id: model - ListElement { - name: "palegoldenrod" - } - ListElement { - name: "lightsteelblue" - } - } - Component { - id: delegate - Rectangle { - color: "red" - width: 100 - height: 100 - Rectangle { - anchors.centerIn: parent - width: 60 - height: 60 - color: name - } - } - } - ListView { - anchors.fill: parent - model: model - delegate: delegate - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic1.0.png b/tests/auto/declarative/qmlvisual/ListView/data/basic1.0.png deleted file mode 100644 index 049d9c8..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/basic1.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml deleted file mode 100644 index aad4858..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "basic1.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic2.0.png b/tests/auto/declarative/qmlvisual/ListView/data/basic2.0.png deleted file mode 100644 index 049d9c8..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/basic2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml deleted file mode 100644 index 373ad27..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "basic2.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic3.0.png b/tests/auto/declarative/qmlvisual/ListView/data/basic3.0.png deleted file mode 100644 index 049d9c8..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/basic3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml deleted file mode 100644 index f5dbf65..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "basic3.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic4.0.png b/tests/auto/declarative/qmlvisual/ListView/data/basic4.0.png deleted file mode 100644 index 049d9c8..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/basic4.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml deleted file mode 100644 index 5e494d1..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "basic4.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.0.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.0.png deleted file mode 100644 index 5c0b6a6..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.1.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.1.png deleted file mode 100644 index 5c0b6a6..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.2.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.2.png deleted file mode 100644 index 304aed8..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.3.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.3.png deleted file mode 100644 index 4abc58e..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.4.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.4.png deleted file mode 100644 index 5c0b6a6..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.5.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.5.png deleted file mode 100644 index 8d421af..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.6.png b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.6.png deleted file mode 100644 index 81ea1ff..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.qml b/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.qml deleted file mode 100644 index de3f49c..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data/enforcerange.qml +++ /dev/null @@ -1,2119 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "enforcerange.0.png" - } - Frame { - msec: 32 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 48 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 64 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 80 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 96 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 112 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 128 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 144 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 160 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 176 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 192 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 208 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 224 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 240 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 256 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 272 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 288 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 304 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 320 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 336 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 352 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 368 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 384 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 400 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 416 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 432 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 448 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 464 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 480 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 496 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 512 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 528 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 544 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 560 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 576 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 592 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 608 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 624 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 640 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 656 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 672 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 688 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 704 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 720 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 736 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 752 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 768 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 784 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 800 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 816 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 832 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 848 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 864 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 880 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 896 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 912 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 928 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 944 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 960 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 976 - image: "enforcerange.1.png" - } - Frame { - msec: 992 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1008 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1024 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1040 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1056 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1072 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1088 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1104 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1120 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1136 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1152 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1168 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1184 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1200 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 77; y: 157 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1216 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1232 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 1248 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 77; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1264 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 77; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 76; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1280 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 75; y: 144 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 74; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1296 - hash: "c7667b5af9f2ee912abe5879266cb1e0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 131 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 72; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1312 - hash: "1e762d6ffe1ceb53046d7953645d02d5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1328 - hash: "0d2b7130a84a8efac1cf4fe8a1768231" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1344 - hash: "6ef2715c3fd26d50d26fb740afa6dece" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 92 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 71; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1360 - hash: "f489b6f951281ff9a981ec046ca5b17d" - } - Frame { - msec: 1376 - hash: "fd6e7d7db7c4571ee606269fb9680ed9" - } - Frame { - msec: 1392 - hash: "398a238f59a2edf07870b624b914c81d" - } - Frame { - msec: 1408 - hash: "fdce64faab7e7e31a229adda47924cd1" - } - Frame { - msec: 1424 - hash: "8d474956331fdd0c35beb13a06b7c557" - } - Frame { - msec: 1440 - hash: "f89fed6f7fa07a8320f07a1e68240a7e" - } - Frame { - msec: 1456 - hash: "940b70f15082ff138579892bb6f20ce9" - } - Frame { - msec: 1472 - hash: "35ab744ce2a91567dbbd769f9486f870" - } - Frame { - msec: 1488 - hash: "6b2d32b8f1df871c2c014af8b5d87329" - } - Frame { - msec: 1504 - hash: "edf3b33b80cca53999779555f9cd6162" - } - Frame { - msec: 1520 - hash: "180f3cc4ea5ff5b6f9e8be0294732d4e" - } - Frame { - msec: 1536 - hash: "28e9ca60a873910380b2d22d6b3df565" - } - Frame { - msec: 1552 - hash: "3bb1e8d69f171f09eb4c6f9914fc9576" - } - Frame { - msec: 1568 - hash: "0501da09be444df6cee4b19617290317" - } - Frame { - msec: 1584 - hash: "8ce1ac0163b0353167488aff2879e841" - } - Frame { - msec: 1600 - hash: "18e53bf6337cf6590fc3c73c00469d8e" - } - Frame { - msec: 1616 - hash: "0c31ede980d07069f4977d5753d00ddf" - } - Frame { - msec: 1632 - hash: "0a854a54176c24f0ebbb6cb747dc0ab7" - } - Frame { - msec: 1648 - hash: "8dba1ebca6f00b7a64a6982fb8c28c50" - } - Frame { - msec: 1664 - hash: "8d273efc36ba722af4d044e6552c9dcb" - } - Frame { - msec: 1680 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 1696 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 1712 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 1728 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 1744 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 1760 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 1776 - hash: "81110f17d191f9795a2c57d136e86550" - } - Frame { - msec: 1792 - hash: "090a76cf068a5041ff993f21e6ebd087" - } - Frame { - msec: 1808 - hash: "30eb157c89ad0aeb17fd0012afb9246b" - } - Frame { - msec: 1824 - hash: "6b317b59e1b0f5b17a6d7d96e745f576" - } - Frame { - msec: 1840 - hash: "f9fc8467c6dbcb00d1f41a57b550193c" - } - Frame { - msec: 1856 - hash: "744227adbdd31be2920a232ea0dbc85d" - } - Frame { - msec: 1872 - hash: "d4b370ff8c3b66fc8a616dd9b944abd1" - } - Frame { - msec: 1888 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 1904 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 1920 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 1936 - image: "enforcerange.2.png" - } - Frame { - msec: 1952 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 1968 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 1984 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2000 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2016 - hash: "81110f17d191f9795a2c57d136e86550" - } - Frame { - msec: 2032 - hash: "090a76cf068a5041ff993f21e6ebd087" - } - Frame { - msec: 2048 - hash: "090a76cf068a5041ff993f21e6ebd087" - } - Frame { - msec: 2064 - hash: "30eb157c89ad0aeb17fd0012afb9246b" - } - Frame { - msec: 2080 - hash: "6b317b59e1b0f5b17a6d7d96e745f576" - } - Frame { - msec: 2096 - hash: "f9fc8467c6dbcb00d1f41a57b550193c" - } - Frame { - msec: 2112 - hash: "f9fc8467c6dbcb00d1f41a57b550193c" - } - Frame { - msec: 2128 - hash: "711274e9b6811b4662ac29d813574fb6" - } - Frame { - msec: 2144 - hash: "744227adbdd31be2920a232ea0dbc85d" - } - Frame { - msec: 2160 - hash: "744227adbdd31be2920a232ea0dbc85d" - } - Frame { - msec: 2176 - hash: "d4b370ff8c3b66fc8a616dd9b944abd1" - } - Frame { - msec: 2192 - hash: "d4b370ff8c3b66fc8a616dd9b944abd1" - } - Frame { - msec: 2208 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 2224 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 2240 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2256 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2272 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 2288 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 2304 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 2320 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 2336 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 2352 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 2368 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 2384 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 2400 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2416 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2432 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2448 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2464 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2480 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2496 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2512 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2528 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2544 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2560 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2576 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2592 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2608 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2624 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2640 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 2656 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2672 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2688 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 2704 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 2720 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 2736 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 2752 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 2768 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 2784 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 2800 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 2816 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2832 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2848 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2864 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2880 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2896 - image: "enforcerange.3.png" - } - Frame { - msec: 2912 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2928 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2944 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2960 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2976 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 2992 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 3008 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 3024 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 82; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3040 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 3056 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 82; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3072 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 82; y: 42 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3088 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 47 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3104 - hash: "89016574205e00cf42723446d6a3437e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 60 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 69 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3120 - hash: "e2db9b1ae5c4be51a548834a7776da1f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3136 - hash: "fcfad57224192065782a77ad3398d0d1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 93 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 107 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3152 - hash: "bae4fc0fc2d33008ebe827ece94af196" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 84; y: 130 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 88; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3168 - hash: "569581944bf18c8165f72c60bdbf1011" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 161 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 96; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3184 - hash: "613ff94a26bfaa9a4dc94fcbf6c3eb57" - } - Frame { - msec: 3200 - hash: "a63f8e6b194f900acb1b7a332f9fb9ae" - } - Frame { - msec: 3216 - hash: "6c04761cc86d28112c16f692cda58ba4" - } - Frame { - msec: 3232 - hash: "544275da3f7e2ccaedc8c521bf17f59b" - } - Frame { - msec: 3248 - hash: "52831480eb69184341b12ffb09ace736" - } - Frame { - msec: 3264 - hash: "52831480eb69184341b12ffb09ace736" - } - Frame { - msec: 3280 - hash: "52831480eb69184341b12ffb09ace736" - } - Frame { - msec: 3296 - hash: "58f2b900bc335424fc70eaaeb23ceb56" - } - Frame { - msec: 3312 - hash: "58f2b900bc335424fc70eaaeb23ceb56" - } - Frame { - msec: 3328 - hash: "544275da3f7e2ccaedc8c521bf17f59b" - } - Frame { - msec: 3344 - hash: "df9fef370c2f6ff300b20fc24b5b9e34" - } - Frame { - msec: 3360 - hash: "0662898d246e5ff6981610d32e2b8375" - } - Frame { - msec: 3376 - hash: "6c04761cc86d28112c16f692cda58ba4" - } - Frame { - msec: 3392 - hash: "82b31c8e8794ce3a9a6a635ef93b29b3" - } - Frame { - msec: 3408 - hash: "388658b5e03f3853e93173bd9501b77b" - } - Frame { - msec: 3424 - hash: "cf1856e961e6b8277a82c03ace5ba864" - } - Frame { - msec: 3440 - hash: "e1d022cc1b41098baffe49925b20678f" - } - Frame { - msec: 3456 - hash: "a63f8e6b194f900acb1b7a332f9fb9ae" - } - Frame { - msec: 3472 - hash: "044c3712a6a5f6a973defe85643c8d02" - } - Frame { - msec: 3488 - hash: "044c3712a6a5f6a973defe85643c8d02" - } - Frame { - msec: 3504 - hash: "e4fe2f1a81a4a4806f4155807f285a2d" - } - Frame { - msec: 3520 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3536 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3552 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3568 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3584 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3600 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3616 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3632 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3648 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3664 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3680 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3696 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3712 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3728 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3744 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3760 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3776 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3792 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3808 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3824 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3840 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3856 - image: "enforcerange.4.png" - } - Frame { - msec: 3872 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3888 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3904 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3920 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3936 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3952 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3968 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 3984 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 4000 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 4016 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Frame { - msec: 4032 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 105; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4048 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 168 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4064 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 164 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 163 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4080 - hash: "19c43fcf2875769c9a15f1ce317a0f1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 162 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4096 - hash: "331164730fb7ccf37dc08ddc26c0e182" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 157 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4112 - hash: "73e27ff972eefc421bc65897ad8b9a11" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4128 - hash: "c5e903fd827f8f1ec060dcb9a925bf6d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 109; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4144 - hash: "74d4357dff4d6e00c5ae9ea0c34f1010" - } - Frame { - msec: 4160 - hash: "790274ee21ba257b84671a6fb19c142f" - } - Frame { - msec: 4176 - hash: "65ccc26f20be484fefa8ea25a7daf825" - } - Frame { - msec: 4192 - hash: "e435e2fbba7f0f6a65b9fecf07893eb0" - } - Frame { - msec: 4208 - hash: "6a994a18a9331731d5fca50dce2b9cff" - } - Frame { - msec: 4224 - hash: "9fc4405cddc06310215969a4583b2353" - } - Frame { - msec: 4240 - hash: "0d2b7130a84a8efac1cf4fe8a1768231" - } - Frame { - msec: 4256 - hash: "791db15db47090e1af299e5b32e53918" - } - Frame { - msec: 4272 - hash: "0ec6cf7a6ed9a073d2ce8f9e534e2ee5" - } - Frame { - msec: 4288 - hash: "c7b358f51a9500ca4958d266de5307e6" - } - Frame { - msec: 4304 - hash: "d24d00e4cd1ea3aaacf202e2fdf1eaa0" - } - Frame { - msec: 4320 - hash: "169f1a7a933d84071c449132a3c2745e" - } - Frame { - msec: 4336 - hash: "b6bf9c15ed40d6e862f693155c884035" - } - Frame { - msec: 4352 - hash: "8639955aa7a03f54d50d7e9051a4b997" - } - Frame { - msec: 4368 - hash: "411bc9a9aedbfb75f3122eaea6be0c16" - } - Frame { - msec: 4384 - hash: "827094da86716daf69386af2c8d4027a" - } - Frame { - msec: 4400 - hash: "ddddd5457e4a54ca5e7415dc2c7eabe5" - } - Frame { - msec: 4416 - hash: "632a5756af20083504fb1faaa019dd48" - } - Frame { - msec: 4432 - hash: "0cc2901b1b25412f13865887a8c9d13e" - } - Frame { - msec: 4448 - hash: "4c8a9473eb9843634340d70f8eab9487" - } - Frame { - msec: 4464 - hash: "398a238f59a2edf07870b624b914c81d" - } - Frame { - msec: 4480 - hash: "a7c282235e9166b900ea2ff68800a5f5" - } - Frame { - msec: 4496 - hash: "bae4fc0fc2d33008ebe827ece94af196" - } - Frame { - msec: 4512 - hash: "45e0670a2b4c18b847a3c7870539b962" - } - Frame { - msec: 4528 - hash: "8d474956331fdd0c35beb13a06b7c557" - } - Frame { - msec: 4544 - hash: "5d5bdffc30d90fd5b061c6fcf24c2599" - } - Frame { - msec: 4560 - hash: "15721b103981f5fe40b5dfe7d65c5b38" - } - Frame { - msec: 4576 - hash: "940b70f15082ff138579892bb6f20ce9" - } - Frame { - msec: 4592 - hash: "5137ea98fd291a4b967fb66d93253a37" - } - Frame { - msec: 4608 - hash: "35ab744ce2a91567dbbd769f9486f870" - } - Frame { - msec: 4624 - hash: "d5c55c00b07735e5d7c02dfa99ef2f45" - } - Frame { - msec: 4640 - hash: "6b2d32b8f1df871c2c014af8b5d87329" - } - Frame { - msec: 4656 - hash: "edf3b33b80cca53999779555f9cd6162" - } - Frame { - msec: 4672 - hash: "180f3cc4ea5ff5b6f9e8be0294732d4e" - } - Frame { - msec: 4688 - hash: "9b99a1b0c0bb0ce37655d92854ee4d19" - } - Frame { - msec: 4704 - hash: "28e9ca60a873910380b2d22d6b3df565" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 109; y: 131 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "28e9ca60a873910380b2d22d6b3df565" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 126 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 124 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4736 - hash: "18e53bf6337cf6590fc3c73c00469d8e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 115 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 110 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4752 - hash: "81110f17d191f9795a2c57d136e86550" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4768 - hash: "b64810845a97bedf6fe11c043457c197" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 74 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 60 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4784 - hash: "711274e9b6811b4662ac29d813574fb6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 54 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 40 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 100; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4800 - hash: "da5a30a6f9f40fbb5e2b150965be8ac0" - } - Frame { - msec: 4816 - image: "enforcerange.5.png" - } - Frame { - msec: 4832 - hash: "090a76cf068a5041ff993f21e6ebd087" - } - Frame { - msec: 4848 - hash: "6b317b59e1b0f5b17a6d7d96e745f576" - } - Frame { - msec: 4864 - hash: "744227adbdd31be2920a232ea0dbc85d" - } - Frame { - msec: 4880 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 4896 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 4912 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 4928 - hash: "81110f17d191f9795a2c57d136e86550" - } - Frame { - msec: 4944 - hash: "30eb157c89ad0aeb17fd0012afb9246b" - } - Frame { - msec: 4960 - hash: "f9fc8467c6dbcb00d1f41a57b550193c" - } - Frame { - msec: 4976 - hash: "711274e9b6811b4662ac29d813574fb6" - } - Frame { - msec: 4992 - hash: "d4b370ff8c3b66fc8a616dd9b944abd1" - } - Frame { - msec: 5008 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 5024 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 5040 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 5056 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 5072 - hash: "81110f17d191f9795a2c57d136e86550" - } - Frame { - msec: 5088 - hash: "30eb157c89ad0aeb17fd0012afb9246b" - } - Frame { - msec: 5104 - hash: "6b317b59e1b0f5b17a6d7d96e745f576" - } - Frame { - msec: 5120 - hash: "711274e9b6811b4662ac29d813574fb6" - } - Frame { - msec: 5136 - hash: "744227adbdd31be2920a232ea0dbc85d" - } - Frame { - msec: 5152 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 5168 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 5184 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 5200 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 5216 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 5232 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 5248 - hash: "81110f17d191f9795a2c57d136e86550" - } - Frame { - msec: 5264 - hash: "090a76cf068a5041ff993f21e6ebd087" - } - Frame { - msec: 5280 - hash: "30eb157c89ad0aeb17fd0012afb9246b" - } - Frame { - msec: 5296 - hash: "6b317b59e1b0f5b17a6d7d96e745f576" - } - Frame { - msec: 5312 - hash: "f9fc8467c6dbcb00d1f41a57b550193c" - } - Frame { - msec: 5328 - hash: "744227adbdd31be2920a232ea0dbc85d" - } - Frame { - msec: 5344 - hash: "d4b370ff8c3b66fc8a616dd9b944abd1" - } - Frame { - msec: 5360 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 5376 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 5392 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 5408 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 5424 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 5440 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 5456 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 5472 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 5488 - hash: "81110f17d191f9795a2c57d136e86550" - } - Frame { - msec: 5504 - hash: "090a76cf068a5041ff993f21e6ebd087" - } - Frame { - msec: 5520 - hash: "090a76cf068a5041ff993f21e6ebd087" - } - Frame { - msec: 5536 - hash: "30eb157c89ad0aeb17fd0012afb9246b" - } - Frame { - msec: 5552 - hash: "6b317b59e1b0f5b17a6d7d96e745f576" - } - Frame { - msec: 5568 - hash: "f9fc8467c6dbcb00d1f41a57b550193c" - } - Frame { - msec: 5584 - hash: "f9fc8467c6dbcb00d1f41a57b550193c" - } - Frame { - msec: 5600 - hash: "711274e9b6811b4662ac29d813574fb6" - } - Frame { - msec: 5616 - hash: "744227adbdd31be2920a232ea0dbc85d" - } - Frame { - msec: 5632 - hash: "744227adbdd31be2920a232ea0dbc85d" - } - Frame { - msec: 5648 - hash: "d4b370ff8c3b66fc8a616dd9b944abd1" - } - Frame { - msec: 5664 - hash: "d4b370ff8c3b66fc8a616dd9b944abd1" - } - Frame { - msec: 5680 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 5696 - hash: "674b07dc5b99bf2da93c40d42dc9023d" - } - Frame { - msec: 5712 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 5728 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 5744 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 5760 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 5776 - image: "enforcerange.6.png" - } - Frame { - msec: 5792 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 5808 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 5824 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 5840 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 5856 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 5872 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 5888 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 5904 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 5920 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 5936 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 5952 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 5968 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 5984 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 6000 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 6016 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 6032 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 6048 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 6064 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 6080 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 6096 - hash: "b061ee3784fbd4a287758ffd100a623e" - } - Frame { - msec: 6112 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 6128 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 6144 - hash: "7eb75e8e83874d52448a7dbf6a0ad29c" - } - Frame { - msec: 6160 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 6176 - hash: "70b475e88060ead84d05f0ba1b47c139" - } - Frame { - msec: 6192 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 6208 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 6224 - hash: "87aaa82b96131fed8822e57e226162a0" - } - Frame { - msec: 6240 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 6256 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 6272 - hash: "b64810845a97bedf6fe11c043457c197" - } - Frame { - msec: 6288 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6304 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6320 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6336 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6352 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6368 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6384 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6400 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6416 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6432 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6448 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6464 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6480 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6496 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6512 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6528 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6544 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6560 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6576 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6592 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6608 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6624 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6640 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } - Frame { - msec: 6656 - hash: "a4ff6c6c43697808f9ad7387d152cef3" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png deleted file mode 100644 index 75d2089..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png deleted file mode 100644 index 75d2089..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png deleted file mode 100644 index bc7dc2c..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png deleted file mode 100644 index def378f..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png deleted file mode 100644 index e23b903..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png deleted file mode 100644 index def378f..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png deleted file mode 100644 index b81e713..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.7.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.7.png deleted file mode 100644 index 75d2089..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml deleted file mode 100644 index 6438e42..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml +++ /dev/null @@ -1,2203 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "itemlist.0.png" - } - Frame { - msec: 32 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 48 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 64 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 80 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 96 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 112 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 128 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 144 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 160 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 176 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 192 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 208 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 224 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 240 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 256 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 272 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 288 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 304 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 320 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 336 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 352 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 368 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 384 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 400 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 416 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 432 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 448 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 464 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 480 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 496 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 512 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 528 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 544 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 560 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 576 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 592 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 608 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 624 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 640 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 656 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 672 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 688 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 704 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 720 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 736 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 752 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 768 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 784 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 800 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 816 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 832 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 848 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 864 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 880 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 896 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 912 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 928 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 944 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 960 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 976 - image: "itemlist.1.png" - } - Frame { - msec: 992 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1008 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1024 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1040 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1056 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1072 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1088 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1104 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1120 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1136 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1152 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1168 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1184 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1200 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1216 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1232 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1248 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1264 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1280 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1296 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1312 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1328 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1344 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1360 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1376 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1392 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1408 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1424 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1440 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1456 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1472 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1488 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1504 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1520 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1536 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1552 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1568 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1584 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1600 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1616 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1632 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1648 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 192; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1664 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 112 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1696 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 184; y: 113 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1712 - hash: "b6e433a23282a50db2e165a2447ba3f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1728 - hash: "68d443f16c16821ffc9ca68b17c76034" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1744 - hash: "04b9041c6f10969889d92e94785c7e88" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 121 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1760 - hash: "64b902fe7ab4d89ef0c7b760974e3488" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 126 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 98; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1776 - hash: "c2125b59e00f1a1c189c778c44fe39b0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 132 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 91; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1792 - hash: "c78175071f2e95649d529b9e1cf045b2" - } - Frame { - msec: 1808 - hash: "ca8ef2c2a7b06e55899b1b63208e257d" - } - Frame { - msec: 1824 - hash: "b54957726e6257956b63e1d7ebbc96e4" - } - Frame { - msec: 1840 - hash: "48847db78ddde75bb96edf01c52c3400" - } - Frame { - msec: 1856 - hash: "48dab5cd1feedf1b5dd67390d6f40fda" - } - Frame { - msec: 1872 - hash: "fe32013c245091b577d0e38eea05705d" - } - Frame { - msec: 1888 - hash: "e4b6e31029c1ea26405537c6d2304b72" - } - Frame { - msec: 1904 - hash: "b5fc9ab0a96ef526e6eb1c022f26c6a7" - } - Frame { - msec: 1920 - hash: "75ab445a739fb2415e20e8997b043656" - } - Frame { - msec: 1936 - image: "itemlist.2.png" - } - Frame { - msec: 1952 - hash: "1bce9b85235e9a1a472c079dfec70ec5" - } - Frame { - msec: 1968 - hash: "98e707a3e39a5f7bd4a101c2ed83535c" - } - Frame { - msec: 1984 - hash: "f73470027601a0c1a2382d5ded9e5fa6" - } - Frame { - msec: 2000 - hash: "d917b18a47b4e90821cba8987492cd1f" - } - Frame { - msec: 2016 - hash: "fa526c5ef57eaa210fb4d03b72c35b69" - } - Frame { - msec: 2032 - hash: "15cbc226b032d5a97199735ea7a1408b" - } - Frame { - msec: 2048 - hash: "6ffd2b79cf0e941a59e74bc6f9025bcb" - } - Frame { - msec: 2064 - hash: "c009924bfa30153f22ab168b539494e9" - } - Frame { - msec: 2080 - hash: "0525908c0302ada989e28990bac3f2ca" - } - Frame { - msec: 2096 - hash: "75c1295ef99680784b2e11fb88fa1423" - } - Frame { - msec: 2112 - hash: "53064c1938f08a55603a99b0db225174" - } - Frame { - msec: 2128 - hash: "99d9e58697736198e0a00443d237e85b" - } - Frame { - msec: 2144 - hash: "6c1e860aef983367365d53f5849ad441" - } - Frame { - msec: 2160 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2176 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2192 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2208 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2224 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2240 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2256 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2272 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2288 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2304 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2320 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2336 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2352 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2368 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2384 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2400 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2416 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2432 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2448 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2464 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2480 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2496 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2512 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2528 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2544 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2560 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2576 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2592 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2608 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2624 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2640 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2656 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2672 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2688 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2704 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2720 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2736 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2752 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2768 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2784 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2800 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2816 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2832 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2848 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2864 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2880 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2896 - image: "itemlist.3.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 179; y: 105 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2912 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 110 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2928 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 112 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2944 - hash: "52af1b81022e8572b9123461d123197f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 123 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2960 - hash: "e1390ad02ae7a6e757df4a7af9032167" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 127 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 124; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2976 - hash: "bf57f309378c956dfd70aa79a7dd97c5" - } - Frame { - msec: 2992 - hash: "408b59b96ecad0541ecbb97262c2567b" - } - Frame { - msec: 3008 - hash: "c52f691a0a6cf155118bdfea2dfea623" - } - Frame { - msec: 3024 - hash: "9aabf0500b1272375f5f6db1bd1d7b04" - } - Frame { - msec: 3040 - hash: "2e92065ca9425d1645d69c1734804518" - } - Frame { - msec: 3056 - hash: "c73b2e430a0e96a660aa4447697e5adf" - } - Frame { - msec: 3072 - hash: "875560b509215a869d1cad8a05f38850" - } - Frame { - msec: 3088 - hash: "fd8e51cca3432f6edcf949857737095f" - } - Frame { - msec: 3104 - hash: "aa5d4e65932b3ec2f5549079dfc7718d" - } - Frame { - msec: 3120 - hash: "f811f3c6b022730dd68ebd7b1659ea40" - } - Frame { - msec: 3136 - hash: "e51a2e41972cfc3df46a7d4375024d80" - } - Frame { - msec: 3152 - hash: "275f3594a0e2cc4b6717f9f336e7e1b6" - } - Frame { - msec: 3168 - hash: "9229054bb70662b12a4f7e45ac5b7a90" - } - Frame { - msec: 3184 - hash: "89ff346eca0b71cad3b04a2cb8064fb0" - } - Frame { - msec: 3200 - hash: "94e6ecb87a7efca6344d6d63a1e3829f" - } - Frame { - msec: 3216 - hash: "bc5eb6b0eeae316ddd0b308da2cc32e2" - } - Frame { - msec: 3232 - hash: "240081760f0cf2f02be4d6d2600d2bbc" - } - Frame { - msec: 3248 - hash: "69b335aeb81fc2ae6173f2ec5cdc4c55" - } - Frame { - msec: 3264 - hash: "10d481e57cc8cd694500d9ed6ae1f8bb" - } - Frame { - msec: 3280 - hash: "6b21f71d0bedef4bbcb445a13f61e7a3" - } - Frame { - msec: 3296 - hash: "aa94ebdbb4b8423aff28c95daff0baf5" - } - Frame { - msec: 3312 - hash: "5f6708f615654c459f5749676fc09016" - } - Frame { - msec: 3328 - hash: "8ef246d322446e7f0848b99495f89e2b" - } - Frame { - msec: 3344 - hash: "c3b219bdd7710427d134402a8d3e6429" - } - Frame { - msec: 3360 - hash: "3b2e2d957585fb44a7165186a146892c" - } - Frame { - msec: 3376 - hash: "124da0099a7dd6fbf6dfd0ecfb09638c" - } - Frame { - msec: 3392 - hash: "e4dacafba5ab5f8db53f08cef458cf42" - } - Frame { - msec: 3408 - hash: "b554512bac0766063870c5b3acb1d24f" - } - Frame { - msec: 3424 - hash: "bb5ea2a238920a8486263bc7450edfb4" - } - Frame { - msec: 3440 - hash: "bb5ea2a238920a8486263bc7450edfb4" - } - Frame { - msec: 3456 - hash: "bb5ea2a238920a8486263bc7450edfb4" - } - Frame { - msec: 3472 - hash: "b554512bac0766063870c5b3acb1d24f" - } - Frame { - msec: 3488 - hash: "b554512bac0766063870c5b3acb1d24f" - } - Frame { - msec: 3504 - hash: "e4dacafba5ab5f8db53f08cef458cf42" - } - Frame { - msec: 3520 - hash: "de7f3c83f37cc89c87009626c72e7642" - } - Frame { - msec: 3536 - hash: "124da0099a7dd6fbf6dfd0ecfb09638c" - } - Frame { - msec: 3552 - hash: "40204fdb7a84b86f1380224908092354" - } - Frame { - msec: 3568 - hash: "ff93c3290b7d9a9743cc11d41a112a0a" - } - Frame { - msec: 3584 - hash: "c3b219bdd7710427d134402a8d3e6429" - } - Frame { - msec: 3600 - hash: "56e2f6b2ac103caf7ada3b56c19622c2" - } - Frame { - msec: 3616 - hash: "8ef246d322446e7f0848b99495f89e2b" - } - Frame { - msec: 3632 - hash: "8eb6d69d9833d0fbf87f951f489b71fe" - } - Frame { - msec: 3648 - hash: "17deb6b26fc9d27d5194995c102da4ac" - } - Frame { - msec: 3664 - hash: "5f6708f615654c459f5749676fc09016" - } - Frame { - msec: 3680 - hash: "1734205ea5e7539b47d80c5a93ec74aa" - } - Frame { - msec: 3696 - hash: "1734205ea5e7539b47d80c5a93ec74aa" - } - Frame { - msec: 3712 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3728 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3744 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3760 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3776 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3792 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3808 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3824 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3840 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3856 - image: "itemlist.4.png" - } - Frame { - msec: 3872 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3888 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3904 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3920 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3936 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3952 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3968 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3984 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4000 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4016 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4032 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4048 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4064 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4080 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4096 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 31; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4112 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 32; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4128 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 136 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 36; y: 135 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4144 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 134 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4160 - hash: "f619097356671f6eb54d3b1c481e709d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4176 - hash: "240081760f0cf2f02be4d6d2600d2bbc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 86; y: 126 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 110; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4192 - hash: "3b85c1739fdf3933d8cb0b2eaf22e6e3" - } - Frame { - msec: 4208 - hash: "f811f3c6b022730dd68ebd7b1659ea40" - } - Frame { - msec: 4224 - hash: "2e97a74eb9ddb1c9613c89e2d78db018" - } - Frame { - msec: 4240 - hash: "7b7f5daf5eaf047e69d04b5bcb73240c" - } - Frame { - msec: 4256 - hash: "1af58a2f44f1f613712d4df85e38356d" - } - Frame { - msec: 4272 - hash: "1bbdda445cec7f95a189c15d7e3c77b8" - } - Frame { - msec: 4288 - hash: "91d8bcfebff29d2caf526b4012daaf46" - } - Frame { - msec: 4304 - hash: "71ec8c363ca6a6f7556afb70faccffe6" - } - Frame { - msec: 4320 - hash: "303ebc28d09a49de52cb1adaa03872dd" - } - Frame { - msec: 4336 - hash: "9402e86bf4ffa62c60b02531a3735275" - } - Frame { - msec: 4352 - hash: "5652de6fb2e107d41c0c5aeacf5a3055" - } - Frame { - msec: 4368 - hash: "b6a2ade6565a86b1f8e369b02e0b93f9" - } - Frame { - msec: 4384 - hash: "30dd35e0b9ffa846f3cfc39edcbae511" - } - Frame { - msec: 4400 - hash: "401975fb4c9a48953aec25adb593eec4" - } - Frame { - msec: 4416 - hash: "71f9039c7aa9c8dc6d1de4561b1d5537" - } - Frame { - msec: 4432 - hash: "e1390ad02ae7a6e757df4a7af9032167" - } - Frame { - msec: 4448 - hash: "53a26f00bd49b8a9c065be99f9402d9c" - } - Frame { - msec: 4464 - hash: "b6e515e9a27af23b895f5024a41ce7b3" - } - Frame { - msec: 4480 - hash: "85d143505d56f53c629358b37ad11581" - } - Frame { - msec: 4496 - hash: "de5cbdd848a07b78f9c5eb510cca2d3e" - } - Frame { - msec: 4512 - hash: "0ad7411316031e22034c14e81ca3a806" - } - Frame { - msec: 4528 - hash: "32bef6f5005ad94e29ff59165958fbdc" - } - Frame { - msec: 4544 - hash: "87758dd311f91193bf1e3536c2f58525" - } - Frame { - msec: 4560 - hash: "d4c34ed49317c6692d71681fcd9842b6" - } - Frame { - msec: 4576 - hash: "abaa235bb946a8abaddd52981d632c2d" - } - Frame { - msec: 4592 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4608 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4624 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4640 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4656 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4672 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4688 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4704 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4720 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4736 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4752 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4768 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4784 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4800 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4816 - image: "itemlist.5.png" - } - Frame { - msec: 4832 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4848 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4864 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4880 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4896 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4912 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4928 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4944 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4960 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4976 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4992 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5008 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5024 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5040 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5056 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5072 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5088 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5104 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5120 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5136 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5152 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5168 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5184 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5200 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5216 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5232 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 17; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5248 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 19; y: 120 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 21; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5264 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 24; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 28; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5280 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 35; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "6ffd2b79cf0e941a59e74bc6f9025bcb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 96; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "4aa05d978267325ae00cb45e310a2f01" - } - Frame { - msec: 5328 - hash: "b5717b311259c77a0210e26ab99dd401" - } - Frame { - msec: 5344 - hash: "9b3fde82278fa2f0caaf64cf23bb6530" - } - Frame { - msec: 5360 - hash: "e7795610115593e78bb32f7bcc0ae2eb" - } - Frame { - msec: 5376 - hash: "0dc7c4c161e0b3c3d176e5e6bc08a805" - } - Frame { - msec: 5392 - hash: "7c2b0307c4040d8d9e88425b3bf3fb70" - } - Frame { - msec: 5408 - hash: "06ce7db518da042e04dd3f79b7220974" - } - Frame { - msec: 5424 - hash: "7aeec517e845c1c5012ed63be6bbd006" - } - Frame { - msec: 5440 - hash: "53e9d5a0098f2e91bbea45360b876607" - } - Frame { - msec: 5456 - hash: "22a6c7f3dcb5a36592909783b2466c8d" - } - Frame { - msec: 5472 - hash: "9d8da9199efebb95f56e5d4ebc9a585e" - } - Frame { - msec: 5488 - hash: "c553400402f233a6246be4e544b433ae" - } - Frame { - msec: 5504 - hash: "c2e41a54c03340832db93f6f88393f00" - } - Frame { - msec: 5520 - hash: "3622a619a99c939e96636a86c4428ba3" - } - Frame { - msec: 5536 - hash: "e65d5e6c756e750e6d98096fe211465c" - } - Frame { - msec: 5552 - hash: "cabd6d30b1f4e42b38b73803aae6d5be" - } - Frame { - msec: 5568 - hash: "68d443f16c16821ffc9ca68b17c76034" - } - Frame { - msec: 5584 - hash: "a68b1bc6c2963ee92c3a45f500667b3b" - } - Frame { - msec: 5600 - hash: "805319ac7ca842feb3649e92f8b5b72f" - } - Frame { - msec: 5616 - hash: "fd8d3f5688b1806998c6087e18c6c730" - } - Frame { - msec: 5632 - hash: "b135c8c9975f4d45d2054cf31d0b1fe1" - } - Frame { - msec: 5648 - hash: "40382f644935dc4e99353fa29c3e0b21" - } - Frame { - msec: 5664 - hash: "aa32e4c20c6a43c4ef7991a9418e57fe" - } - Frame { - msec: 5680 - hash: "b8db9180b4ad15fdbd25a4e974512f92" - } - Frame { - msec: 5696 - hash: "127871a98123b7bd44f4c38f27cbc836" - } - Frame { - msec: 5712 - hash: "35fe67a91e50f8ebc896451b39cb8f1c" - } - Frame { - msec: 5728 - hash: "35fe67a91e50f8ebc896451b39cb8f1c" - } - Frame { - msec: 5744 - hash: "0b7fc796f818bddcada99e9981f1cce0" - } - Frame { - msec: 5760 - hash: "35fe67a91e50f8ebc896451b39cb8f1c" - } - Frame { - msec: 5776 - image: "itemlist.6.png" - } - Frame { - msec: 5792 - hash: "35fe67a91e50f8ebc896451b39cb8f1c" - } - Frame { - msec: 5808 - hash: "2311ce1a83a43619ab7ce537a2b948e1" - } - Frame { - msec: 5824 - hash: "2311ce1a83a43619ab7ce537a2b948e1" - } - Frame { - msec: 5840 - hash: "127871a98123b7bd44f4c38f27cbc836" - } - Frame { - msec: 5856 - hash: "b8db9180b4ad15fdbd25a4e974512f92" - } - Frame { - msec: 5872 - hash: "65af7a4a4aea5a983ea3fb9324e74256" - } - Frame { - msec: 5888 - hash: "aa32e4c20c6a43c4ef7991a9418e57fe" - } - Frame { - msec: 5904 - hash: "b3e92eb4cfe548b92ac526066dfc7d23" - } - Frame { - msec: 5920 - hash: "39fcad34db24d591e24c8ae1c7094d5b" - } - Frame { - msec: 5936 - hash: "165b91b850bcb8dd1d9b1eaa6f81be57" - } - Frame { - msec: 5952 - hash: "f34d2248999f5f51210064315d631f60" - } - Frame { - msec: 5968 - hash: "f34d2248999f5f51210064315d631f60" - } - Frame { - msec: 5984 - hash: "b135c8c9975f4d45d2054cf31d0b1fe1" - } - Frame { - msec: 6000 - hash: "b135c8c9975f4d45d2054cf31d0b1fe1" - } - Frame { - msec: 6016 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6032 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6048 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6064 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6080 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6096 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6112 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6128 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6144 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6160 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6176 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6192 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6208 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6224 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6240 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6256 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6272 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6288 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6304 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6320 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6336 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6352 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6368 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6384 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6400 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6416 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6432 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6448 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6464 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6480 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6496 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6512 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6528 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6544 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6560 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6576 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6592 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6608 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6624 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6640 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6656 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6672 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6688 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6704 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6720 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6736 - image: "itemlist.7.png" - } - Frame { - msec: 6752 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6768 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6784 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6800 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6816 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6832 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6848 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6864 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6880 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6896 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6912 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6928 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6944 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6960 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6976 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6992 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7008 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7024 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7040 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7056 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7072 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7088 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7104 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7120 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7136 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7152 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7168 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7184 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7200 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7216 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7232 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7248 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7264 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7280 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7296 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7312 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png deleted file mode 100644 index 71926d7..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png deleted file mode 100644 index 80f82e4..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png deleted file mode 100644 index 61501bb..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png deleted file mode 100644 index 51c4eb1..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png deleted file mode 100644 index 81e00ed..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png deleted file mode 100644 index d1f06fa..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png deleted file mode 100644 index 9e6e29c..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png deleted file mode 100644 index 9e7bd6e..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png deleted file mode 100644 index 9e7bd6e..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data/listview.qml deleted file mode 100644 index b1ffe8f..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml +++ /dev/null @@ -1,2227 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "listview.0.png" - } - Frame { - msec: 32 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 48 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 64 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 80 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 96 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 112 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 128 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 144 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 160 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 176 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 192 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 208 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 224 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 240 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 256 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 272 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 288 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 304 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 320 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 336 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 352 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 368 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 384 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 400 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 416 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 432 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 448 - hash: "435ac0668ad4d0e196eb040d385053cb" - } - Frame { - msec: 464 - hash: "e9532fe1acc1c27a2119e6dde3e01637" - } - Frame { - msec: 480 - hash: "9c757feaf5a8d1e88c659fca97e3b7b2" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 496 - hash: "ccc7785a45a41615db01580835a4638e" - } - Frame { - msec: 512 - hash: "11ad92022bcd5d3fbd28ffb9f51c69eb" - } - Frame { - msec: 528 - hash: "a8a94e1f95216864c368b8c3d0ae682b" - } - Frame { - msec: 544 - hash: "d83e213d35e7fcff2580b4e197547f24" - } - Frame { - msec: 560 - hash: "9e5a57fabdc443e395cacbaf6e0c9bef" - } - Frame { - msec: 576 - hash: "9e5a57fabdc443e395cacbaf6e0c9bef" - } - Frame { - msec: 592 - hash: "9e5a57fabdc443e395cacbaf6e0c9bef" - } - Frame { - msec: 608 - hash: "9e5a57fabdc443e395cacbaf6e0c9bef" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 624 - hash: "9e5a57fabdc443e395cacbaf6e0c9bef" - } - Frame { - msec: 640 - hash: "0e9c577fa86d9b3734da0d50040624e0" - } - Frame { - msec: 656 - hash: "834cf83f0f8d613191cac775b5737664" - } - Frame { - msec: 672 - hash: "495ea7650b2ae45f9afd7f9f6ecdd793" - } - Frame { - msec: 688 - hash: "55c761ccee6543bb3b9564bb813df58e" - } - Frame { - msec: 704 - hash: "e29e5f86cb3b1fb5ec77fde696024812" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 720 - hash: "f24b7d5a8f5ab03460505d6203269d1b" - } - Frame { - msec: 736 - hash: "893473965efe9e0540b197cbaa3f765d" - } - Frame { - msec: 752 - hash: "a541b7be2f370f948048b2101b037ab7" - } - Frame { - msec: 768 - hash: "a541b7be2f370f948048b2101b037ab7" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 784 - hash: "da065f1e72883a45241630b96ee5b1f8" - } - Frame { - msec: 800 - hash: "e97f78604c0c6d468c8dd225642e2ebd" - } - Frame { - msec: 816 - hash: "7b9d4b14eedfa4ff10dd7e3747c4a7f5" - } - Frame { - msec: 832 - hash: "6d55ba6287c720614854d36bb681a9f3" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 848 - hash: "3e7a44811f59bfb81de2f4f884a7af17" - } - Frame { - msec: 864 - hash: "101113a7723b9d09275f66152b82142f" - } - Frame { - msec: 880 - hash: "0044e068522f912630868476f8bf49f8" - } - Frame { - msec: 896 - hash: "92065f9f170ee09abf67f0d0c7a1b6ba" - } - Frame { - msec: 912 - hash: "92065f9f170ee09abf67f0d0c7a1b6ba" - } - Frame { - msec: 928 - hash: "92065f9f170ee09abf67f0d0c7a1b6ba" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 944 - hash: "92065f9f170ee09abf67f0d0c7a1b6ba" - } - Frame { - msec: 960 - hash: "d193987835dc12e4391e55ff5fee4ce1" - } - Frame { - msec: 976 - image: "listview.1.png" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 992 - hash: "9b07b6861a97d0871ed89369ff7449da" - } - Frame { - msec: 1008 - hash: "7d95daf35c1823ea7187162b62010c57" - } - Frame { - msec: 1024 - hash: "cc1e70fd1235d50ca291580bef1d6fc4" - } - Frame { - msec: 1040 - hash: "c8250f4cf69642e78523412b7b75501c" - } - Frame { - msec: 1056 - hash: "c57e421c803e8bfa1a85409cbb858829" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1072 - hash: "19b429a90d9877e62a7dee53ebf01fb2" - } - Frame { - msec: 1088 - hash: "7c810f174bed3826016272515df2d525" - } - Frame { - msec: 1104 - hash: "9034cf480bda0d8b55aa6c43fc96b23d" - } - Frame { - msec: 1120 - hash: "f62697a1f4e4df2869c14462a0d514fd" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1136 - hash: "c878f53b338d1ce332973193b0fa4b86" - } - Frame { - msec: 1152 - hash: "5d26f27061b319c391961dc30d985593" - } - Frame { - msec: 1168 - hash: "e038ae877e8dddd3d99bf97475f59b3d" - } - Frame { - msec: 1184 - hash: "f44adc5e46d320c62095e1285ca8848b" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "17f6b13e0556ac07dc527a9013a307a1" - } - Frame { - msec: 1216 - hash: "70a1cc3b6dd3be4e30bb6763344fb980" - } - Frame { - msec: 1232 - hash: "097c37d2243a27b8e800b5d4ec94b2e3" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1248 - hash: "15839227c002b1c71eb516f6653a7531" - } - Frame { - msec: 1264 - hash: "f4a8103ef9010c651368d325fe9eee98" - } - Frame { - msec: 1280 - hash: "d158ec1c83719c58c1d0a2e4cc90998f" - } - Frame { - msec: 1296 - hash: "6f66a44f5dc3fe150db2291b8cbc7327" - } - Frame { - msec: 1312 - hash: "8a016eac5befb215a157f7fe5bc743de" - } - Frame { - msec: 1328 - hash: "8a016eac5befb215a157f7fe5bc743de" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1344 - hash: "807129a4c578b1a5f0d3d84686eb0553" - } - Frame { - msec: 1360 - hash: "f9f2da990518048f0b050cc193567a20" - } - Frame { - msec: 1376 - hash: "762de7b1f4e56df6d7a245a23446884b" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "84ba7354badc3dca92974933c3610010" - } - Frame { - msec: 1408 - hash: "36c3018870d74cff638d00acd03a0cf0" - } - Frame { - msec: 1424 - hash: "82b756a14eb0e802cd3e2d2d2a07f28e" - } - Frame { - msec: 1440 - hash: "74af1c12613130dc53533fe1178d5534" - } - Frame { - msec: 1456 - hash: "c32818b0ba24f11295580d1ccffffdc0" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1472 - hash: "b858be109fac6852234bf1db161e515b" - } - Frame { - msec: 1488 - hash: "9b3f8cffd3e79241d8a3b1f7d80790db" - } - Frame { - msec: 1504 - hash: "840dc72aabc4a9b28bae641354676324" - } - Frame { - msec: 1520 - hash: "c60bfd5cc8b26a841035db29baba5dab" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1536 - hash: "88d80dc8b0d968aa718ff464e507f53b" - } - Frame { - msec: 1552 - hash: "f7ffc82d3448c415b4997401fb61b96b" - } - Frame { - msec: 1568 - hash: "df8e9a09752fe2b2eff9184ba8e88ef1" - } - Frame { - msec: 1584 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1600 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1616 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1632 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1648 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1680 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1696 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1712 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1728 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1744 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1760 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1776 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1808 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1824 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1840 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1856 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1872 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Key { - type: 6 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1888 - hash: "97330e949a609f5f33832dd17e0c3716" - } - Frame { - msec: 1904 - hash: "15e45e1f64438d7c31e79a9602e1db7a" - } - Frame { - msec: 1920 - hash: "02f34b6fde613c7c5928285bf81837d6" - } - Frame { - msec: 1936 - image: "listview.2.png" - } - Key { - type: 7 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1952 - hash: "33091359f9e6f21a14bf415d32d4d3b1" - } - Frame { - msec: 1968 - hash: "0fdcffa304f3eadde5cd7866d0a74e72" - } - Frame { - msec: 1984 - hash: "024539dbf8e66f1ba7d5d8c91bd278f0" - } - Frame { - msec: 2000 - hash: "4900babcc0a7bbd622a72590dcb0eea4" - } - Frame { - msec: 2016 - hash: "d6f68d576fe46bb832accf5e9e590f7e" - } - Key { - type: 6 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "5a54bcb9a59268d70a2bb99bd32395be" - } - Frame { - msec: 2048 - hash: "72fbb18da8c5ef3e98390796dad31390" - } - Frame { - msec: 2064 - hash: "ac073b398e3d50ef10c92d8e6b4b3fa0" - } - Frame { - msec: 2080 - hash: "41e38d866d65bf1d42448b07a133cd93" - } - Key { - type: 7 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2096 - hash: "c45310b94cd2ff276e97be1706e1d432" - } - Frame { - msec: 2112 - hash: "aefc6994644d266d4be0310f01c28be7" - } - Frame { - msec: 2128 - hash: "f07bcb1d8ad693e1ddd79bf651126554" - } - Frame { - msec: 2144 - hash: "62ff227caab71d2d98daf0da302ec796" - } - Key { - type: 6 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "72350eeeaefd043354c82ca2039cff59" - } - Frame { - msec: 2176 - hash: "d89f288f0b231b4ec4a634b3856ecf8e" - } - Frame { - msec: 2192 - hash: "bc7d7e2253651cb3ea1cdebf9f188ae0" - } - Frame { - msec: 2208 - hash: "7c89cdb693489708fe2db327ae66d083" - } - Frame { - msec: 2224 - hash: "8ca778c1812ede19545c3c70020faa67" - } - Key { - type: 7 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "bd50cd99f177eb3f70b2ffad9f7a49e1" - } - Frame { - msec: 2256 - hash: "b439c3576cad17689e7b6b134bb04e14" - } - Frame { - msec: 2272 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2288 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2304 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2320 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2336 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2352 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2368 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2384 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2400 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2416 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 488; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2432 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Frame { - msec: 2448 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 489; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2464 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 490; y: 59 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 491; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2480 - hash: "9489c0e1e8cc5675bbc42b78e567eab6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 494; y: 74 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2496 - hash: "6502b3a17af7ebca92d4794f0c2a62ac" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 499; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 501; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2512 - hash: "8a7ac12d59126b2784fd0af8d6b762a5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 505; y: 170 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2528 - hash: "12fa9c4e2d6681f3a0643d8243d83e23" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 509; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2544 - hash: "ccf18952f7c9686bd12fa196af9919e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 516; y: 289 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2560 - hash: "70d654eecaf2163971596a503d2925a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 316 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 518; y: 316 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2576 - hash: "01ef888104f290f25612970a91e64620" - } - Frame { - msec: 2592 - hash: "25b730c7c126875078c64cce118f6277" - } - Frame { - msec: 2608 - hash: "68f3366932fed9156bf68dce6660b2a8" - } - Frame { - msec: 2624 - hash: "9f4be0b58c46035a11c5b80ec60618d5" - } - Frame { - msec: 2640 - hash: "6d38a4eaa2a41c57599cca381957ec4c" - } - Frame { - msec: 2656 - hash: "1061db26c9080067bf121eb1d164a3f3" - } - Frame { - msec: 2672 - hash: "c78d271711dc8f13fb48b41871249141" - } - Frame { - msec: 2688 - hash: "c5825611f6c429fddd8c20495507ea5f" - } - Frame { - msec: 2704 - hash: "9888b608bcf80496a3fe8848be4e3629" - } - Frame { - msec: 2720 - hash: "9995d6ba039045d94903d5095b018ca8" - } - Frame { - msec: 2736 - hash: "f8ea705b4710b3ffb11c2fe08ccccda2" - } - Frame { - msec: 2752 - hash: "7354c2fcabdede9fb1ee823ce098da3b" - } - Frame { - msec: 2768 - hash: "0d6beff960fa26771f09748356accedb" - } - Frame { - msec: 2784 - hash: "0720a8a1ed85344a1de6682b3aefd502" - } - Frame { - msec: 2800 - hash: "0245488740e13dbfc836b587b2bdf917" - } - Frame { - msec: 2816 - hash: "25c4fcdd85017d18df7e83c15f1accbc" - } - Frame { - msec: 2832 - hash: "51192ae0eae814f3dead9d949e2e4676" - } - Frame { - msec: 2848 - hash: "ddbe6b273882c6018c01e0a4480b1adb" - } - Frame { - msec: 2864 - hash: "bb840a0677114b67d9b08589e8a8192b" - } - Frame { - msec: 2880 - hash: "5387de4152cac542735a4debf997b56f" - } - Frame { - msec: 2896 - image: "listview.3.png" - } - Frame { - msec: 2912 - hash: "f5c99d06e0b3055374ee4c6bf3e634f4" - } - Frame { - msec: 2928 - hash: "18fe01fadf4c5acbd369f4450db1efa6" - } - Frame { - msec: 2944 - hash: "bed738f1883a76c5169dd2726456b9ea" - } - Frame { - msec: 2960 - hash: "c80c45be3189269d8edc5be22db7227d" - } - Frame { - msec: 2976 - hash: "3dcb08dd8ac8f083ad6aacbafaae05f4" - } - Frame { - msec: 2992 - hash: "38850ecc15cdcd55b758f94e8ac7fe55" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 517; y: 241 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3008 - hash: "033c44c51b8ab8f1555e153e20a80699" - } - Frame { - msec: 3024 - hash: "b6dc510369c679a028bb059e74796f6c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 240 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 519; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3040 - hash: "f3606887493ee9c0db86b1c6cc6fef6d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 524; y: 229 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3056 - hash: "79975f978ebf4556381d08b500dcab72" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 530; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3072 - hash: "1345974969c1a56c4c14c74301985289" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 532; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3088 - hash: "fd623f2bf161f326da6dec8b5d8bf16f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 530; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 530; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3104 - hash: "f1dfb47c5d4449e6cf7e2e6a2e86b1c5" - } - Frame { - msec: 3120 - hash: "26b31d08a1d50614771bec0458a2776b" - } - Frame { - msec: 3136 - hash: "dd017925e34f942c279ceb18b5e222da" - } - Frame { - msec: 3152 - hash: "be400b4ad1d9a1ccca56b8ff6b809272" - } - Frame { - msec: 3168 - hash: "4a4faa75155bb2c260f3a35675bd113e" - } - Frame { - msec: 3184 - hash: "3884c5d0d4c127876ba92a7b3a416339" - } - Frame { - msec: 3200 - hash: "b3d15196484410e24084b0f0d8fd683f" - } - Frame { - msec: 3216 - hash: "ed636ae433d185338ddbf7bffae731e1" - } - Frame { - msec: 3232 - hash: "0e1f352c163ad8fe852c2e4857881d2f" - } - Frame { - msec: 3248 - hash: "3c3b44481a6c2330a4a03076e35055f4" - } - Frame { - msec: 3264 - hash: "6ea3210a929774aea84a7beb4a784842" - } - Frame { - msec: 3280 - hash: "74dd747f9a64b19e5c5230c90ad3b642" - } - Frame { - msec: 3296 - hash: "c02be4ebefd19f4c5e864e8bbab7c13e" - } - Frame { - msec: 3312 - hash: "ce661af9085c833ec7d1fd66ebe67649" - } - Frame { - msec: 3328 - hash: "4bf921874cfdc1b7d14e3a110b9e70a1" - } - Frame { - msec: 3344 - hash: "f3e9cf8ac9e109e88d8c426fdcee28a9" - } - Frame { - msec: 3360 - hash: "aa718a37f7ccf655d176adb799b5ddfb" - } - Frame { - msec: 3376 - hash: "aa114a9676af508b4a106b21f7a2ed10" - } - Frame { - msec: 3392 - hash: "a5bbbaebb61b83384f5be82a9c3181ba" - } - Frame { - msec: 3408 - hash: "83deebf650b192de7c8a764d5379eeb4" - } - Frame { - msec: 3424 - hash: "5b433e1f5b97b39b6e86c837f0b91f2b" - } - Frame { - msec: 3440 - hash: "b5236be4e416f89a91eda7afbd75fc63" - } - Frame { - msec: 3456 - hash: "1713477f5484a1b35686f2f4bff27612" - } - Frame { - msec: 3472 - hash: "77f91f90744a23bbe172629f311d1a4e" - } - Frame { - msec: 3488 - hash: "3963753a90d6cbf74bc21c9d06f4227b" - } - Frame { - msec: 3504 - hash: "7f64804cd07a0ae63d0e3a1b9f8f8a84" - } - Frame { - msec: 3520 - hash: "9ae6bc952da97239bfee88633637aeb7" - } - Frame { - msec: 3536 - hash: "ba34cd0d57d5d027ad6c2de102676399" - } - Frame { - msec: 3552 - hash: "c49632f9369aa901fcb702e76295c1e8" - } - Frame { - msec: 3568 - hash: "3adab59e06a635a033564dfc8edc4877" - } - Frame { - msec: 3584 - hash: "67643cbfb3c9864b7447a9a8e316b251" - } - Frame { - msec: 3600 - hash: "d04d288cbf89e1ad3bbf25ffebd7a382" - } - Frame { - msec: 3616 - hash: "e6c4d34b9b3de464ec0dcf8719b86313" - } - Frame { - msec: 3632 - hash: "f73462d0fe19cbbd771f9f78d7bc4384" - } - Frame { - msec: 3648 - hash: "6369f075a492240aee36eae8dcb2ace5" - } - Frame { - msec: 3664 - hash: "1e9424a3b93833f8ae855c5f7877679a" - } - Frame { - msec: 3680 - hash: "da274c1ae57d217ef4515326d32646b4" - } - Frame { - msec: 3696 - hash: "1cbe684ba95e6ef635873f746e942f3d" - } - Frame { - msec: 3712 - hash: "228e13c1d3dea6e666637de7cedd6dd4" - } - Frame { - msec: 3728 - hash: "a3f8fec49fb88652e9339b621ea8b972" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 487; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3744 - hash: "7c3eb16bf4f66d2b9889c9d80aaae8b2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 488; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "1825d33eb9ae94a63d334d93e07ce9af" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 489; y: 49 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3776 - hash: "306652a5a179cf23ee87c10571814f53" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 490; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3792 - hash: "3d3ba7cd968a1f91f7534cabd7cc034b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 490; y: 60 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3808 - hash: "862f70151938a5d27db37a9f5dd53faa" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 491; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3824 - hash: "92b9283fa8b5642ce9bd14d875a12b75" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 491; y: 72 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3840 - hash: "294e6961316b028201657ab6b244559f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 493; y: 93 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3856 - image: "listview.4.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 493; y: 123 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3872 - hash: "6cdd764ee39789307e5e313bfbbb7765" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 494; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 494; y: 141 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3888 - hash: "a88656d49e4636b18c4f6f4a0ab943d6" - } - Frame { - msec: 3904 - hash: "f1ec9a65d5f8d2020db1b70bcd419417" - } - Frame { - msec: 3920 - hash: "ca7d3d7d26445d13acd7fe4a2c5d1d4d" - } - Frame { - msec: 3936 - hash: "90016f51541a15ba4b6265f6843a2998" - } - Frame { - msec: 3952 - hash: "bdb992552a5c5707ddb372631f72e6a3" - } - Frame { - msec: 3968 - hash: "af69ed47f0f40648d55af10c87866805" - } - Frame { - msec: 3984 - hash: "33e77562bdf839ca1e969b918d90a07b" - } - Frame { - msec: 4000 - hash: "2001b5ca444808a79c49adc9d03c960e" - } - Frame { - msec: 4016 - hash: "e4186283e5fe0c1efb29eca6f59e9079" - } - Frame { - msec: 4032 - hash: "dab82d0bbba66df3297712b42f74f25a" - } - Frame { - msec: 4048 - hash: "b180ad3acdfd736276ef4d1de040bb55" - } - Frame { - msec: 4064 - hash: "577445b0e4d6f8079830c2b87ce5829d" - } - Frame { - msec: 4080 - hash: "45fffe51376abef4cb28842b392ab0b7" - } - Frame { - msec: 4096 - hash: "fc14e3b2d16e1f078d223876ef71c81e" - } - Frame { - msec: 4112 - hash: "4ef2b65280a00a6a4e66185f41479aef" - } - Frame { - msec: 4128 - hash: "131181ce7ff2f4d4e69823fcb7a20755" - } - Frame { - msec: 4144 - hash: "8e6db058e96dad9c4963b881083ab9bf" - } - Frame { - msec: 4160 - hash: "e2d407b6dff40625790d4fd9e599b374" - } - Frame { - msec: 4176 - hash: "631fe708fdcb1e4f4ea89b10da5db623" - } - Frame { - msec: 4192 - hash: "e11831f37a3a1da78cbdc7604ddccd68" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 491; y: 193 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4208 - hash: "c2dccc4e890b2302edd413dcdb87b50b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 491; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4224 - hash: "b4f6a6650dd779c8ad8696c23f44411a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 493; y: 187 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4240 - hash: "ad913e53e63c030ffdf4560766722760" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 494; y: 182 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 495; y: 180 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4256 - hash: "ef31f8a4d5bde5a2e308d19ee6d5e759" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 496; y: 174 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4272 - hash: "3ba07527f66e8bea5a8fb7647b0b4f3f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 496; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4288 - hash: "70e5fe656f5fd843383964825690b678" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 159 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4304 - hash: "b7d8738be4cd6caa63dbecdb0f810a2f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 147 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4320 - hash: "d6312191f9d7bbddc07f9253d8a93469" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4336 - hash: "b182da64886cf4f444296e5fde26701e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 128 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4352 - hash: "ebefef14b6fb990e0c6900884528bbd3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4368 - hash: "9a3451ed091b1bb6b975a9c5506b1ea4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4384 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 498; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4400 - hash: "eaaf9ea1d7fcf4a2a9dd58b1b5bb3cae" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 498; y: 112 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4416 - hash: "7ca8e3d76cf913d85f84f0b96acde829" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 498; y: 110 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4432 - hash: "7cfef56b24a552c6d4ecb3d0b88a1d08" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 498; y: 109 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 498; y: 108 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4448 - hash: "d032b257259810b4fe514c63ca5c9e4b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 498; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4464 - hash: "568f6a57e6f1644b0dc245d03a1d7b85" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 499; y: 105 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4480 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4496 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4512 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4528 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4544 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4560 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4576 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4592 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4608 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4624 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4640 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4656 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4672 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4688 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4704 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4720 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4736 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4752 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4768 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4784 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4800 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4816 - image: "listview.5.png" - } - Frame { - msec: 4832 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Frame { - msec: 4848 - hash: "5cb4cf2c527d821db2a5072dd3702653" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 499; y: 106 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 498; y: 107 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4864 - hash: "d48ecbd0661e08b2117fe2fd96ffeb2c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 110 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4880 - hash: "7cfef56b24a552c6d4ecb3d0b88a1d08" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 496; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4896 - hash: "5b12e9d17d9d464b055601db9cf0da44" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 495; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4912 - hash: "25333e1f0cc9cfc664fd7369af544c06" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 494; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4928 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 4944 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 4960 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 4976 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 4992 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5008 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5024 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5040 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5056 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 494; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5072 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5088 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5104 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5120 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5136 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5152 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5168 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5184 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5200 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5216 - hash: "04290d8d62436c8a812f886e0a56ec1b" - } - Frame { - msec: 5232 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5248 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5264 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5280 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5296 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5312 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5328 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5344 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5360 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5376 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5392 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5408 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5424 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5440 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5456 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5472 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5488 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5504 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5520 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5536 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5552 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5568 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5584 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5600 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5616 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5632 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5648 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5664 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5680 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5696 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5712 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5728 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5744 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5760 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5776 - image: "listview.6.png" - } - Frame { - msec: 5792 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5808 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5824 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5840 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5856 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5872 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5888 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5904 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5920 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5936 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5952 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5968 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 5984 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6000 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6016 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6032 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6048 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6064 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6080 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6096 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6112 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } - Frame { - msec: 6128 - hash: "dbd87bf02d698b7f053d307ef0c98452" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/enforcerange.qml b/tests/auto/declarative/qmlvisual/ListView/enforcerange.qml deleted file mode 100644 index a796be7..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/enforcerange.qml +++ /dev/null @@ -1,31 +0,0 @@ -import QtQuick 1.0 - -Item { - id: document - width: 200; height: 200 - - ListView { - id: serviceListView - anchors.fill: parent - model: 100 - - preferredHighlightBegin: 90 - preferredHighlightEnd: 90 - - highlightRangeMode: ListView.StrictlyEnforceRange - - delegate: Component { - Item { - height: 15 + ((serviceListView.currentIndex == index) ? 20 : 0) - width: 200 - Rectangle { width: 180; height: parent.height - 4; x: 10; y: 2; color: "red" } - } - } - } - - Rectangle { - y: 90; width: 200; height: 35 - border.color: "black" - color: "transparent" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/itemlist.qml deleted file mode 100644 index 7e5d634..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/itemlist.qml +++ /dev/null @@ -1,40 +0,0 @@ -// This example demonstrates placing items in a view using -// a VisualItemModel - -import QtQuick 1.0 - -Rectangle { - color: "lightgray" - width: 240 - height: 320 - - VisualItemModel { - id: itemModel - objectName: "itemModel" - Rectangle { - objectName: "item1" - height: view.height; width: view.width; color: "#FFFEF0" - } - Rectangle { - objectName: "item2" - height: view.height; width: view.width; color: "#F0FFF7" - } - Rectangle { - objectName: "item3" - height: view.height; width: view.width; color: "#F4F0FF" - } - } - - ListView { - id: view - objectName: "view" - anchors.fill: parent - anchors.bottomMargin: 30 - model: itemModel - preferredHighlightBegin: 0 - preferredHighlightEnd: 0 - highlightRangeMode: "StrictlyEnforceRange" - orientation: ListView.Horizontal - flickDeceleration: 2000 - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/listview.qml b/tests/auto/declarative/qmlvisual/ListView/listview.qml deleted file mode 100644 index 6171c75..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/listview.qml +++ /dev/null @@ -1,86 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: root - property int current: 0 - width: 600; height: 300; color: "white" - - ListModel { - id: myModel - ListElement { - itemColor: "red" - } - ListElement { - itemColor: "green" - } - ListElement { - itemColor: "blue" - } - ListElement { - itemColor: "orange" - } - ListElement { - itemColor: "brown" - } - ListElement { - itemColor: "yellow" - } - ListElement { - itemColor: "purple" - } - ListElement { - itemColor: "darkred" - } - ListElement { - itemColor: "darkblue" - } - } - - Component { - id: myDelegate - Item { - width: 200; height: 50 - Rectangle { - x: 5; y : 5 - width: 190; height: 40 - opacity: 0.5 - color: itemColor - } - } - } - - Component { - id: myHighlight - Rectangle { width: 200; height: 50; color: "black" } - } - - ListView { - id: list1 - width: 200; height: parent.height - model: myModel; delegate: myDelegate - highlight: myHighlight - currentIndex: root.current - onCurrentIndexChanged: root.current = currentIndex - focus: true - } - ListView { - id: list2 - x: 200; width: 200; height: parent.height - model: myModel; delegate: myDelegate; highlight: myHighlight - preferredHighlightBegin: 80 - preferredHighlightEnd: 220 - highlightRangeMode: "ApplyRange" - currentIndex: root.current - } - ListView { - id: list3 - x: 400; width: 200; height: parent.height - model: myModel; delegate: myDelegate; highlight: myHighlight - currentIndex: root.current - onCurrentIndexChanged: root.current = currentIndex - preferredHighlightBegin: 125 - preferredHighlightEnd: 125 - highlightRangeMode: "StrictlyEnforceRange" - flickDeceleration: 1000 - } -} diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.0.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.0.png deleted file mode 100644 index 85f8691..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.1.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.1.png deleted file mode 100644 index 3cbb470..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.2.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.2.png deleted file mode 100644 index 521e818..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.3.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.3.png deleted file mode 100644 index f5e7640..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.4.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.4.png deleted file mode 100644 index 7b0c620..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.5.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.5.png deleted file mode 100644 index 8c40a7a..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.6.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.6.png deleted file mode 100644 index 8dfcf7b..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml deleted file mode 100644 index af9e005..0000000 --- a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml +++ /dev/null @@ -1,1767 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "packageviews.0.png" - } - Frame { - msec: 32 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 48 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 64 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 80 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 96 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 112 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 128 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 144 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 160 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 176 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 192 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 208 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 224 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 240 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 256 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 272 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 288 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 304 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 320 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 336 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 352 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 368 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 384 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 400 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 416 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 432 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 448 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 464 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 480 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 496 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 512 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 528 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 544 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 560 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 576 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 592 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 608 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 624 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 640 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 656 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 672 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 688 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 704 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 720 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 736 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 752 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 768 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 784 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 26; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 800 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 816 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 832 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 848 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 26; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 864 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 880 - hash: "ae75402b2fa678a20c32d743e2b297a0" - } - Frame { - msec: 896 - hash: "76a9721ada8280925ff32e7207c01944" - } - Frame { - msec: 912 - hash: "87fb13adce4e2af05a7ad2f8cd18bad9" - } - Frame { - msec: 928 - hash: "cd7be3a5b9bae876998770dc52dbcd86" - } - Frame { - msec: 944 - hash: "3ba0b907dad0bfa9b20337d41661030b" - } - Frame { - msec: 960 - hash: "9748e4da669f474bf10abfe7a9c013fd" - } - Frame { - msec: 976 - image: "packageviews.1.png" - } - Frame { - msec: 992 - hash: "5af677254d12dc96b82cde90c5a65140" - } - Frame { - msec: 1008 - hash: "72cb4e75acb87de293a3cb1872eb946b" - } - Frame { - msec: 1024 - hash: "9b057090349c0c544036a33a60710920" - } - Frame { - msec: 1040 - hash: "ae19cf81092e75979b6471c0b05541cf" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 48; y: 165 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1056 - hash: "0f42c19fee319bc8c27a89e9692c5cd9" - } - Frame { - msec: 1072 - hash: "865e19e35f361b08e6e844aa88d149eb" - } - Frame { - msec: 1088 - hash: "d5fcf7bd78da8918a3512a76189c7202" - } - Frame { - msec: 1104 - hash: "d2a6b42c2a3f7ca9eb35acc47f1faaf6" - } - Frame { - msec: 1120 - hash: "1388e856eb04fc24091c94406f4b5118" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 48; y: 165 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1136 - hash: "1388e856eb04fc24091c94406f4b5118" - } - Frame { - msec: 1152 - hash: "d529b6dcf510392488b370f6cfb87b3c" - } - Frame { - msec: 1168 - hash: "a50b1f2869c95f97a194a95581fa7be9" - } - Frame { - msec: 1184 - hash: "4bbee959f95548c3e76fb60ad363c184" - } - Frame { - msec: 1200 - hash: "5ec0185f4479377579822f92eb7f375a" - } - Frame { - msec: 1216 - hash: "263d09b9447d942c6c048139164d4427" - } - Frame { - msec: 1232 - hash: "291cc81fc3f82bca46db4e4403f39d49" - } - Frame { - msec: 1248 - hash: "c212f98ededa9ce7fc0fec697116a8e2" - } - Frame { - msec: 1264 - hash: "4309ef22d0c36d28a462ab2d4bf2cabd" - } - Frame { - msec: 1280 - hash: "f899f861c569416708c6754d821239e9" - } - Frame { - msec: 1296 - hash: "ed5ec237020ff06f258ce6e1b31e5eb8" - } - Frame { - msec: 1312 - hash: "98f3fe1c211d4f7bdc47b4a485226f14" - } - Frame { - msec: 1328 - hash: "40e376d37a85d225c46579b8f7c27159" - } - Frame { - msec: 1344 - hash: "cc8a178bf0cfc285185d17b37722bf41" - } - Frame { - msec: 1360 - hash: "b612439873d0eeb015d31cccd8e5a436" - } - Frame { - msec: 1376 - hash: "48c436165872098b474d0c691df11473" - } - Frame { - msec: 1392 - hash: "48c436165872098b474d0c691df11473" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 44; y: 50 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1408 - hash: "48c436165872098b474d0c691df11473" - } - Frame { - msec: 1424 - hash: "48c436165872098b474d0c691df11473" - } - Frame { - msec: 1440 - hash: "48c436165872098b474d0c691df11473" - } - Frame { - msec: 1456 - hash: "48c436165872098b474d0c691df11473" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 44; y: 50 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1472 - hash: "48c436165872098b474d0c691df11473" - } - Frame { - msec: 1488 - hash: "33cb50c11326c0589c7cc43ba6193e03" - } - Frame { - msec: 1504 - hash: "3f7e7534ccd7105762c78afab5ab997d" - } - Frame { - msec: 1520 - hash: "53b23d3eb2aaa1b21e4abaf9c0bfc7f2" - } - Frame { - msec: 1536 - hash: "609b37b12154291a28961210e81049fb" - } - Frame { - msec: 1552 - hash: "33cc6e17d087c251381ecf1b4cb9887c" - } - Frame { - msec: 1568 - hash: "dcb3e716035ca3f43895fda99c27e0d8" - } - Frame { - msec: 1584 - hash: "56bb753199873fac4ed9f30682bd1a3c" - } - Frame { - msec: 1600 - hash: "8b744c5cbf6154b73bd6c4fe6b087f0a" - } - Frame { - msec: 1616 - hash: "f2d5996d7fd5391a4d96493e9ef6a637" - } - Frame { - msec: 1632 - hash: "4407a05b64c68d43b29124df1f0d8f44" - } - Frame { - msec: 1648 - hash: "b71e43a8f7aa7a58cea80629b782a972" - } - Frame { - msec: 1664 - hash: "cca961a04dfdf9da8282219f2022fd2e" - } - Frame { - msec: 1680 - hash: "f3349a7ae7d7a97a6665476244d46dd6" - } - Frame { - msec: 1696 - hash: "78fc6123a10c027faa08dc2ff8318acc" - } - Frame { - msec: 1712 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1728 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1744 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1760 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1776 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1792 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1808 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1824 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1840 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1856 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1872 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1888 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1904 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1920 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1936 - image: "packageviews.2.png" - } - Frame { - msec: 1952 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1968 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 1984 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2000 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 2016 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Frame { - msec: 2032 - hash: "6056cb02b921b56c63696d7fe9fe90fa" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2048 - hash: "9f94c38547da1855e4bd3ae498aed705" - } - Frame { - msec: 2064 - hash: "783f73da3736a2c554c8d749ce0522c0" - } - Frame { - msec: 2080 - hash: "9a0e1c2bed75874381e4b1ce275d0f68" - } - Frame { - msec: 2096 - hash: "e2ce85192977e6422c89190b3cea4518" - } - Frame { - msec: 2112 - hash: "ba9c80ff0ed723bca702cb6b4c6dfb76" - } - Frame { - msec: 2128 - hash: "7e194db1b86bc7346248d2acf34af286" - } - Frame { - msec: 2144 - hash: "cdd013bb8ee5880b16449efc99dd3ae5" - } - Frame { - msec: 2160 - hash: "3ef7d0fb43c2a1c1398f1152573974e0" - } - Frame { - msec: 2176 - hash: "176d1a86257cc85315dac4ecfe33f543" - } - Frame { - msec: 2192 - hash: "6def1267e573217a19e7b8e2cf6d7b6c" - } - Frame { - msec: 2208 - hash: "f679db34d99e24cda2e41c2afeaf551e" - } - Frame { - msec: 2224 - hash: "54a27193c5e59cd7220b65d8fbbd9061" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 112; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2240 - hash: "171db3d0bf50062a0d7edd8e4c174024" - } - Frame { - msec: 2256 - hash: "9a7d293dc455e1ef0d18f44c3db7eed7" - } - Frame { - msec: 2272 - hash: "83bef2586d5abeb0ac8765d62135d308" - } - Frame { - msec: 2288 - hash: "56fed2e01cc8a6b9ccbf15731d4e533b" - } - Frame { - msec: 2304 - hash: "10174f2574c51155b8ee77ae545ac76d" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 112; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2320 - hash: "107928ffebd936080325a1f4e39a0ac0" - } - Frame { - msec: 2336 - hash: "107928ffebd936080325a1f4e39a0ac0" - } - Frame { - msec: 2352 - hash: "d46e040f85295e66d8b22185be553d3e" - } - Frame { - msec: 2368 - hash: "3368a34c316486a779d62d143588b425" - } - Frame { - msec: 2384 - hash: "8f4cd4223c05e1b06a688c5eabc2a854" - } - Frame { - msec: 2400 - hash: "b576bf54b4bae38e8af6d922b3c73463" - } - Frame { - msec: 2416 - hash: "a3a238f5bf182ec6afc398569fd51ac7" - } - Frame { - msec: 2432 - hash: "a31329ba054a6fe144c030cffb5bd401" - } - Frame { - msec: 2448 - hash: "0a4b96a93e62359b6003daa703af1a5f" - } - Frame { - msec: 2464 - hash: "a16f126d874d957b879f45d36e88df34" - } - Frame { - msec: 2480 - hash: "89735c5b14f075b8f65533d16b3f714a" - } - Frame { - msec: 2496 - hash: "5d67dac0c4d2cf60e4cb717f4e4bc25f" - } - Frame { - msec: 2512 - hash: "dbfcc86e621a140466dd2a9215087e81" - } - Frame { - msec: 2528 - hash: "9f8dfa788048466dc07463e83d0377ff" - } - Frame { - msec: 2544 - hash: "021e1edec94a1909790a4acdbbc71fd8" - } - Frame { - msec: 2560 - hash: "f16be9ff4aba07708d469d6cfb80f1c2" - } - Frame { - msec: 2576 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2592 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2608 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2624 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2640 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2656 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2672 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2688 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2704 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2720 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2736 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 116; y: 165 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2752 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2768 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2784 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Frame { - msec: 2800 - hash: "1ab35df24a27349264ec282eb1f53018" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 116; y: 165 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2816 - hash: "a0aa5583886efc9bb0571bbb02fdb051" - } - Frame { - msec: 2832 - hash: "a0aa5583886efc9bb0571bbb02fdb051" - } - Frame { - msec: 2848 - hash: "edec25fdce2e05c0456434be4b8fad84" - } - Frame { - msec: 2864 - hash: "0c2061fc908c98980404b9e08acdc2f2" - } - Frame { - msec: 2880 - hash: "7bb02b032c1dcb4a7b3e6604ea5a8a8d" - } - Frame { - msec: 2896 - image: "packageviews.3.png" - } - Frame { - msec: 2912 - hash: "3a80012f6ca448fc30db70e9bcb23ddc" - } - Frame { - msec: 2928 - hash: "22a68838e9f6039e782facce7cfe0c9b" - } - Frame { - msec: 2944 - hash: "243fcc73e46db96ab6a91748adeff1a9" - } - Frame { - msec: 2960 - hash: "433bf03a821da5641909785b4c22cb55" - } - Frame { - msec: 2976 - hash: "66be8aa73b1e7173d899df3c0b9072a6" - } - Frame { - msec: 2992 - hash: "d7e563c1a1db45865794351daea5eb08" - } - Frame { - msec: 3008 - hash: "cc4345c2d4d0d7748c352a22f63030cb" - } - Frame { - msec: 3024 - hash: "382172adf3a339cac16a3e185ef4bb05" - } - Frame { - msec: 3040 - hash: "6019a3eac1825acdeac24d39c898d506" - } - Frame { - msec: 3056 - hash: "ac4b9427592a6fe7585625de8d1bff96" - } - Frame { - msec: 3072 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3088 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3104 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3120 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3136 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3152 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3168 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 80; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3184 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3200 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3216 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3232 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 80; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3248 - hash: "7cf95f1bc67a90c0df788787589a75a9" - } - Frame { - msec: 3264 - hash: "a623e09cddb4304db658e30aef433dd8" - } - Frame { - msec: 3280 - hash: "4dce74fbb6649138a6ea6c288818fda5" - } - Frame { - msec: 3296 - hash: "2356d6d1f8481cf60542126f197ee0b1" - } - Frame { - msec: 3312 - hash: "7553601e70a7ccc3c60306fcf4999bed" - } - Frame { - msec: 3328 - hash: "bc86afd210d18dc68b433d70705b6603" - } - Frame { - msec: 3344 - hash: "8538d87120dd14958f92b81ceff304a3" - } - Frame { - msec: 3360 - hash: "2a8d299ff16589069d493bbab2ceda53" - } - Frame { - msec: 3376 - hash: "9f92b838c36e46d61a78f9013f04b580" - } - Frame { - msec: 3392 - hash: "7e6710b5491d5b9ad9a84691eadaa66c" - } - Frame { - msec: 3408 - hash: "1b165e39ff01747d5e9ad0d8769c8ee9" - } - Frame { - msec: 3424 - hash: "f78ad1eeb030eb58f8140da041acf4cd" - } - Frame { - msec: 3440 - hash: "f009dcb6b085ae38a45206f35ab37754" - } - Frame { - msec: 3456 - hash: "371dd67bf5a16ea085a256dd2e2583f9" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 75; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3472 - hash: "9a0606cd6930b3f992f0533f3f6a0f7a" - } - Frame { - msec: 3488 - hash: "1d538ccb1874fe2ddb410d48ca668d74" - } - Frame { - msec: 3504 - hash: "71e08cb1eced66950e5893306b3043e7" - } - Frame { - msec: 3520 - hash: "71e08cb1eced66950e5893306b3043e7" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 75; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3536 - hash: "71e08cb1eced66950e5893306b3043e7" - } - Frame { - msec: 3552 - hash: "2da0d9bb50d97ca78ee56f3c528a7db5" - } - Frame { - msec: 3568 - hash: "7f5105df4d41a6739ce13d69451d6059" - } - Frame { - msec: 3584 - hash: "8d171773d643ca5bfb095208efe841a9" - } - Frame { - msec: 3600 - hash: "8aa93bddb58d0533b03d2b7fc6efb839" - } - Frame { - msec: 3616 - hash: "26e2bcff7c3de9995e29fd8a06db4139" - } - Frame { - msec: 3632 - hash: "94fe4626d8f978649bf200bf79885ec0" - } - Frame { - msec: 3648 - hash: "61e92064d9da2db6ea0adfdffaad81f6" - } - Frame { - msec: 3664 - hash: "54d5845c08eb5cc9263c84146fd9fcd2" - } - Frame { - msec: 3680 - hash: "d10a128980a46713093899696110d81e" - } - Frame { - msec: 3696 - hash: "ff6301533f4fb29194f20a4520824030" - } - Frame { - msec: 3712 - hash: "598b6e7c6c6c0de77b4793d1f68beea6" - } - Frame { - msec: 3728 - hash: "e3d123e179a6930e1bc1864095621607" - } - Frame { - msec: 3744 - hash: "b1bb4c350969f579630680803e622662" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 72; y: 147 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "3dd276bb96dd3a5ef96095e0b8251c05" - } - Frame { - msec: 3776 - hash: "144402c1397313fb5d13b4972bb3a450" - } - Frame { - msec: 3792 - hash: "144402c1397313fb5d13b4972bb3a450" - } - Frame { - msec: 3808 - hash: "144402c1397313fb5d13b4972bb3a450" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 72; y: 146 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 72; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3824 - hash: "144402c1397313fb5d13b4972bb3a450" - } - Frame { - msec: 3840 - hash: "6dbc00069eca813c20731afdf0d25e35" - } - Frame { - msec: 3856 - image: "packageviews.4.png" - } - Frame { - msec: 3872 - hash: "1f7a173f70f04adcc28481cfa40ad82e" - } - Frame { - msec: 3888 - hash: "5189e3a7f4c93d6095d526ee4583adea" - } - Frame { - msec: 3904 - hash: "03ef5fa51d7455e58c34c52be2b2625b" - } - Frame { - msec: 3920 - hash: "6589088e4efab3426d5b3c08f885fcc4" - } - Frame { - msec: 3936 - hash: "35593c99aa3f7040efe6420ce90426f7" - } - Frame { - msec: 3952 - hash: "61e13ba4ed7251e607ae299841b55fea" - } - Frame { - msec: 3968 - hash: "7bc5f663e54b6ac10b7aa8787de0483a" - } - Frame { - msec: 3984 - hash: "141e2fa188fabeef8587770b2d18538c" - } - Frame { - msec: 4000 - hash: "5f59ea38bb55096d6ca50ffb9e9706ec" - } - Frame { - msec: 4016 - hash: "9ff31c7768afa3eba211e862bbfddda1" - } - Frame { - msec: 4032 - hash: "f8731aa264c5e534f13f4fa89fc320a1" - } - Frame { - msec: 4048 - hash: "87bc86979d05432f8ad16ca1f0537fa0" - } - Frame { - msec: 4064 - hash: "749f93235f677af13d162aacfde3840a" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 69; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4080 - hash: "3af211e45026670fef0e5b391bad3455" - } - Frame { - msec: 4096 - hash: "3af211e45026670fef0e5b391bad3455" - } - Frame { - msec: 4112 - hash: "3af211e45026670fef0e5b391bad3455" - } - Frame { - msec: 4128 - hash: "3af211e45026670fef0e5b391bad3455" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 112 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4144 - hash: "3af211e45026670fef0e5b391bad3455" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 70; y: 112 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4160 - hash: "3af211e45026670fef0e5b391bad3455" - } - Frame { - msec: 4176 - hash: "de1b3a0b2ffb02f4969ce532bb7d6ad9" - } - Frame { - msec: 4192 - hash: "1e0bb98146f64975c4d5b8f8ef65319c" - } - Frame { - msec: 4208 - hash: "3540ee1fc403cc923100888e3bd15168" - } - Frame { - msec: 4224 - hash: "8f8178db769ed067e40c06ec2a8f3e3f" - } - Frame { - msec: 4240 - hash: "18310df1f8f735313e71739c58b2e42d" - } - Frame { - msec: 4256 - hash: "0797a57080ad60f00a185ad7eecbc40f" - } - Frame { - msec: 4272 - hash: "80cffb466c0e8947f775a4b7a677cd20" - } - Frame { - msec: 4288 - hash: "3f80ed589a282924e1dd4fbbd99078b0" - } - Frame { - msec: 4304 - hash: "7368b2da0c37d4b212fff8222244d413" - } - Frame { - msec: 4320 - hash: "7fb81e12fc1cb3e6f08a4bd0af23f40d" - } - Frame { - msec: 4336 - hash: "6677c15df6babf38036d4083c63c2684" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 67; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4352 - hash: "106d90e84bd5b88c5df048ffc717e843" - } - Frame { - msec: 4368 - hash: "ce69c7e561e9f0c1fd5f3dba2ffda3e8" - } - Frame { - msec: 4384 - hash: "63b2956e9bad879bef156a318162656c" - } - Frame { - msec: 4400 - hash: "e9f02812bdd7071d1ceb71e0c2195f3a" - } - Frame { - msec: 4416 - hash: "e9f02812bdd7071d1ceb71e0c2195f3a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4432 - hash: "e9f02812bdd7071d1ceb71e0c2195f3a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 87 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 67; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4448 - hash: "e9f02812bdd7071d1ceb71e0c2195f3a" - } - Frame { - msec: 4464 - hash: "e33d1f7d03ec85600cb61896c66fd9ca" - } - Frame { - msec: 4480 - hash: "72347f42ad925abdc614244b2ec01e7a" - } - Frame { - msec: 4496 - hash: "5fbd0e2ce5e2fe609dfc5e5643bfbc8a" - } - Frame { - msec: 4512 - hash: "4bcb24b700ac09da7387738bce36def5" - } - Frame { - msec: 4528 - hash: "7c489062131ef9fcdfe765cd0361361b" - } - Frame { - msec: 4544 - hash: "c4c1834200b2b7b3eb38b20d7147b8ee" - } - Frame { - msec: 4560 - hash: "49994b7471ec620ff52e5ba516bbb5d4" - } - Frame { - msec: 4576 - hash: "e1cf4e92e291b8509a8eb8a84f70dcad" - } - Frame { - msec: 4592 - hash: "9c7d6d53aa6089712389b1c2b4207d15" - } - Frame { - msec: 4608 - hash: "408731f3b11d888fff1ef9340ad1c568" - } - Frame { - msec: 4624 - hash: "d34f3092b84dea762adf7cf86c80abc6" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 67; y: 67 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4640 - hash: "d0202d3154721c968301e4fdb759b5d2" - } - Frame { - msec: 4656 - hash: "89601cb9b82465f6ae96156b7e259e70" - } - Frame { - msec: 4672 - hash: "7c775a699646acf45f26dea5bd5db783" - } - Frame { - msec: 4688 - hash: "be285c318afaeb932a2fd50fdc357813" - } - Frame { - msec: 4704 - hash: "5ddee39853aa1b8d1be287c86e5b763c" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 67; y: 67 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "5ddee39853aa1b8d1be287c86e5b763c" - } - Frame { - msec: 4736 - hash: "8386713865c12636ce442cd31eacb8ba" - } - Frame { - msec: 4752 - hash: "9f4df793b3b6320e238b451e35183b9f" - } - Frame { - msec: 4768 - hash: "3cd41f6ab2303dd666269cca13dc95e3" - } - Frame { - msec: 4784 - hash: "504a3dd9018c3c725a92a9d6e84743fc" - } - Frame { - msec: 4800 - hash: "a703cbbef38b49be2d3033163ad450e7" - } - Frame { - msec: 4816 - image: "packageviews.5.png" - } - Frame { - msec: 4832 - hash: "c4f7130484f17854eace9e541c92207a" - } - Frame { - msec: 4848 - hash: "406a0371c7366fadefcbae7d428d1879" - } - Frame { - msec: 4864 - hash: "f9d6128c4fe60d95a001642cb80ccb99" - } - Frame { - msec: 4880 - hash: "2fb6886550a0eb7927274cd9cfc46819" - } - Frame { - msec: 4896 - hash: "dd4ac1eb6d18bc267b2f39d6d291a8bd" - } - Frame { - msec: 4912 - hash: "7f1e1114fe65b7a54364a04ad7697d4c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 66; y: 45 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4928 - hash: "60a4882d0384489465fec8660933c29c" - } - Frame { - msec: 4944 - hash: "2330e35830fb707c9d9074b54cd5c7f6" - } - Frame { - msec: 4960 - hash: "02c275412e380c7f2878bc1f01e2850a" - } - Frame { - msec: 4976 - hash: "02c275412e380c7f2878bc1f01e2850a" - } - Frame { - msec: 4992 - hash: "02c275412e380c7f2878bc1f01e2850a" - } - Frame { - msec: 5008 - hash: "02c275412e380c7f2878bc1f01e2850a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 43 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 66; y: 43 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5024 - hash: "02c275412e380c7f2878bc1f01e2850a" - } - Frame { - msec: 5040 - hash: "a304ddc3e20220f7ed06aeae22589927" - } - Frame { - msec: 5056 - hash: "8ef8e13dff7e5f12c1d0a7a0e438a24f" - } - Frame { - msec: 5072 - hash: "ef7ef97e56c6b7579e11022861dd3eb5" - } - Frame { - msec: 5088 - hash: "133613dd5ac9242ce0b6926986cd384a" - } - Frame { - msec: 5104 - hash: "eb5125c97b9deca07e999ec7e78986b3" - } - Frame { - msec: 5120 - hash: "123c37efefdc1c8e6b27b7eff3bffff8" - } - Frame { - msec: 5136 - hash: "8443d904bcb63ab2d14cbb5a2e2a8fe7" - } - Frame { - msec: 5152 - hash: "379826db02c7e5cb8ab9007a419e34f9" - } - Frame { - msec: 5168 - hash: "672d45cdc24a2e1286956e3ce00cab56" - } - Frame { - msec: 5184 - hash: "cbaa7c4f52b2ebc1176a3bbe3e029487" - } - Frame { - msec: 5200 - hash: "35d70b84722fecd08b1c03f01c5a9895" - } - Frame { - msec: 5216 - hash: "65c1d1c4fc845229853836afd2e7a3c4" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 68; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5232 - hash: "a238ffd4f6de5ca91bcf0e629407ad11" - } - Frame { - msec: 5248 - hash: "42322853eef74b9b849d81d7aa2ea4af" - } - Frame { - msec: 5264 - hash: "25fb0c4c04d9dcda865a8b254970330c" - } - Frame { - msec: 5280 - hash: "565891a25190705df8b424e1e5e73ddd" - } - Frame { - msec: 5296 - hash: "565891a25190705df8b424e1e5e73ddd" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 68; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "565891a25190705df8b424e1e5e73ddd" - } - Frame { - msec: 5328 - hash: "39e05f846071d4ec9a1413922a928995" - } - Frame { - msec: 5344 - hash: "7040400386930b34d989df4cdf36d125" - } - Frame { - msec: 5360 - hash: "2d3c081a1bbb94952becfd486d455de5" - } - Frame { - msec: 5376 - hash: "7a0719f22b0b74e4139ada77ca8d38d6" - } - Frame { - msec: 5392 - hash: "40d070285de7865fa8f415ff06be69d3" - } - Frame { - msec: 5408 - hash: "875ba6c617a4b5d157c747ead185247c" - } - Frame { - msec: 5424 - hash: "2d0ef679259f503d42cc2267b8d95a4e" - } - Frame { - msec: 5440 - hash: "b2aeceddd4d36e600f617578d64a4c32" - } - Frame { - msec: 5456 - hash: "a065ec04aff7a7c164ed8c152130589f" - } - Frame { - msec: 5472 - hash: "a09d94403ce40a8afb12e390aea3d848" - } - Frame { - msec: 5488 - hash: "34b116228527a669dadbfc75f309d045" - } - Frame { - msec: 5504 - hash: "5bee91cba46537ddaefe87f4e118d3d5" - } - Frame { - msec: 5520 - hash: "d0d8bd32268f3e3a62a08514f0d53799" - } - Frame { - msec: 5536 - hash: "b90c3915255d3f98700f8af0181fa6ee" - } - Frame { - msec: 5552 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5568 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5584 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5600 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5616 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5632 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5648 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5664 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5680 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5696 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5712 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5728 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5744 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5760 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5776 - image: "packageviews.6.png" - } - Frame { - msec: 5792 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5808 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5824 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5840 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5856 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5872 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5888 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5904 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5920 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5936 - hash: "8d52a504170547407fad6d8785b7199b" - } - Frame { - msec: 5952 - hash: "8d52a504170547407fad6d8785b7199b" - } -} diff --git a/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml b/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml deleted file mode 100644 index a9de3f8..0000000 --- a/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml +++ /dev/null @@ -1,82 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: root - width: 200 - height: 200 - color: "black" - - VisualDataModel { - id: model - model: ListModel { - ListElement { itemColor: "red" } - ListElement { itemColor: "green" } - ListElement { itemColor: "blue" } - ListElement { itemColor: "orange" } - ListElement { itemColor: "purple" } - ListElement { itemColor: "yellow" } - ListElement { itemColor: "slategrey" } - ListElement { itemColor: "cyan" } - } - delegate: Package { - Rectangle { - id: listItem; Package.name: "list"; width:root.width/2; height: 25; color: "transparent"; border.color: "white" - MouseArea { - anchors.fill: parent - onClicked: myState.state = myState.state == "list" ? "grid" : "list" - } - } - Rectangle { - id: gridItem; Package.name: "grid"; width:50; height: 50; color: "transparent"; border.color: "white" - MouseArea { - anchors.fill: parent - onClicked: myState.state = myState.state == "list" ? "grid" : "list" - } - } - Rectangle { id: myContent; width:50; height: 50; color: itemColor } - - StateGroup { - id: myState - state: "list" - states: [ - State { - name: "list" - ParentChange { target: myContent; parent: listItem } - PropertyChanges { target: myContent; x: 0; y: 0; width: listItem.width; height: listItem.height } - }, - State { - name: "grid" - ParentChange { target: myContent; parent: gridItem } - PropertyChanges { target: myContent; x: 0; y: 0; width: gridItem.width; height: gridItem.height } - } - ] - - transitions: [ - Transition { - from: "*"; to: "*" - SequentialAnimation { - ParentAnimation{ - NumberAnimation { properties: "x,y,width,height"; easing.type: "InOutQuad" } - } - } - } - ] - } - } - } - - ListView { - width: parent.width/2 - height: parent.height - model: model.parts.list - } - - GridView { - x: parent.width/2 - width: parent.width/2 - cellWidth: 50 - cellHeight: 50 - height: parent.height - model: model.parts.grid - } -} diff --git a/tests/auto/declarative/qmlvisual/TEST_GUIDELINES b/tests/auto/declarative/qmlvisual/TEST_GUIDELINES deleted file mode 100644 index 469832f..0000000 --- a/tests/auto/declarative/qmlvisual/TEST_GUIDELINES +++ /dev/null @@ -1,7 +0,0 @@ -Guidelines for creating new visual tests: - -1. Keep it small. All visual tests should be able to run on a device with a screen of at least 640x360 pixels. Smaller than that is even better, because images of this side need to be processed and saved for every test (and even committed to the repository). - -2. Keep it short. It is hoped that these tests can be run regularly, perhaps even for every commit, and if you add up ten seconds for every time someone commits a change to QML then we'll be sitting here for a long time. Completeness is more important than haste, but consider the most time efficient ways to achieve said completeness. Do not forget about snapshot mode (tst_qmlvisual -help for details on -recordsnapshot) when testing that a static scene looks right. - -3. Avoid text. Text is relatively unstable due to platform specific peculiarities. If you need to identify an area, consider a unique color as opposed to a unique text label. If you must use Text, TextEdit, or TextInput, use the test-friendlier versions in the 'shared' directory. Also keep in mind that text anti-aliasing is disabled during tests for greater consistency, and you should never use point sizes in tests. Text autotests can thus only test some aspects of the elements. diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml b/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml deleted file mode 100644 index 9019812..0000000 --- a/tests/auto/declarative/qmlvisual/animation/bindinganimation/bindinganimation.qml +++ /dev/null @@ -1,36 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "blue" - width: 320 - height: 240 - id: page - Rectangle { - id: myRectangle - width: 100 - height: 100 - color: "red" - x: 10 - } - states: [ - State { - when: myMouseArea.pressed - name: "hello" - PropertyChanges { - target: myRectangle - x: 50 + 50 - } - } - ] - transitions: [ - Transition { - NumberAnimation { - properties: "x" - } - } - ] - MouseArea { - id: myMouseArea - anchors.fill: parent - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.0.png b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.0.png deleted file mode 100644 index 24c11be..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.1.png b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.1.png deleted file mode 100644 index 82492d4..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.2.png b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.2.png deleted file mode 100644 index a31f02a..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.3.png b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.3.png deleted file mode 100644 index a029af6..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.4.png b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.4.png deleted file mode 100644 index c8367ec..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.5.png b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.5.png deleted file mode 100644 index 900156f..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml b/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml deleted file mode 100644 index be0637e..0000000 --- a/tests/auto/declarative/qmlvisual/animation/bindinganimation/data/bindinganimation.qml +++ /dev/null @@ -1,1055 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "bindinganimation.0.png" - } - Frame { - msec: 32 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 48 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 64 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 80 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 96 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 112 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 128 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 144 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 160 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 176 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 192 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 208 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 224 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 240 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 256 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 272 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 288 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 304 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 320 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 336 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 352 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 368 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 384 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 400 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 416 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 432 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 448 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 464 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 480 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 496 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 512 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 87; y: 129 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 528 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 544 - hash: "a78c9394bf3b81f192f42710cd7218b1" - } - Frame { - msec: 560 - hash: "7f08e8170feb1d02373c9ab42b6e882d" - } - Frame { - msec: 576 - hash: "967fbad8ac664400a3efbe66617d62aa" - } - Frame { - msec: 592 - hash: "abc2ec0bc7a93e75b5823310e6284db1" - } - Frame { - msec: 608 - hash: "afbd5b24e2f86646f5ec2aa22f3a4b5b" - } - Frame { - msec: 624 - hash: "9413dffb7ee853ba0125ac22ab22abbd" - } - Frame { - msec: 640 - hash: "fcae0317f81a3ddd713f4db1349a9da0" - } - Frame { - msec: 656 - hash: "37739777a5979f3ebf85e47e63341660" - } - Frame { - msec: 672 - hash: "72731478d80f024076ea639b55152360" - } - Frame { - msec: 688 - hash: "69058485ced6bc992a1a7c5ee34add4c" - } - Frame { - msec: 704 - hash: "391ad7ff2362e059f6170dfe306f94a7" - } - Frame { - msec: 720 - hash: "f9f74a2e38b52c9266f33e428b6acd9d" - } - Frame { - msec: 736 - hash: "25152412c4ea2aec6caf89486c073484" - } - Frame { - msec: 752 - hash: "ba403842ba3128b1cdf6a9cb28c90751" - } - Frame { - msec: 768 - hash: "e90cd68490cf3ce6ef9fe4e8f92feaa9" - } - Frame { - msec: 784 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 800 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 816 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 832 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 848 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 864 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 880 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 896 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 912 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 928 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 944 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 960 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 976 - image: "bindinganimation.1.png" - } - Frame { - msec: 992 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1008 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1024 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1040 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1056 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1072 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1088 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1104 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1120 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1136 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1152 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 87; y: 129 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1168 - hash: "383ba6b9efcc58fca512982a207631f6" - } - Frame { - msec: 1184 - hash: "adc501a3a2b8aaf72f58ba985b57424e" - } - Frame { - msec: 1200 - hash: "bfa51b7c19753ef7b16d78afffc7b9dd" - } - Frame { - msec: 1216 - hash: "ffa8471f57765b49fcdb9155393251e5" - } - Frame { - msec: 1232 - hash: "ddb65481469c38f2331546ee03a44206" - } - Frame { - msec: 1248 - hash: "6f48d1a9977b77cafd38a5903017605b" - } - Frame { - msec: 1264 - hash: "4279c814163af3bd069ce21b3cd1c729" - } - Frame { - msec: 1280 - hash: "17c46242c17983478f34cb49cb91ca6e" - } - Frame { - msec: 1296 - hash: "42f65c58b1f5f4b5ba70855f4aaa7d2f" - } - Frame { - msec: 1312 - hash: "6a74d6dc91a8b370200d3765c55c1136" - } - Frame { - msec: 1328 - hash: "ecda10356cca33901c2acd0a702fee46" - } - Frame { - msec: 1344 - hash: "4f58226bdbda7339d972eca065f75766" - } - Frame { - msec: 1360 - hash: "a39c80859a7643c9879da9c77b644703" - } - Frame { - msec: 1376 - hash: "16fe17b15900ff0464ab20ea921e5b1f" - } - Frame { - msec: 1392 - hash: "bc5c83b2014b7260900587ae3637598f" - } - Frame { - msec: 1408 - hash: "96c077e3a572edff04fa9b2f7020ffd0" - } - Frame { - msec: 1424 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1440 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1456 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1472 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1488 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1504 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1520 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1536 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1552 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1568 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1584 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1600 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1616 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1632 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1648 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1664 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1680 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1696 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1712 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1728 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1744 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1760 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1776 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1792 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1808 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1824 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1840 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1856 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 1872 - hash: "a78c9394bf3b81f192f42710cd7218b1" - } - Frame { - msec: 1888 - hash: "7f08e8170feb1d02373c9ab42b6e882d" - } - Frame { - msec: 1904 - hash: "967fbad8ac664400a3efbe66617d62aa" - } - Frame { - msec: 1920 - hash: "abc2ec0bc7a93e75b5823310e6284db1" - } - Frame { - msec: 1936 - image: "bindinganimation.2.png" - } - Frame { - msec: 1952 - hash: "9413dffb7ee853ba0125ac22ab22abbd" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "9413dffb7ee853ba0125ac22ab22abbd" - } - Frame { - msec: 1984 - hash: "ecda10356cca33901c2acd0a702fee46" - } - Frame { - msec: 2000 - hash: "5fae0bdc65c609cb766ce585b8c649db" - } - Frame { - msec: 2016 - hash: "575d30ac088448b01f49082519bbb3a1" - } - Frame { - msec: 2032 - hash: "ffeb3db6d3f177acf6f92049359a9025" - } - Frame { - msec: 2048 - hash: "abc2ec0bc7a93e75b5823310e6284db1" - } - Frame { - msec: 2064 - hash: "fcb17070ef24575c61046928a8bbe440" - } - Frame { - msec: 2080 - hash: "4ab21e266919fb8d340f87091d8e1f62" - } - Frame { - msec: 2096 - hash: "f141c7c4402c6bacff31d4e77785f5f1" - } - Frame { - msec: 2112 - hash: "29e5f1388c6aaf23abe9f514d7e902d1" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2128 - hash: "29e5f1388c6aaf23abe9f514d7e902d1" - } - Frame { - msec: 2144 - hash: "4ab21e266919fb8d340f87091d8e1f62" - } - Frame { - msec: 2160 - hash: "2d21b4af3780ef2bbccfcec957ce49c8" - } - Frame { - msec: 2176 - hash: "527b1f9e7a222483134675a73f9cf5b7" - } - Frame { - msec: 2192 - hash: "5edaad77f334e6a01982ee89a733b1f8" - } - Frame { - msec: 2208 - hash: "6a74d6dc91a8b370200d3765c55c1136" - } - Frame { - msec: 2224 - hash: "42f65c58b1f5f4b5ba70855f4aaa7d2f" - } - Frame { - msec: 2240 - hash: "3223ed179c828fadb3eca9c6373176c1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2256 - hash: "3223ed179c828fadb3eca9c6373176c1" - } - Frame { - msec: 2272 - hash: "516c44b44c23f213f5db01f9eb164b0b" - } - Frame { - msec: 2288 - hash: "4f41101378a104e72228eeb4ba395ca8" - } - Frame { - msec: 2304 - hash: "f9deee3a204c939562b896a6179743d2" - } - Frame { - msec: 2320 - hash: "772396bb23c713f34ea5c23bfbcb115e" - } - Frame { - msec: 2336 - hash: "ecda10356cca33901c2acd0a702fee46" - } - Frame { - msec: 2352 - hash: "527b1f9e7a222483134675a73f9cf5b7" - } - Frame { - msec: 2368 - hash: "4f58226bdbda7339d972eca065f75766" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2384 - hash: "4f58226bdbda7339d972eca065f75766" - } - Frame { - msec: 2400 - hash: "5fae0bdc65c609cb766ce585b8c649db" - } - Frame { - msec: 2416 - hash: "9413dffb7ee853ba0125ac22ab22abbd" - } - Frame { - msec: 2432 - hash: "6a74d6dc91a8b370200d3765c55c1136" - } - Frame { - msec: 2448 - hash: "4f41101378a104e72228eeb4ba395ca8" - } - Frame { - msec: 2464 - hash: "37739777a5979f3ebf85e47e63341660" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2480 - hash: "37739777a5979f3ebf85e47e63341660" - } - Frame { - msec: 2496 - hash: "42f65c58b1f5f4b5ba70855f4aaa7d2f" - } - Frame { - msec: 2512 - hash: "fcae0317f81a3ddd713f4db1349a9da0" - } - Frame { - msec: 2528 - hash: "082e0e7650d187a54ef0948ccca98e5a" - } - Frame { - msec: 2544 - hash: "9413dffb7ee853ba0125ac22ab22abbd" - } - Frame { - msec: 2560 - hash: "d9af30557f99b086bb1a185a946b580d" - } - Frame { - msec: 2576 - hash: "afbd5b24e2f86646f5ec2aa22f3a4b5b" - } - Frame { - msec: 2592 - hash: "ffeb3db6d3f177acf6f92049359a9025" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2608 - hash: "ffeb3db6d3f177acf6f92049359a9025" - } - Frame { - msec: 2624 - hash: "5fae0bdc65c609cb766ce585b8c649db" - } - Frame { - msec: 2640 - hash: "9413dffb7ee853ba0125ac22ab22abbd" - } - Frame { - msec: 2656 - hash: "6a74d6dc91a8b370200d3765c55c1136" - } - Frame { - msec: 2672 - hash: "4f41101378a104e72228eeb4ba395ca8" - } - Frame { - msec: 2688 - hash: "37739777a5979f3ebf85e47e63341660" - } - Frame { - msec: 2704 - hash: "f4fe2cc93d65e086ba8ded1438269eb2" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2720 - hash: "f4fe2cc93d65e086ba8ded1438269eb2" - } - Frame { - msec: 2736 - hash: "56c72b5da44bd5efdc47c3b9c3eac409" - } - Frame { - msec: 2752 - hash: "b08811b237ce7a460c80d285f04d53d8" - } - Frame { - msec: 2768 - hash: "fcae0317f81a3ddd713f4db1349a9da0" - } - Frame { - msec: 2784 - hash: "082e0e7650d187a54ef0948ccca98e5a" - } - Frame { - msec: 2800 - hash: "9413dffb7ee853ba0125ac22ab22abbd" - } - Frame { - msec: 2816 - hash: "d9af30557f99b086bb1a185a946b580d" - } - Frame { - msec: 2832 - hash: "575d30ac088448b01f49082519bbb3a1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2848 - hash: "575d30ac088448b01f49082519bbb3a1" - } - Frame { - msec: 2864 - hash: "d9af30557f99b086bb1a185a946b580d" - } - Frame { - msec: 2880 - hash: "82363265ed2b611a54f8d48b2af22f11" - } - Frame { - msec: 2896 - image: "bindinganimation.3.png" - } - Frame { - msec: 2912 - hash: "42f65c58b1f5f4b5ba70855f4aaa7d2f" - } - Frame { - msec: 2928 - hash: "56c72b5da44bd5efdc47c3b9c3eac409" - } - Frame { - msec: 2944 - hash: "72731478d80f024076ea639b55152360" - } - Frame { - msec: 2960 - hash: "4279c814163af3bd069ce21b3cd1c729" - } - Frame { - msec: 2976 - hash: "72a0c017a2fa90a4aeadfa6e552ff573" - } - Frame { - msec: 2992 - hash: "391ad7ff2362e059f6170dfe306f94a7" - } - Frame { - msec: 3008 - hash: "0b0c6419e1e5b016d9c22bd98fd452b1" - } - Frame { - msec: 3024 - hash: "365c824c330398d267ea52ae9468b9ee" - } - Frame { - msec: 3040 - hash: "65ad7e0189c096792331bd1bb0daf0db" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 81; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3056 - hash: "65ad7e0189c096792331bd1bb0daf0db" - } - Frame { - msec: 3072 - hash: "a21aa1984f068650cce2a124a82c12be" - } - Frame { - msec: 3088 - hash: "8006ceaa02d22b5fdfeab400d39a0caf" - } - Frame { - msec: 3104 - hash: "6f48d1a9977b77cafd38a5903017605b" - } - Frame { - msec: 3120 - hash: "07f751ea4cf877ba72fbb36f9da268d7" - } - Frame { - msec: 3136 - hash: "72731478d80f024076ea639b55152360" - } - Frame { - msec: 3152 - hash: "37739777a5979f3ebf85e47e63341660" - } - Frame { - msec: 3168 - hash: "ed47684a0b21836cd27549e0989e96dd" - } - Frame { - msec: 3184 - hash: "772396bb23c713f34ea5c23bfbcb115e" - } - Frame { - msec: 3200 - hash: "ecda10356cca33901c2acd0a702fee46" - } - Frame { - msec: 3216 - hash: "575d30ac088448b01f49082519bbb3a1" - } - Frame { - msec: 3232 - hash: "2e3f134664df8204a291af2c9f81239a" - } - Frame { - msec: 3248 - hash: "967fbad8ac664400a3efbe66617d62aa" - } - Frame { - msec: 3264 - hash: "2b93a05b0e78e52d8d8bc2c71d898d3e" - } - Frame { - msec: 3280 - hash: "c7a9850ed078eb0cfdb5a7ef11840d64" - } - Frame { - msec: 3296 - hash: "96c077e3a572edff04fa9b2f7020ffd0" - } - Frame { - msec: 3312 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3328 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3344 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3360 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3376 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3392 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3408 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3424 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3440 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3456 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3472 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3488 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3504 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3520 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3536 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3552 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3568 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3584 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3600 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3616 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3632 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3648 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3664 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3680 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3696 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3712 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3728 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3744 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3760 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3776 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3792 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } - Frame { - msec: 3808 - hash: "7cb5fc371040e587de9f06ce14a4b29a" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml deleted file mode 100644 index 235ad9d..0000000 --- a/tests/auto/declarative/qmlvisual/animation/colorAnimation/colorAnimation-visual.qml +++ /dev/null @@ -1,41 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: mainrect - width: 200; height: 200 - state: "first" - states: [ - State { - name: "first" - PropertyChanges { - target: mainrect - color: "red" - } - }, - State { - name: "second" - PropertyChanges { - target: mainrect - color: "blue" - } - } - ] - transitions: [ - Transition { - from: "first" - to: "second" - reversible: true - SequentialAnimation { - ColorAnimation { - duration: 2000 - target: mainrect - property: "color" - } - } - } - ] - MouseArea { - anchors.fill: parent - onClicked: { mainrect.state = 'second' } - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.0.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.0.png deleted file mode 100644 index 99748a7..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.1.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.1.png deleted file mode 100644 index 5393dd8..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.2.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.2.png deleted file mode 100644 index 8c17bf7..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.3.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.3.png deleted file mode 100644 index 1317eef..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.qml deleted file mode 100644 index 930f08f..0000000 --- a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.qml +++ /dev/null @@ -1,951 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "colorAnimation-visual.0.png" - } - Frame { - msec: 32 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 48 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 64 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 80 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 96 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 112 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 128 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 144 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 160 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 176 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 192 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 208 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 224 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 240 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 256 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 272 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 288 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 304 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 320 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 336 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 352 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 368 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 384 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 400 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 416 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 432 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 448 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 464 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 480 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 496 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 512 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 93; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 528 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 544 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 560 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 576 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 592 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 93; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 608 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 624 - hash: "e5bda0daf98288ce18db6ce06eda3ba0" - } - Frame { - msec: 640 - hash: "d35008f75b8c992f80fb16ba7203649d" - } - Frame { - msec: 656 - hash: "14f43e0784ddf42ea8550db88c501bf1" - } - Frame { - msec: 672 - hash: "02276e158b5391480b1bdeaadf1fb903" - } - Frame { - msec: 688 - hash: "35d9513eb97a2c482b7cd197de910934" - } - Frame { - msec: 704 - hash: "faf0fd681e60bb2489099f5df772b6cd" - } - Frame { - msec: 720 - hash: "a863d3e346f94785a3a392fdc91526eb" - } - Frame { - msec: 736 - hash: "fdf328d3f6eb8410da59a91345e41a44" - } - Frame { - msec: 752 - hash: "83514a3b10d5be8f6c3b128d0f3e0b1c" - } - Frame { - msec: 768 - hash: "ead0eae76cd00189075964671effbaea" - } - Frame { - msec: 784 - hash: "24d2457fcd51490fda23071bf9929d12" - } - Frame { - msec: 800 - hash: "1478683446cf543dacbe31d0b76a98a6" - } - Frame { - msec: 816 - hash: "99f7da1f31fe920f6c02add4042ae925" - } - Frame { - msec: 832 - hash: "22def892006cf66667770b0f17baf6c0" - } - Frame { - msec: 848 - hash: "6a36d5a77099bfd58baf285478ff04e4" - } - Frame { - msec: 864 - hash: "6258150666b59b20ab476724c07fc20c" - } - Frame { - msec: 880 - hash: "f1636315bc950a6dd400d9c7ed263b88" - } - Frame { - msec: 896 - hash: "18447ea8dc2e8da956788e5b3cf3790a" - } - Frame { - msec: 912 - hash: "1d2a6e65997a73e9e670356c8e8b63b2" - } - Frame { - msec: 928 - hash: "bed0242c0f9ef229d1392835286d5782" - } - Frame { - msec: 944 - hash: "88923c190e9e5beadef8a409c06df9d6" - } - Frame { - msec: 960 - hash: "2d133e7ee60c97386f57838b3f0976c7" - } - Frame { - msec: 976 - image: "colorAnimation-visual.1.png" - } - Frame { - msec: 992 - hash: "395195716d76bc0be7b2033ed37a7a1c" - } - Frame { - msec: 1008 - hash: "243dbffcf416926242bbcb7348974c4c" - } - Frame { - msec: 1024 - hash: "a755068679616d8ac65c2aa7431f2a19" - } - Frame { - msec: 1040 - hash: "e8249b35a47eb492cbdf2d91cc8426f0" - } - Frame { - msec: 1056 - hash: "15f3da1c0e6f0779b96859d51171dd27" - } - Frame { - msec: 1072 - hash: "258c0c756aac3de743b43051f2aace6b" - } - Frame { - msec: 1088 - hash: "a58b9fdf301d72b2cc5c93934cc8927b" - } - Frame { - msec: 1104 - hash: "a9181d30870d472521f8904818ce520f" - } - Frame { - msec: 1120 - hash: "7f9e94069ccf3897c26a71bd7becd903" - } - Frame { - msec: 1136 - hash: "bdf305c2f46cdb86dbf57b1e0cc5a65b" - } - Frame { - msec: 1152 - hash: "fe5b6865d7e4fc7d1d42c1e74f8666f7" - } - Frame { - msec: 1168 - hash: "734f0de45a6e34c9eab7ef606196f96a" - } - Frame { - msec: 1184 - hash: "02a361c4534fdf7f286dc3e6dc23275c" - } - Frame { - msec: 1200 - hash: "e649155ad69999c14b92f6561e4d1185" - } - Frame { - msec: 1216 - hash: "01af177084fab755d622973f64b92018" - } - Frame { - msec: 1232 - hash: "097cc4a082dfab995d213a3a73883c97" - } - Frame { - msec: 1248 - hash: "d7b4239a3280b1eb8e885e3f422df8e9" - } - Frame { - msec: 1264 - hash: "59893977994e34e83f91e7ce3ad65d6d" - } - Frame { - msec: 1280 - hash: "b68e3fbb5cdcd6bd96df7dec558db42b" - } - Frame { - msec: 1296 - hash: "94ad0580648f36a1e18a9ea7e249b04d" - } - Frame { - msec: 1312 - hash: "750a4c01d2f5806a89a1c6cc6a9b9a68" - } - Frame { - msec: 1328 - hash: "4f109f50f388f1bfa4bc6b03b3e6e514" - } - Frame { - msec: 1344 - hash: "c6168d5cf27a533e8ee636637667be47" - } - Frame { - msec: 1360 - hash: "f8120547bed987aa34c00da5a01a4d1e" - } - Frame { - msec: 1376 - hash: "cbff526136fa2c128c8b898fbbef9e5c" - } - Frame { - msec: 1392 - hash: "f29e52398fab1a239a63df4c32f2fc69" - } - Frame { - msec: 1408 - hash: "7178bfe86fd2fd513218b33760460f8d" - } - Frame { - msec: 1424 - hash: "ca83285bc8ac633403896fe976896eb0" - } - Frame { - msec: 1440 - hash: "96ba486c09cc69d5aa38c46c00df1181" - } - Frame { - msec: 1456 - hash: "b88eab335842787869f4a14824c19dd8" - } - Frame { - msec: 1472 - hash: "065aa59012729e1e1a246a2083142690" - } - Frame { - msec: 1488 - hash: "dd0e98c8398861002c5f178c5f9f612d" - } - Frame { - msec: 1504 - hash: "04192c2b545948048eccf4d81bbde198" - } - Frame { - msec: 1520 - hash: "bb7502c7208281ef9fd41714ab88a1a8" - } - Frame { - msec: 1536 - hash: "5397195471890d08b703dca101e5bc7c" - } - Frame { - msec: 1552 - hash: "4c678cdbebb2ffd2cbf012ca77800cde" - } - Frame { - msec: 1568 - hash: "0d7a34ecd0c7f52b2c015037bf1902c6" - } - Frame { - msec: 1584 - hash: "fd9d5048be749ac4369fda2d018b43ae" - } - Frame { - msec: 1600 - hash: "93ee03795cd57ae6f7fe3a020b039ad4" - } - Frame { - msec: 1616 - hash: "5e1118963f219c39761ca7fbf564a9ca" - } - Frame { - msec: 1632 - hash: "8f40038741903150136170503649d941" - } - Frame { - msec: 1648 - hash: "b087b7d0aa6224821f8e18718ff5e77d" - } - Frame { - msec: 1664 - hash: "aa46b04a3c67dc772265ed2901955565" - } - Frame { - msec: 1680 - hash: "ac024bf2aeb4becdf31a09fe0a6db8f3" - } - Frame { - msec: 1696 - hash: "13745a174e4d06e2108a5bf125ba50cc" - } - Frame { - msec: 1712 - hash: "bd972f0d8e230eca0b3fea1b8c960c08" - } - Frame { - msec: 1728 - hash: "cbdbec802a58e7ced0cf45b3ab0bc0ba" - } - Frame { - msec: 1744 - hash: "5128584c50305c7d218b81b8367fa3d5" - } - Frame { - msec: 1760 - hash: "a71461d3593f3685620668916de870bd" - } - Frame { - msec: 1776 - hash: "74ebac8f32cf044b58d9883dbcd9a722" - } - Frame { - msec: 1792 - hash: "fedc5b638f339b90fe59b478721e65b7" - } - Frame { - msec: 1808 - hash: "8593a81be812edf54ec94da8ae9c1314" - } - Frame { - msec: 1824 - hash: "4e9b083075bc5e9287a8abc982778b56" - } - Frame { - msec: 1840 - hash: "1d6f02aa99afa47d77fc49ab894b365a" - } - Frame { - msec: 1856 - hash: "a204feec783b3b05de4c209c21745826" - } - Frame { - msec: 1872 - hash: "665a2a8ff00b9663157802767f504754" - } - Frame { - msec: 1888 - hash: "624fb09ebe60cb87d767faf8d2420b1e" - } - Frame { - msec: 1904 - hash: "e5af0cdc33f3275a25abb09e9165f310" - } - Frame { - msec: 1920 - hash: "02bafb5a81ca66f7670ac93de5123860" - } - Frame { - msec: 1936 - image: "colorAnimation-visual.2.png" - } - Frame { - msec: 1952 - hash: "b5abd0dff1ab076faac7cc226e83f5d0" - } - Frame { - msec: 1968 - hash: "b759acc35bccff8efc2e6fe276ddc0f7" - } - Frame { - msec: 1984 - hash: "ce52e18c1f7732768779863b45314ff5" - } - Frame { - msec: 2000 - hash: "99d30652559dd6931e0c95543eeaa149" - } - Frame { - msec: 2016 - hash: "ffbd9a00e05e085b89296d19d5caec57" - } - Frame { - msec: 2032 - hash: "9c9d658b9c25602816b8066bf19105db" - } - Frame { - msec: 2048 - hash: "2b7fd058e6601e22a30bb7106b1c683b" - } - Frame { - msec: 2064 - hash: "f4c7e26b19ee0a3e7c9688685eb7bd05" - } - Frame { - msec: 2080 - hash: "0dc6d593bceff56b7f81f2a49d37fefb" - } - Frame { - msec: 2096 - hash: "9bfd7ad5091ccbdde43c593e133a7b10" - } - Frame { - msec: 2112 - hash: "2703b617937914a90ea42ebf249d79ee" - } - Frame { - msec: 2128 - hash: "b77e2983138254016c4cca53100f46fa" - } - Frame { - msec: 2144 - hash: "60c4dd24187d1281081479e586f02b37" - } - Frame { - msec: 2160 - hash: "62f2511abd99ef1231c9fa4b91d4abfe" - } - Frame { - msec: 2176 - hash: "e309b3353fd174e883d309571caddc98" - } - Frame { - msec: 2192 - hash: "1e2d6a134c7b12dde551b148ef4f088c" - } - Frame { - msec: 2208 - hash: "e5dc5450604a491cc24a0dcf5c278b58" - } - Frame { - msec: 2224 - hash: "c8dae97c10e1962c1e6a51ab3ab8579e" - } - Frame { - msec: 2240 - hash: "4e1b7e06f55fb084080689b474f1fe1d" - } - Frame { - msec: 2256 - hash: "b4639c907fa937bf15fac62421170cd8" - } - Frame { - msec: 2272 - hash: "c250208a0caeb5f6cb4d3aac3d7d350b" - } - Frame { - msec: 2288 - hash: "a73351eabecf0d71149efe31f197413e" - } - Frame { - msec: 2304 - hash: "479425f1b7aff79e4dfb7fca534af018" - } - Frame { - msec: 2320 - hash: "046d0f0040a52d1f26ba9f7c5de06ef4" - } - Frame { - msec: 2336 - hash: "655778bf13c6080903150b0eb43a7edc" - } - Frame { - msec: 2352 - hash: "72da0bbe81514870655fdd3354adac60" - } - Frame { - msec: 2368 - hash: "defe0bdf675c65fff55aaaced1e4dae7" - } - Frame { - msec: 2384 - hash: "c988628b6c3d3780e9a865c7694926cd" - } - Frame { - msec: 2400 - hash: "5ab17563655231089edd986ff13d6012" - } - Frame { - msec: 2416 - hash: "c1adff1d2e5800ed466d1691d3b17382" - } - Frame { - msec: 2432 - hash: "70129ba01fbb19592b9dc0d0a3b3e7df" - } - Frame { - msec: 2448 - hash: "0000829ef7ed908bf430d42904d59cc2" - } - Frame { - msec: 2464 - hash: "843d2927f50ab87b4a86b7a6aaeed91f" - } - Frame { - msec: 2480 - hash: "da86d21756025e7de8050586d5e2a1f8" - } - Frame { - msec: 2496 - hash: "48dd1bd6580133b0793fee327ea4f1e6" - } - Frame { - msec: 2512 - hash: "f0618193dcd0ba2837249515a1898b1c" - } - Frame { - msec: 2528 - hash: "a530184e57251065286c0cbba7301e9c" - } - Frame { - msec: 2544 - hash: "64a1d7203973d65dd342793007a61c58" - } - Frame { - msec: 2560 - hash: "5b830dfc6ba442772de87d75d5a578de" - } - Frame { - msec: 2576 - hash: "5563b056b0409b65f60dd16dd0dd890e" - } - Frame { - msec: 2592 - hash: "b8bcf9ad2ca8720c11563a23d8280804" - } - Frame { - msec: 2608 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2624 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2640 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2656 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2672 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2688 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2704 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2720 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2736 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2752 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2768 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2784 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2800 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2816 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2832 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2848 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2864 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2880 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2896 - image: "colorAnimation-visual.3.png" - } - Frame { - msec: 2912 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2928 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2944 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2960 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2976 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2992 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3008 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3024 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3040 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3056 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3072 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3088 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3104 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3120 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3136 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3152 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3168 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3184 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3200 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3216 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3232 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3248 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3264 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3280 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3296 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3312 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3328 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3344 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3360 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3376 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3392 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3408 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3424 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3440 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3456 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3472 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3488 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3504 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3520 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3536 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3552 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3568 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3584 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3600 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3616 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3632 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3648 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3664 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3680 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.0.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.0.png deleted file mode 100644 index 2a79113..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.1.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.1.png deleted file mode 100644 index ebd1802..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.2.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.2.png deleted file mode 100644 index 9b8ecbb..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.3.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.3.png deleted file mode 100644 index 277cb9e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml deleted file mode 100644 index 2b664d4..0000000 --- a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data/colorAnimation-visual.qml +++ /dev/null @@ -1,951 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "colorAnimation-visual.0.png" - } - Frame { - msec: 32 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 48 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 64 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 80 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 96 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 112 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 128 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 144 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 160 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 176 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 192 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 208 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 224 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 240 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 256 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 272 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 288 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 304 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 320 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 336 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 352 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 368 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 384 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 400 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 416 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 432 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 448 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 464 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 480 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 496 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 512 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 93; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 528 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 544 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 560 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 576 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 592 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 93; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 608 - hash: "acc736435c9f84aa82941ba561bc5dbc" - } - Frame { - msec: 624 - hash: "e5bda0daf98288ce18db6ce06eda3ba0" - } - Frame { - msec: 640 - hash: "d35008f75b8c992f80fb16ba7203649d" - } - Frame { - msec: 656 - hash: "14f43e0784ddf42ea8550db88c501bf1" - } - Frame { - msec: 672 - hash: "02276e158b5391480b1bdeaadf1fb903" - } - Frame { - msec: 688 - hash: "35d9513eb97a2c482b7cd197de910934" - } - Frame { - msec: 704 - hash: "faf0fd681e60bb2489099f5df772b6cd" - } - Frame { - msec: 720 - hash: "a863d3e346f94785a3a392fdc91526eb" - } - Frame { - msec: 736 - hash: "fdf328d3f6eb8410da59a91345e41a44" - } - Frame { - msec: 752 - hash: "83514a3b10d5be8f6c3b128d0f3e0b1c" - } - Frame { - msec: 768 - hash: "ead0eae76cd00189075964671effbaea" - } - Frame { - msec: 784 - hash: "24d2457fcd51490fda23071bf9929d12" - } - Frame { - msec: 800 - hash: "1478683446cf543dacbe31d0b76a98a6" - } - Frame { - msec: 816 - hash: "99f7da1f31fe920f6c02add4042ae925" - } - Frame { - msec: 832 - hash: "22def892006cf66667770b0f17baf6c0" - } - Frame { - msec: 848 - hash: "6a36d5a77099bfd58baf285478ff04e4" - } - Frame { - msec: 864 - hash: "6258150666b59b20ab476724c07fc20c" - } - Frame { - msec: 880 - hash: "f1636315bc950a6dd400d9c7ed263b88" - } - Frame { - msec: 896 - hash: "18447ea8dc2e8da956788e5b3cf3790a" - } - Frame { - msec: 912 - hash: "1d2a6e65997a73e9e670356c8e8b63b2" - } - Frame { - msec: 928 - hash: "bed0242c0f9ef229d1392835286d5782" - } - Frame { - msec: 944 - hash: "88923c190e9e5beadef8a409c06df9d6" - } - Frame { - msec: 960 - hash: "2d133e7ee60c97386f57838b3f0976c7" - } - Frame { - msec: 976 - image: "colorAnimation-visual.1.png" - } - Frame { - msec: 992 - hash: "395195716d76bc0be7b2033ed37a7a1c" - } - Frame { - msec: 1008 - hash: "e0f53c5605116a30d9bf3c031c63d958" - } - Frame { - msec: 1024 - hash: "a755068679616d8ac65c2aa7431f2a19" - } - Frame { - msec: 1040 - hash: "e8249b35a47eb492cbdf2d91cc8426f0" - } - Frame { - msec: 1056 - hash: "15f3da1c0e6f0779b96859d51171dd27" - } - Frame { - msec: 1072 - hash: "258c0c756aac3de743b43051f2aace6b" - } - Frame { - msec: 1088 - hash: "a58b9fdf301d72b2cc5c93934cc8927b" - } - Frame { - msec: 1104 - hash: "a9181d30870d472521f8904818ce520f" - } - Frame { - msec: 1120 - hash: "7f9e94069ccf3897c26a71bd7becd903" - } - Frame { - msec: 1136 - hash: "bdf305c2f46cdb86dbf57b1e0cc5a65b" - } - Frame { - msec: 1152 - hash: "fe5b6865d7e4fc7d1d42c1e74f8666f7" - } - Frame { - msec: 1168 - hash: "734f0de45a6e34c9eab7ef606196f96a" - } - Frame { - msec: 1184 - hash: "02a361c4534fdf7f286dc3e6dc23275c" - } - Frame { - msec: 1200 - hash: "e649155ad69999c14b92f6561e4d1185" - } - Frame { - msec: 1216 - hash: "01af177084fab755d622973f64b92018" - } - Frame { - msec: 1232 - hash: "097cc4a082dfab995d213a3a73883c97" - } - Frame { - msec: 1248 - hash: "d7b4239a3280b1eb8e885e3f422df8e9" - } - Frame { - msec: 1264 - hash: "59893977994e34e83f91e7ce3ad65d6d" - } - Frame { - msec: 1280 - hash: "b68e3fbb5cdcd6bd96df7dec558db42b" - } - Frame { - msec: 1296 - hash: "94ad0580648f36a1e18a9ea7e249b04d" - } - Frame { - msec: 1312 - hash: "750a4c01d2f5806a89a1c6cc6a9b9a68" - } - Frame { - msec: 1328 - hash: "4f109f50f388f1bfa4bc6b03b3e6e514" - } - Frame { - msec: 1344 - hash: "c6168d5cf27a533e8ee636637667be47" - } - Frame { - msec: 1360 - hash: "f8120547bed987aa34c00da5a01a4d1e" - } - Frame { - msec: 1376 - hash: "cbff526136fa2c128c8b898fbbef9e5c" - } - Frame { - msec: 1392 - hash: "f29e52398fab1a239a63df4c32f2fc69" - } - Frame { - msec: 1408 - hash: "45770fe0d61c485c13992d0f98b2a3ba" - } - Frame { - msec: 1424 - hash: "ca83285bc8ac633403896fe976896eb0" - } - Frame { - msec: 1440 - hash: "96ba486c09cc69d5aa38c46c00df1181" - } - Frame { - msec: 1456 - hash: "b88eab335842787869f4a14824c19dd8" - } - Frame { - msec: 1472 - hash: "065aa59012729e1e1a246a2083142690" - } - Frame { - msec: 1488 - hash: "dd0e98c8398861002c5f178c5f9f612d" - } - Frame { - msec: 1504 - hash: "04192c2b545948048eccf4d81bbde198" - } - Frame { - msec: 1520 - hash: "bb7502c7208281ef9fd41714ab88a1a8" - } - Frame { - msec: 1536 - hash: "5397195471890d08b703dca101e5bc7c" - } - Frame { - msec: 1552 - hash: "4c678cdbebb2ffd2cbf012ca77800cde" - } - Frame { - msec: 1568 - hash: "0d7a34ecd0c7f52b2c015037bf1902c6" - } - Frame { - msec: 1584 - hash: "fd9d5048be749ac4369fda2d018b43ae" - } - Frame { - msec: 1600 - hash: "93ee03795cd57ae6f7fe3a020b039ad4" - } - Frame { - msec: 1616 - hash: "5e1118963f219c39761ca7fbf564a9ca" - } - Frame { - msec: 1632 - hash: "8f40038741903150136170503649d941" - } - Frame { - msec: 1648 - hash: "b087b7d0aa6224821f8e18718ff5e77d" - } - Frame { - msec: 1664 - hash: "aa46b04a3c67dc772265ed2901955565" - } - Frame { - msec: 1680 - hash: "ac024bf2aeb4becdf31a09fe0a6db8f3" - } - Frame { - msec: 1696 - hash: "13745a174e4d06e2108a5bf125ba50cc" - } - Frame { - msec: 1712 - hash: "bd972f0d8e230eca0b3fea1b8c960c08" - } - Frame { - msec: 1728 - hash: "cbdbec802a58e7ced0cf45b3ab0bc0ba" - } - Frame { - msec: 1744 - hash: "5128584c50305c7d218b81b8367fa3d5" - } - Frame { - msec: 1760 - hash: "a71461d3593f3685620668916de870bd" - } - Frame { - msec: 1776 - hash: "74ebac8f32cf044b58d9883dbcd9a722" - } - Frame { - msec: 1792 - hash: "fedc5b638f339b90fe59b478721e65b7" - } - Frame { - msec: 1808 - hash: "a2fa71b4147372175774250501b6625e" - } - Frame { - msec: 1824 - hash: "4e9b083075bc5e9287a8abc982778b56" - } - Frame { - msec: 1840 - hash: "1d6f02aa99afa47d77fc49ab894b365a" - } - Frame { - msec: 1856 - hash: "a204feec783b3b05de4c209c21745826" - } - Frame { - msec: 1872 - hash: "665a2a8ff00b9663157802767f504754" - } - Frame { - msec: 1888 - hash: "624fb09ebe60cb87d767faf8d2420b1e" - } - Frame { - msec: 1904 - hash: "e5af0cdc33f3275a25abb09e9165f310" - } - Frame { - msec: 1920 - hash: "02bafb5a81ca66f7670ac93de5123860" - } - Frame { - msec: 1936 - image: "colorAnimation-visual.2.png" - } - Frame { - msec: 1952 - hash: "b5abd0dff1ab076faac7cc226e83f5d0" - } - Frame { - msec: 1968 - hash: "b759acc35bccff8efc2e6fe276ddc0f7" - } - Frame { - msec: 1984 - hash: "ce52e18c1f7732768779863b45314ff5" - } - Frame { - msec: 2000 - hash: "99d30652559dd6931e0c95543eeaa149" - } - Frame { - msec: 2016 - hash: "ffbd9a00e05e085b89296d19d5caec57" - } - Frame { - msec: 2032 - hash: "9c9d658b9c25602816b8066bf19105db" - } - Frame { - msec: 2048 - hash: "2b7fd058e6601e22a30bb7106b1c683b" - } - Frame { - msec: 2064 - hash: "f4c7e26b19ee0a3e7c9688685eb7bd05" - } - Frame { - msec: 2080 - hash: "0dc6d593bceff56b7f81f2a49d37fefb" - } - Frame { - msec: 2096 - hash: "9bfd7ad5091ccbdde43c593e133a7b10" - } - Frame { - msec: 2112 - hash: "2703b617937914a90ea42ebf249d79ee" - } - Frame { - msec: 2128 - hash: "b77e2983138254016c4cca53100f46fa" - } - Frame { - msec: 2144 - hash: "60c4dd24187d1281081479e586f02b37" - } - Frame { - msec: 2160 - hash: "62f2511abd99ef1231c9fa4b91d4abfe" - } - Frame { - msec: 2176 - hash: "e309b3353fd174e883d309571caddc98" - } - Frame { - msec: 2192 - hash: "1e2d6a134c7b12dde551b148ef4f088c" - } - Frame { - msec: 2208 - hash: "10d46d2862e333e5136b1c046dabb33b" - } - Frame { - msec: 2224 - hash: "c8dae97c10e1962c1e6a51ab3ab8579e" - } - Frame { - msec: 2240 - hash: "4e1b7e06f55fb084080689b474f1fe1d" - } - Frame { - msec: 2256 - hash: "b4639c907fa937bf15fac62421170cd8" - } - Frame { - msec: 2272 - hash: "c250208a0caeb5f6cb4d3aac3d7d350b" - } - Frame { - msec: 2288 - hash: "a73351eabecf0d71149efe31f197413e" - } - Frame { - msec: 2304 - hash: "479425f1b7aff79e4dfb7fca534af018" - } - Frame { - msec: 2320 - hash: "046d0f0040a52d1f26ba9f7c5de06ef4" - } - Frame { - msec: 2336 - hash: "655778bf13c6080903150b0eb43a7edc" - } - Frame { - msec: 2352 - hash: "72da0bbe81514870655fdd3354adac60" - } - Frame { - msec: 2368 - hash: "defe0bdf675c65fff55aaaced1e4dae7" - } - Frame { - msec: 2384 - hash: "c988628b6c3d3780e9a865c7694926cd" - } - Frame { - msec: 2400 - hash: "5ab17563655231089edd986ff13d6012" - } - Frame { - msec: 2416 - hash: "c1adff1d2e5800ed466d1691d3b17382" - } - Frame { - msec: 2432 - hash: "70129ba01fbb19592b9dc0d0a3b3e7df" - } - Frame { - msec: 2448 - hash: "0000829ef7ed908bf430d42904d59cc2" - } - Frame { - msec: 2464 - hash: "843d2927f50ab87b4a86b7a6aaeed91f" - } - Frame { - msec: 2480 - hash: "da86d21756025e7de8050586d5e2a1f8" - } - Frame { - msec: 2496 - hash: "48dd1bd6580133b0793fee327ea4f1e6" - } - Frame { - msec: 2512 - hash: "f0618193dcd0ba2837249515a1898b1c" - } - Frame { - msec: 2528 - hash: "a530184e57251065286c0cbba7301e9c" - } - Frame { - msec: 2544 - hash: "64a1d7203973d65dd342793007a61c58" - } - Frame { - msec: 2560 - hash: "5b830dfc6ba442772de87d75d5a578de" - } - Frame { - msec: 2576 - hash: "5563b056b0409b65f60dd16dd0dd890e" - } - Frame { - msec: 2592 - hash: "b8bcf9ad2ca8720c11563a23d8280804" - } - Frame { - msec: 2608 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2624 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2640 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2656 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2672 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2688 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2704 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2720 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2736 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2752 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2768 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2784 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2800 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2816 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2832 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2848 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2864 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2880 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2896 - image: "colorAnimation-visual.3.png" - } - Frame { - msec: 2912 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2928 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2944 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2960 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2976 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 2992 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3008 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3024 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3040 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3056 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3072 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3088 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3104 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3120 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3136 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3152 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3168 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3184 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3200 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3216 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3232 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3248 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3264 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3280 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3296 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3312 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3328 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3344 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3360 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3376 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3392 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3408 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3424 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3440 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3456 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3472 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3488 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3504 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3520 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3536 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3552 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3568 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3584 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3600 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3616 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3632 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3648 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3664 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } - Frame { - msec: 3680 - hash: "8c0fcda4f8956394c53fc4ba18caa850" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.0.png b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.0.png deleted file mode 100644 index 81edfff..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.1.png b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.1.png deleted file mode 100644 index ebac47f..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.2.png b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.2.png deleted file mode 100644 index e1200bb..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.3.png b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.3.png deleted file mode 100644 index 81edfff..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml b/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml deleted file mode 100644 index 597c3a6..0000000 --- a/tests/auto/declarative/qmlvisual/animation/easing/data/easing.qml +++ /dev/null @@ -1,863 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "easing.0.png" - } - Frame { - msec: 32 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 48 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 64 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 80 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 96 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 112 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 128 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 144 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 160 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 176 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 192 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 208 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 224 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 240 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 256 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 272 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 288 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 304 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 320 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 336 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 352 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 368 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 384 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 400 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 416 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 432 - hash: "4f12d90df04192e3f28026249015fa41" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 28; y: 245 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 448 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 464 - hash: "a74da88fed6727a41b0bef096bd52eea" - } - Frame { - msec: 480 - hash: "e640a847e36f4a7d322ad7ca0b893d9c" - } - Frame { - msec: 496 - hash: "3e3fe8581c80dc190108b9844e77fb17" - } - Frame { - msec: 512 - hash: "8ee8ce9f8d9d93997aa8e05efae9b901" - } - Frame { - msec: 528 - hash: "8752f7849a3afa35889f7f1406d79e5c" - } - Frame { - msec: 544 - hash: "df31ed3556e84a4517b26765ea11023c" - } - Frame { - msec: 560 - hash: "a35602db546bf5e71fbc7ff7c5895427" - } - Frame { - msec: 576 - hash: "c29ee32e39126cb00544cf0326e483d8" - } - Frame { - msec: 592 - hash: "79b0d26288fd9ca67c6aacacb9bf355f" - } - Frame { - msec: 608 - hash: "aa0b8c9921058be0913c00725c45b287" - } - Frame { - msec: 624 - hash: "964f498603fdd2abb2d3b1cc1b78ffde" - } - Frame { - msec: 640 - hash: "a3c7226d5b5f91b91d2a1ec21f2cb9ab" - } - Frame { - msec: 656 - hash: "d28f5fb2e07c028c9697f8d1e4d7b676" - } - Frame { - msec: 672 - hash: "0a1aa6ba2749b1ef5d8c67b5d8d7fba4" - } - Frame { - msec: 688 - hash: "12d926e80c7b4da41ef9c747cf9ca1d4" - } - Frame { - msec: 704 - hash: "2015e4d29b3424a3683d7d8710ef60b4" - } - Frame { - msec: 720 - hash: "530924a6f4bdf7e9ab37415109a28e2f" - } - Frame { - msec: 736 - hash: "4dd20811ffa8cfb64cebc6ec6f43b029" - } - Frame { - msec: 752 - hash: "2238138f486a061e32607b130ba505f8" - } - Frame { - msec: 768 - hash: "a2991487b51b9802f18a975a323dfb32" - } - Frame { - msec: 784 - hash: "9cf19f7c9ee16bfdd56cb889358ab789" - } - Frame { - msec: 800 - hash: "32eee6b05e73a36eef878c562badbb8f" - } - Frame { - msec: 816 - hash: "04cbb2d8fe38011c46ff95d84830ed2a" - } - Frame { - msec: 832 - hash: "c11c2591ecf40ab31e616f6803e37e95" - } - Frame { - msec: 848 - hash: "a22cdeea89739bdf10850c7251fb62f2" - } - Frame { - msec: 864 - hash: "7d13f611bc516cda6afe56a8ec59cbf4" - } - Frame { - msec: 880 - hash: "4b3a3469f1c64760bd6ce84ec0bfc2cc" - } - Frame { - msec: 896 - hash: "e1a3af06282f369427d967cb21771564" - } - Frame { - msec: 912 - hash: "e1c90f78a2fe5e7cf43eeb700c867beb" - } - Frame { - msec: 928 - hash: "e63fbd42405a5d251ea6703d9564b2e0" - } - Frame { - msec: 944 - hash: "a1b4f08ccf38575f789bdb8968c7cdeb" - } - Frame { - msec: 960 - hash: "2604313688bddd75b1fbd146415097a7" - } - Frame { - msec: 976 - image: "easing.1.png" - } - Frame { - msec: 992 - hash: "df391105c7f6e0fbcdb0b4719e5af9e3" - } - Frame { - msec: 1008 - hash: "33603ef5b2368a7f5a71de0318404ac7" - } - Frame { - msec: 1024 - hash: "78cdbf2a2522e057db08aba284bd7a07" - } - Frame { - msec: 1040 - hash: "7aac87953a7e1ddf0040769a15878017" - } - Frame { - msec: 1056 - hash: "eae27f47c56ee0c491eeebed0f3855b2" - } - Frame { - msec: 1072 - hash: "0f0c4d8dbc27bc301c993a768afeaa39" - } - Frame { - msec: 1088 - hash: "ec844dffe8be01b9906ffa10a18784bc" - } - Frame { - msec: 1104 - hash: "69f6dd26fd9268c474c422c2ce126424" - } - Frame { - msec: 1120 - hash: "0e3f95c339c1868fc716a542e9acbd49" - } - Frame { - msec: 1136 - hash: "fa0762f9d8112e5c6889ef3a204d4838" - } - Frame { - msec: 1152 - hash: "18132a9adedd13fcd015ac5c7f741718" - } - Frame { - msec: 1168 - hash: "f07aba4891c1aab84f656b3507d4f31a" - } - Frame { - msec: 1184 - hash: "123dfe5bf375b698ae529fe370133d4d" - } - Frame { - msec: 1200 - hash: "d176cacbad1459d18729e99b52ed0c89" - } - Frame { - msec: 1216 - hash: "21d9f6aeb67b5bfa0d190d305ddbaabd" - } - Frame { - msec: 1232 - hash: "38884e097938bdd2fecb33a2d782e87e" - } - Frame { - msec: 1248 - hash: "d0fb3dbb20f4873784dde690c48efd4b" - } - Frame { - msec: 1264 - hash: "9821efad0c5bfc459029f42a32ad7c85" - } - Frame { - msec: 1280 - hash: "c19ef8982ffa6d5d1a0b2844d0bd77e1" - } - Frame { - msec: 1296 - hash: "e5d09b511557ac724b488dcaa5079ac7" - } - Frame { - msec: 1312 - hash: "a1bf72e745137dd8ae48ff3e5df22944" - } - Frame { - msec: 1328 - hash: "6319a88b12b431b1715b0231c0b86f9e" - } - Frame { - msec: 1344 - hash: "f69fc6078e0b6c863b19f2306ca22a17" - } - Frame { - msec: 1360 - hash: "e0945fc7aea81263fb84fb5de83b7ffc" - } - Frame { - msec: 1376 - hash: "bae0fc82e69b37d6f0d23faf5d877d9b" - } - Frame { - msec: 1392 - hash: "764e6cf407b66cefb0e867c55b4d214b" - } - Frame { - msec: 1408 - hash: "208a9d634e7c45211a8aea56b7cb17e1" - } - Frame { - msec: 1424 - hash: "5426675426babcfb303d5534b66038e0" - } - Frame { - msec: 1440 - hash: "f9b2505bf94f9ae9a6212aae64a8023f" - } - Frame { - msec: 1456 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1472 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1488 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1504 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1520 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1536 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1552 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1568 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1584 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1600 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1616 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1632 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1648 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1664 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1680 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1696 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1712 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1728 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 28; y: 245 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1744 - hash: "672e4366f9eb212a3dcb539476ffe83b" - } - Frame { - msec: 1760 - hash: "0312cf9bff66e992528cc24211a7a9ef" - } - Frame { - msec: 1776 - hash: "d29d071c26556302881badd90b1f1135" - } - Frame { - msec: 1792 - hash: "747b398a00dec18a82fb3e2313ba318b" - } - Frame { - msec: 1808 - hash: "1df120f0cc1e8583dd52b02b203ba7ff" - } - Frame { - msec: 1824 - hash: "783f4c179f8468055f1b5585108c4c91" - } - Frame { - msec: 1840 - hash: "7307344c196f13348e7e23415c8eed1f" - } - Frame { - msec: 1856 - hash: "cf97103f94eb6b9e68e095ff5eaf2aeb" - } - Frame { - msec: 1872 - hash: "df8ef82f145ad55f084c3693cb601577" - } - Frame { - msec: 1888 - hash: "e25a344db6358ac5876cc95eb7ce35e7" - } - Frame { - msec: 1904 - hash: "4f4d55823e468ec2c0e73977a6851f5b" - } - Frame { - msec: 1920 - hash: "894e23e77af266bde42f5ca6ac2184d7" - } - Frame { - msec: 1936 - image: "easing.2.png" - } - Frame { - msec: 1952 - hash: "a48cc4f2c5282d9d2a8b55e0908324b7" - } - Frame { - msec: 1968 - hash: "f5cd3c873cf57f199ea7439a45f094d8" - } - Frame { - msec: 1984 - hash: "8c6f4c913be02ee21efa551ce9a6544b" - } - Frame { - msec: 2000 - hash: "fc979e4e4f6e82d704e0a53d3f9eef6e" - } - Frame { - msec: 2016 - hash: "e8085e2e6741028a9218487181a8cc5b" - } - Frame { - msec: 2032 - hash: "c67a1cec25d25687d369af58018ce213" - } - Frame { - msec: 2048 - hash: "25b8e080f8fe5525bafa1e760b5845be" - } - Frame { - msec: 2064 - hash: "fef16bd6dc6dfa248ab5a33f53229528" - } - Frame { - msec: 2080 - hash: "57b7e04b1722feda16fb80269dd51c2c" - } - Frame { - msec: 2096 - hash: "f2415e564efe5b5306b33001395a41f4" - } - Frame { - msec: 2112 - hash: "40116a7a67be4de5b767ee1fe7ae0d02" - } - Frame { - msec: 2128 - hash: "52d71e7e8f44e554df361d7d9e281655" - } - Frame { - msec: 2144 - hash: "226620a3c624f0a1659ee33616734a28" - } - Frame { - msec: 2160 - hash: "8849d02547a90ca47748749fc8615179" - } - Frame { - msec: 2176 - hash: "5523d277bc7a7161f3bbd79a4099e6c4" - } - Frame { - msec: 2192 - hash: "6ff2c6b89c3a024e1597d1c110b5f5f3" - } - Frame { - msec: 2208 - hash: "732b9e2e601ad7fc11510f3c590dca20" - } - Frame { - msec: 2224 - hash: "1ff9abdcb182fca444bc4b36e91b2a13" - } - Frame { - msec: 2240 - hash: "6f851aee4e3c4427fcb8672f37885d2d" - } - Frame { - msec: 2256 - hash: "3572977ef7c618404168514400fc22a4" - } - Frame { - msec: 2272 - hash: "e6e6f7cdf4f2ee1d182d18da482ab6a8" - } - Frame { - msec: 2288 - hash: "fac4878038516ad0a5601f78ff3d3ab0" - } - Frame { - msec: 2304 - hash: "b37e2cf2fb3b5a91845e50d2ab288572" - } - Frame { - msec: 2320 - hash: "711ea820aa842c46f629f3eb36144ec2" - } - Frame { - msec: 2336 - hash: "fcaa0576cbc8d4459b94498f332a4576" - } - Frame { - msec: 2352 - hash: "dfa935d0ac700696a78c139585d2cc3f" - } - Frame { - msec: 2368 - hash: "291042d40fc9fa8eebf80225b2cae93e" - } - Frame { - msec: 2384 - hash: "4e1d6af5f5f9200b6871dfc63ec8d92e" - } - Frame { - msec: 2400 - hash: "9c7ccdf3aba3c28717891e7ef4333aa5" - } - Frame { - msec: 2416 - hash: "b5bfa2eeb932ebc8913381bbea62ea9d" - } - Frame { - msec: 2432 - hash: "296bc4fcc206c6563630a6de8be9deac" - } - Frame { - msec: 2448 - hash: "57d39578c1ba3a6a21efdef8c9323965" - } - Frame { - msec: 2464 - hash: "16352e11b7fd763d82d26fcc02da24a7" - } - Frame { - msec: 2480 - hash: "02157cc0e120e1b751a9931ff65edb52" - } - Frame { - msec: 2496 - hash: "23554c786732241aa9a59304cb4870b1" - } - Frame { - msec: 2512 - hash: "e38f68e818b35b23361a7937b7a37bb7" - } - Frame { - msec: 2528 - hash: "dd39869048e6ccfceb1b2882404ef1b3" - } - Frame { - msec: 2544 - hash: "5587d88f5b8fcb3914efedee9ae3a939" - } - Frame { - msec: 2560 - hash: "5a23991509d69d400249e403cd3fbe4d" - } - Frame { - msec: 2576 - hash: "eed425fb759c92ec9966fcdc625321fb" - } - Frame { - msec: 2592 - hash: "7bbf0748f5fbbf48605287342df8e687" - } - Frame { - msec: 2608 - hash: "7722f0d3c358d57f3d614f2850fc23f9" - } - Frame { - msec: 2624 - hash: "3ec5ccb1e6ed677617dcb3b699b10d58" - } - Frame { - msec: 2640 - hash: "303a61969566062d5c77a3a1a65c847a" - } - Frame { - msec: 2656 - hash: "aadf4d4cc978b5f88b97a7e453b21024" - } - Frame { - msec: 2672 - hash: "2d24097717f5ec669e29250af78235fd" - } - Frame { - msec: 2688 - hash: "2a58e7ce319cc1cd7dfcd740bfe59517" - } - Frame { - msec: 2704 - hash: "6a21af6c920588f0f709bf91bb56f548" - } - Frame { - msec: 2720 - hash: "f5a63f241f27c6e7cef969dde6790ac3" - } - Frame { - msec: 2736 - hash: "33b64aad57e117f6b170432843c3c996" - } - Frame { - msec: 2752 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2768 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2784 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2800 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2816 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2832 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2848 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2864 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2880 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2896 - image: "easing.3.png" - } - Frame { - msec: 2912 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2928 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2944 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2960 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2976 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 2992 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3008 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3024 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3040 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3056 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3072 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3088 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3104 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3120 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3136 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3152 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3168 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3184 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3200 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3216 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3232 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3248 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3264 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3280 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3296 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3312 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3328 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3344 - hash: "4f12d90df04192e3f28026249015fa41" - } - Frame { - msec: 3360 - hash: "4f12d90df04192e3f28026249015fa41" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/easing/easing.qml b/tests/auto/declarative/qmlvisual/animation/easing/easing.qml deleted file mode 100644 index 625aeeb..0000000 --- a/tests/auto/declarative/qmlvisual/animation/easing/easing.qml +++ /dev/null @@ -1,194 +0,0 @@ -import QtQuick 1.0 -/* This test just animates y of a block with every easing curve*/ - -Rectangle { - id: item - height: 300 - width: layout.width - color: "white" - resources: [ - ListModel { - id: easingtypes - ListElement { - type: "Linear" - } - ListElement { - type: "InQuad" - } - ListElement { - type: "OutQuad" - } - ListElement { - type: "InOutQuad" - } - ListElement { - type: "OutInQuad" - } - ListElement { - type: "InCubic" - } - ListElement { - type: "OutCubic" - } - ListElement { - type: "InOutCubic" - } - ListElement { - type: "OutInCubic" - } - ListElement { - type: "InQuart" - } - ListElement { - type: "OutQuart" - } - ListElement { - type: "InOutQuart" - } - ListElement { - type: "OutInQuart" - } - ListElement { - type: "InQuint" - } - ListElement { - type: "OutQuint" - } - ListElement { - type: "InOutQuint" - } - ListElement { - type: "OutInQuint" - } - ListElement { - type: "InSine" - } - ListElement { - type: "OutSine" - } - ListElement { - type: "InOutSine" - } - ListElement { - type: "OutInSine" - } - ListElement { - type: "InExpo" - } - ListElement { - type: "OutExpo" - } - ListElement { - type: "InOutExpo" - } - ListElement { - type: "OutInExpo" - } - ListElement { - type: "InCirc" - } - ListElement { - type: "OutCirc" - } - ListElement { - type: "InOutCirc" - } - ListElement { - type: "OutInCirc" - } - ListElement { - type: "InElastic" - } - ListElement { - type: "OutElastic" - } - ListElement { - type: "InOutElastic" - } - ListElement { - type: "OutInElastic" - } - ListElement { - type: "InBack" - } - ListElement { - type: "OutBack" - } - ListElement { - type: "InOutBack" - } - ListElement { - type: "OutInBack" - } - ListElement { - type: "OutBounce" - } - ListElement { - type: "InBounce" - } - ListElement { - type: "InOutBounce" - } - ListElement { - type: "OutInBounce" - } - } - ] - Row { - id: layout - anchors.top: item.top - anchors.bottom: item.bottom - Repeater { - model: easingtypes - Component { - Rectangle { - id: block - Text { - text: type - anchors.centerIn: parent - font.italic: true - color: index & 1 ? "black" : "white" - opacity: 0 // 1 for debugging - } - width: 15 - height: 30 - color: index & 1 ? "red" : "blue" - states: [ - State { - name: "from" - when: !mouse.pressed - PropertyChanges { - target: block - y: 0 - } - }, - State { - name: "to" - when: mouse.pressed - PropertyChanges { - target: block - y: item.height-block.height - } - } - ] - transitions: [ - Transition { - from: "*" - to: "to" - reversible: true - NumberAnimation { - properties: "y" - easing.type: type - duration: 1000 - } - } - ] - } - } - } - } - MouseArea { - id: mouse - anchors.fill: layout - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.0.png b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.0.png deleted file mode 100644 index ca37de9..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.1.png b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.1.png deleted file mode 100644 index a2d87ca..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.2.png b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.2.png deleted file mode 100644 index 1cb2cb8..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.3.png b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.3.png deleted file mode 100644 index f58deca..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.4.png b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.4.png deleted file mode 100644 index 1936361..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.5.png b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.5.png deleted file mode 100644 index 758c223..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.6.png b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.6.png deleted file mode 100644 index b049e63..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml b/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml deleted file mode 100644 index 3cbc074..0000000 --- a/tests/auto/declarative/qmlvisual/animation/loop/data/loop.qml +++ /dev/null @@ -1,1471 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "loop.0.png" - } - Frame { - msec: 32 - hash: "1012b52727ae98522061945e32a6269a" - } - Frame { - msec: 48 - hash: "06c3f3c1fa014b0eb7341e0a45ca16e4" - } - Frame { - msec: 64 - hash: "71ecb0af25649c056310d3b865d4144d" - } - Frame { - msec: 80 - hash: "e249fe5b113797433f96a2f84d47e42b" - } - Frame { - msec: 96 - hash: "2a7256921c25c79c22263f2b48d4e98c" - } - Frame { - msec: 112 - hash: "8657944b456402622f2991a0c9acc2fb" - } - Frame { - msec: 128 - hash: "c919a94cd7afb1fbad4c88537af00869" - } - Frame { - msec: 144 - hash: "303b5057d94e328f9447a01d54eea93d" - } - Frame { - msec: 160 - hash: "72eb974dc008c9454935b18b47d4d9e6" - } - Frame { - msec: 176 - hash: "545f258cb0ec7f5d951b74cc7d3f4f0d" - } - Frame { - msec: 192 - hash: "3b3d6046fb01adf7c8a7f67bbc46d28e" - } - Frame { - msec: 208 - hash: "12f7556076cf7a4c2f029dab80e666e7" - } - Frame { - msec: 224 - hash: "fab272c7dce2bbee4042764d38c7ceb5" - } - Frame { - msec: 240 - hash: "ff8addee408527bbaed1819bae07c23f" - } - Frame { - msec: 256 - hash: "53eb6f575db2af3635139e5ddbd7b2f9" - } - Frame { - msec: 272 - hash: "a2fa1cf169acb8ff26a2c5ec1f1d5c81" - } - Frame { - msec: 288 - hash: "ab8d5d6d146ed11b92bc93e78f28e50c" - } - Frame { - msec: 304 - hash: "0fbfc6609b082008e44592067b18ab63" - } - Frame { - msec: 320 - hash: "7fbeda19c19c62a0af5f7f98e633993f" - } - Frame { - msec: 336 - hash: "1882b591bc9d4e79d69d0baecb78b700" - } - Frame { - msec: 352 - hash: "dde429007f876206f3ec0c68d239983e" - } - Frame { - msec: 368 - hash: "b656bdba2978a9a1af511cc2bb0cb59a" - } - Frame { - msec: 384 - hash: "1f6573bf67b2893c94f0c2d40213dc73" - } - Frame { - msec: 400 - hash: "f5786fb532300a1b2f820251fc17c775" - } - Frame { - msec: 416 - hash: "a0e9c4bd3b6c4cdadd40bdf3ca5e2986" - } - Frame { - msec: 432 - hash: "073f74ab23a1173025b3c63424ce2697" - } - Frame { - msec: 448 - hash: "1ac1367d21e346c6c652a88b9ea25bfc" - } - Frame { - msec: 464 - hash: "f62720308dc9ae67c3856bc3afb32b75" - } - Frame { - msec: 480 - hash: "066476a57efba802d2497bc3731a3583" - } - Frame { - msec: 496 - hash: "fb965028a760e8d0a4d81fd982a18ff3" - } - Frame { - msec: 512 - hash: "ba008abd1a7a73c750b909d57c043649" - } - Frame { - msec: 528 - hash: "4c974470953f74d1ee7bcd0f4a4c48cf" - } - Frame { - msec: 544 - hash: "ea233f3476da26c90d67b7775b718aa2" - } - Frame { - msec: 560 - hash: "e12c3b810c0aa628d7a3827453bea9f3" - } - Frame { - msec: 576 - hash: "7451954ca0465c430fc4bae84f6d97cb" - } - Frame { - msec: 592 - hash: "503e40f193a8b099daa4013eddc2f664" - } - Frame { - msec: 608 - hash: "1f81acf94f325a51faa7aa61e73f8a25" - } - Frame { - msec: 624 - hash: "0257d7d53eda8afe182a9f97ef451679" - } - Frame { - msec: 640 - hash: "cfc260bdc977ef16311840022cc85378" - } - Frame { - msec: 656 - hash: "27483f0b89d727b32722ea153fad30ad" - } - Frame { - msec: 672 - hash: "355afa11b8e7b24a353d1aa79daf7564" - } - Frame { - msec: 688 - hash: "bbc1d55f346719476f471a2294227bda" - } - Frame { - msec: 704 - hash: "9bbab5ff75219d8bd65022c6d061e57a" - } - Frame { - msec: 720 - hash: "ff0699f02845f3c5cf5aabb19198c346" - } - Frame { - msec: 736 - hash: "26768e09270ade4c5b484154e7042f43" - } - Frame { - msec: 752 - hash: "31c9ae63071de3fb2f7e1836a22515cb" - } - Frame { - msec: 768 - hash: "783ce2acdae8d87883151532c9293336" - } - Frame { - msec: 784 - hash: "86b9fd739f437127e0cc4d7dcd4284bd" - } - Frame { - msec: 800 - hash: "5e1d6e164dd184cc197d514e5ff60a4c" - } - Frame { - msec: 816 - hash: "13063a8d73704165d64dd2a95803ec0f" - } - Frame { - msec: 832 - hash: "c244e0c0d60f4be2e017bba21a17ab3f" - } - Frame { - msec: 848 - hash: "b3bd657873f1b49c888b9b98d8c0e23f" - } - Frame { - msec: 864 - hash: "65a011e4f62ecddd820bdbdeb0084b65" - } - Frame { - msec: 880 - hash: "86018de7b4a93b267fe94c4de9e61bab" - } - Frame { - msec: 896 - hash: "44827055c99ae3ed924c101c9d1be5c5" - } - Frame { - msec: 912 - hash: "1c31fcb20ec1abc7ea815b703ae05363" - } - Frame { - msec: 928 - hash: "9d7825b7b05ca696846a4116ab27f966" - } - Frame { - msec: 944 - hash: "61b6690dd14fc76dbac4d785bbddb8ee" - } - Frame { - msec: 960 - hash: "0de25d97a43cf1a7551c8e8dd1943039" - } - Frame { - msec: 976 - image: "loop.1.png" - } - Frame { - msec: 992 - hash: "9747fdff3429f7a2dbc9e3173ad43a67" - } - Frame { - msec: 1008 - hash: "e68058b9565138f2d7f0f96b74c38dec" - } - Frame { - msec: 1024 - hash: "f32aceabb929471dffd73bf0290e75a2" - } - Frame { - msec: 1040 - hash: "9112838cc8f9a0cfb94e0ef6ca7eca71" - } - Frame { - msec: 1056 - hash: "53bd2c46e3a11db0ee151a6a0311b3a8" - } - Frame { - msec: 1072 - hash: "d5105f958a592324e53aae4a83beb049" - } - Frame { - msec: 1088 - hash: "862249432e6fc6114b63284ad9c97cb6" - } - Frame { - msec: 1104 - hash: "3e6a6f505aa146a6789434d265ad4d3b" - } - Frame { - msec: 1120 - hash: "0f5b2b05f72b86bd2b0a6d0ea2b6bf37" - } - Frame { - msec: 1136 - hash: "922520f7ec954d6d1061208cbd63877e" - } - Frame { - msec: 1152 - hash: "d1c02f3ce4bcc96e0c3d2503a0e9aa48" - } - Frame { - msec: 1168 - hash: "ebb41112b687ecb062dedc3b49cb93fc" - } - Frame { - msec: 1184 - hash: "7bc87d71d532aa52abc26ac9c1cbb665" - } - Frame { - msec: 1200 - hash: "1a7a81f851c8817cac3cc0cb7ac07971" - } - Frame { - msec: 1216 - hash: "ca17c870c55f2947bb5f85d28f30ee7c" - } - Frame { - msec: 1232 - hash: "48b123cfd6d2ea1c2bc9f2ba822ec7bf" - } - Frame { - msec: 1248 - hash: "2a6b8aecef26793e200993dc1e25fd95" - } - Frame { - msec: 1264 - hash: "f10a0a11ed54a910fe434311f67343a4" - } - Frame { - msec: 1280 - hash: "47b6e1beabdcd3cd3d21d77c62e5bed8" - } - Frame { - msec: 1296 - hash: "1eea7eb2853a9e7a1a69738667457b7a" - } - Frame { - msec: 1312 - hash: "9e018f9e7a5ba22bbb9be3049373124a" - } - Frame { - msec: 1328 - hash: "d63069a8e7b0eb5611cc34caaecef2fb" - } - Frame { - msec: 1344 - hash: "def9383a090e4454343725f1a7c4fb3d" - } - Frame { - msec: 1360 - hash: "fd3036e559fd31eeadb0032666a95864" - } - Frame { - msec: 1376 - hash: "cf9f82b9e2a03f63f75b6ac113b3d4e5" - } - Frame { - msec: 1392 - hash: "346e7f597cfb4fc51d5393e705deddd5" - } - Frame { - msec: 1408 - hash: "0d6d6cb2ca808f5a57acfa32e10fc335" - } - Frame { - msec: 1424 - hash: "9a660a0fed41211a37d3ac82be40f81a" - } - Frame { - msec: 1440 - hash: "df3fd60ecbd517879e00e8112c49bed4" - } - Frame { - msec: 1456 - hash: "cd86fe5894e5d061f7ffe37913f00ce6" - } - Frame { - msec: 1472 - hash: "a5fdb825c18d43f3ae18f5c28e715174" - } - Frame { - msec: 1488 - hash: "0fdfb5f9463def560da6c19acf96bafb" - } - Frame { - msec: 1504 - hash: "8849a36af064503dbccad69a35b6ab03" - } - Frame { - msec: 1520 - hash: "baeb4f90b0e2efc09225dbb5dd003e9e" - } - Frame { - msec: 1536 - hash: "86922e71c80976ef3aa2cab18f86c010" - } - Frame { - msec: 1552 - hash: "10d166d7da9949370a66251415522186" - } - Frame { - msec: 1568 - hash: "ada1608055b221dc9f1f7650a9764930" - } - Frame { - msec: 1584 - hash: "dd25ffb9a6bf009139b2942f9cc1f8e7" - } - Frame { - msec: 1600 - hash: "dc4a1c44d08328965b53ff079a8fa57b" - } - Frame { - msec: 1616 - hash: "d3d88cf635ba38e5035732cb36014417" - } - Frame { - msec: 1632 - hash: "be5e44f6b9978ba3b9ae878ae5758a96" - } - Frame { - msec: 1648 - hash: "34f193daf199ab45310be2b407499e57" - } - Frame { - msec: 1664 - hash: "d87c854e1c16642dba0d87e25f0e416f" - } - Frame { - msec: 1680 - hash: "08c404f4efd27695071ad52fbfa57c0b" - } - Frame { - msec: 1696 - hash: "84828f8e0cace1a39d9b7f19b6e4cbaa" - } - Frame { - msec: 1712 - hash: "8a0c6e1f597e699c3e2be816ae4e1dd4" - } - Frame { - msec: 1728 - hash: "9aecb0c464fb140725f34ad94ede367a" - } - Frame { - msec: 1744 - hash: "a298b3ab2939819ced7e7f903ec63be4" - } - Frame { - msec: 1760 - hash: "99789b6e168355a3960986c7d1f21f82" - } - Frame { - msec: 1776 - hash: "ebd37ee719ca460480521fd4ec284a3f" - } - Frame { - msec: 1792 - hash: "9c9b3fb5b623d3deaf9920c99279d71b" - } - Frame { - msec: 1808 - hash: "8f0be6d4d6fd7f66a43fd604e17717dd" - } - Frame { - msec: 1824 - hash: "854defd35cf3315e4501583756814ff6" - } - Frame { - msec: 1840 - hash: "fd7157aef6dfb303472cd33b176f91d8" - } - Frame { - msec: 1856 - hash: "e6521a3c74c190c193af2c913e5326e2" - } - Frame { - msec: 1872 - hash: "19862dcb88fcbbb2c4ecdc42821c7fef" - } - Frame { - msec: 1888 - hash: "5e29a9f9c6c4131c5b71f84d24503ad2" - } - Frame { - msec: 1904 - hash: "140e63c071ef77d26034d0bb6a5d5b7a" - } - Frame { - msec: 1920 - hash: "72c0bf8225504e86ff023242b84513a8" - } - Frame { - msec: 1936 - image: "loop.2.png" - } - Frame { - msec: 1952 - hash: "a5eb3334044999f56c759ce8727d627f" - } - Frame { - msec: 1968 - hash: "3fb70a7591b6decfa44f7cad18f73855" - } - Frame { - msec: 1984 - hash: "3fab99be73f7f12b9463dea359fc86d2" - } - Frame { - msec: 2000 - hash: "50ce6b869e42c949b84cf2dd0cca3af9" - } - Frame { - msec: 2016 - hash: "5369125b23e2f954c18f2fd4e0ba6f6a" - } - Frame { - msec: 2032 - hash: "a76f624be0db97ec4450b10f748065df" - } - Frame { - msec: 2048 - hash: "3fb70a7591b6decfa44f7cad18f73855" - } - Frame { - msec: 2064 - hash: "dada267799b6e57acfcc5de3b8822c7c" - } - Frame { - msec: 2080 - hash: "72c0bf8225504e86ff023242b84513a8" - } - Frame { - msec: 2096 - hash: "1e8b095c39bd359637b1b9c975ee514c" - } - Frame { - msec: 2112 - hash: "19862dcb88fcbbb2c4ecdc42821c7fef" - } - Frame { - msec: 2128 - hash: "60c95993a894e1c6e2d476db365b7746" - } - Frame { - msec: 2144 - hash: "854defd35cf3315e4501583756814ff6" - } - Frame { - msec: 2160 - hash: "15e8959bfa4d206b2f0607322b21cba6" - } - Frame { - msec: 2176 - hash: "ebd37ee719ca460480521fd4ec284a3f" - } - Frame { - msec: 2192 - hash: "6d278926822d044fff04c3f182dcb058" - } - Frame { - msec: 2208 - hash: "9aecb0c464fb140725f34ad94ede367a" - } - Frame { - msec: 2224 - hash: "b36f70f138e6deecf5b105bcd89d1a15" - } - Frame { - msec: 2240 - hash: "08c404f4efd27695071ad52fbfa57c0b" - } - Frame { - msec: 2256 - hash: "6469d0bee7ab280639b565ebf174f251" - } - Frame { - msec: 2272 - hash: "be5e44f6b9978ba3b9ae878ae5758a96" - } - Frame { - msec: 2288 - hash: "5214e578bc78b729ddf35c140093c0da" - } - Frame { - msec: 2304 - hash: "dd25ffb9a6bf009139b2942f9cc1f8e7" - } - Frame { - msec: 2320 - hash: "2ddf31aeac4815be56848703a9b5aa14" - } - Frame { - msec: 2336 - hash: "86922e71c80976ef3aa2cab18f86c010" - } - Frame { - msec: 2352 - hash: "d8415ba4fb19b62b838ef2e09ae7607a" - } - Frame { - msec: 2368 - hash: "0fdfb5f9463def560da6c19acf96bafb" - } - Frame { - msec: 2384 - hash: "68fac60713af7cb130e92fa381be411c" - } - Frame { - msec: 2400 - hash: "df3fd60ecbd517879e00e8112c49bed4" - } - Frame { - msec: 2416 - hash: "64e49282d97ba864d2f6be632ae048e4" - } - Frame { - msec: 2432 - hash: "346e7f597cfb4fc51d5393e705deddd5" - } - Frame { - msec: 2448 - hash: "f302a9ce45187ff1001c967a4c753b2b" - } - Frame { - msec: 2464 - hash: "def9383a090e4454343725f1a7c4fb3d" - } - Frame { - msec: 2480 - hash: "fd177a7ae3b5b9205fd38e955be327e0" - } - Frame { - msec: 2496 - hash: "1eea7eb2853a9e7a1a69738667457b7a" - } - Frame { - msec: 2512 - hash: "32b16dd62ccf06e44be38fd5885f297e" - } - Frame { - msec: 2528 - hash: "2a6b8aecef26793e200993dc1e25fd95" - } - Frame { - msec: 2544 - hash: "8637606843905d6ae3f95fcb745f2a6e" - } - Frame { - msec: 2560 - hash: "1a7a81f851c8817cac3cc0cb7ac07971" - } - Frame { - msec: 2576 - hash: "704ca30ddc0a637f3d1cd4926a6f7983" - } - Frame { - msec: 2592 - hash: "d1c02f3ce4bcc96e0c3d2503a0e9aa48" - } - Frame { - msec: 2608 - hash: "7759418b4fe412857ab8e7294f5a3206" - } - Frame { - msec: 2624 - hash: "3e6a6f505aa146a6789434d265ad4d3b" - } - Frame { - msec: 2640 - hash: "3e6089b47573cd53b0a220275202c80b" - } - Frame { - msec: 2656 - hash: "53bd2c46e3a11db0ee151a6a0311b3a8" - } - Frame { - msec: 2672 - hash: "f30202ae354a587c5949a16c1f8b95c3" - } - Frame { - msec: 2688 - hash: "66f78a34fe9d297af1ae8e98f84ead55" - } - Frame { - msec: 2704 - hash: "3e2fc29876812fe57ea008a71db299a4" - } - Frame { - msec: 2720 - hash: "7234b6df2220e418ef8ebe8f1c82bf26" - } - Frame { - msec: 2736 - hash: "82dd491c3b34e702a24ece8e55761a6f" - } - Frame { - msec: 2752 - hash: "d7f1065f5c42088dfc5ce36687fd8010" - } - Frame { - msec: 2768 - hash: "15bfbb0261b66ccbe3b34d0ac807165c" - } - Frame { - msec: 2784 - hash: "69963ce07eb434d787588b21fd020fa3" - } - Frame { - msec: 2800 - hash: "2fb9e078573ebd1a5cf0f615c97f1d20" - } - Frame { - msec: 2816 - hash: "31fa31ed47ea16390be8ea9d41f483e7" - } - Frame { - msec: 2832 - hash: "0f9ed8cd5cfbdab03bcb05cf6dd92620" - } - Frame { - msec: 2848 - hash: "a0e737132ae642c465e991e770ab3e34" - } - Frame { - msec: 2864 - hash: "d57cc5045f01ab4e7eb72575aef22a10" - } - Frame { - msec: 2880 - hash: "d57e1a10e48938e1f7fc219220fe1204" - } - Frame { - msec: 2896 - image: "loop.3.png" - } - Frame { - msec: 2912 - hash: "2d294613ed10dfdbca829b43b6990574" - } - Frame { - msec: 2928 - hash: "0a278a4ec3626442c94ef2da30771171" - } - Frame { - msec: 2944 - hash: "7071526c830fdfde9d520ad1578d27a8" - } - Frame { - msec: 2960 - hash: "ad02e7b90f223d3fc5a433bc4ffbee9e" - } - Frame { - msec: 2976 - hash: "e7ef412697c7df3887980ed1b079ffd5" - } - Frame { - msec: 2992 - hash: "ebda21f95079b37f4862b42523bbc1c0" - } - Frame { - msec: 3008 - hash: "6e8889e9b44ff8ed44e228d97fb5034c" - } - Frame { - msec: 3024 - hash: "f32aceabb929471dffd73bf0290e75a2" - } - Frame { - msec: 3040 - hash: "9112838cc8f9a0cfb94e0ef6ca7eca71" - } - Frame { - msec: 3056 - hash: "53bd2c46e3a11db0ee151a6a0311b3a8" - } - Frame { - msec: 3072 - hash: "d5105f958a592324e53aae4a83beb049" - } - Frame { - msec: 3088 - hash: "862249432e6fc6114b63284ad9c97cb6" - } - Frame { - msec: 3104 - hash: "3e6a6f505aa146a6789434d265ad4d3b" - } - Frame { - msec: 3120 - hash: "0f5b2b05f72b86bd2b0a6d0ea2b6bf37" - } - Frame { - msec: 3136 - hash: "922520f7ec954d6d1061208cbd63877e" - } - Frame { - msec: 3152 - hash: "d1c02f3ce4bcc96e0c3d2503a0e9aa48" - } - Frame { - msec: 3168 - hash: "ebb41112b687ecb062dedc3b49cb93fc" - } - Frame { - msec: 3184 - hash: "7bc87d71d532aa52abc26ac9c1cbb665" - } - Frame { - msec: 3200 - hash: "1a7a81f851c8817cac3cc0cb7ac07971" - } - Frame { - msec: 3216 - hash: "ca17c870c55f2947bb5f85d28f30ee7c" - } - Frame { - msec: 3232 - hash: "48b123cfd6d2ea1c2bc9f2ba822ec7bf" - } - Frame { - msec: 3248 - hash: "2a6b8aecef26793e200993dc1e25fd95" - } - Frame { - msec: 3264 - hash: "f10a0a11ed54a910fe434311f67343a4" - } - Frame { - msec: 3280 - hash: "47b6e1beabdcd3cd3d21d77c62e5bed8" - } - Frame { - msec: 3296 - hash: "1eea7eb2853a9e7a1a69738667457b7a" - } - Frame { - msec: 3312 - hash: "9e018f9e7a5ba22bbb9be3049373124a" - } - Frame { - msec: 3328 - hash: "d63069a8e7b0eb5611cc34caaecef2fb" - } - Frame { - msec: 3344 - hash: "def9383a090e4454343725f1a7c4fb3d" - } - Frame { - msec: 3360 - hash: "fd3036e559fd31eeadb0032666a95864" - } - Frame { - msec: 3376 - hash: "cf9f82b9e2a03f63f75b6ac113b3d4e5" - } - Frame { - msec: 3392 - hash: "346e7f597cfb4fc51d5393e705deddd5" - } - Frame { - msec: 3408 - hash: "0d6d6cb2ca808f5a57acfa32e10fc335" - } - Frame { - msec: 3424 - hash: "9a660a0fed41211a37d3ac82be40f81a" - } - Frame { - msec: 3440 - hash: "df3fd60ecbd517879e00e8112c49bed4" - } - Frame { - msec: 3456 - hash: "cd86fe5894e5d061f7ffe37913f00ce6" - } - Frame { - msec: 3472 - hash: "a5fdb825c18d43f3ae18f5c28e715174" - } - Frame { - msec: 3488 - hash: "0fdfb5f9463def560da6c19acf96bafb" - } - Frame { - msec: 3504 - hash: "8849a36af064503dbccad69a35b6ab03" - } - Frame { - msec: 3520 - hash: "baeb4f90b0e2efc09225dbb5dd003e9e" - } - Frame { - msec: 3536 - hash: "86922e71c80976ef3aa2cab18f86c010" - } - Frame { - msec: 3552 - hash: "10d166d7da9949370a66251415522186" - } - Frame { - msec: 3568 - hash: "ada1608055b221dc9f1f7650a9764930" - } - Frame { - msec: 3584 - hash: "dd25ffb9a6bf009139b2942f9cc1f8e7" - } - Frame { - msec: 3600 - hash: "dc4a1c44d08328965b53ff079a8fa57b" - } - Frame { - msec: 3616 - hash: "d3d88cf635ba38e5035732cb36014417" - } - Frame { - msec: 3632 - hash: "be5e44f6b9978ba3b9ae878ae5758a96" - } - Frame { - msec: 3648 - hash: "34f193daf199ab45310be2b407499e57" - } - Frame { - msec: 3664 - hash: "d87c854e1c16642dba0d87e25f0e416f" - } - Frame { - msec: 3680 - hash: "08c404f4efd27695071ad52fbfa57c0b" - } - Frame { - msec: 3696 - hash: "84828f8e0cace1a39d9b7f19b6e4cbaa" - } - Frame { - msec: 3712 - hash: "8a0c6e1f597e699c3e2be816ae4e1dd4" - } - Frame { - msec: 3728 - hash: "9aecb0c464fb140725f34ad94ede367a" - } - Frame { - msec: 3744 - hash: "a298b3ab2939819ced7e7f903ec63be4" - } - Frame { - msec: 3760 - hash: "99789b6e168355a3960986c7d1f21f82" - } - Frame { - msec: 3776 - hash: "ebd37ee719ca460480521fd4ec284a3f" - } - Frame { - msec: 3792 - hash: "9c9b3fb5b623d3deaf9920c99279d71b" - } - Frame { - msec: 3808 - hash: "8f0be6d4d6fd7f66a43fd604e17717dd" - } - Frame { - msec: 3824 - hash: "854defd35cf3315e4501583756814ff6" - } - Frame { - msec: 3840 - hash: "fd7157aef6dfb303472cd33b176f91d8" - } - Frame { - msec: 3856 - image: "loop.4.png" - } - Frame { - msec: 3872 - hash: "19862dcb88fcbbb2c4ecdc42821c7fef" - } - Frame { - msec: 3888 - hash: "5e29a9f9c6c4131c5b71f84d24503ad2" - } - Frame { - msec: 3904 - hash: "140e63c071ef77d26034d0bb6a5d5b7a" - } - Frame { - msec: 3920 - hash: "72c0bf8225504e86ff023242b84513a8" - } - Frame { - msec: 3936 - hash: "7f79dd50a0af8e8871191ee80afcad0f" - } - Frame { - msec: 3952 - hash: "a5eb3334044999f56c759ce8727d627f" - } - Frame { - msec: 3968 - hash: "3fb70a7591b6decfa44f7cad18f73855" - } - Frame { - msec: 3984 - hash: "3fab99be73f7f12b9463dea359fc86d2" - } - Frame { - msec: 4000 - hash: "50ce6b869e42c949b84cf2dd0cca3af9" - } - Frame { - msec: 4016 - hash: "5369125b23e2f954c18f2fd4e0ba6f6a" - } - Frame { - msec: 4032 - hash: "a76f624be0db97ec4450b10f748065df" - } - Frame { - msec: 4048 - hash: "3fb70a7591b6decfa44f7cad18f73855" - } - Frame { - msec: 4064 - hash: "dada267799b6e57acfcc5de3b8822c7c" - } - Frame { - msec: 4080 - hash: "72c0bf8225504e86ff023242b84513a8" - } - Frame { - msec: 4096 - hash: "1e8b095c39bd359637b1b9c975ee514c" - } - Frame { - msec: 4112 - hash: "19862dcb88fcbbb2c4ecdc42821c7fef" - } - Frame { - msec: 4128 - hash: "60c95993a894e1c6e2d476db365b7746" - } - Frame { - msec: 4144 - hash: "854defd35cf3315e4501583756814ff6" - } - Frame { - msec: 4160 - hash: "15e8959bfa4d206b2f0607322b21cba6" - } - Frame { - msec: 4176 - hash: "ebd37ee719ca460480521fd4ec284a3f" - } - Frame { - msec: 4192 - hash: "6d278926822d044fff04c3f182dcb058" - } - Frame { - msec: 4208 - hash: "9aecb0c464fb140725f34ad94ede367a" - } - Frame { - msec: 4224 - hash: "b36f70f138e6deecf5b105bcd89d1a15" - } - Frame { - msec: 4240 - hash: "08c404f4efd27695071ad52fbfa57c0b" - } - Frame { - msec: 4256 - hash: "6469d0bee7ab280639b565ebf174f251" - } - Frame { - msec: 4272 - hash: "be5e44f6b9978ba3b9ae878ae5758a96" - } - Frame { - msec: 4288 - hash: "5214e578bc78b729ddf35c140093c0da" - } - Frame { - msec: 4304 - hash: "dd25ffb9a6bf009139b2942f9cc1f8e7" - } - Frame { - msec: 4320 - hash: "2ddf31aeac4815be56848703a9b5aa14" - } - Frame { - msec: 4336 - hash: "86922e71c80976ef3aa2cab18f86c010" - } - Frame { - msec: 4352 - hash: "d8415ba4fb19b62b838ef2e09ae7607a" - } - Frame { - msec: 4368 - hash: "0fdfb5f9463def560da6c19acf96bafb" - } - Frame { - msec: 4384 - hash: "68fac60713af7cb130e92fa381be411c" - } - Frame { - msec: 4400 - hash: "df3fd60ecbd517879e00e8112c49bed4" - } - Frame { - msec: 4416 - hash: "64e49282d97ba864d2f6be632ae048e4" - } - Frame { - msec: 4432 - hash: "346e7f597cfb4fc51d5393e705deddd5" - } - Frame { - msec: 4448 - hash: "f302a9ce45187ff1001c967a4c753b2b" - } - Frame { - msec: 4464 - hash: "def9383a090e4454343725f1a7c4fb3d" - } - Frame { - msec: 4480 - hash: "fd177a7ae3b5b9205fd38e955be327e0" - } - Frame { - msec: 4496 - hash: "1eea7eb2853a9e7a1a69738667457b7a" - } - Frame { - msec: 4512 - hash: "32b16dd62ccf06e44be38fd5885f297e" - } - Frame { - msec: 4528 - hash: "2a6b8aecef26793e200993dc1e25fd95" - } - Frame { - msec: 4544 - hash: "8637606843905d6ae3f95fcb745f2a6e" - } - Frame { - msec: 4560 - hash: "1a7a81f851c8817cac3cc0cb7ac07971" - } - Frame { - msec: 4576 - hash: "704ca30ddc0a637f3d1cd4926a6f7983" - } - Frame { - msec: 4592 - hash: "d1c02f3ce4bcc96e0c3d2503a0e9aa48" - } - Frame { - msec: 4608 - hash: "7759418b4fe412857ab8e7294f5a3206" - } - Frame { - msec: 4624 - hash: "3e6a6f505aa146a6789434d265ad4d3b" - } - Frame { - msec: 4640 - hash: "3e6089b47573cd53b0a220275202c80b" - } - Frame { - msec: 4656 - hash: "53bd2c46e3a11db0ee151a6a0311b3a8" - } - Frame { - msec: 4672 - hash: "f30202ae354a587c5949a16c1f8b95c3" - } - Frame { - msec: 4688 - hash: "66f78a34fe9d297af1ae8e98f84ead55" - } - Frame { - msec: 4704 - hash: "3e2fc29876812fe57ea008a71db299a4" - } - Frame { - msec: 4720 - hash: "7234b6df2220e418ef8ebe8f1c82bf26" - } - Frame { - msec: 4736 - hash: "82dd491c3b34e702a24ece8e55761a6f" - } - Frame { - msec: 4752 - hash: "d7f1065f5c42088dfc5ce36687fd8010" - } - Frame { - msec: 4768 - hash: "15bfbb0261b66ccbe3b34d0ac807165c" - } - Frame { - msec: 4784 - hash: "69963ce07eb434d787588b21fd020fa3" - } - Frame { - msec: 4800 - hash: "2fb9e078573ebd1a5cf0f615c97f1d20" - } - Frame { - msec: 4816 - image: "loop.5.png" - } - Frame { - msec: 4832 - hash: "0f9ed8cd5cfbdab03bcb05cf6dd92620" - } - Frame { - msec: 4848 - hash: "a0e737132ae642c465e991e770ab3e34" - } - Frame { - msec: 4864 - hash: "d57cc5045f01ab4e7eb72575aef22a10" - } - Frame { - msec: 4880 - hash: "d57e1a10e48938e1f7fc219220fe1204" - } - Frame { - msec: 4896 - hash: "df41be1fa564353ceb2088af209610d3" - } - Frame { - msec: 4912 - hash: "2d294613ed10dfdbca829b43b6990574" - } - Frame { - msec: 4928 - hash: "0a278a4ec3626442c94ef2da30771171" - } - Frame { - msec: 4944 - hash: "7071526c830fdfde9d520ad1578d27a8" - } - Frame { - msec: 4960 - hash: "ad02e7b90f223d3fc5a433bc4ffbee9e" - } - Frame { - msec: 4976 - hash: "e7ef412697c7df3887980ed1b079ffd5" - } - Frame { - msec: 4992 - hash: "ebda21f95079b37f4862b42523bbc1c0" - } - Frame { - msec: 5008 - hash: "6e8889e9b44ff8ed44e228d97fb5034c" - } - Frame { - msec: 5024 - hash: "f32aceabb929471dffd73bf0290e75a2" - } - Frame { - msec: 5040 - hash: "9112838cc8f9a0cfb94e0ef6ca7eca71" - } - Frame { - msec: 5056 - hash: "53bd2c46e3a11db0ee151a6a0311b3a8" - } - Frame { - msec: 5072 - hash: "d5105f958a592324e53aae4a83beb049" - } - Frame { - msec: 5088 - hash: "862249432e6fc6114b63284ad9c97cb6" - } - Frame { - msec: 5104 - hash: "3e6a6f505aa146a6789434d265ad4d3b" - } - Frame { - msec: 5120 - hash: "0f5b2b05f72b86bd2b0a6d0ea2b6bf37" - } - Frame { - msec: 5136 - hash: "922520f7ec954d6d1061208cbd63877e" - } - Frame { - msec: 5152 - hash: "d1c02f3ce4bcc96e0c3d2503a0e9aa48" - } - Frame { - msec: 5168 - hash: "ebb41112b687ecb062dedc3b49cb93fc" - } - Frame { - msec: 5184 - hash: "7bc87d71d532aa52abc26ac9c1cbb665" - } - Frame { - msec: 5200 - hash: "1a7a81f851c8817cac3cc0cb7ac07971" - } - Frame { - msec: 5216 - hash: "ca17c870c55f2947bb5f85d28f30ee7c" - } - Frame { - msec: 5232 - hash: "48b123cfd6d2ea1c2bc9f2ba822ec7bf" - } - Frame { - msec: 5248 - hash: "2a6b8aecef26793e200993dc1e25fd95" - } - Frame { - msec: 5264 - hash: "f10a0a11ed54a910fe434311f67343a4" - } - Frame { - msec: 5280 - hash: "47b6e1beabdcd3cd3d21d77c62e5bed8" - } - Frame { - msec: 5296 - hash: "1eea7eb2853a9e7a1a69738667457b7a" - } - Frame { - msec: 5312 - hash: "9e018f9e7a5ba22bbb9be3049373124a" - } - Frame { - msec: 5328 - hash: "d63069a8e7b0eb5611cc34caaecef2fb" - } - Frame { - msec: 5344 - hash: "def9383a090e4454343725f1a7c4fb3d" - } - Frame { - msec: 5360 - hash: "fd3036e559fd31eeadb0032666a95864" - } - Frame { - msec: 5376 - hash: "cf9f82b9e2a03f63f75b6ac113b3d4e5" - } - Frame { - msec: 5392 - hash: "346e7f597cfb4fc51d5393e705deddd5" - } - Frame { - msec: 5408 - hash: "0d6d6cb2ca808f5a57acfa32e10fc335" - } - Frame { - msec: 5424 - hash: "9a660a0fed41211a37d3ac82be40f81a" - } - Frame { - msec: 5440 - hash: "df3fd60ecbd517879e00e8112c49bed4" - } - Frame { - msec: 5456 - hash: "cd86fe5894e5d061f7ffe37913f00ce6" - } - Frame { - msec: 5472 - hash: "a5fdb825c18d43f3ae18f5c28e715174" - } - Frame { - msec: 5488 - hash: "0fdfb5f9463def560da6c19acf96bafb" - } - Frame { - msec: 5504 - hash: "8849a36af064503dbccad69a35b6ab03" - } - Frame { - msec: 5520 - hash: "baeb4f90b0e2efc09225dbb5dd003e9e" - } - Frame { - msec: 5536 - hash: "86922e71c80976ef3aa2cab18f86c010" - } - Frame { - msec: 5552 - hash: "10d166d7da9949370a66251415522186" - } - Frame { - msec: 5568 - hash: "ada1608055b221dc9f1f7650a9764930" - } - Frame { - msec: 5584 - hash: "dd25ffb9a6bf009139b2942f9cc1f8e7" - } - Frame { - msec: 5600 - hash: "dc4a1c44d08328965b53ff079a8fa57b" - } - Frame { - msec: 5616 - hash: "d3d88cf635ba38e5035732cb36014417" - } - Frame { - msec: 5632 - hash: "be5e44f6b9978ba3b9ae878ae5758a96" - } - Frame { - msec: 5648 - hash: "34f193daf199ab45310be2b407499e57" - } - Frame { - msec: 5664 - hash: "d87c854e1c16642dba0d87e25f0e416f" - } - Frame { - msec: 5680 - hash: "08c404f4efd27695071ad52fbfa57c0b" - } - Frame { - msec: 5696 - hash: "84828f8e0cace1a39d9b7f19b6e4cbaa" - } - Frame { - msec: 5712 - hash: "8a0c6e1f597e699c3e2be816ae4e1dd4" - } - Frame { - msec: 5728 - hash: "9aecb0c464fb140725f34ad94ede367a" - } - Frame { - msec: 5744 - hash: "a298b3ab2939819ced7e7f903ec63be4" - } - Frame { - msec: 5760 - hash: "99789b6e168355a3960986c7d1f21f82" - } - Frame { - msec: 5776 - image: "loop.6.png" - } - Frame { - msec: 5792 - hash: "9c9b3fb5b623d3deaf9920c99279d71b" - } - Frame { - msec: 5808 - hash: "8f0be6d4d6fd7f66a43fd604e17717dd" - } - Frame { - msec: 5824 - hash: "854defd35cf3315e4501583756814ff6" - } - Frame { - msec: 5840 - hash: "fd7157aef6dfb303472cd33b176f91d8" - } - Frame { - msec: 5856 - hash: "e6521a3c74c190c193af2c913e5326e2" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/loop/loop.qml b/tests/auto/declarative/qmlvisual/animation/loop/loop.qml deleted file mode 100644 index 6f62582..0000000 --- a/tests/auto/declarative/qmlvisual/animation/loop/loop.qml +++ /dev/null @@ -1,24 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: wrapper - width: 600 - height: 100 - - Rectangle { - id: redRect - width: 100; height: 100 - color: Qt.rgba(1,0,0) - /* This should produce an animation that starts at 0, animates smoothly - to 100, jumps to 200, animates smoothly to 400, animates smoothly - back to 100, jumps to 200, and so on. - */ - SequentialAnimation on x { - loops: Animation.Infinite - NumberAnimation { to: 100; duration: 1000 } - NumberAnimation { from: 200; to: 400; duration: 1000 } - } - - } - -} diff --git a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.0.png b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.0.png deleted file mode 100644 index a45e421..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml deleted file mode 100644 index f4991cc..0000000 --- a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/data/parallelAnimation-visual.qml +++ /dev/null @@ -1,243 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "parallelAnimation-visual.0.png" - } - Frame { - msec: 32 - hash: "d5eb647077598cab2f3d0c016fbbb419" - } - Frame { - msec: 48 - hash: "d5eb647077598cab2f3d0c016fbbb419" - } - Frame { - msec: 64 - hash: "d5eb647077598cab2f3d0c016fbbb419" - } - Frame { - msec: 80 - hash: "d5eb647077598cab2f3d0c016fbbb419" - } - Frame { - msec: 96 - hash: "d5eb647077598cab2f3d0c016fbbb419" - } - Frame { - msec: 112 - hash: "d5eb647077598cab2f3d0c016fbbb419" - } - Frame { - msec: 128 - hash: "d5eb647077598cab2f3d0c016fbbb419" - } - Frame { - msec: 144 - hash: "aa22c670b17a7372732f9bc85e41a082" - } - Frame { - msec: 160 - hash: "19d09945e45f74d1edd9935e855369b3" - } - Frame { - msec: 176 - hash: "ed391a3b7eba8e98d2f8e372f42e9210" - } - Frame { - msec: 192 - hash: "ac3f7547a9576e0a313e7060ed7431e9" - } - Frame { - msec: 208 - hash: "ddf41ca7289f44990d0d6d41a838bd6f" - } - Frame { - msec: 224 - hash: "42eb324d288b39fa32bf11795d6633f6" - } - Frame { - msec: 240 - hash: "8447851893d2d8f5661731761b6702fa" - } - Frame { - msec: 256 - hash: "7d86bc9b509bcd45eebf2c7e70151424" - } - Frame { - msec: 272 - hash: "c33a6731151fbce1156888129d53b8ec" - } - Frame { - msec: 288 - hash: "028cd521f75d3ecc810a0baa2e857441" - } - Frame { - msec: 304 - hash: "58e565d78d68a69b864c1d7bb8d6180f" - } - Frame { - msec: 320 - hash: "7f21037b48949c2086e7692723a90abf" - } - Frame { - msec: 336 - hash: "5c5c9101a0594bae2f5f8c5bb534a931" - } - Frame { - msec: 352 - hash: "8c010e7bd746d3865e283cc9f5fb83b7" - } - Frame { - msec: 368 - hash: "0a2b5c4aa4e8ca8b264c774e4cc90f23" - } - Frame { - msec: 384 - hash: "bf18f1e0102f471773de1cbb0b24bfc3" - } - Frame { - msec: 400 - hash: "bc8e1d5a6d38e38284313ede359582bc" - } - Frame { - msec: 416 - hash: "3a34e518882bd28d11ebdd1646737a8b" - } - Frame { - msec: 432 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 448 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 464 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 480 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 496 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 512 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 528 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 544 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 560 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 576 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 592 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 608 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 624 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 640 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 656 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 672 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 688 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 704 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 720 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 736 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 752 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 768 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 784 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 800 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 816 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 832 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 848 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 864 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 880 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 896 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 912 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 928 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } - Frame { - msec: 944 - hash: "df113cd7cd502c0ae8cb2dd0f0c209a0" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml deleted file mode 100644 index 6974adb..0000000 --- a/tests/auto/declarative/qmlvisual/animation/parallelAnimation/parallelAnimation-visual.qml +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 1.0 - -/* - This test verifies that a single animation animating two properties is visually the same as two - animations in a parallel group animating the same properties. Visually, you should see a red - rectangle at 0,0 stretching from the top of the window to the bottom. This rect will be moved to - the right side of the window while turning purple. If the bottom half is visually different - than the top half, there is a problem. -*/ - -Rectangle { - width: 200; height: 100 - Rectangle { - id: redRect - width: 50; height: 50 - color: "red" - } - Rectangle { - id: redRect2 - width: 50; height: 50 - y: 50 - color: "red" - } - - Timer{ - interval: 100 - running: true - onTriggered: parent.state = "state1" - } - - states: State { - name: "state1" - PropertyChanges { - target: redRect - x: 150 - color: "purple" - } - PropertyChanges { - target: redRect2 - x: 150 - color: "purple" - } - } - - transitions: Transition { - PropertyAnimation { targets: redRect; properties: "x,color"; duration: 300 } - ParallelAnimation { - NumberAnimation { targets: redRect2; properties: "x"; duration: 300 } - ColorAnimation { targets: redRect2; properties: "color"; duration: 300 } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.0.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.0.png deleted file mode 100644 index 41d51da..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.1.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.1.png deleted file mode 100644 index 953e8bd..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.2.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.2.png deleted file mode 100644 index b311ae1..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.3.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.3.png deleted file mode 100644 index 41d51da..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.4.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.4.png deleted file mode 100644 index 5b68a73..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml deleted file mode 100644 index 4296883..0000000 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation/data/parentAnimation-visual.qml +++ /dev/null @@ -1,1223 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "parentAnimation-visual.0.png" - } - Frame { - msec: 32 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 48 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 64 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 80 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 96 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 112 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 128 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 144 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 160 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 176 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 192 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 208 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 224 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 240 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 256 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 272 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 288 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 304 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 320 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 336 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 352 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 368 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 384 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 400 - hash: "234b795b5dd412e4397f132f03f38175" - } - Frame { - msec: 416 - hash: "eca09aebcc15501fd348b9eb19b54ee2" - } - Frame { - msec: 432 - hash: "6ab63f771ac705439157cf0ed84bc274" - } - Frame { - msec: 448 - hash: "42212db87d03c35e96e38ac200bd9ec2" - } - Frame { - msec: 464 - hash: "46a79ff030b89a4c8791fd853a96b64f" - } - Frame { - msec: 480 - hash: "cdfee36535e491328f5045b6f3378b64" - } - Frame { - msec: 496 - hash: "5cfc7db34110aa39f296fe4475de0c08" - } - Frame { - msec: 512 - hash: "df59e3aa557a661ce513523c3059c41d" - } - Frame { - msec: 528 - hash: "2d2f8fc7d695bcd20ef682b25a22186a" - } - Frame { - msec: 544 - hash: "daac5f2d4b451501669a7767d0a19ccc" - } - Frame { - msec: 560 - hash: "e10801e6c7086eac3eaaa48a3d39bb95" - } - Frame { - msec: 576 - hash: "a5fdf57b20bf4d4aad99f02a13bbfc66" - } - Frame { - msec: 592 - hash: "b48721b169b4a1118b040a9e41c252a1" - } - Frame { - msec: 608 - hash: "242425f06d5706f0483e49812bfb4718" - } - Frame { - msec: 624 - hash: "33bdd4d71b1736055d821ee5040bfaed" - } - Frame { - msec: 640 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 656 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 672 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 688 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 704 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 720 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 736 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 752 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 768 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 784 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 800 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 816 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 832 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 848 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 864 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 880 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 896 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 912 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 928 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 944 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 960 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 976 - image: "parentAnimation-visual.1.png" - } - Frame { - msec: 992 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1008 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1024 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1040 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1056 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1072 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1088 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1104 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1120 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1136 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1152 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 1168 - hash: "b985be8701f0bbb73facfe745d43e32f" - } - Frame { - msec: 1184 - hash: "6b3e91ff248516656fd2efe26db6c900" - } - Frame { - msec: 1200 - hash: "40bd9296de59b3abc5b7a204a6ecff3f" - } - Frame { - msec: 1216 - hash: "615817b53baf0d0cd290b18ad9deee4d" - } - Frame { - msec: 1232 - hash: "c990d9afcebfc4dcc35457d555d7e9cb" - } - Frame { - msec: 1248 - hash: "2d1a4687abe3fd7b1911f8e5020c4378" - } - Frame { - msec: 1264 - hash: "b5e1399f1924dafa6782da6b739af882" - } - Frame { - msec: 1280 - hash: "8686a36600410f4f39f558eadfb3479f" - } - Frame { - msec: 1296 - hash: "39f1f7573198f86e1452211f62dc7f1a" - } - Frame { - msec: 1312 - hash: "fbfbbcb5637c0f90396150abb0aecb14" - } - Frame { - msec: 1328 - hash: "2c071570228d5a121a64c4c01c443ab2" - } - Frame { - msec: 1344 - hash: "4e076ea1d8f566eca9aa5eb55ce02098" - } - Frame { - msec: 1360 - hash: "72fd6c15e76fd6d74a9584be1e82399b" - } - Frame { - msec: 1376 - hash: "b519ad1958ea69fc4682c06e83f22c42" - } - Frame { - msec: 1392 - hash: "155b39717f45fe5d36348c499635e759" - } - Frame { - msec: 1408 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1424 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1440 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1456 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1472 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1488 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1504 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1520 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1536 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1552 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1568 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1584 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1600 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1616 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1632 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1648 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1664 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 1696 - hash: "234b795b5dd412e4397f132f03f38175" - } - Frame { - msec: 1712 - hash: "eca09aebcc15501fd348b9eb19b54ee2" - } - Frame { - msec: 1728 - hash: "6ab63f771ac705439157cf0ed84bc274" - } - Frame { - msec: 1744 - hash: "42212db87d03c35e96e38ac200bd9ec2" - } - Frame { - msec: 1760 - hash: "46a79ff030b89a4c8791fd853a96b64f" - } - Frame { - msec: 1776 - hash: "cdfee36535e491328f5045b6f3378b64" - } - Frame { - msec: 1792 - hash: "5cfc7db34110aa39f296fe4475de0c08" - } - Frame { - msec: 1808 - hash: "df59e3aa557a661ce513523c3059c41d" - } - Frame { - msec: 1824 - hash: "2d2f8fc7d695bcd20ef682b25a22186a" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1840 - hash: "2d2f8fc7d695bcd20ef682b25a22186a" - } - Frame { - msec: 1856 - hash: "f611eb7652ce078c81dba533c6c0df5e" - } - Frame { - msec: 1872 - hash: "2a4f853f3eeef5cbacc8fdacfdab3442" - } - Frame { - msec: 1888 - hash: "86a201ea5c4af2a28b4047c0732d33c8" - } - Frame { - msec: 1904 - hash: "e87f15694846a75ff3801aff063d35c7" - } - Frame { - msec: 1920 - hash: "c3d42dd4ae49a843f32a3dcc818d0b68" - } - Frame { - msec: 1936 - image: "parentAnimation-visual.2.png" - } - Frame { - msec: 1952 - hash: "46a79ff030b89a4c8791fd853a96b64f" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "46a79ff030b89a4c8791fd853a96b64f" - } - Frame { - msec: 1984 - hash: "079898fb015f88ba9d7cd73f356d2c37" - } - Frame { - msec: 2000 - hash: "5d03ca6d09d241bd686c878d53d9f269" - } - Frame { - msec: 2016 - hash: "d986a00663eb3dafb24bf67b3d6c7a04" - } - Frame { - msec: 2032 - hash: "4e609d8b8921428909a5b78ea1db78b9" - } - Frame { - msec: 2048 - hash: "f611eb7652ce078c81dba533c6c0df5e" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2064 - hash: "f611eb7652ce078c81dba533c6c0df5e" - } - Frame { - msec: 2080 - hash: "2a4f853f3eeef5cbacc8fdacfdab3442" - } - Frame { - msec: 2096 - hash: "86a201ea5c4af2a28b4047c0732d33c8" - } - Frame { - msec: 2112 - hash: "2d498b4b440cd6bce6e02102dc62996d" - } - Frame { - msec: 2128 - hash: "53c55f9fc1aab5f4c552387e8cae749e" - } - Frame { - msec: 2144 - hash: "8d188a1ab2be377198142f3037d15fc3" - } - Frame { - msec: 2160 - hash: "66550b5102e2803fb3cbd85f4b2543e0" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2176 - hash: "66550b5102e2803fb3cbd85f4b2543e0" - } - Frame { - msec: 2192 - hash: "e495d8163793da7503b9d29c6721ff6e" - } - Frame { - msec: 2208 - hash: "065e5775930146539ae589782f4e4352" - } - Frame { - msec: 2224 - hash: "7861ff76ec52f1c0408636f7b53b30b6" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2240 - hash: "7861ff76ec52f1c0408636f7b53b30b6" - } - Frame { - msec: 2256 - hash: "e87f15694846a75ff3801aff063d35c7" - } - Frame { - msec: 2272 - hash: "67edcabe94a3968bbfe3dd1b0b2cd273" - } - Frame { - msec: 2288 - hash: "a0f8e97d347970aca868538f4294a7ce" - } - Frame { - msec: 2304 - hash: "c89421473e754235e209f35dea9afccb" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2320 - hash: "c89421473e754235e209f35dea9afccb" - } - Frame { - msec: 2336 - hash: "cdfee36535e491328f5045b6f3378b64" - } - Frame { - msec: 2352 - hash: "ab31653cb8a31f753782ffff045e2b07" - } - Frame { - msec: 2368 - hash: "86a201ea5c4af2a28b4047c0732d33c8" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2384 - hash: "86a201ea5c4af2a28b4047c0732d33c8" - } - Frame { - msec: 2400 - hash: "4bdc37cd35c71d8a25745cb0ff664fea" - } - Frame { - msec: 2416 - hash: "5d03ca6d09d241bd686c878d53d9f269" - } - Frame { - msec: 2432 - hash: "700ff7c6c4ae97b34309bd020807a0e1" - } - Frame { - msec: 2448 - hash: "e812a79fb65142f6855974f87aabdc90" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2464 - hash: "e812a79fb65142f6855974f87aabdc90" - } - Frame { - msec: 2480 - hash: "795809181debf916afbef73c41a66dee" - } - Frame { - msec: 2496 - hash: "b61c0e25fa9f3c15f1caf91c25937d75" - } - Frame { - msec: 2512 - hash: "9dd01662ee9d0add862b3afadac72929" - } - Frame { - msec: 2528 - hash: "0a96c8fec8f6509dbbe16480fe8ebfb7" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2544 - hash: "0a96c8fec8f6509dbbe16480fe8ebfb7" - } - Frame { - msec: 2560 - hash: "ce67814de0091d5ab5cc2172a830bc93" - } - Frame { - msec: 2576 - hash: "d986a00663eb3dafb24bf67b3d6c7a04" - } - Frame { - msec: 2592 - hash: "69e21aefb8bdbfaaa5e1e7969d827ec3" - } - Frame { - msec: 2608 - hash: "cdfee36535e491328f5045b6f3378b64" - } - Frame { - msec: 2624 - hash: "cdb20c4866bdf55bd454864a31676053" - } - Frame { - msec: 2640 - hash: "46a79ff030b89a4c8791fd853a96b64f" - } - Frame { - msec: 2656 - hash: "c2535eb78e0cf46151f15cd2ec7c4838" - } - Frame { - msec: 2672 - hash: "7a1455f07b916a63e43b89da4311a033" - } - Frame { - msec: 2688 - hash: "f9a2c0ef913ecd7026d9775648a063d6" - } - Frame { - msec: 2704 - hash: "5da8f6f7d847c174da393015dfc33537" - } - Frame { - msec: 2720 - hash: "1d5f20cb721f1e5cb067095bee1b51fe" - } - Frame { - msec: 2736 - hash: "ca7f5fa76264d1eb1182e46e371ee81c" - } - Frame { - msec: 2752 - hash: "2467dc0ffdb051e092c5bfd5d371e6b6" - } - Frame { - msec: 2768 - hash: "0b04e516eb08978914c39ec2d742e161" - } - Frame { - msec: 2784 - hash: "5abec56587da54876c204d2e32efe7ad" - } - Frame { - msec: 2800 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2816 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2832 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2848 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2864 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2880 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2896 - image: "parentAnimation-visual.3.png" - } - Frame { - msec: 2912 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2928 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2944 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2960 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2976 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 2992 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3008 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3024 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3040 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3056 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3072 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3088 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3104 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3120 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3136 - hash: "234b795b5dd412e4397f132f03f38175" - } - Frame { - msec: 3152 - hash: "eca09aebcc15501fd348b9eb19b54ee2" - } - Frame { - msec: 3168 - hash: "6ab63f771ac705439157cf0ed84bc274" - } - Frame { - msec: 3184 - hash: "42212db87d03c35e96e38ac200bd9ec2" - } - Frame { - msec: 3200 - hash: "46a79ff030b89a4c8791fd853a96b64f" - } - Frame { - msec: 3216 - hash: "cdfee36535e491328f5045b6f3378b64" - } - Frame { - msec: 3232 - hash: "5cfc7db34110aa39f296fe4475de0c08" - } - Frame { - msec: 3248 - hash: "df59e3aa557a661ce513523c3059c41d" - } - Frame { - msec: 3264 - hash: "2d2f8fc7d695bcd20ef682b25a22186a" - } - Frame { - msec: 3280 - hash: "daac5f2d4b451501669a7767d0a19ccc" - } - Frame { - msec: 3296 - hash: "e10801e6c7086eac3eaaa48a3d39bb95" - } - Frame { - msec: 3312 - hash: "a5fdf57b20bf4d4aad99f02a13bbfc66" - } - Frame { - msec: 3328 - hash: "b48721b169b4a1118b040a9e41c252a1" - } - Frame { - msec: 3344 - hash: "242425f06d5706f0483e49812bfb4718" - } - Frame { - msec: 3360 - hash: "33bdd4d71b1736055d821ee5040bfaed" - } - Frame { - msec: 3376 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3392 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3408 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3424 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3440 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3456 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3472 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3488 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3504 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3520 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3536 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3552 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3568 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3584 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3600 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3616 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3632 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3648 - hash: "dce97e76b2541bbee52b0df1c1bb3d44" - } - Frame { - msec: 3664 - hash: "b985be8701f0bbb73facfe745d43e32f" - } - Frame { - msec: 3680 - hash: "6b3e91ff248516656fd2efe26db6c900" - } - Frame { - msec: 3696 - hash: "40bd9296de59b3abc5b7a204a6ecff3f" - } - Frame { - msec: 3712 - hash: "615817b53baf0d0cd290b18ad9deee4d" - } - Frame { - msec: 3728 - hash: "c990d9afcebfc4dcc35457d555d7e9cb" - } - Frame { - msec: 3744 - hash: "2d1a4687abe3fd7b1911f8e5020c4378" - } - Frame { - msec: 3760 - hash: "b5e1399f1924dafa6782da6b739af882" - } - Frame { - msec: 3776 - hash: "8686a36600410f4f39f558eadfb3479f" - } - Frame { - msec: 3792 - hash: "39f1f7573198f86e1452211f62dc7f1a" - } - Frame { - msec: 3808 - hash: "fbfbbcb5637c0f90396150abb0aecb14" - } - Frame { - msec: 3824 - hash: "2c071570228d5a121a64c4c01c443ab2" - } - Frame { - msec: 3840 - hash: "4e076ea1d8f566eca9aa5eb55ce02098" - } - Frame { - msec: 3856 - image: "parentAnimation-visual.4.png" - } - Frame { - msec: 3872 - hash: "b519ad1958ea69fc4682c06e83f22c42" - } - Frame { - msec: 3888 - hash: "155b39717f45fe5d36348c499635e759" - } - Frame { - msec: 3904 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3920 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3936 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3952 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3968 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 3984 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4000 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4016 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4032 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4048 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4064 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4080 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4096 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4112 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4128 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4144 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4160 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4176 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4192 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4208 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4224 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4240 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4256 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4272 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4288 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4304 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4320 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4336 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4352 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4368 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4384 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4400 - hash: "fbf01bb217e393b79a6a2c567750de89" - } - Frame { - msec: 4416 - hash: "fbf01bb217e393b79a6a2c567750de89" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml deleted file mode 100644 index 025aa80..0000000 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation/parentAnimation-visual.qml +++ /dev/null @@ -1,68 +0,0 @@ -import QtQuick 1.0 - -/* -This test shows a green rectangle moving and growing from the upper-left corner -of the black rectangle to the same position as the red rectangle (it should end up -the same height as the red rect and twice as wide). There should be no odd jumps or clipping seen. - -The test shows one full transition (to the red and back), then several partial transitions, and -then a final full transition. -*/ - -Rectangle { - width: 400; - height: 240; - color: "black"; - - Rectangle { - id: gr - color: "green" - width: 50; height: 50 - } - - MouseArea { - id: mouser - anchors.fill: parent - } - - Rectangle { - id: np - x: 150 - width: 150; height: 150 - color: "yellow" - clip: true - Rectangle { - color: "red" - x: 50; y: 50; height: 50; width: 50 - } - - } - - Rectangle { - id: vp - x: 100; y: 100 - width: 50; height: 50 - color: "blue" - rotation: 45 - scale: 2 - } - - states: State { - name: "state1" - when: mouser.pressed - ParentChange { - target: gr - parent: np - x: 50; y: 50; width: 100; - } - } - - transitions: Transition { - reversible: true - to: "state1" - ParentAnimation { - target: gr; via: vp; - NumberAnimation { properties: "x,y,rotation,scale,width" } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.0.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.0.png deleted file mode 100644 index 03ae932..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.1.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.1.png deleted file mode 100644 index 175adc3..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.2.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.2.png deleted file mode 100644 index 4dbe6a4..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.3.png b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.3.png deleted file mode 100644 index b9ea6b8..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml deleted file mode 100644 index 1d7817b..0000000 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/data/parentAnimation2.qml +++ /dev/null @@ -1,1023 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "parentAnimation2.0.png" - } - Frame { - msec: 32 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 48 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 64 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 80 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 96 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 112 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 128 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 144 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 160 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 176 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 192 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 208 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 224 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 240 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 256 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 272 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 288 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 304 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 320 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 336 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 352 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 368 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 384 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 400 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 416 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 432 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 448 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 464 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 480 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 496 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 512 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 528 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 544 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 560 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 576 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 592 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 608 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 624 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 640 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 656 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 672 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 688 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 704 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 350; y: 182 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 720 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 736 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 752 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 768 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 784 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 800 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 350; y: 182 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 816 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 832 - hash: "9b524b546d250d239ea99dd3319f3d6a" - } - Frame { - msec: 848 - hash: "593300f166c2fd3c325cb35114ca595b" - } - Frame { - msec: 864 - hash: "4451e76e111c99faa77b5fff9a2642fa" - } - Frame { - msec: 880 - hash: "0b4a5675afba935e17eba19e29b709ee" - } - Frame { - msec: 896 - hash: "8682866f0234eebf25aca27a7737c777" - } - Frame { - msec: 912 - hash: "5b3b70dd366bb4c1b5e7d56ce50e59a6" - } - Frame { - msec: 928 - hash: "897394982c93ebcbea68c25cec6d47d3" - } - Frame { - msec: 944 - hash: "23c3c0383a517d33767adeebc53bfa3a" - } - Frame { - msec: 960 - hash: "5983f3e0800859134bff0182fe9e0142" - } - Frame { - msec: 976 - image: "parentAnimation2.1.png" - } - Frame { - msec: 992 - hash: "dbb9a5aa9f569b97711aa2c1f5ebda47" - } - Frame { - msec: 1008 - hash: "0a5a73409b019e650ea860e1a8e27328" - } - Frame { - msec: 1024 - hash: "496bd0d053522bcf71d506b497ede0d5" - } - Frame { - msec: 1040 - hash: "97a32b4a6c99ffe842c35e903bd23d79" - } - Frame { - msec: 1056 - hash: "496dfbbb0c0c28e108adf4c25341ef11" - } - Frame { - msec: 1072 - hash: "aa2e5eb88b1498f0d36897be2a36b0ff" - } - Frame { - msec: 1088 - hash: "0c6f7b54264ab36cfd5145fb7b30432f" - } - Frame { - msec: 1104 - hash: "797fc3ea1db51f12d900b4e0e4998065" - } - Frame { - msec: 1120 - hash: "2b076b8bc1ec1e2f21a4d7a77c94cfeb" - } - Frame { - msec: 1136 - hash: "8d5888ca1cfba19cea569bd38bada417" - } - Frame { - msec: 1152 - hash: "15ae94de5aa106eaa18d0faefa5d61f5" - } - Frame { - msec: 1168 - hash: "96e90d74d5a7788d5a6da6cfdb92b185" - } - Frame { - msec: 1184 - hash: "5698a5e9e628209fc28644198eac65da" - } - Frame { - msec: 1200 - hash: "074ac8f08de8f22c241e23ad8b89b0f0" - } - Frame { - msec: 1216 - hash: "a49fdf41e9ee1e5d764262d4585af2ff" - } - Frame { - msec: 1232 - hash: "accc9b6573a676a40fcf0129085f6fce" - } - Frame { - msec: 1248 - hash: "1cc956d55f0c382c2f74dcc05a05494f" - } - Frame { - msec: 1264 - hash: "38ff3121566b2c719f47d027fcef8b8e" - } - Frame { - msec: 1280 - hash: "4de97b3361a16ca1710f2e75d5c9de6f" - } - Frame { - msec: 1296 - hash: "dbd1455105630bb8f262140e79ceda1b" - } - Frame { - msec: 1312 - hash: "bcdac4ab71a29b78bfa756b56b8d8414" - } - Frame { - msec: 1328 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1344 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1360 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1376 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1392 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1408 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1424 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1440 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1456 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1472 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1488 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1504 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1520 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1536 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1552 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1568 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1584 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1600 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1616 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1632 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1648 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1664 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1680 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1696 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1712 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 415; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1728 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1744 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1760 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1776 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1792 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1808 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1824 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 415; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1840 - hash: "f02f73a85532c1dd403d64c50c7e73ca" - } - Frame { - msec: 1856 - hash: "b59fbcfb7db77cf30ea4ff039a9163ae" - } - Frame { - msec: 1872 - hash: "432a76f0663bfd35f6bbeb3fbeb91799" - } - Frame { - msec: 1888 - hash: "098e18005d3a2ff9095587954c92339c" - } - Frame { - msec: 1904 - hash: "069100bf4ec523a9e9d5bf557ffc51d1" - } - Frame { - msec: 1920 - hash: "3210f97ac2799d84fc1d872c4c2994f7" - } - Frame { - msec: 1936 - image: "parentAnimation2.2.png" - } - Frame { - msec: 1952 - hash: "79aa15dc74668d963f36f28524f4d091" - } - Frame { - msec: 1968 - hash: "6838cb2d728259adc8d91a4a69e35adf" - } - Frame { - msec: 1984 - hash: "3f73c720ce5f1e65fb8537a9beb66d26" - } - Frame { - msec: 2000 - hash: "95d990ccd3e45e780d875aae1f4654f8" - } - Frame { - msec: 2016 - hash: "5389a121571f61e73903305860e60016" - } - Frame { - msec: 2032 - hash: "66f0018b6f35c1c18b28f4959eef96a8" - } - Frame { - msec: 2048 - hash: "c0fa0560a9a5a0f773394c4fd98c9fa3" - } - Frame { - msec: 2064 - hash: "e2d665ae0ac3007520003bb4a24ca708" - } - Frame { - msec: 2080 - hash: "ab6e6976e4214c725f71a4f0ba6d3f68" - } - Frame { - msec: 2096 - hash: "642f48f731f896d0d4b66956485b615b" - } - Frame { - msec: 2112 - hash: "cdc36222978e4361dd3ddc2cba78328d" - } - Frame { - msec: 2128 - hash: "22fe869d83d9d290c4d1702e7553c7aa" - } - Frame { - msec: 2144 - hash: "3cf2b6a4fd5c73c24717a1ce901cfb19" - } - Frame { - msec: 2160 - hash: "ea7ecad2a9b7e6ca9a9d1c9c46e0f6dc" - } - Frame { - msec: 2176 - hash: "3a7e7e2145b40732ef4e18218a959536" - } - Frame { - msec: 2192 - hash: "1386046373ab246ae533aba206ffe502" - } - Frame { - msec: 2208 - hash: "2183072e2117c2bc660767bc67e6c355" - } - Frame { - msec: 2224 - hash: "659c6fedf573d19727f9852a9034e4fe" - } - Frame { - msec: 2240 - hash: "5be4e8fa87593aeb4d59768a61441c37" - } - Frame { - msec: 2256 - hash: "2030b883508d07735b20726d218fd751" - } - Frame { - msec: 2272 - hash: "fd70334fa8a1ff80369cce6aa69255c4" - } - Frame { - msec: 2288 - hash: "be666aafc8a3d2de9ffaff54d9ac15d1" - } - Frame { - msec: 2304 - hash: "3370f2246f679068e40cdb48c92decad" - } - Frame { - msec: 2320 - hash: "f0b4565fd441c071112bdc8225861f76" - } - Frame { - msec: 2336 - hash: "61babd82afc20a3023c2fe483a2e73cb" - } - Frame { - msec: 2352 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2368 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2384 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2400 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2416 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2432 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2448 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2464 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2480 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2496 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2512 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2528 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2544 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2560 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2576 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2592 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2608 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2624 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2640 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2656 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2672 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2688 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2704 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2720 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2736 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2752 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2768 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 207; y: 255 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2784 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2800 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2816 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2832 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2848 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2864 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2880 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2896 - image: "parentAnimation2.3.png" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 207; y: 255 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2912 - hash: "acab4a79f22ebc8a45759ae282e8f3db" - } - Frame { - msec: 2928 - hash: "608af88c841d6058c3304cc134de0187" - } - Frame { - msec: 2944 - hash: "96a727d6ff02c7baf85865fda9d871bd" - } - Frame { - msec: 2960 - hash: "22cacf109e40b457041d6c2862c4f97f" - } - Frame { - msec: 2976 - hash: "ea2a53381eef8ac75fce23c518f1e261" - } - Frame { - msec: 2992 - hash: "a719237e74e9c40b46cc1f27cca5e286" - } - Frame { - msec: 3008 - hash: "804ef3519ba9852afb0bd4ef793e0006" - } - Frame { - msec: 3024 - hash: "4abc5026f0de1165717bd14630c9d9f6" - } - Frame { - msec: 3040 - hash: "1e4dd04698691932725076073a0bd2e7" - } - Frame { - msec: 3056 - hash: "12aae9dcfd9597ce600588b19bdf5a7d" - } - Frame { - msec: 3072 - hash: "9176b69f7df68d860b7d7aecc2496f09" - } - Frame { - msec: 3088 - hash: "9cba95a510685ab6367ba87246f6c922" - } - Frame { - msec: 3104 - hash: "33ef448b9485fafb7a2af319f9f6e816" - } - Frame { - msec: 3120 - hash: "791760db748e46aceb9f469c33b7bf2f" - } - Frame { - msec: 3136 - hash: "201a00feef1bb445f2fd0ba8ef9467a1" - } - Frame { - msec: 3152 - hash: "6e8962c3cb522f5a45b093f1780d2dae" - } - Frame { - msec: 3168 - hash: "d75cb08203a4f2c05b4dfdca2196e3db" - } - Frame { - msec: 3184 - hash: "0417d681c9b64e2cc252ab6fcf20148b" - } - Frame { - msec: 3200 - hash: "85993e5a91a86cedb8c88819b035b6bb" - } - Frame { - msec: 3216 - hash: "d7a0db647e641df9625b8eb5078a8ec3" - } - Frame { - msec: 3232 - hash: "fa29824ed3fd3d4e0d8036079be6bcf8" - } - Frame { - msec: 3248 - hash: "4fc84a3ae74bb6ab7b0b846c8747eb54" - } - Frame { - msec: 3264 - hash: "a172921ffe15077382db8e8915fb340b" - } - Frame { - msec: 3280 - hash: "480ee71d2407d729814a2e19d4320c59" - } - Frame { - msec: 3296 - hash: "b8cf02a1ad96d5c3354f2b658085ed28" - } - Frame { - msec: 3312 - hash: "80fc0f57f58250f63a77b1988a9e1d2e" - } - Frame { - msec: 3328 - hash: "bc283b5d7c5b88ef447be5992a77b6a9" - } - Frame { - msec: 3344 - hash: "89c86df88dc1a3188d52c1f75b80ccf1" - } - Frame { - msec: 3360 - hash: "84148139d89b45949561321bd6f6c835" - } - Frame { - msec: 3376 - hash: "9118d6933b3f77e0b5b8da2d630152e8" - } - Frame { - msec: 3392 - hash: "2b5f746225053778fb07a606ff113e64" - } - Frame { - msec: 3408 - hash: "0a1ed1bea6ed674826d0a2c3146a1c31" - } - Frame { - msec: 3424 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3440 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3456 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3472 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3488 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3504 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3520 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3536 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3552 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3568 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3584 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3600 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3616 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3632 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3648 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3664 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3680 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3696 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3712 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3728 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3744 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3760 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3776 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3792 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3808 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3824 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } - Frame { - msec: 3840 - hash: "b3bfd7a06d3e246f4256ab5a267360b0" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml b/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml deleted file mode 100644 index f497943..0000000 --- a/tests/auto/declarative/qmlvisual/animation/parentAnimation2/parentAnimation2.qml +++ /dev/null @@ -1,64 +0,0 @@ -import QtQuick 1.0 - -/* -Blue rect fills (with 10px margin) screen, then red, then green, then screen again. -*/ - -Rectangle { - id: whiteRect - width: 640; height: 480; - - Rectangle { - id: redRect - x: 400; y: 50 - width: 100; height: 100 - color: "red" - } - - Rectangle { - id: greenRect - x: 100; y: 150 - width: 200; height: 300 - color: "green" - } - - Rectangle { - id: blueRect - x: 5; y: 5 - width: parent.width-10 - height: parent.height-10 - color: "lightblue" - - //Text { text: "Click me!"; anchors.centerIn: parent } - - MouseArea { - anchors.fill: parent - onClicked: { - switch(blueRect.state) { - case "": blueRect.state = "inRed"; break; - case "inRed": blueRect.state = "inGreen"; break; - case "inGreen": blueRect.state = ""; break; - } - } - } - - states: [ - State { - name: "inRed" - ParentChange { target: blueRect; parent: redRect; x: 5; y: 5; width: parent.width-10; height: parent.height-10 } - PropertyChanges { target: redRect; z: 1 } - }, - State { - name: "inGreen" - ParentChange { target: blueRect; parent: greenRect; x: 5; y: 5; width: parent.width-10; height: parent.height-10 } - PropertyChanges { target: greenRect; z: 1 } - } - ] - - transitions: Transition { - ParentAnimation { target: blueRect; //via: whiteRect; - NumberAnimation { properties: "x, y, width, height"; duration: 500 } - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.0.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.0.png deleted file mode 100644 index cb0971a..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.1.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.1.png deleted file mode 100644 index c579ded..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.2.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.2.png deleted file mode 100644 index 49e2b9f..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.3.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.3.png deleted file mode 100644 index cb0971a..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.4.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.4.png deleted file mode 100644 index e62485b..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.5.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.5.png deleted file mode 100644 index 61e7463..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.6.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.6.png deleted file mode 100644 index 8c31e7d..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml deleted file mode 100644 index 34deb9b..0000000 --- a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation-visual.qml +++ /dev/null @@ -1,1619 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "pauseAnimation-visual.0.png" - } - Frame { - msec: 32 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 48 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 64 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 80 - hash: "41ba853c3403f68a23e708df82e21c53" - } - Frame { - msec: 96 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 112 - hash: "336d31586171f22d541b989d24b95cbb" - } - Frame { - msec: 128 - hash: "6d63fb5c8a80f0280e88b2cdf8641bb9" - } - Frame { - msec: 144 - hash: "ef8941674cb61f54853dc33652bb854e" - } - Frame { - msec: 160 - hash: "b3f4a2165ec1ee971542b8ef89656cea" - } - Frame { - msec: 176 - hash: "af3120fe262d2489c0ed33fbbee1549f" - } - Frame { - msec: 192 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 208 - hash: "21f0b0437a999bbde66a913032d495c2" - } - Frame { - msec: 224 - hash: "0809d32d5bc1bfce199b1f39a1c68d4f" - } - Frame { - msec: 240 - hash: "022137587b39f5123835482178a1f1cf" - } - Frame { - msec: 256 - hash: "97566ce9558d13ea0780bce233097b27" - } - Frame { - msec: 272 - hash: "96d79b07da105b7f631ed61582b26f7e" - } - Frame { - msec: 288 - hash: "f4732ff2df93fe67cb850dec34184924" - } - Frame { - msec: 304 - hash: "054e6e52f74a3e24f04e6ad0071f79f8" - } - Frame { - msec: 320 - hash: "f541af93a9fde62e4bd1c91d30f91e65" - } - Frame { - msec: 336 - hash: "c4f844ee71f23635bb3ec7375f6a134f" - } - Frame { - msec: 352 - hash: "3e52e06db2bf78762bb9816fe6b105d9" - } - Frame { - msec: 368 - hash: "d9604be23a91327e6ab454609a9d4a13" - } - Frame { - msec: 384 - hash: "dc98a9bdd99367c1e9b838d4be489dcc" - } - Frame { - msec: 400 - hash: "e87b00bfc2c2a75a4234ec02a057ad3a" - } - Frame { - msec: 416 - hash: "5be4f5c67941efb6fcea363c79f1e321" - } - Frame { - msec: 432 - hash: "6cc9de62a0c8fa5e42eac1b01e99ac32" - } - Frame { - msec: 448 - hash: "62a7133012348f2ec3a388fb685ecc3f" - } - Frame { - msec: 464 - hash: "4ac43a03cc6f2020ab5f894d704092ac" - } - Frame { - msec: 480 - hash: "c1a7b7d6d64ac5584c073c2881290696" - } - Frame { - msec: 496 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 512 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 528 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 544 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 560 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 576 - hash: "c1a7b7d6d64ac5584c073c2881290696" - } - Frame { - msec: 592 - hash: "c1a7b7d6d64ac5584c073c2881290696" - } - Frame { - msec: 608 - hash: "4ac43a03cc6f2020ab5f894d704092ac" - } - Frame { - msec: 624 - hash: "4ac43a03cc6f2020ab5f894d704092ac" - } - Frame { - msec: 640 - hash: "ffd39c1122fe2f7877ef30591b539b40" - } - Frame { - msec: 656 - hash: "62a7133012348f2ec3a388fb685ecc3f" - } - Frame { - msec: 672 - hash: "45281a70021f81dbef30334b1480da1b" - } - Frame { - msec: 688 - hash: "6cc9de62a0c8fa5e42eac1b01e99ac32" - } - Frame { - msec: 704 - hash: "79ec710576427df73dd03f39fba6e2eb" - } - Frame { - msec: 720 - hash: "5be4f5c67941efb6fcea363c79f1e321" - } - Frame { - msec: 736 - hash: "7d9096b1eb940c82a37baf39ef3ccf3e" - } - Frame { - msec: 752 - hash: "e87b00bfc2c2a75a4234ec02a057ad3a" - } - Frame { - msec: 768 - hash: "da60100dc55023c3bab367d97c8f6a85" - } - Frame { - msec: 784 - hash: "dc98a9bdd99367c1e9b838d4be489dcc" - } - Frame { - msec: 800 - hash: "3f869538028a09020d5e8f528f4fb119" - } - Frame { - msec: 816 - hash: "9650fd0364c01b11e4f5dcce51d008af" - } - Frame { - msec: 832 - hash: "2cb09d9655ecc30ae6a591b28c0d355c" - } - Frame { - msec: 848 - hash: "4db9bc6c11caf1d77794c2eabb62a44e" - } - Frame { - msec: 864 - hash: "ce2b5dd7418868acf86fea6ad19cc0c5" - } - Frame { - msec: 880 - hash: "7c27ef654e645679c90520d6cf00b0c4" - } - Frame { - msec: 896 - hash: "ab3e211df3ef7f5f7a8d712edc891c0f" - } - Frame { - msec: 912 - hash: "19d2ae617a49b57dd012677e2834469c" - } - Frame { - msec: 928 - hash: "5025eb75c88f0760f637e0342b7f88a2" - } - Frame { - msec: 944 - hash: "005acbef952a8ee536e6308a48223e65" - } - Frame { - msec: 960 - hash: "f1e0301430d153fb9d15eaffdfcd5c58" - } - Frame { - msec: 976 - image: "pauseAnimation-visual.1.png" - } - Frame { - msec: 992 - hash: "bcc35497884c158396c7f60759d1fda4" - } - Frame { - msec: 1008 - hash: "7a4528b000a4ea142d1c77407fa1f581" - } - Frame { - msec: 1024 - hash: "ba967a7d810a4531e577e5f6bd2def33" - } - Frame { - msec: 1040 - hash: "f5afd9cf8ffe27e9992454b9e68688cb" - } - Frame { - msec: 1056 - hash: "51d475c7f64a86d3a18fb115297a7b6b" - } - Frame { - msec: 1072 - hash: "49f5d6fd45c195a8d245b7fefc1277ab" - } - Frame { - msec: 1088 - hash: "f9b0b278659e3a0f78611e6b7f0f2176" - } - Frame { - msec: 1104 - hash: "0809d32d5bc1bfce199b1f39a1c68d4f" - } - Frame { - msec: 1120 - hash: "b7208d103b63a936dff8dd8ed224237f" - } - Frame { - msec: 1136 - hash: "a57c81049b0dc68090ec7c3327b9922c" - } - Frame { - msec: 1152 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 1168 - hash: "af3120fe262d2489c0ed33fbbee1549f" - } - Frame { - msec: 1184 - hash: "0c20d12464abbdc45041ea5d9f2719b1" - } - Frame { - msec: 1200 - hash: "dd60cbaff6f34027474e92315dbc0ebc" - } - Frame { - msec: 1216 - hash: "336d31586171f22d541b989d24b95cbb" - } - Frame { - msec: 1232 - hash: "41ba853c3403f68a23e708df82e21c53" - } - Frame { - msec: 1248 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 1264 - hash: "41ba853c3403f68a23e708df82e21c53" - } - Frame { - msec: 1280 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 1296 - hash: "336d31586171f22d541b989d24b95cbb" - } - Frame { - msec: 1312 - hash: "f0d8132489c2f2ef760e905b3c093726" - } - Frame { - msec: 1328 - hash: "6d63fb5c8a80f0280e88b2cdf8641bb9" - } - Frame { - msec: 1344 - hash: "dd60cbaff6f34027474e92315dbc0ebc" - } - Frame { - msec: 1360 - hash: "ef8941674cb61f54853dc33652bb854e" - } - Frame { - msec: 1376 - hash: "bc426fb7c31751665b0d3f16e2cb0173" - } - Frame { - msec: 1392 - hash: "0c20d12464abbdc45041ea5d9f2719b1" - } - Frame { - msec: 1408 - hash: "53ae93140252373eaa4d9da73756bd8e" - } - Frame { - msec: 1424 - hash: "721d7061811b5439c2e8e395917494bc" - } - Frame { - msec: 1440 - hash: "af3120fe262d2489c0ed33fbbee1549f" - } - Frame { - msec: 1456 - hash: "a8b624ebfc9ab713d1ce55f318a6e90d" - } - Frame { - msec: 1472 - hash: "a88a8129259f86df5a73addc3649ad37" - } - Frame { - msec: 1488 - hash: "a88a8129259f86df5a73addc3649ad37" - } - Frame { - msec: 1504 - hash: "3db5e30ef19ea693c21ccf72892c4390" - } - Frame { - msec: 1520 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 1536 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 1552 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 1568 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 1584 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 1600 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 1616 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 1632 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 1648 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 1664 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 1680 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 1696 - hash: "3db5e30ef19ea693c21ccf72892c4390" - } - Frame { - msec: 1712 - hash: "3db5e30ef19ea693c21ccf72892c4390" - } - Frame { - msec: 1728 - hash: "a88a8129259f86df5a73addc3649ad37" - } - Frame { - msec: 1744 - hash: "a8b624ebfc9ab713d1ce55f318a6e90d" - } - Frame { - msec: 1760 - hash: "a8b624ebfc9ab713d1ce55f318a6e90d" - } - Frame { - msec: 1776 - hash: "af3120fe262d2489c0ed33fbbee1549f" - } - Frame { - msec: 1792 - hash: "721d7061811b5439c2e8e395917494bc" - } - Frame { - msec: 1808 - hash: "b3f4a2165ec1ee971542b8ef89656cea" - } - Frame { - msec: 1824 - hash: "0c20d12464abbdc45041ea5d9f2719b1" - } - Frame { - msec: 1840 - hash: "bc426fb7c31751665b0d3f16e2cb0173" - } - Frame { - msec: 1856 - hash: "ef8941674cb61f54853dc33652bb854e" - } - Frame { - msec: 1872 - hash: "dd60cbaff6f34027474e92315dbc0ebc" - } - Frame { - msec: 1888 - hash: "6d63fb5c8a80f0280e88b2cdf8641bb9" - } - Frame { - msec: 1904 - hash: "e74fe4a6bd92cbe8629c8bc8a870104d" - } - Frame { - msec: 1920 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 1936 - image: "pauseAnimation-visual.2.png" - } - Frame { - msec: 1952 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 1968 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 1984 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2000 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 2016 - hash: "41ba853c3403f68a23e708df82e21c53" - } - Frame { - msec: 2032 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 2048 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 2064 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 2080 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 2096 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 2112 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 2128 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 2144 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 2160 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 2176 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 2192 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 2208 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 2224 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 2240 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 2256 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 2272 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 2288 - hash: "41ba853c3403f68a23e708df82e21c53" - } - Frame { - msec: 2304 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 2320 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2336 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2352 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2368 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2384 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2400 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2416 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 2432 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 2448 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2464 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2480 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2496 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 2512 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2528 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2544 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2560 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2576 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2592 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2608 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2624 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2640 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2656 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2672 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2688 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2704 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2720 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2736 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2752 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2768 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2784 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2800 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2816 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2832 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2848 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2864 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2880 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2896 - image: "pauseAnimation-visual.3.png" - } - Frame { - msec: 2912 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2928 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2944 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2960 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2976 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 2992 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3008 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3024 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3040 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3056 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3072 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3088 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3104 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3120 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3136 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3152 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3168 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3184 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3200 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3216 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3232 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3248 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3264 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3280 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3296 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3312 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3328 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3344 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3360 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3376 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3392 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3408 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3424 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3440 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3456 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3472 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3488 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3504 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3520 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3536 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 3552 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 3568 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 3584 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 3600 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 3616 - hash: "e74fe4a6bd92cbe8629c8bc8a870104d" - } - Frame { - msec: 3632 - hash: "e11455d4e23a5a865e222a7aba4ba4f9" - } - Frame { - msec: 3648 - hash: "8757668e56be6449ec375f0b8fed1be3" - } - Frame { - msec: 3664 - hash: "53ae93140252373eaa4d9da73756bd8e" - } - Frame { - msec: 3680 - hash: "a88a8129259f86df5a73addc3649ad37" - } - Frame { - msec: 3696 - hash: "630d90eef2673a69e8ebc4ef1ba40e81" - } - Frame { - msec: 3712 - hash: "b7208d103b63a936dff8dd8ed224237f" - } - Frame { - msec: 3728 - hash: "1516c3547c7cf64832b3bc7da7c44521" - } - Frame { - msec: 3744 - hash: "49f5d6fd45c195a8d245b7fefc1277ab" - } - Frame { - msec: 3760 - hash: "f5afd9cf8ffe27e9992454b9e68688cb" - } - Frame { - msec: 3776 - hash: "7a4528b000a4ea142d1c77407fa1f581" - } - Frame { - msec: 3792 - hash: "5f18a81707f23d377e81a27c1fc41ce9" - } - Frame { - msec: 3808 - hash: "005acbef952a8ee536e6308a48223e65" - } - Frame { - msec: 3824 - hash: "85c135ef72d3d25658a3663e69ffb7c2" - } - Frame { - msec: 3840 - hash: "7c27ef654e645679c90520d6cf00b0c4" - } - Frame { - msec: 3856 - image: "pauseAnimation-visual.4.png" - } - Frame { - msec: 3872 - hash: "9650fd0364c01b11e4f5dcce51d008af" - } - Frame { - msec: 3888 - hash: "f340cdf60c6d4c29d26b7202a093ec70" - } - Frame { - msec: 3904 - hash: "d754d35d0793f9f7d4f6249a874e4c45" - } - Frame { - msec: 3920 - hash: "79ec710576427df73dd03f39fba6e2eb" - } - Frame { - msec: 3936 - hash: "45281a70021f81dbef30334b1480da1b" - } - Frame { - msec: 3952 - hash: "ffd39c1122fe2f7877ef30591b539b40" - } - Frame { - msec: 3968 - hash: "4ac43a03cc6f2020ab5f894d704092ac" - } - Frame { - msec: 3984 - hash: "c1a7b7d6d64ac5584c073c2881290696" - } - Frame { - msec: 4000 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 4016 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 4032 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 4048 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 4064 - hash: "29ece1bca4d21fb5862091317d430a13" - } - Frame { - msec: 4080 - hash: "c1a7b7d6d64ac5584c073c2881290696" - } - Frame { - msec: 4096 - hash: "c1a7b7d6d64ac5584c073c2881290696" - } - Frame { - msec: 4112 - hash: "4ac43a03cc6f2020ab5f894d704092ac" - } - Frame { - msec: 4128 - hash: "4ac43a03cc6f2020ab5f894d704092ac" - } - Frame { - msec: 4144 - hash: "ffd39c1122fe2f7877ef30591b539b40" - } - Frame { - msec: 4160 - hash: "62a7133012348f2ec3a388fb685ecc3f" - } - Frame { - msec: 4176 - hash: "45281a70021f81dbef30334b1480da1b" - } - Frame { - msec: 4192 - hash: "6cc9de62a0c8fa5e42eac1b01e99ac32" - } - Frame { - msec: 4208 - hash: "79ec710576427df73dd03f39fba6e2eb" - } - Frame { - msec: 4224 - hash: "5be4f5c67941efb6fcea363c79f1e321" - } - Frame { - msec: 4240 - hash: "7d9096b1eb940c82a37baf39ef3ccf3e" - } - Frame { - msec: 4256 - hash: "e87b00bfc2c2a75a4234ec02a057ad3a" - } - Frame { - msec: 4272 - hash: "da60100dc55023c3bab367d97c8f6a85" - } - Frame { - msec: 4288 - hash: "dc98a9bdd99367c1e9b838d4be489dcc" - } - Frame { - msec: 4304 - hash: "b2c778a5eff5f01edc54f03d8b4de8c7" - } - Frame { - msec: 4320 - hash: "9650fd0364c01b11e4f5dcce51d008af" - } - Frame { - msec: 4336 - hash: "2cb09d9655ecc30ae6a591b28c0d355c" - } - Frame { - msec: 4352 - hash: "4db9bc6c11caf1d77794c2eabb62a44e" - } - Frame { - msec: 4368 - hash: "ce2b5dd7418868acf86fea6ad19cc0c5" - } - Frame { - msec: 4384 - hash: "c4f844ee71f23635bb3ec7375f6a134f" - } - Frame { - msec: 4400 - hash: "4e1fda8a0495ef968c1cffb1257426d7" - } - Frame { - msec: 4416 - hash: "19d2ae617a49b57dd012677e2834469c" - } - Frame { - msec: 4432 - hash: "f438e8d2c16b5de677924c8411219b19" - } - Frame { - msec: 4448 - hash: "005acbef952a8ee536e6308a48223e65" - } - Frame { - msec: 4464 - hash: "87b71778d52cd8563d171151d4d32407" - } - Frame { - msec: 4480 - hash: "691cd8bf5c7802ff6c5024827a379fc6" - } - Frame { - msec: 4496 - hash: "ab442c0173c3d221b6782d28001dac77" - } - Frame { - msec: 4512 - hash: "6f886d4538704c2fad4d84c68214109f" - } - Frame { - msec: 4528 - hash: "56d39f233fae41c60499d6161f891cbc" - } - Frame { - msec: 4544 - hash: "95d987c3fd1352fb81c42c63634fe53b" - } - Frame { - msec: 4560 - hash: "96dc84c0c548021910e7c5b580179054" - } - Frame { - msec: 4576 - hash: "ddb71cbd57f6e43744d533d4f72b08db" - } - Frame { - msec: 4592 - hash: "f7ab4b197bea455b22f259913438d207" - } - Frame { - msec: 4608 - hash: "2ad64cb01c9d50e0118d5ece0a644df2" - } - Frame { - msec: 4624 - hash: "6579681c59dd571df0ee4429d74fb5c7" - } - Frame { - msec: 4640 - hash: "630d90eef2673a69e8ebc4ef1ba40e81" - } - Frame { - msec: 4656 - hash: "3db5e30ef19ea693c21ccf72892c4390" - } - Frame { - msec: 4672 - hash: "721d7061811b5439c2e8e395917494bc" - } - Frame { - msec: 4688 - hash: "bc426fb7c31751665b0d3f16e2cb0173" - } - Frame { - msec: 4704 - hash: "e11455d4e23a5a865e222a7aba4ba4f9" - } - Frame { - msec: 4720 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 4736 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 4752 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 4768 - hash: "41ba853c3403f68a23e708df82e21c53" - } - Frame { - msec: 4784 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 4800 - hash: "336d31586171f22d541b989d24b95cbb" - } - Frame { - msec: 4816 - image: "pauseAnimation-visual.5.png" - } - Frame { - msec: 4832 - hash: "e11455d4e23a5a865e222a7aba4ba4f9" - } - Frame { - msec: 4848 - hash: "dd60cbaff6f34027474e92315dbc0ebc" - } - Frame { - msec: 4864 - hash: "8757668e56be6449ec375f0b8fed1be3" - } - Frame { - msec: 4880 - hash: "bc426fb7c31751665b0d3f16e2cb0173" - } - Frame { - msec: 4896 - hash: "b3f4a2165ec1ee971542b8ef89656cea" - } - Frame { - msec: 4912 - hash: "53ae93140252373eaa4d9da73756bd8e" - } - Frame { - msec: 4928 - hash: "721d7061811b5439c2e8e395917494bc" - } - Frame { - msec: 4944 - hash: "af3120fe262d2489c0ed33fbbee1549f" - } - Frame { - msec: 4960 - hash: "a8b624ebfc9ab713d1ce55f318a6e90d" - } - Frame { - msec: 4976 - hash: "a88a8129259f86df5a73addc3649ad37" - } - Frame { - msec: 4992 - hash: "3db5e30ef19ea693c21ccf72892c4390" - } - Frame { - msec: 5008 - hash: "3db5e30ef19ea693c21ccf72892c4390" - } - Frame { - msec: 5024 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 5040 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 5056 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 5072 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 5088 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 5104 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 5120 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 5136 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 5152 - hash: "1373545e43fff7251cec9e8375ea267f" - } - Frame { - msec: 5168 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 5184 - hash: "e553f365912586c6408c8c53b1b7d118" - } - Frame { - msec: 5200 - hash: "3db5e30ef19ea693c21ccf72892c4390" - } - Frame { - msec: 5216 - hash: "3db5e30ef19ea693c21ccf72892c4390" - } - Frame { - msec: 5232 - hash: "a88a8129259f86df5a73addc3649ad37" - } - Frame { - msec: 5248 - hash: "a8b624ebfc9ab713d1ce55f318a6e90d" - } - Frame { - msec: 5264 - hash: "af3120fe262d2489c0ed33fbbee1549f" - } - Frame { - msec: 5280 - hash: "721d7061811b5439c2e8e395917494bc" - } - Frame { - msec: 5296 - hash: "53ae93140252373eaa4d9da73756bd8e" - } - Frame { - msec: 5312 - hash: "b3f4a2165ec1ee971542b8ef89656cea" - } - Frame { - msec: 5328 - hash: "0c20d12464abbdc45041ea5d9f2719b1" - } - Frame { - msec: 5344 - hash: "8757668e56be6449ec375f0b8fed1be3" - } - Frame { - msec: 5360 - hash: "ef8941674cb61f54853dc33652bb854e" - } - Frame { - msec: 5376 - hash: "e11455d4e23a5a865e222a7aba4ba4f9" - } - Frame { - msec: 5392 - hash: "6d63fb5c8a80f0280e88b2cdf8641bb9" - } - Frame { - msec: 5408 - hash: "e74fe4a6bd92cbe8629c8bc8a870104d" - } - Frame { - msec: 5424 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5440 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 5456 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 5472 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 5488 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 5504 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 5520 - hash: "41ba853c3403f68a23e708df82e21c53" - } - Frame { - msec: 5536 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 5552 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 5568 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 5584 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 5600 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5616 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5632 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5648 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5664 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5680 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5696 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5712 - hash: "3042003c067b257de2cb32f650dde693" - } - Frame { - msec: 5728 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 5744 - hash: "a725b59b4947357546bbfc7df3d830af" - } - Frame { - msec: 5760 - hash: "ce57e27af329eba4fac3ab891f0407ce" - } - Frame { - msec: 5776 - image: "pauseAnimation-visual.6.png" - } - Frame { - msec: 5792 - hash: "41ba853c3403f68a23e708df82e21c53" - } - Frame { - msec: 5808 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 5824 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 5840 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 5856 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 5872 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 5888 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 5904 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 5920 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 5936 - hash: "dcf2867c127e041970047ec8f3edc04f" - } - Frame { - msec: 5952 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 5968 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 5984 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 6000 - hash: "675ebbdd22dd22ce45993df4af1acfe9" - } - Frame { - msec: 6016 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6032 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6048 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6064 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6080 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6096 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6112 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6128 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6144 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6160 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6176 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6192 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6208 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6224 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6240 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6256 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6272 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6288 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6304 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6320 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6336 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6352 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6368 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6384 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6400 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } - Frame { - msec: 6416 - hash: "a350b70c5238a340e85fd4a3ec0390a3" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.0.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.0.png deleted file mode 100644 index 693a794..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.1.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.1.png deleted file mode 100644 index 06d43f1..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.2.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.2.png deleted file mode 100644 index e619baf..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.3.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.3.png deleted file mode 100644 index 30c7671..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.4.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.4.png deleted file mode 100644 index 132803c..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.5.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.5.png deleted file mode 100644 index 8372bc3..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/data/pauseAnimation.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml deleted file mode 100644 index 1b315b2..0000000 --- a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pauseAnimation-visual.qml +++ /dev/null @@ -1,36 +0,0 @@ -import QtQuick 1.0 - -/* -This test shows a bouncing logo. -When the test starts the logo should be resting at the bottom. It should immediately move -to the top, and then fall down to bounce at the bottom. There should be a pause, and then -one repeat of the sequence. -*/ - -Rectangle { - id: rect - width: 120 - height: 200 - color: "white" - Image { - id: img - source: "pics/qtlogo.png" - x: 60-width/2 - y: 200-img.height - SequentialAnimation on y { - loops: Animation.Infinite - NumberAnimation { - to: 0; duration: 500 - easing.type: "InOutQuad" - } - NumberAnimation { - to: 200-img.height - easing.type: "OutBounce" - duration: 2000 - } - PauseAnimation { - duration: 1000 - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pics/qtlogo.png b/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pics/qtlogo.png deleted file mode 100644 index 399bd0b..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/pauseAnimation/pics/qtlogo.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.0.png b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.0.png deleted file mode 100644 index 7d2b66e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.1.png b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.1.png deleted file mode 100644 index a02c063..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.2.png b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.2.png deleted file mode 100644 index 1af3243..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.3.png b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.3.png deleted file mode 100644 index 7d2b66e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml deleted file mode 100644 index 3c24f59..0000000 --- a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml +++ /dev/null @@ -1,815 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "propertyAction-visual.0.png" - } - Frame { - msec: 32 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 48 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 64 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 80 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 96 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 112 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 128 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 144 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 160 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 176 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 192 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 208 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 224 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 240 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 256 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 272 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 288 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 304 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 320 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 336 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 352 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 368 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 384 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 400 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 416 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 432 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 448 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 464 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 480 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 496 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 512 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 528 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 544 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 560 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 576 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 592 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 608 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 624 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 640 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 656 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 672 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 688 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 704 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 720 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 736 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 27; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 752 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 768 - hash: "a858eee4b2753915ec84d2ffa098260c" - } - Frame { - msec: 784 - hash: "a858eee4b2753915ec84d2ffa098260c" - } - Frame { - msec: 800 - hash: "a858eee4b2753915ec84d2ffa098260c" - } - Frame { - msec: 816 - hash: "e8e6b7d7f81895ae556936ba5e0848a5" - } - Frame { - msec: 832 - hash: "b6ee5f74a5e91bcf6b9aad3cbb5d683f" - } - Frame { - msec: 848 - hash: "b6ee5f74a5e91bcf6b9aad3cbb5d683f" - } - Frame { - msec: 864 - hash: "02e3d071d5fc0832041688950d3610b8" - } - Frame { - msec: 880 - hash: "aad38d9678bdeeed750f381a40e22a61" - } - Frame { - msec: 896 - hash: "a8753ac7d026d94224c488fa16d5774a" - } - Frame { - msec: 912 - hash: "9de26e2d70bd285116df820ca87c2e4d" - } - Frame { - msec: 928 - hash: "985c6ee9cb5f259135a4eeb3c2f1d271" - } - Frame { - msec: 944 - hash: "985c6ee9cb5f259135a4eeb3c2f1d271" - } - Frame { - msec: 960 - hash: "4ba1bf769de9bc45630485d06642dc30" - } - Frame { - msec: 976 - image: "propertyAction-visual.1.png" - } - Frame { - msec: 992 - hash: "4ba1bf769de9bc45630485d06642dc30" - } - Frame { - msec: 1008 - hash: "9dbe8b62ec467f5b95b4bb8ab9fbab68" - } - Frame { - msec: 1024 - hash: "9dbe8b62ec467f5b95b4bb8ab9fbab68" - } - Frame { - msec: 1040 - hash: "81c157daf3086b21ea2ba39277a31f3d" - } - Frame { - msec: 1056 - hash: "a19d2e389a71472929fed6691dbe40ec" - } - Frame { - msec: 1072 - hash: "0fc67582f36db63dc3df1027bf7ad90b" - } - Frame { - msec: 1088 - hash: "c53f1a42113fdc2e525c43460ed40f81" - } - Frame { - msec: 1104 - hash: "c8968753e599419bc2d70adb95b643f2" - } - Frame { - msec: 1120 - hash: "449fbda0dc3e45d022832f9d15203466" - } - Frame { - msec: 1136 - hash: "7778e32071419dd53920536bac1eb21a" - } - Frame { - msec: 1152 - hash: "279510c6ca5429a22855a08e88a1b4b5" - } - Frame { - msec: 1168 - hash: "ac86ca53dc52c7c54bd993faa2daf0b9" - } - Frame { - msec: 1184 - hash: "7e20361da8a49f9699e290673bdd60ee" - } - Frame { - msec: 1200 - hash: "aa5f6e188212cee2dbf8d1e52692ac88" - } - Frame { - msec: 1216 - hash: "14018d9d2370c46b5f0c280cb169225e" - } - Frame { - msec: 1232 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1248 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1264 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1280 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1296 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1312 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1328 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1344 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1360 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1376 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1392 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1408 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1424 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1440 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1456 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1472 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1488 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1504 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1520 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1536 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1552 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1568 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1584 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1600 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1616 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1632 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1648 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1664 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1680 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1696 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 27; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1712 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1728 - hash: "29ad10997d8045ccfd69fe78475dd2f3" - } - Frame { - msec: 1744 - hash: "7b99c5dd3750291043f62479314ccb2f" - } - Frame { - msec: 1760 - hash: "d3409cf579db724440f3f59cfc902974" - } - Frame { - msec: 1776 - hash: "2ad2a4b3f933e3a27acb232adf06eb7f" - } - Frame { - msec: 1792 - hash: "35074cf4f2753c77e112092e92630c71" - } - Frame { - msec: 1808 - hash: "f7038f7e6d7b6498ff1a4098c79f9d2a" - } - Frame { - msec: 1824 - hash: "fec23135661d2368cf3cf64f7d62af73" - } - Frame { - msec: 1840 - hash: "4143603bf203319f423d21f204fac3b0" - } - Frame { - msec: 1856 - hash: "f3d41bdc8ae60f6fbf109206ac9023de" - } - Frame { - msec: 1872 - hash: "41064ea276aabfba45966130d2ec4b06" - } - Frame { - msec: 1888 - hash: "dfbe242fc8bc3c70207be901ac2db139" - } - Frame { - msec: 1904 - hash: "a8a9f435774def4255ae433646cc5263" - } - Frame { - msec: 1920 - hash: "81c157daf3086b21ea2ba39277a31f3d" - } - Frame { - msec: 1936 - image: "propertyAction-visual.2.png" - } - Frame { - msec: 1952 - hash: "9dbe8b62ec467f5b95b4bb8ab9fbab68" - } - Frame { - msec: 1968 - hash: "4ba1bf769de9bc45630485d06642dc30" - } - Frame { - msec: 1984 - hash: "4ba1bf769de9bc45630485d06642dc30" - } - Frame { - msec: 2000 - hash: "4ba1bf769de9bc45630485d06642dc30" - } - Frame { - msec: 2016 - hash: "4ba1bf769de9bc45630485d06642dc30" - } - Frame { - msec: 2032 - hash: "985c6ee9cb5f259135a4eeb3c2f1d271" - } - Frame { - msec: 2048 - hash: "9de26e2d70bd285116df820ca87c2e4d" - } - Frame { - msec: 2064 - hash: "a8753ac7d026d94224c488fa16d5774a" - } - Frame { - msec: 2080 - hash: "aad38d9678bdeeed750f381a40e22a61" - } - Frame { - msec: 2096 - hash: "abddb88af9b07e782f6c2103479abe3d" - } - Frame { - msec: 2112 - hash: "02e3d071d5fc0832041688950d3610b8" - } - Frame { - msec: 2128 - hash: "b6ee5f74a5e91bcf6b9aad3cbb5d683f" - } - Frame { - msec: 2144 - hash: "e8e6b7d7f81895ae556936ba5e0848a5" - } - Frame { - msec: 2160 - hash: "a858eee4b2753915ec84d2ffa098260c" - } - Frame { - msec: 2176 - hash: "a858eee4b2753915ec84d2ffa098260c" - } - Frame { - msec: 2192 - hash: "a858eee4b2753915ec84d2ffa098260c" - } - Frame { - msec: 2208 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2224 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2240 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2256 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2272 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2288 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2304 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2320 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2336 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2352 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2368 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2384 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2400 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2416 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2432 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2448 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2464 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2480 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2496 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2512 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2528 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2544 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2560 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2576 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2592 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2608 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2624 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2640 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2656 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2672 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2688 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2704 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2720 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2736 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2752 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2768 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2784 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2800 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2816 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2832 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2848 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2864 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2880 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2896 - image: "propertyAction-visual.3.png" - } - Frame { - msec: 2912 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2928 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2944 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2960 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2976 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 2992 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3008 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3024 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3040 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3056 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3072 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3088 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3104 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3120 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3136 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3152 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } - Frame { - msec: 3168 - hash: "1e5ac43e0f553886bcb2b4016f7e3414" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml deleted file mode 100644 index 3ff4214..0000000 --- a/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml +++ /dev/null @@ -1,40 +0,0 @@ -import QtQuick 1.0 - -/* -This test starts with a 30x40 rectangle at 0,0. It should animate a width change to 40, -then jump 50 pixels right, and then animate moving 50 pixels down. Afer this it should -do an exact visual reversal (animate up 50 pixels, jump left 50 pixels, and then animate -a change back to 30px wide). -*/ - -Rectangle { - width: 100; height: 100 - Rectangle { - id: myRect - width: 30; height: 40 - color: "red" - } - MouseArea { - id: clickable - anchors.fill: parent - } - - states: State { - name: "state1" - when: clickable.pressed - PropertyChanges { - target: myRect - x: 50; y: 50; width: 40 - } - } - - transitions: Transition { - to: "state1" - reversible: true - SequentialAnimation { - NumberAnimation { properties: "width"; easing.type: "InOutQuad" } - PropertyAction { properties: "x" } - NumberAnimation { properties: "y"; easing.type: "InOutQuad" } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png deleted file mode 100644 index 4af1744..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png deleted file mode 100644 index 29ca02a..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png deleted file mode 100644 index c7da359..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png deleted file mode 100644 index 7373951..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.4.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.4.png deleted file mode 100644 index 8552406..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml deleted file mode 100644 index 05b5c99..0000000 --- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml +++ /dev/null @@ -1,1107 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "qtbug10586.0.png" - } - Frame { - msec: 32 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 48 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 64 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 80 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 96 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 112 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 128 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 144 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 160 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 176 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 192 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 208 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 224 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 240 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 256 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 272 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 288 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 304 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 320 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 336 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 352 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 368 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 384 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 400 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 416 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 432 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 448 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 464 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 480 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 496 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 512 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 528 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 544 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 560 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 576 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 592 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 608 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 624 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 640 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 656 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 672 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 688 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 704 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 155; y: 261 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 260 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 720 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 260 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 258 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 736 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 254 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 249 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 752 - hash: "3e70a9fcacf40284c4bbf6a8376edfec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 76; y: 247 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 245 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 768 - hash: "3b65fbe0980fabd4bcba5757323c8fcf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 20; y: 243 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -25; y: 241 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 784 - hash: "0a79d810c2ff479fcc42d40125f6ccda" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -68; y: 238 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: -68; y: 238 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 800 - hash: "9e5b85c715a2a573f0dd3bc7e342625f" - } - Frame { - msec: 816 - hash: "371faa0d3bb3815470ef48713f0363b6" - } - Frame { - msec: 832 - hash: "2f948f765ec2d861841439f03e402bcf" - } - Frame { - msec: 848 - hash: "74dbda8d6d005fb8fb307fc4cf146e1e" - } - Frame { - msec: 864 - hash: "bdf1f0db0411a3456ddc0efff0584e9c" - } - Frame { - msec: 880 - hash: "cb5c7c9fc7e4707f1d8b7bbb9f19065d" - } - Frame { - msec: 896 - hash: "f60df4e47f5b9d16b576ab4107a0c11c" - } - Frame { - msec: 912 - hash: "6fcc1b9d2d1829c48cdfefba632c6a91" - } - Frame { - msec: 928 - hash: "e53272919fa23f7023ce66d3b15c2f05" - } - Frame { - msec: 944 - hash: "dc043143bf35a808fcdf2b692753dc86" - } - Frame { - msec: 960 - hash: "dff3c85f1bb42138410e9db7be98425b" - } - Frame { - msec: 976 - image: "qtbug10586.1.png" - } - Frame { - msec: 992 - hash: "d4122caf5fc8cfd59e6048b830acc3fb" - } - Frame { - msec: 1008 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1024 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1040 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1056 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1072 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1088 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1104 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1120 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1136 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1152 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1168 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1184 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1200 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1216 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1232 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1248 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1264 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1280 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1296 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1312 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1328 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1344 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1360 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1376 - hash: "be218d7ebfb01cf288b284cf40337913" - } - Frame { - msec: 1392 - hash: "bd1af1e9187a58841b33862047ad4ae3" - } - Frame { - msec: 1408 - hash: "6154c00e9290393daaf1e7a0618874c7" - } - Frame { - msec: 1424 - hash: "6ed42be04df8a4cc15d9d885e4b157f5" - } - Frame { - msec: 1440 - hash: "2187c8e798b2b60567284af6923a9418" - } - Frame { - msec: 1456 - hash: "39ef8ac3108be3c5b8c85aaa06539952" - } - Frame { - msec: 1472 - hash: "a30c2d3bbebdf3ae84c8148dfff53abf" - } - Frame { - msec: 1488 - hash: "f9b5ef6675c326a3c6462f8ad173c875" - } - Frame { - msec: 1504 - hash: "eab82ad570e59a68c41450df5146aea6" - } - Frame { - msec: 1520 - hash: "2caf2dae27a5603de6665c1cafbe6576" - } - Frame { - msec: 1536 - hash: "601b397404250d01ec9e483683c32776" - } - Frame { - msec: 1552 - hash: "06dd6ec2e0f016fc0cb6bbce27e3dcd3" - } - Frame { - msec: 1568 - hash: "9ebba3740bb33db00ebb62706e1d27a5" - } - Frame { - msec: 1584 - hash: "9ebba3740bb33db00ebb62706e1d27a5" - } - Frame { - msec: 1600 - hash: "06dd6ec2e0f016fc0cb6bbce27e3dcd3" - } - Frame { - msec: 1616 - hash: "601b397404250d01ec9e483683c32776" - } - Frame { - msec: 1632 - hash: "a80dcdc8ce2c4e2653e01423ea053eba" - } - Frame { - msec: 1648 - hash: "8fe7230266084f07f8fd9c6991461163" - } - Frame { - msec: 1664 - hash: "5d9ed702af5c520f4b268077b957586a" - } - Frame { - msec: 1680 - hash: "6cccabc3a6ac3eef95794e6712404234" - } - Frame { - msec: 1696 - hash: "8bfc492064d6c93727b59fd3ca2a8dc8" - } - Frame { - msec: 1712 - hash: "e506cf18d730f4ab1e8e803b7663238a" - } - Frame { - msec: 1728 - hash: "2187c8e798b2b60567284af6923a9418" - } - Frame { - msec: 1744 - hash: "6ed42be04df8a4cc15d9d885e4b157f5" - } - Frame { - msec: 1760 - hash: "b887f64a8e44a243f11e37692d54d2d1" - } - Frame { - msec: 1776 - hash: "d5f157d073cd8de8cc58124455a38675" - } - Frame { - msec: 1792 - hash: "d39f213d4b91229bd76d48589a067623" - } - Frame { - msec: 1808 - hash: "7b2413f4fd12fd4d38fc40ebbbd893f3" - } - Frame { - msec: 1824 - hash: "bd1af1e9187a58841b33862047ad4ae3" - } - Frame { - msec: 1840 - hash: "1e54f1b5ef6bb7085a36d433af94a9b3" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 145; y: 286 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 286 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 195; y: 288 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1856 - hash: "d84bf962449716cc64cb34b285926c48" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 290 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 253; y: 290 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1872 - hash: "d84bf962449716cc64cb34b285926c48" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 286; y: 292 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 315; y: 292 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1888 - hash: "d84bf962449716cc64cb34b285926c48" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 346; y: 294 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 385; y: 294 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1904 - hash: "d84bf962449716cc64cb34b285926c48" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 420; y: 294 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 420; y: 294 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1920 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1936 - image: "qtbug10586.2.png" - } - Frame { - msec: 1952 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1968 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 1984 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2000 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2016 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2032 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2048 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2064 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2080 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2096 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2112 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2128 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2144 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2160 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2176 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2192 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2208 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2224 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2240 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2256 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2272 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2288 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2304 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2320 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2336 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2352 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2368 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2384 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2400 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2416 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2432 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2448 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2464 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2480 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2496 - hash: "d84bf962449716cc64cb34b285926c48" - } - Frame { - msec: 2512 - hash: "4c6ff9097308cb3840ef39a081bdc94f" - } - Frame { - msec: 2528 - hash: "93a2b229f21b76354a8cf94f150c69e2" - } - Frame { - msec: 2544 - hash: "e65350b411affe4274499fd577ccf842" - } - Frame { - msec: 2560 - hash: "499968d33068c7e08898a19cce691766" - } - Frame { - msec: 2576 - hash: "fe884e410a8c7b2167f814ebdf7700af" - } - Frame { - msec: 2592 - hash: "c0225009d42b670f5f1ce0871be90db6" - } - Frame { - msec: 2608 - hash: "320d205e147fa6470d71538d686ff458" - } - Frame { - msec: 2624 - hash: "ec0a1fa273e6568d041ee2497a715704" - } - Frame { - msec: 2640 - hash: "159c558e0d1b59db8e9459c4203d56f3" - } - Frame { - msec: 2656 - hash: "00d237cd7ad6df807b4f9281bbc72992" - } - Frame { - msec: 2672 - hash: "c472991635460a93f744538328cd89f4" - } - Frame { - msec: 2688 - hash: "318ba06f590d4e3a1dea6affcc60243b" - } - Frame { - msec: 2704 - hash: "d344b62df42e88e14d45def62565791a" - } - Frame { - msec: 2720 - hash: "5c2658568080a663440e09acbcf2fa8d" - } - Frame { - msec: 2736 - hash: "8e64867dabeaeae51149362c5f42545b" - } - Frame { - msec: 2752 - hash: "abd81e11370469803bad5de9a9c77f63" - } - Frame { - msec: 2768 - hash: "1cce356ebd61d7c88edb84c58a564def" - } - Frame { - msec: 2784 - hash: "0ab027423651612ceba2b35e57d75d91" - } - Frame { - msec: 2800 - hash: "515b6375cf0fefc8580d62cd5b2680f7" - } - Frame { - msec: 2816 - hash: "f44c12b701e73a7e4d35fd10ea0f5003" - } - Frame { - msec: 2832 - hash: "76bee658c9915fda03967fcb2e595683" - } - Frame { - msec: 2848 - hash: "064d5525e1fa7c8ec5f571a56e666754" - } - Frame { - msec: 2864 - hash: "ffd23fa2b1281cd120d6b11912bb8641" - } - Frame { - msec: 2880 - hash: "7454984bc5316de021b87d04daf0e8bb" - } - Frame { - msec: 2896 - image: "qtbug10586.3.png" - } - Frame { - msec: 2912 - hash: "1fcf6b150607c0ea807026f8f9e28f61" - } - Frame { - msec: 2928 - hash: "e16a333231b3c65c85ff498e941f8c05" - } - Frame { - msec: 2944 - hash: "3e49589f1b4a6b8212f5c10d234f8ffa" - } - Frame { - msec: 2960 - hash: "02ce2b719ddbd977bb933882a40024f5" - } - Frame { - msec: 2976 - hash: "a161119d1f022885db1af71ededa2b8c" - } - Frame { - msec: 2992 - hash: "62a006aab9629dc1e8359c52664ee34b" - } - Frame { - msec: 3008 - hash: "62a006aab9629dc1e8359c52664ee34b" - } - Frame { - msec: 3024 - hash: "b98a2c58933bd4f49ed7a1d72bff7e66" - } - Frame { - msec: 3040 - hash: "b98a2c58933bd4f49ed7a1d72bff7e66" - } - Frame { - msec: 3056 - hash: "b98a2c58933bd4f49ed7a1d72bff7e66" - } - Frame { - msec: 3072 - hash: "b98a2c58933bd4f49ed7a1d72bff7e66" - } - Frame { - msec: 3088 - hash: "b98a2c58933bd4f49ed7a1d72bff7e66" - } - Frame { - msec: 3104 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3120 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3136 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3152 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3168 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3184 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3200 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3216 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3232 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3248 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3264 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3280 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3296 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3312 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3328 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3344 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3360 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3376 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3392 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3408 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3424 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3440 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3456 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3472 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3488 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3504 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3520 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3536 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3552 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3568 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3584 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3600 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3616 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3632 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3648 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } - Frame { - msec: 3664 - hash: "0755ae54acb6af587bbf7ca509146e0f" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml deleted file mode 100644 index 65caedd..0000000 --- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml +++ /dev/null @@ -1,23 +0,0 @@ -import QtQuick 1.0 - -/* This test checks that animations do occur while the flickable is flicking */ -Rectangle { - width: 200 - height: 400 - Flickable { - id: flick - anchors.fill: parent - contentWidth: 1000; contentHeight: parent.height - Rectangle { - border.color: "black" - border.width: 10 - width: 1000; height: 1000 - } - } - Rectangle { - color: "red" - width: 100; height: 100 - y: flick.contentX < 10 ? 300 : 0 - Behavior on y { NumberAnimation {} } - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.0.png b/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.0.png deleted file mode 100644 index 29f7c75..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.1.png b/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.1.png deleted file mode 100644 index d9a9959..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.qml b/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.qml deleted file mode 100644 index 179dbc9..0000000 --- a/tests/auto/declarative/qmlvisual/animation/qtbug13398/data/qtbug13398.qml +++ /dev/null @@ -1,447 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "qtbug13398.0.png" - } - Frame { - msec: 32 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 48 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 64 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 80 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 96 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 112 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 128 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 144 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 160 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 176 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 192 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 208 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 224 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 240 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 256 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 272 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 288 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 304 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 320 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 336 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 352 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 368 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 384 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 400 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 416 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 432 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 448 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 464 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 480 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 496 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 220; y: 270 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 512 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 528 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 544 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 560 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 576 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 271 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 220; y: 271 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 592 - hash: "2452007928bf86b9c42e666c7a7afc89" - } - Frame { - msec: 608 - hash: "96e8e81d61bffe02b8f41f47a4a7e8fc" - } - Frame { - msec: 624 - hash: "75881a2779bd7d7f683f87c4a7393769" - } - Frame { - msec: 640 - hash: "2ef628328d2a6393095e78db80b0513f" - } - Frame { - msec: 656 - hash: "390926f2c2c27dfa10c9b393ee466ce6" - } - Frame { - msec: 672 - hash: "ea07d93e7d8a53f56cff19d9d3b282a4" - } - Frame { - msec: 688 - hash: "8aa6be919b1ef4b7e102a319a453707e" - } - Frame { - msec: 704 - hash: "6ebc518fb53ffe42fca20b9f16a21b36" - } - Frame { - msec: 720 - hash: "ee7a93b157e24e22efa84604e7e44fe6" - } - Frame { - msec: 736 - hash: "de3bf8f67e51b036db4976fd3b4b6c3c" - } - Frame { - msec: 752 - hash: "648be4298ebe3bbc7e5c4a4c9c46f193" - } - Frame { - msec: 768 - hash: "1ccf3b73e22a4b98ce1df098af9466f2" - } - Frame { - msec: 784 - hash: "73a2fb047728b2b8e613f0fb8dfe429d" - } - Frame { - msec: 800 - hash: "bbb4cabec4b98ea8ca94dff91a0d8c99" - } - Frame { - msec: 816 - hash: "3337e86bd9fcfbce939389928fb1fb72" - } - Frame { - msec: 832 - hash: "cb4a2a330e8470c61de9e9b6d2dc4597" - } - Frame { - msec: 848 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 864 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 880 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 896 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 912 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 928 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 944 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 960 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 976 - image: "qtbug13398.1.png" - } - Frame { - msec: 992 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1008 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1024 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1040 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1056 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1072 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1088 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1104 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1120 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1136 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1152 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1168 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1184 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1200 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1216 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1232 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 220; y: 271 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1248 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1264 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1280 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1296 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1312 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1328 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 220; y: 271 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1344 - hash: "e09a359578935b988ac1cc8c40b25547" - } - Frame { - msec: 1360 - hash: "697a4fd182ff90cd557f224174bad43a" - } - Frame { - msec: 1376 - hash: "99e5ca9a77df1acfed628f31b9050179" - } - Frame { - msec: 1392 - hash: "1f0dc00d3e3536b40a6becf775b31cee" - } - Frame { - msec: 1408 - hash: "5b81ddd35d74be222bc8a40d2573884b" - } - Frame { - msec: 1424 - hash: "4e236f5de69048e87add0e4380f2c3e6" - } - Frame { - msec: 1440 - hash: "a901c9c0c77e03d98a2b95267cca8514" - } - Frame { - msec: 1456 - hash: "78bbdf6781c2968c67982ffdb747dbbe" - } - Frame { - msec: 1472 - hash: "a245ca593649f60980be982eb8fda57e" - } - Frame { - msec: 1488 - hash: "c27fddc147749da24eaeb92aeaf61738" - } - Frame { - msec: 1504 - hash: "b9674af46b618dc1eedabd4f18253b11" - } - Frame { - msec: 1520 - hash: "8ae3c0cc0888fd0a607bc5b537a9ce0a" - } - Frame { - msec: 1536 - hash: "f1981bd3fb08233622a4078e2f717011" - } - Frame { - msec: 1552 - hash: "4dce834c9e3988fe535391fedc942add" - } - Frame { - msec: 1568 - hash: "ca7356dee61e156d04b0b46ea033498e" - } - Frame { - msec: 1584 - hash: "97499f6e04cbe690bc12458aef4b66a5" - } - Frame { - msec: 1600 - hash: "2452007928bf86b9c42e666c7a7afc89" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug13398/qtbug13398.qml b/tests/auto/declarative/qmlvisual/animation/qtbug13398/qtbug13398.qml deleted file mode 100644 index 93ecd2e..0000000 --- a/tests/auto/declarative/qmlvisual/animation/qtbug13398/qtbug13398.qml +++ /dev/null @@ -1,68 +0,0 @@ -import QtQuick 1.0 - -Item { - width: 300 - height: 400 - - Rectangle { - id: root - color: "darkkhaki" - - x: 50 - y: 50 - - width: 200 - height: 300 - - Rectangle { - id: statusbar - color: "chocolate" - - height: 30 - - anchors.top: root.top - anchors.left: root.left - anchors.right: root.right - } - - Rectangle { - id: titlebar - color: "crimson" - - height: 60 - - anchors.top: statusbar.bottom - anchors.left: root.left - anchors.right: root.right - } - - MouseArea { - anchors.fill: parent - onClicked: { - root.state = root.state ? "" : "fullscreen"; - } - } - - states: [ - State { - name: "fullscreen" - AnchorChanges { - target: statusbar - anchors.top: undefined - anchors.bottom: titlebar.top - } - AnchorChanges { - target: titlebar - anchors.top: undefined - anchors.bottom: root.top - } - } - ] - - transitions: [ - Transition { - AnchorAnimation { } - } - ] - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.0.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.0.png deleted file mode 100644 index f08e048..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.1.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.1.png deleted file mode 100644 index f08e048..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.2.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.2.png deleted file mode 100644 index 9fb2be5..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.3.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.3.png deleted file mode 100644 index d229e87..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.4.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.4.png deleted file mode 100644 index f08e048..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.5.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.5.png deleted file mode 100644 index 7d1d2cd..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.6.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.6.png deleted file mode 100644 index b537ace..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.7.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.7.png deleted file mode 100644 index f08e048..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.8.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.8.png deleted file mode 100644 index d229e87..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.9.png b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.9.png deleted file mode 100644 index 432f814..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml b/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml deleted file mode 100644 index 5146be2..0000000 --- a/tests/auto/declarative/qmlvisual/animation/reanchor/data/reanchor.qml +++ /dev/null @@ -1,2471 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "reanchor.0.png" - } - Frame { - msec: 32 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 48 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 64 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 80 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 96 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 112 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 128 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 144 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 160 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 176 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 192 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 208 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 224 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 240 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 256 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 272 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 288 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 304 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 320 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 336 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 352 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 368 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 384 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 400 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 416 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 432 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 448 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 464 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 480 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 496 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 512 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 528 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 544 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 560 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 576 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 592 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 608 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 624 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 640 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 656 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 672 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 688 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 704 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 720 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 736 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 752 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 768 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 784 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 800 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 816 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 832 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 848 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 864 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 880 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 896 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 912 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 928 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 944 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 960 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 976 - image: "reanchor.1.png" - } - Frame { - msec: 992 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1008 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1024 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1040 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1056 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1072 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1088 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1104 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1120 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1136 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1152 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1168 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1184 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1200 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1216 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1232 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1248 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1264 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1280 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1296 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1312 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1328 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1344 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1360 - hash: "213811853dbefdc418099721e3bf8651" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 88; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1376 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1392 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1408 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1424 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1440 - hash: "213811853dbefdc418099721e3bf8651" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 88; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1456 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 1472 - hash: "eb3eeb37ab7b26692cbf100adfaf3772" - } - Frame { - msec: 1488 - hash: "e1a8cdcb1f3ec097a968b3b20964c6e8" - } - Frame { - msec: 1504 - hash: "44fc52479251327d0612de17ddb056eb" - } - Frame { - msec: 1520 - hash: "fa7e4a910aa60500575a34852c0c7cb8" - } - Frame { - msec: 1536 - hash: "66d205a02e35221e7684ab995acc1312" - } - Frame { - msec: 1552 - hash: "4ebe8dba6d9f3179b610b2298a7484a2" - } - Frame { - msec: 1568 - hash: "9b2582fccffa34fe389ba427ce47619a" - } - Frame { - msec: 1584 - hash: "e6f15478bda9995f82976b9e16659c8e" - } - Frame { - msec: 1600 - hash: "f08df0885fff04819ada6c10b25dd489" - } - Frame { - msec: 1616 - hash: "0f57c152306747cfa27171f1947ca65d" - } - Frame { - msec: 1632 - hash: "89d9c988abd55063e210b81193c6a8f0" - } - Frame { - msec: 1648 - hash: "91e0d0a5d57210c790c2d2399d1f7022" - } - Frame { - msec: 1664 - hash: "267874fdc09459b3e854c06d9ae99a54" - } - Frame { - msec: 1680 - hash: "2f58a508f439c40c6f2bd7da1f30deff" - } - Frame { - msec: 1696 - hash: "1451548d9f0002a6c4765cb616ab7f59" - } - Frame { - msec: 1712 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1728 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1744 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1760 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1776 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1792 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1808 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1824 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1840 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1856 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1872 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1888 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1904 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1920 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1936 - image: "reanchor.2.png" - } - Frame { - msec: 1952 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1968 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 1984 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2000 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2016 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2032 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2048 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2064 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2080 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2096 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 87; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2112 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2128 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2144 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2160 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2176 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2192 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2208 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 87; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2224 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 2240 - hash: "8ceca291e28f52368346f171c2f31664" - } - Frame { - msec: 2256 - hash: "903877286f3ef112e6a661abde5c17bd" - } - Frame { - msec: 2272 - hash: "cc2d15c96571f9328b929f96849c8f9e" - } - Frame { - msec: 2288 - hash: "26e6c03b1b91b725d6e0fe9216a7413e" - } - Frame { - msec: 2304 - hash: "213e8e9905bea32ddb97d38b75cd19cc" - } - Frame { - msec: 2320 - hash: "17d5726a282d42fcde7796be84606fcd" - } - Frame { - msec: 2336 - hash: "f4629bf9f5837f687ae49008c9d28d02" - } - Frame { - msec: 2352 - hash: "fbc927cb136d8d29b2578e78c4793e41" - } - Frame { - msec: 2368 - hash: "c7099e732490dd2f3205986a7c43a165" - } - Frame { - msec: 2384 - hash: "b3b464a8e67fab05109b49604f1ce705" - } - Frame { - msec: 2400 - hash: "7629b2a77f9f87aa0ef2535aa9b8d390" - } - Frame { - msec: 2416 - hash: "6a329c289236782e095cfa6f15409726" - } - Frame { - msec: 2432 - hash: "1cfbf6f4c292e1520b44d84dd59b93a8" - } - Frame { - msec: 2448 - hash: "a8d3d838bffb39053eb705aefcb39c46" - } - Frame { - msec: 2464 - hash: "a56ad66a949e07e3174a58c80145c85e" - } - Frame { - msec: 2480 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2496 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2512 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2528 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2544 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2560 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2576 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2592 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2608 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2624 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2640 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2656 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2672 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2688 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2704 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2720 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2736 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2752 - hash: "213811853dbefdc418099721e3bf8651" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 87; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2768 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2784 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2800 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2816 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2832 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2848 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2864 - hash: "213811853dbefdc418099721e3bf8651" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 87; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2880 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 2896 - image: "reanchor.3.png" - } - Frame { - msec: 2912 - hash: "e1a8cdcb1f3ec097a968b3b20964c6e8" - } - Frame { - msec: 2928 - hash: "44fc52479251327d0612de17ddb056eb" - } - Frame { - msec: 2944 - hash: "fa7e4a910aa60500575a34852c0c7cb8" - } - Frame { - msec: 2960 - hash: "66d205a02e35221e7684ab995acc1312" - } - Frame { - msec: 2976 - hash: "4ebe8dba6d9f3179b610b2298a7484a2" - } - Frame { - msec: 2992 - hash: "9b2582fccffa34fe389ba427ce47619a" - } - Frame { - msec: 3008 - hash: "e6f15478bda9995f82976b9e16659c8e" - } - Frame { - msec: 3024 - hash: "f08df0885fff04819ada6c10b25dd489" - } - Frame { - msec: 3040 - hash: "0f57c152306747cfa27171f1947ca65d" - } - Frame { - msec: 3056 - hash: "89d9c988abd55063e210b81193c6a8f0" - } - Frame { - msec: 3072 - hash: "91e0d0a5d57210c790c2d2399d1f7022" - } - Frame { - msec: 3088 - hash: "267874fdc09459b3e854c06d9ae99a54" - } - Frame { - msec: 3104 - hash: "2f58a508f439c40c6f2bd7da1f30deff" - } - Frame { - msec: 3120 - hash: "1451548d9f0002a6c4765cb616ab7f59" - } - Frame { - msec: 3136 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3152 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3168 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3184 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3200 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3216 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3232 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3248 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3264 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3280 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3296 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3312 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3328 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3344 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3360 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 87; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3392 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3408 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3424 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3440 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3456 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3472 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 87; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3488 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 3504 - hash: "8ceca291e28f52368346f171c2f31664" - } - Frame { - msec: 3520 - hash: "903877286f3ef112e6a661abde5c17bd" - } - Frame { - msec: 3536 - hash: "cc2d15c96571f9328b929f96849c8f9e" - } - Frame { - msec: 3552 - hash: "26e6c03b1b91b725d6e0fe9216a7413e" - } - Frame { - msec: 3568 - hash: "213e8e9905bea32ddb97d38b75cd19cc" - } - Frame { - msec: 3584 - hash: "17d5726a282d42fcde7796be84606fcd" - } - Frame { - msec: 3600 - hash: "f4629bf9f5837f687ae49008c9d28d02" - } - Frame { - msec: 3616 - hash: "fbc927cb136d8d29b2578e78c4793e41" - } - Frame { - msec: 3632 - hash: "c7099e732490dd2f3205986a7c43a165" - } - Frame { - msec: 3648 - hash: "b3b464a8e67fab05109b49604f1ce705" - } - Frame { - msec: 3664 - hash: "7629b2a77f9f87aa0ef2535aa9b8d390" - } - Frame { - msec: 3680 - hash: "6a329c289236782e095cfa6f15409726" - } - Frame { - msec: 3696 - hash: "1cfbf6f4c292e1520b44d84dd59b93a8" - } - Frame { - msec: 3712 - hash: "a8d3d838bffb39053eb705aefcb39c46" - } - Frame { - msec: 3728 - hash: "a56ad66a949e07e3174a58c80145c85e" - } - Frame { - msec: 3744 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3760 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3776 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3792 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3808 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3824 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3840 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3856 - image: "reanchor.4.png" - } - Frame { - msec: 3872 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3888 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3904 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3920 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3936 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3952 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3968 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 3984 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4000 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4016 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4032 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4048 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4064 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4080 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4096 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4112 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4128 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4144 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4160 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4176 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4192 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4208 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4224 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4240 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4256 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4272 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4288 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4304 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4320 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4336 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4352 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4368 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4384 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4400 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4416 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4432 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4448 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4464 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4480 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4496 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4512 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4528 - hash: "213811853dbefdc418099721e3bf8651" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 174; y: 174 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4544 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4560 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4576 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4592 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4608 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4624 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4640 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4656 - hash: "213811853dbefdc418099721e3bf8651" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 174; y: 174 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4672 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 4688 - hash: "5d38bf4a033de31985ae9989107908af" - } - Frame { - msec: 4704 - hash: "ed1bd2abd42848ecd07f0f0654c2b80f" - } - Frame { - msec: 4720 - hash: "588de6662123733303d93f62c6481f6a" - } - Frame { - msec: 4736 - hash: "aae79c2fbb2fd1ac7efa9802bff40f95" - } - Frame { - msec: 4752 - hash: "f17512798136f67f25aaa0aeb60678e1" - } - Frame { - msec: 4768 - hash: "79578a1e0e3e9cd45c210d0c5d3e75d6" - } - Frame { - msec: 4784 - hash: "5dad4ff201744cda6ff41f89414c8d11" - } - Frame { - msec: 4800 - hash: "df51ffd71a82742af7c06f8a786f6bf2" - } - Frame { - msec: 4816 - image: "reanchor.5.png" - } - Frame { - msec: 4832 - hash: "0dff03ea9154bdb2a813358b04cfbde9" - } - Frame { - msec: 4848 - hash: "09bdf2869dee1c0cbe3c8c2e9254580b" - } - Frame { - msec: 4864 - hash: "ba7762978bbd63d624029910fe16fb6d" - } - Frame { - msec: 4880 - hash: "f00d198ab8f4f625b60e9e2071d8adfd" - } - Frame { - msec: 4896 - hash: "adcec9c9a5b0d60cf45b2915365ea09c" - } - Frame { - msec: 4912 - hash: "a65cd6fbb26d618692ef23148015a4f2" - } - Frame { - msec: 4928 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 4944 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 4960 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 4976 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 4992 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5008 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5024 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5040 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5056 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5072 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5088 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5104 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5120 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5136 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5152 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5168 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5184 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5200 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5216 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5232 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5248 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5264 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5280 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5296 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5312 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5328 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5344 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5360 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5376 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5392 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5408 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5424 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5440 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5456 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5472 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5488 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5504 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5520 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5536 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5552 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5568 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5584 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5600 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5616 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5632 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5648 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5664 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5680 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5696 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5712 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5728 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5744 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5760 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5776 - image: "reanchor.6.png" - } - Frame { - msec: 5792 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5808 - hash: "1137e22c68e043950811dee295e19b04" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 95; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5824 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5840 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5856 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5872 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5888 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5904 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5920 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5936 - hash: "1137e22c68e043950811dee295e19b04" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 95; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5952 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 5968 - hash: "103bbc9ce594851f5243b103f8fef1c1" - } - Frame { - msec: 5984 - hash: "c381148b052be2e6244f24c2292b89cf" - } - Frame { - msec: 6000 - hash: "2fda1d635fa47bff7de867df3dadfb4f" - } - Frame { - msec: 6016 - hash: "4d35e00af33ad5dc84998cda2d066b4e" - } - Frame { - msec: 6032 - hash: "14005d52d372acf6d3495f69bbf00b7d" - } - Frame { - msec: 6048 - hash: "29728f64d12e858d960c4e197824ef43" - } - Frame { - msec: 6064 - hash: "798822f0c20ef87cb01fe1dcd76c7585" - } - Frame { - msec: 6080 - hash: "4cdeea0f91587ef32a2c2e282f6d00e6" - } - Frame { - msec: 6096 - hash: "08ca5d16771e58da6cdd20b86dc65f03" - } - Frame { - msec: 6112 - hash: "e9aeb432709d275048ad9d84fb21db1a" - } - Frame { - msec: 6128 - hash: "3b642f27d356fd1815dc50f8e750623d" - } - Frame { - msec: 6144 - hash: "7c1db0ec278849ec044ea0aa3383075b" - } - Frame { - msec: 6160 - hash: "da902850879c95d4ddffbb1ba0060f25" - } - Frame { - msec: 6176 - hash: "e4053bd0db7752e7a47e096da645b69b" - } - Frame { - msec: 6192 - hash: "aabbb6d34399818347db265151a547b7" - } - Frame { - msec: 6208 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6224 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6240 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6256 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6272 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6288 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6304 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6320 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6336 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6352 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6368 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6384 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6400 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6416 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6432 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6448 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6464 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6480 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6496 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6512 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6528 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6544 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6560 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6576 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6592 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6608 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6624 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6640 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6656 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6672 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6688 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6704 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6720 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6736 - image: "reanchor.7.png" - } - Frame { - msec: 6752 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6768 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6784 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6800 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6816 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6832 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6848 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6864 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6880 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6896 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6912 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6928 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6944 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6960 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6976 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 6992 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7008 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7024 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7040 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7056 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7072 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7088 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7104 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7120 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7136 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7152 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7168 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7184 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7200 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7216 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7232 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7248 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7264 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7280 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7296 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7312 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7328 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7344 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7360 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7376 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7392 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7408 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7424 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7440 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7456 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7472 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7488 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7504 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7520 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7536 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7552 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7568 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7584 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7600 - hash: "213811853dbefdc418099721e3bf8651" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 86; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7616 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7632 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7648 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7664 - hash: "213811853dbefdc418099721e3bf8651" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 86; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7680 - hash: "213811853dbefdc418099721e3bf8651" - } - Frame { - msec: 7696 - image: "reanchor.8.png" - } - Frame { - msec: 7712 - hash: "e1a8cdcb1f3ec097a968b3b20964c6e8" - } - Frame { - msec: 7728 - hash: "44fc52479251327d0612de17ddb056eb" - } - Frame { - msec: 7744 - hash: "fa7e4a910aa60500575a34852c0c7cb8" - } - Frame { - msec: 7760 - hash: "66d205a02e35221e7684ab995acc1312" - } - Frame { - msec: 7776 - hash: "4ebe8dba6d9f3179b610b2298a7484a2" - } - Frame { - msec: 7792 - hash: "9b2582fccffa34fe389ba427ce47619a" - } - Frame { - msec: 7808 - hash: "e6f15478bda9995f82976b9e16659c8e" - } - Frame { - msec: 7824 - hash: "f08df0885fff04819ada6c10b25dd489" - } - Frame { - msec: 7840 - hash: "0f57c152306747cfa27171f1947ca65d" - } - Frame { - msec: 7856 - hash: "89d9c988abd55063e210b81193c6a8f0" - } - Frame { - msec: 7872 - hash: "91e0d0a5d57210c790c2d2399d1f7022" - } - Frame { - msec: 7888 - hash: "267874fdc09459b3e854c06d9ae99a54" - } - Frame { - msec: 7904 - hash: "2f58a508f439c40c6f2bd7da1f30deff" - } - Frame { - msec: 7920 - hash: "1451548d9f0002a6c4765cb616ab7f59" - } - Frame { - msec: 7936 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 7952 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 7968 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 7984 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8000 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8016 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8032 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8048 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8064 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8080 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8096 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8112 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8128 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8144 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8160 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8176 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8192 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8208 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8224 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8240 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8256 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8272 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8288 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8304 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8320 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8336 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8352 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8368 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8384 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8400 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 177; y: 173 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8416 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8432 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8448 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8464 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8480 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8496 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8512 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 177; y: 173 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8528 - hash: "ad3837dcf3e69274ac2918d796974f29" - } - Frame { - msec: 8544 - hash: "49a6ed64f80094b41348eda19fa5a55e" - } - Frame { - msec: 8560 - hash: "3ee42fb431d7824c1cd6ddf95af91d10" - } - Frame { - msec: 8576 - hash: "d807890cc0670eda9fac267769366771" - } - Frame { - msec: 8592 - hash: "50cb68de9ca0c3a8db1df58d7cbb0d21" - } - Frame { - msec: 8608 - hash: "0af06233156b3a469ce9e7d80a5767c0" - } - Frame { - msec: 8624 - hash: "9b2c77f004e480fd485e092c08feaf81" - } - Frame { - msec: 8640 - hash: "b36a09269dfc9173ff8583a62ae87e8a" - } - Frame { - msec: 8656 - image: "reanchor.9.png" - } - Frame { - msec: 8672 - hash: "4d3aa8219edffe6fda316482821d4a64" - } - Frame { - msec: 8688 - hash: "ea8a7104840254ac2706ca2635b8a95f" - } - Frame { - msec: 8704 - hash: "a8569ef3287da9699809a2ad107b87b1" - } - Frame { - msec: 8720 - hash: "91d09653dbced4ecb3d711737cb89ca1" - } - Frame { - msec: 8736 - hash: "d5391f3b40f2dfada0336d889d438d69" - } - Frame { - msec: 8752 - hash: "27cd9690607f97cc84c2a0a4455feccb" - } - Frame { - msec: 8768 - hash: "f885588779a5de5d7d47f48bf9a2a6ee" - } - Frame { - msec: 8784 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8800 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8816 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8832 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8848 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8864 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8880 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8896 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8912 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8928 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8944 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8960 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8976 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 8992 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9008 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9024 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9040 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9056 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9072 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9088 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9104 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9120 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9136 - hash: "1137e22c68e043950811dee295e19b04" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 9152 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9168 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9184 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9200 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9216 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9232 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9248 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9264 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9280 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9296 - hash: "1137e22c68e043950811dee295e19b04" - } - Frame { - msec: 9312 - hash: "1137e22c68e043950811dee295e19b04" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml b/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml deleted file mode 100644 index e0a5a6d..0000000 --- a/tests/auto/declarative/qmlvisual/animation/reanchor/reanchor.qml +++ /dev/null @@ -1,69 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: container - width: 200; height: 200 - Rectangle { - id: myRect - objectName: "MyRect" - color: "green"; - anchors.left: parent.left - anchors.right: rightGuideline.left - anchors.top: topGuideline.top - anchors.bottom: container.bottom - } - Item { id: leftGuideline; x: 10 } - Item { id: rightGuideline; x: 150 } - Item { id: topGuideline; y: 10 } - Item { id: bottomGuideline; y: 150 } - Item { id: topGuideline2; y: 50 } - Item { id: bottomGuideline2; y: 175 } - - MouseArea { - id: wholeArea - anchors.fill: parent - onClicked: { - if (container.state == "") { - container.state = "reanchored"; - } else if (container.state == "reanchored") { - container.state = "reanchored2"; - } else if (container.state == "reanchored2") - container.state = "reanchored"; - } - } - - states: [ State { - name: "reanchored" - AnchorChanges { - target: myRect; - anchors.left: leftGuideline.left - anchors.right: container.right - anchors.top: container.top - anchors.bottom: bottomGuideline.bottom - } - }, State { - name: "reanchored2" - AnchorChanges { - target: myRect; - anchors.left: undefined - anchors.right: undefined - anchors.top: topGuideline2.top - anchors.bottom: bottomGuideline2.bottom - } - }] - - transitions: Transition { - AnchorAnimation { } - } - - MouseArea { - width: 50; height: 50 - anchors.right: parent.right - anchors.bottom: parent.bottom - onClicked: { - container.state = ""; - } - } - - state: "reanchored" -} diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.0.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.0.png deleted file mode 100644 index 160155e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.1.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.1.png deleted file mode 100644 index 160155e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.10.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.10.png deleted file mode 100644 index 1ccab41..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.11.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.11.png deleted file mode 100644 index 160155e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.12.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.12.png deleted file mode 100644 index f25bd7c..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.2.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.2.png deleted file mode 100644 index f25bd7c..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.3.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.3.png deleted file mode 100644 index dad1de4..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.4.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.4.png deleted file mode 100644 index cd4f23a..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.5.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.5.png deleted file mode 100644 index 160155e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.6.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.6.png deleted file mode 100644 index 160155e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.7.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.7.png deleted file mode 100644 index f25bd7c..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.8.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.8.png deleted file mode 100644 index 160155e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.9.png b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.9.png deleted file mode 100644 index 160155e..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.qml b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.qml deleted file mode 100644 index e858c11..0000000 --- a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/data/reanchor.qml +++ /dev/null @@ -1,1499 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "reanchor.0.png" - } - Frame { - msec: 32 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 48 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 64 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 80 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 96 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 112 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 128 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 144 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 160 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 176 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 192 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 208 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 224 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 240 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 256 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 272 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 288 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 304 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 320 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 336 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 352 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 368 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 384 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 400 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 416 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 432 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 448 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 464 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 480 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 496 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 512 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 528 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 544 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 560 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 576 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 592 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 608 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 624 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 640 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 656 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 672 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 688 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 704 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 720 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 736 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 752 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 768 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 784 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 800 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 816 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 832 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 848 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 864 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 880 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 896 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 912 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 928 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 944 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 960 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 976 - image: "reanchor.1.png" - } - Frame { - msec: 992 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1008 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1024 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1040 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1056 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 164; y: 196 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1088 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1104 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1120 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1136 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 164; y: 196 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1152 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 1168 - hash: "f7814217626627ce70ca0e9487354ba9" - } - Frame { - msec: 1184 - hash: "7825b2b77e441ca6f46dbca80c7fe602" - } - Frame { - msec: 1200 - hash: "0ac443a9946b0bcf8db768af7d16d51e" - } - Frame { - msec: 1216 - hash: "c943d5d46f0d527690f38a9c8bd7be51" - } - Frame { - msec: 1232 - hash: "38151db0c9964d33bcb2ff155ebd468c" - } - Frame { - msec: 1248 - hash: "0fb8c53587a95a12cced6d30018edec1" - } - Frame { - msec: 1264 - hash: "2c684a649652270a638aca41a80e327c" - } - Frame { - msec: 1280 - hash: "60dd5c448ef8b97ec13ad3140a584229" - } - Frame { - msec: 1296 - hash: "d564f28f9d528daca729db6fab163b6c" - } - Frame { - msec: 1312 - hash: "4c07b33632ec4f30ee31141099c15a88" - } - Frame { - msec: 1328 - hash: "9facfd27fa16ee9d493e7fb7bcfadbf8" - } - Frame { - msec: 1344 - hash: "fc0fbb8aac8f389841e615be1e7b06de" - } - Frame { - msec: 1360 - hash: "579c18fa201b5609276c761ffd42df33" - } - Frame { - msec: 1376 - hash: "5b3630c37acfc2599a5a8b2e11aaa34c" - } - Frame { - msec: 1392 - hash: "2c1ee8aca06dccf0d39287721bf76aa7" - } - Frame { - msec: 1408 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1424 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1440 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1456 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1472 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1488 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1504 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1520 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1536 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1552 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1568 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1584 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1600 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1616 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1632 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1648 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1664 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1680 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1696 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1712 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1728 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1744 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1760 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1776 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1792 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1808 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1824 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1840 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1856 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1872 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1888 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1904 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1920 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1936 - image: "reanchor.2.png" - } - Frame { - msec: 1952 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1968 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 1984 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 2000 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 2016 - hash: "c03bb338fff252a100b080366ac907b5" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 170; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2032 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 2048 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 2064 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 2080 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 2096 - hash: "c03bb338fff252a100b080366ac907b5" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 170; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2112 - hash: "c03bb338fff252a100b080366ac907b5" - } - Frame { - msec: 2128 - hash: "e9d7372c17ca1510eb15faff5d0794b2" - } - Frame { - msec: 2144 - hash: "60f897e2b9594c4b5c02ce2fbdf9ae3c" - } - Frame { - msec: 2160 - hash: "c35ead9a8e682e8f3c0a091d232310f7" - } - Frame { - msec: 2176 - hash: "272632b0568391022590edc09ea30e28" - } - Frame { - msec: 2192 - hash: "9d4cdb31b01e86a31627e3ff9bb64100" - } - Frame { - msec: 2208 - hash: "5ee65b0290721fe47508c6435c18554b" - } - Frame { - msec: 2224 - hash: "8dd65e1a9417318d793d2027de4fe6ae" - } - Frame { - msec: 2240 - hash: "bcce6d1fd7d2c1539ad9ac42c0552d5e" - } - Frame { - msec: 2256 - hash: "e01f5850113c178da3383406fe73d6e0" - } - Frame { - msec: 2272 - hash: "968fc6b2bf6b7d43e05254339cf6123f" - } - Frame { - msec: 2288 - hash: "30f25fdde31e13934e328fa1d2655ccb" - } - Frame { - msec: 2304 - hash: "f58a21e96037813c9dd7f933405c9b11" - } - Frame { - msec: 2320 - hash: "1fe42c887f2eaf7696fcf0b8b884d0fd" - } - Frame { - msec: 2336 - hash: "848a27b9e4f4c0bcc1a11d6dba7ce92b" - } - Frame { - msec: 2352 - hash: "ca92736257db83e39f54b04325201942" - } - Frame { - msec: 2368 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 2384 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 134; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2400 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 2416 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 2432 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 2448 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 2464 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 134; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2480 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 2496 - hash: "9082504eee5e0c3cbef9fd9545f09dcb" - } - Frame { - msec: 2512 - hash: "dbe5169edb4400c74841a8af64e0949f" - } - Frame { - msec: 2528 - hash: "d588405fc5e2423cdb954c5624172209" - } - Frame { - msec: 2544 - hash: "ed2b273ea36fb7d8feaca4d5dae72f81" - } - Frame { - msec: 2560 - hash: "5249e4824eb169b5ee3f7fb52fe09aa7" - } - Frame { - msec: 2576 - hash: "2838eff2a1a299c9e47cf78be99172ca" - } - Frame { - msec: 2592 - hash: "c47f6a937a4a6ef045159d7ba04de8af" - } - Frame { - msec: 2608 - hash: "fd3bc1b9ba2629bccb0fec04deffcdad" - } - Frame { - msec: 2624 - hash: "54c9b8599a32ac95aff324977b34f7e6" - } - Frame { - msec: 2640 - hash: "cc5652a05828146cdc9c9b8430f5f59c" - } - Frame { - msec: 2656 - hash: "ce5815fb51a4bd697a2fde46084e118b" - } - Frame { - msec: 2672 - hash: "01dfd2604263f1fd24382ce876af10f9" - } - Frame { - msec: 2688 - hash: "45ea282d20ee9e345eb2cac8c22c42e0" - } - Frame { - msec: 2704 - hash: "afd26ac9776e57c94e4b52ebfeb7206c" - } - Frame { - msec: 2720 - hash: "97aeed321d4d92cb1ec236d2a98fbe9b" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 134; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2736 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 2752 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 2768 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 2784 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 2800 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 134; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2816 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 2832 - hash: "81b8228c6aeefe8072b7704f11e6707e" - } - Frame { - msec: 2848 - hash: "617e416bf117a51b756c90321ebb1449" - } - Frame { - msec: 2864 - hash: "656d8d5d54c9ee137aceb519aff72cce" - } - Frame { - msec: 2880 - hash: "94ba3b6f558c010cdd32f54cce436388" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 134; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2896 - image: "reanchor.3.png" - } - Frame { - msec: 2912 - hash: "0bc822fdd4caac17aab80e8601d3a523" - } - Frame { - msec: 2928 - hash: "886d0407ac76d7344f7a314f07b3efff" - } - Frame { - msec: 2944 - hash: "eb6c46af5037f24348edbe0dda48fb62" - } - Frame { - msec: 2960 - hash: "1c578a1eeb67c6833241bcb3214f06fb" - } - Frame { - msec: 2976 - hash: "55f1631ef567217a5945b2a23c59b549" - } - Frame { - msec: 2992 - hash: "25fdd4d54ddb035b082dc3a0d0816114" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 134; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3008 - hash: "25fdd4d54ddb035b082dc3a0d0816114" - } - Frame { - msec: 3024 - hash: "efd61e7c1aaffec77bd3d2de6645b2c0" - } - Frame { - msec: 3040 - hash: "02ac5ca0fa7d2ec3903fccd5dc556fa5" - } - Frame { - msec: 3056 - hash: "daf52e45b8fc68f74e424554074678cc" - } - Frame { - msec: 3072 - hash: "9e2def87e83b0c4b9f26684665aa1e51" - } - Frame { - msec: 3088 - hash: "0e72fc762cc9a061e91692376d65d292" - } - Frame { - msec: 3104 - hash: "c5ac37e4a5250b35a4976bcb31505cca" - } - Frame { - msec: 3120 - hash: "eefe6bb7963c580c68198ee6098a36f4" - } - Frame { - msec: 3136 - hash: "7b78d77ac11b72d1fb827ebb66a04c8e" - } - Frame { - msec: 3152 - hash: "ce5815fb51a4bd697a2fde46084e118b" - } - Frame { - msec: 3168 - hash: "94ba3b6f558c010cdd32f54cce436388" - } - Frame { - msec: 3184 - hash: "61a56140e5a6a2bfcee5c6322b37e130" - } - Frame { - msec: 3200 - hash: "a67b22c0a966fe3fbe869497dc00960f" - } - Frame { - msec: 3216 - hash: "4edd212676ac93ae761039e80f989349" - } - Frame { - msec: 3232 - hash: "fea5797441d65625c400238f73d94807" - } - Frame { - msec: 3248 - hash: "23e9209ff0257343016cffdf7ea6571c" - } - Frame { - msec: 3264 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3280 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3296 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3312 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3328 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3344 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3360 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3376 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3392 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3408 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3424 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3440 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3456 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3472 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3488 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3504 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3520 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3536 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3552 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3568 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3584 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3600 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3616 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3632 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3648 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3664 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3680 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3696 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3712 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3728 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3744 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3760 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3776 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3792 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3808 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3824 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3840 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3856 - image: "reanchor.4.png" - } - Frame { - msec: 3872 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3888 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3904 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3920 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3936 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3952 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3968 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 3984 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4000 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4016 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4032 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4048 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4064 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4080 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4096 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4112 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4128 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4144 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4160 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4176 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 124; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4192 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4208 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4224 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4240 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4256 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 124; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4272 - hash: "3a1fc9be558078e35a9828e411847c19" - } - Frame { - msec: 4288 - hash: "81b8228c6aeefe8072b7704f11e6707e" - } - Frame { - msec: 4304 - hash: "617e416bf117a51b756c90321ebb1449" - } - Frame { - msec: 4320 - hash: "656d8d5d54c9ee137aceb519aff72cce" - } - Frame { - msec: 4336 - hash: "94ba3b6f558c010cdd32f54cce436388" - } - Frame { - msec: 4352 - hash: "5b0679ff3730cba4ac026e89c7811fbe" - } - Frame { - msec: 4368 - hash: "0bc822fdd4caac17aab80e8601d3a523" - } - Frame { - msec: 4384 - hash: "886d0407ac76d7344f7a314f07b3efff" - } - Frame { - msec: 4400 - hash: "eb6c46af5037f24348edbe0dda48fb62" - } - Frame { - msec: 4416 - hash: "1c578a1eeb67c6833241bcb3214f06fb" - } - Frame { - msec: 4432 - hash: "55f1631ef567217a5945b2a23c59b549" - } - Frame { - msec: 4448 - hash: "25fdd4d54ddb035b082dc3a0d0816114" - } - Frame { - msec: 4464 - hash: "295ea6ff4d3c2c7de0cfbc29b2bd2c38" - } - Frame { - msec: 4480 - hash: "26b978ab645c04731703bcf15ac34a11" - } - Frame { - msec: 4496 - hash: "0db4c2515b89506df51732c4b9bf75dc" - } - Frame { - msec: 4512 - hash: "3cf30f3a06e325e195a4a7dec1e04c01" - } - Frame { - msec: 4528 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4544 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4560 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4576 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4592 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4608 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4624 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4640 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4656 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4672 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4688 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4704 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4720 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4736 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4752 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4768 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4784 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4800 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4816 - image: "reanchor.5.png" - } - Frame { - msec: 4832 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4848 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4864 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4880 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4896 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4912 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4928 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4944 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4960 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4976 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 4992 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5008 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5024 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5040 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5056 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5072 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5088 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5104 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5120 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5136 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5152 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5168 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5184 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5200 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5216 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5232 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5248 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5264 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5280 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5296 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5312 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5328 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5344 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5360 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5376 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5392 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5408 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5424 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5440 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5456 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5472 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5488 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5504 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5520 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5536 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5552 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5568 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } - Frame { - msec: 5584 - hash: "0009d8bfdfaed2a4f05aacb7a7992234" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/reanchor.qml b/tests/auto/declarative/qmlvisual/animation/reanchorRTL/reanchor.qml deleted file mode 100644 index ba37737..0000000 --- a/tests/auto/declarative/qmlvisual/animation/reanchorRTL/reanchor.qml +++ /dev/null @@ -1,69 +0,0 @@ -import QtQuick 1.1 - -Rectangle { - id: container - width: 200; height: 200 - Rectangle { - id: myRect - anchors.layoutDirection: Qt.RightToLeft - objectName: "MyRect" - color: "green"; - anchors.left: parent.left - anchors.right: rightGuideline.left - anchors.top: topGuideline.top - anchors.bottom: container.bottom - } - Item { id: leftGuideline; x: 10 } - Item { id: rightGuideline; x: 150 } - Item { id: topGuideline; y: 10 } - Item { id: bottomGuideline; y: 150 } - Item { id: topGuideline2; y: 50 } - Item { id: bottomGuideline2; y: 175 } - MouseArea { - id: wholeArea - anchors.fill: parent - onClicked: { - if (container.state == "") { - container.state = "reanchored"; - } else if (container.state == "reanchored") { - container.state = "reanchored2"; - } else if (container.state == "reanchored2") - container.state = "reanchored"; - } - } - - states: [ State { - name: "reanchored" - AnchorChanges { - target: myRect; - anchors.left: leftGuideline.left - anchors.right: container.right - anchors.top: container.top - anchors.bottom: bottomGuideline.bottom - } - }, State { - name: "reanchored2" - AnchorChanges { - target: myRect; - anchors.left: undefined - anchors.right: undefined - anchors.top: topGuideline2.top - anchors.bottom: bottomGuideline2.bottom - } - }] - - transitions: Transition { - AnchorAnimation { } - } - - MouseArea { - width: 50; height: 50 - anchors.right: parent.right - anchors.bottom: parent.bottom - onClicked: { - container.state = ""; - } - } - - state: "reanchored" -} diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.0.png b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.0.png deleted file mode 100644 index 5bf32dd..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.1.png b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.1.png deleted file mode 100644 index e7571f2..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.2.png b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.2.png deleted file mode 100644 index 60d09e9..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml deleted file mode 100644 index f93458d..0000000 --- a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml +++ /dev/null @@ -1,515 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "scriptAction-visual.0.png" - } - Frame { - msec: 32 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 48 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 64 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 80 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 96 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 112 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 128 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 144 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 160 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 176 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 192 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 208 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 224 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 240 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 256 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 272 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 288 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 304 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 320 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 336 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 352 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 368 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 384 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 400 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 416 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 432 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 448 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 54; y: 52 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 464 - hash: "c5d2b291578c11c11452c29dc02bcad9" - } - Frame { - msec: 480 - hash: "650770d62a63031754b3c68f666a5805" - } - Frame { - msec: 496 - hash: "eb28945becabee0dffe618632d4db061" - } - Frame { - msec: 512 - hash: "6c7b66dff531723362418dacd23ea59e" - } - Frame { - msec: 528 - hash: "093bd3dd02a6d9f4dbd75a329bbf63f5" - } - Frame { - msec: 544 - hash: "5328b1f3932c8bf817a5031102e21c25" - } - Frame { - msec: 560 - hash: "ee2b8dc4ebdaaed41ae820385f56db83" - } - Frame { - msec: 576 - hash: "adf71c703dff4514d6ae247fd6b89030" - } - Frame { - msec: 592 - hash: "c93d78e604406a3c61c2b34e5e0893a4" - } - Frame { - msec: 608 - hash: "c91dbb897289d2949d08c6381583ad5e" - } - Frame { - msec: 624 - hash: "1e3a370e3d390e8d73731d659fae5908" - } - Frame { - msec: 640 - hash: "e6d3505120260677f5f1355abf0f2b1d" - } - Frame { - msec: 656 - hash: "251d68b91b37ef95ff61055f7b2ba0b5" - } - Frame { - msec: 672 - hash: "333a25691bafa88fbc92a153886c3b47" - } - Frame { - msec: 688 - hash: "e63367e5001732975bc4c002c079dbd8" - } - Frame { - msec: 704 - hash: "04e25f2fd913c38ee24558b52fb3ed37" - } - Frame { - msec: 720 - hash: "739f155ad3d703fa0255afed51baf51c" - } - Frame { - msec: 736 - hash: "739f155ad3d703fa0255afed51baf51c" - } - Frame { - msec: 752 - hash: "16de427e26afa1a1d91541fca1537033" - } - Frame { - msec: 768 - hash: "11a874ab1c429e1bcf5498808f3c42f7" - } - Frame { - msec: 784 - hash: "e97f33a71bf889815782c17067bcd736" - } - Frame { - msec: 800 - hash: "9f2f0728689a5ff76f87b13c92e9fd40" - } - Frame { - msec: 816 - hash: "9186cd14c3d9f2ad560be047cc483b50" - } - Frame { - msec: 832 - hash: "af2eb37824ad3567ce9db0329f647d50" - } - Frame { - msec: 848 - hash: "f09d264ed5f44313c19f2f985a26b9cd" - } - Frame { - msec: 864 - hash: "3ed8b3051d0d603bd514783fe04124a7" - } - Frame { - msec: 880 - hash: "38c7f8d39fd9a77400138da4e3ebb963" - } - Frame { - msec: 896 - hash: "6682f53fdda2d8662a31b725d23b08f6" - } - Frame { - msec: 912 - hash: "0f16d2640b51c9ada08c7aa0e8853d86" - } - Frame { - msec: 928 - hash: "22b9025d523dd1adb87f9b4c89295b29" - } - Frame { - msec: 944 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 960 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 976 - image: "scriptAction-visual.1.png" - } - Frame { - msec: 992 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1008 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1024 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1040 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1056 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1072 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1088 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1104 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1120 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1136 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1152 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1168 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1184 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 54; y: 52 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1200 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1216 - hash: "1761f6606bbdf5772594cf96412337ca" - } - Frame { - msec: 1232 - hash: "77ab7b0bad67c80c5f685b02e264d333" - } - Frame { - msec: 1248 - hash: "27c3099b0e9f0607e9ebc983b2613eb9" - } - Frame { - msec: 1264 - hash: "81bd467b2314fb877825323a6120de4a" - } - Frame { - msec: 1280 - hash: "5cd632ac5399826249137ff2f27ef734" - } - Frame { - msec: 1296 - hash: "3b6732d7539d7b9b6ac13b6f8291b993" - } - Frame { - msec: 1312 - hash: "6bde822175f1ee22a8bb0528d6170a5a" - } - Frame { - msec: 1328 - hash: "a8401f0c19db5c395cf122f3fe6f3be2" - } - Frame { - msec: 1344 - hash: "10e5126a9f97caf19df3d0ec4485222f" - } - Frame { - msec: 1360 - hash: "f7b0bde6f4c9e9c9aecdbf11f0ec525c" - } - Frame { - msec: 1376 - hash: "7501da757e6b0ba3923635765ef63f5b" - } - Frame { - msec: 1392 - hash: "c66f5f30f7a545fcf0b52debd68d96c1" - } - Frame { - msec: 1408 - hash: "ea679c31fd51733076716a325d2d4dc1" - } - Frame { - msec: 1424 - hash: "01ffc159e0d0796e4de7cffd46685481" - } - Frame { - msec: 1440 - hash: "c53b75720a772a43a6c7d046ffb4d39b" - } - Frame { - msec: 1456 - hash: "1338c0458f32869e35163a2dcb950b8e" - } - Frame { - msec: 1472 - hash: "1338c0458f32869e35163a2dcb950b8e" - } - Frame { - msec: 1488 - hash: "d894739536bb7033d321f8862264b5e6" - } - Frame { - msec: 1504 - hash: "52d5556f4b2404ae896ae36e0bc866ed" - } - Frame { - msec: 1520 - hash: "5ff9d9ab8099b2b9469df9efe672f46d" - } - Frame { - msec: 1536 - hash: "acadb950bd78c6fade9161f8e53628e7" - } - Frame { - msec: 1552 - hash: "7583b99a5f3aede70fc10728d77f57cc" - } - Frame { - msec: 1568 - hash: "f72881eb92792727985482996bf689f9" - } - Frame { - msec: 1584 - hash: "26e0d64d5afeecdc4d93492f1eaaa54f" - } - Frame { - msec: 1600 - hash: "93206a830cf787d00a6bb2d3c91d40bc" - } - Frame { - msec: 1616 - hash: "af0a99b072a754cd0ecb75a7198849c1" - } - Frame { - msec: 1632 - hash: "84adc92e299feeb494b108a009d1b662" - } - Frame { - msec: 1648 - hash: "4fac6d471517625d4f5ce6ed6aaebe0b" - } - Frame { - msec: 1664 - hash: "6952c27025740aca006a13da87379f9f" - } - Frame { - msec: 1680 - hash: "3297ed7bffb48a4f2ca90dd81eaf7c7a" - } - Frame { - msec: 1696 - hash: "3297ed7bffb48a4f2ca90dd81eaf7c7a" - } - Frame { - msec: 1712 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1728 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1744 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1760 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1776 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1792 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1808 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1824 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1840 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1856 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1872 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1888 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1904 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1920 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1936 - image: "scriptAction-visual.2.png" - } - Frame { - msec: 1952 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } - Frame { - msec: 1968 - hash: "6741d853f099a5a98fcdf87053b69ec8" - } -} diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml deleted file mode 100644 index 0a14542..0000000 --- a/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml +++ /dev/null @@ -1,40 +0,0 @@ -import QtQuick 1.0 - -/* -This test starts with a red rectangle at 0,0. It should animate moving 50 pixels right, -then immediately change blue, and then animate moving 50 pixels down. -*/ - -Rectangle { - width: 100; height: 100 - Rectangle { - id: myRect - width: 50; height: 50 - color: "red" - } - MouseArea { - id: clickable - anchors.fill: parent - } - - states: State { - name: "state1" - when: clickable.pressed - PropertyChanges { - target: myRect - x: 50; y: 50 - } - StateChangeScript { - name: "setColor" - script: myRect.color = "blue" - } - } - - transitions: Transition { - SequentialAnimation { - NumberAnimation { properties: "x"; easing.type: "InOutQuad" } - ScriptAction { scriptName: "setColor" } - NumberAnimation { properties: "y"; easing.type: "InOutQuad" } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.0.png b/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.0.png deleted file mode 100644 index 52fd55c..0000000 Binary files a/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml b/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml deleted file mode 100644 index b1871ce..0000000 --- a/tests/auto/declarative/qmlvisual/fillmode/data/fillmode.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "fillmode.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/fillmode/face.png b/tests/auto/declarative/qmlvisual/fillmode/face.png deleted file mode 100644 index e087316..0000000 Binary files a/tests/auto/declarative/qmlvisual/fillmode/face.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml b/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml deleted file mode 100644 index b2ecfee..0000000 --- a/tests/auto/declarative/qmlvisual/fillmode/fillmode.qml +++ /dev/null @@ -1,21 +0,0 @@ -import QtQuick 1.0 - -/* - This is a static display test of the various Image fill modes. See the png file in the data - subdirectory to see what the image should look like. -*/ - -Rectangle { - id: screen; width: 360; height: 200; color: "gray" - property string source: "face.png" - - Grid { - columns: 3 - Image { width: 120; height: 100; source: screen.source; fillMode: Image.Stretch } - Image { width: 120; height: 100; source: screen.source; fillMode: Image.PreserveAspectFit; smooth: true } - Image { width: 120; height: 100; source: screen.source; fillMode: Image.PreserveAspectCrop } - Image { width: 120; height: 100; source: screen.source; fillMode: Image.Tile; smooth: true } - Image { width: 120; height: 100; source: screen.source; fillMode: Image.TileHorizontally } - Image { width: 120; height: 100; source: screen.source; fillMode: Image.TileVertically } - } -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.0.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.0.png deleted file mode 100644 index fd28a93..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.1.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.1.png deleted file mode 100644 index 986a164..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.2.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.2.png deleted file mode 100644 index 986a164..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.3.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.3.png deleted file mode 100644 index fd28a93..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test.qml deleted file mode 100644 index e2bf23f..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test.qml +++ /dev/null @@ -1,923 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "test.0.png" - } - Frame { - msec: 32 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 48 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 64 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 80 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 96 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 112 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 128 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 144 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 160 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 176 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 192 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 208 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 224 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 240 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 256 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 272 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 288 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 304 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 320 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 336 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 352 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 368 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 384 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 400 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 416 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 432 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 448 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 464 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 480 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 496 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 512 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 528 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 544 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 560 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 576 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Frame { - msec: 592 - hash: "7d929804a37a70ffd487e95a3be8ea5f" - } - Key { - type: 6 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 608 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 624 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 640 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 656 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 672 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 688 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Key { - type: 7 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 704 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 720 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 736 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 752 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 768 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 784 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 800 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 816 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 832 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 848 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 864 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 880 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 896 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 912 - hash: "f369109744055d30eadf2832a028a104" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 928 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 944 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 960 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 976 - image: "test.1.png" - } - Frame { - msec: 992 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1008 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1024 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1040 - hash: "f369109744055d30eadf2832a028a104" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1056 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1072 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1088 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1104 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1120 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1136 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1152 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1168 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1184 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1200 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1216 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1232 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 1248 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1264 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1280 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1296 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1312 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1328 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1344 - hash: "f369109744055d30eadf2832a028a104" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1360 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1376 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1392 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1408 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1424 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1440 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1456 - hash: "f369109744055d30eadf2832a028a104" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1472 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1488 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1504 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1520 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1536 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1552 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1568 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1584 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1600 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1616 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1632 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1648 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1664 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1680 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1696 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1712 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Frame { - msec: 1728 - hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" - } - Key { - type: 6 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1744 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1760 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1776 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1792 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1808 - hash: "f369109744055d30eadf2832a028a104" - } - Key { - type: 7 - key: 16777235 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1824 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1840 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1856 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1872 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1888 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1904 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1920 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1936 - image: "test.2.png" - } - Frame { - msec: 1952 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 1968 - hash: "f369109744055d30eadf2832a028a104" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1984 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2000 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2016 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2032 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2048 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2080 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2096 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2112 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2128 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2144 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2160 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2176 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2192 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2208 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2224 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2240 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2256 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2272 - hash: "f369109744055d30eadf2832a028a104" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2288 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2304 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2320 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2336 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2352 - hash: "f369109744055d30eadf2832a028a104" - } - Frame { - msec: 2368 - hash: "f369109744055d30eadf2832a028a104" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2384 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2400 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2416 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2432 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2448 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2464 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2480 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2496 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2512 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2528 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2544 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2560 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2576 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2592 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2608 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2624 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2640 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2656 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2672 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2688 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2704 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2720 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2736 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2752 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2768 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2784 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2800 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2816 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2832 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2848 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2864 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2880 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2896 - image: "test.3.png" - } - Frame { - msec: 2912 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2928 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2944 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2960 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2976 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 2992 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 3008 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } - Frame { - msec: 3024 - hash: "94675f9c9afb6834b91a69fd0ce35a22" - } -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test2.0.png b/tests/auto/declarative/qmlvisual/focusscope/data/test2.0.png deleted file mode 100644 index 396bf2d..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test2.1.png b/tests/auto/declarative/qmlvisual/focusscope/data/test2.1.png deleted file mode 100644 index 396bf2d..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml deleted file mode 100644 index 8669071..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml +++ /dev/null @@ -1,323 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "test2.0.png" - } - Frame { - msec: 32 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 48 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 64 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 80 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 96 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 112 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 128 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 144 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 160 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 176 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 192 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 208 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 224 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 240 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 256 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 272 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 288 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 304 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 320 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 336 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 352 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 368 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 384 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 400 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 416 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 432 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 448 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 464 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 480 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 496 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 512 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 528 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 544 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 560 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 576 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 592 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 608 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 624 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 640 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 656 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 672 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 688 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 704 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 720 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 736 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 752 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 768 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 784 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 800 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 816 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 832 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 848 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 864 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 880 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 896 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 912 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 928 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 944 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 960 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 976 - image: "test2.1.png" - } - Frame { - msec: 992 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1008 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1024 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1040 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1056 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1072 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1088 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1104 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1120 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1136 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1152 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1168 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1184 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1200 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1216 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1232 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1248 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } - Frame { - msec: 1264 - hash: "f4041fcc91346361df95e344a0ee8e2d" - } -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.0.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.0.png deleted file mode 100644 index c092535..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.1.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.1.png deleted file mode 100644 index 861b459..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.2.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.2.png deleted file mode 100644 index 2ede7c9..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.3.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.3.png deleted file mode 100644 index 055f184..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.4.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.4.png deleted file mode 100644 index c092535..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml deleted file mode 100644 index 8ed9c7d..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml +++ /dev/null @@ -1,1327 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "test3.0.png" - } - Frame { - msec: 32 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 48 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 64 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 80 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 96 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 112 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 128 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 144 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 160 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 176 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 192 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 208 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 224 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 240 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 256 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 272 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 288 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 304 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 320 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 336 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 352 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 368 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 384 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 400 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 416 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 432 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 448 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 464 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 480 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 496 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 512 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 528 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "e24319b7e562a668e86ac17f4914bcb7" - } - Frame { - msec: 560 - hash: "742f87f00d2d7e64b4a579823fa99df2" - } - Frame { - msec: 576 - hash: "db6793df1b6d00f4b6286253173ee2b5" - } - Frame { - msec: 592 - hash: "3da67f52ad1bc0ee55f8d6637286f420" - } - Frame { - msec: 608 - hash: "89e8c8fd913cb229f5adc221090d789c" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 624 - hash: "d47cc2fe207628f4deddd58c3697171a" - } - Frame { - msec: 640 - hash: "9ab1f939324602533b14b20d6160ae57" - } - Frame { - msec: 656 - hash: "798b200076ec6688cda78fd273a9fde1" - } - Frame { - msec: 672 - hash: "5c485ac62f637db9e3aa327dd1bee801" - } - Frame { - msec: 688 - hash: "5c485ac62f637db9e3aa327dd1bee801" - } - Frame { - msec: 704 - hash: "5c485ac62f637db9e3aa327dd1bee801" - } - Frame { - msec: 720 - hash: "5c485ac62f637db9e3aa327dd1bee801" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 736 - hash: "75bbe5082eebec814c726adc8fc076ec" - } - Frame { - msec: 752 - hash: "58d8051766872d54831bec4c8c7cbd63" - } - Frame { - msec: 768 - hash: "f474b747b4b7bb2a5b2c418f35aa1b09" - } - Frame { - msec: 784 - hash: "d561cf0dbded0b2bd85c7c88fb3afdd6" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "49c0616c4d5cedeb9fdb12fb7d7f504d" - } - Frame { - msec: 816 - hash: "9e5c66cfc3af51b7a10f6a969452dafe" - } - Frame { - msec: 832 - hash: "72d765f52ce8ab3748cd43d859285ca7" - } - Frame { - msec: 848 - hash: "732987bbdc421c4650d7503387acd4de" - } - Frame { - msec: 864 - hash: "439456ecedad4674b6ecef415e53334b" - } - Frame { - msec: 880 - hash: "439456ecedad4674b6ecef415e53334b" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 896 - hash: "5f2d5dc55b551713c4219bc55124f7db" - } - Frame { - msec: 912 - hash: "54e2150829c6201b3ba8eb61f4142de7" - } - Frame { - msec: 928 - hash: "f916ac803817b7cd7e29c05ac23449fc" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 944 - hash: "590b45a3fb1571428c8da48f026fab3b" - } - Frame { - msec: 960 - hash: "b5a811e6d1b956af67c6df4c9eabd0a3" - } - Frame { - msec: 976 - image: "test3.1.png" - } - Frame { - msec: 992 - hash: "877ca6b70b6535f868d3a450045f70a0" - } - Frame { - msec: 1008 - hash: "559a5c06ed2d1030d21f56aaaded8869" - } - Frame { - msec: 1024 - hash: "559a5c06ed2d1030d21f56aaaded8869" - } - Frame { - msec: 1040 - hash: "559a5c06ed2d1030d21f56aaaded8869" - } - Frame { - msec: 1056 - hash: "559a5c06ed2d1030d21f56aaaded8869" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1072 - hash: "f6d3d4fd5d9d1be96646891cbf0740e5" - } - Frame { - msec: 1088 - hash: "2ba5d4da68051a96fed2b54804854a8e" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1104 - hash: "2b1b72dfac63903377b427ef4149dfd7" - } - Frame { - msec: 1120 - hash: "7ada77586dd0583a66c801b6faf78e2a" - } - Frame { - msec: 1136 - hash: "a5c527fa2095e2d8949d36351994624a" - } - Frame { - msec: 1152 - hash: "f89bf3f20d3f7284ba52338c1cfb91e1" - } - Frame { - msec: 1168 - hash: "e7de3174a111f26f4d92a273e2c43b61" - } - Frame { - msec: 1184 - hash: "d9ef1156a1f7bfe86f97717a600b31c9" - } - Frame { - msec: 1200 - hash: "0b216b28513d00939531e409aac328e8" - } - Frame { - msec: 1216 - hash: "0b216b28513d00939531e409aac328e8" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1232 - hash: "d92131f183e9d926a2718559f58f17cb" - } - Frame { - msec: 1248 - hash: "9e5985271ddec748803ea3c72d40ad97" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1264 - hash: "2462ddfcf93f96ad6a3164c7f21e2948" - } - Frame { - msec: 1280 - hash: "4ce27e3e77d9c80982c5197c2a440dc4" - } - Frame { - msec: 1296 - hash: "e4afa6dc35ddd52876af514ec151900e" - } - Frame { - msec: 1312 - hash: "3e542da8a83e53c66fd96d2c003a8b67" - } - Frame { - msec: 1328 - hash: "6b0afb12551ada7501346125ac29071c" - } - Frame { - msec: 1344 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1360 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1376 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1392 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1408 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1424 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1440 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1456 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1472 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 1488 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "ca6c00b583f88efb6efe285a0903392b" - } - Frame { - msec: 1520 - hash: "2a2fcb90a6a7ae6d3d08f49c7a7177c0" - } - Frame { - msec: 1536 - hash: "3a7cd960ff367793e09d73302e57b6e4" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1552 - hash: "581121ab5334a6122bf9ca4489c9b971" - } - Frame { - msec: 1568 - hash: "8690456fa25a12ef28f014b86cc94c81" - } - Frame { - msec: 1584 - hash: "27a395e2e25eedba8f361a20f917590b" - } - Frame { - msec: 1600 - hash: "5eae6bbdd6acd7f21eccf277f21f4893" - } - Frame { - msec: 1616 - hash: "f5ebab53b77dcea32e821c8e551077e4" - } - Frame { - msec: 1632 - hash: "738278d39b73bfa15fc8b19b5720bbd7" - } - Frame { - msec: 1648 - hash: "738278d39b73bfa15fc8b19b5720bbd7" - } - Frame { - msec: 1664 - hash: "738278d39b73bfa15fc8b19b5720bbd7" - } - Frame { - msec: 1680 - hash: "738278d39b73bfa15fc8b19b5720bbd7" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1696 - hash: "7c83c13e1d9e6456023ba7e2a1f3875c" - } - Frame { - msec: 1712 - hash: "f12f6c5111de654e90d462a4d44f12ec" - } - Frame { - msec: 1728 - hash: "dcb7712d8320bf4096a3af794facad4d" - } - Frame { - msec: 1744 - hash: "84f7c046592d31f403b56ee1fd6fcbc4" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1760 - hash: "1b05381e85ec8bbf69edacbedce01fb8" - } - Frame { - msec: 1776 - hash: "b2c148675ffe1ef5110602f7a4feab74" - } - Frame { - msec: 1792 - hash: "d082931d05d2b2dc24ccfa5d7a703291" - } - Frame { - msec: 1808 - hash: "99783e2541d03a7ce9ee4e69a2b21993" - } - Frame { - msec: 1824 - hash: "503ff7e940ac59006c1486e3d2027d35" - } - Frame { - msec: 1840 - hash: "503ff7e940ac59006c1486e3d2027d35" - } - Frame { - msec: 1856 - hash: "503ff7e940ac59006c1486e3d2027d35" - } - Frame { - msec: 1872 - hash: "503ff7e940ac59006c1486e3d2027d35" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1888 - hash: "06fbf3d840cbf170c94377d767d1d49f" - } - Frame { - msec: 1904 - hash: "34f538738046a1d6932ef1a6f59eb6be" - } - Frame { - msec: 1920 - hash: "2553f91e5ea5a4da70eb3825a0cdfa10" - } - Frame { - msec: 1936 - image: "test3.2.png" - } - Frame { - msec: 1952 - hash: "115f1c37d6492bbc4848cc4be6ddd2b0" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1968 - hash: "40d5255e7e5ca12b90f5cbede1e9b2cd" - } - Frame { - msec: 1984 - hash: "3a6f6b4cee75f8b1b0b2b5674c3df0a8" - } - Frame { - msec: 2000 - hash: "2c24eab593d56a7554f9ba925f858d5b" - } - Frame { - msec: 2016 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2032 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2048 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2064 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2080 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2096 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2112 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2128 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2144 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2160 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2176 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2192 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2208 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2224 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2240 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2256 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2272 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2288 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2304 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2320 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2336 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2352 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2368 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2384 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2400 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2416 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2432 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2448 - hash: "bb10ef1703674147351968121ebe0154" - } - Frame { - msec: 2464 - hash: "bb10ef1703674147351968121ebe0154" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2480 - hash: "1e61fbb8c054c6b8fdb895d236514bfa" - } - Frame { - msec: 2496 - hash: "3a1b093963a0cb898a68f87a3c2056a9" - } - Frame { - msec: 2512 - hash: "9fe3eb5cbc621401be9ab7bc7d28bb24" - } - Frame { - msec: 2528 - hash: "1bb16e3d17506913e295d68e8d4ffa88" - } - Frame { - msec: 2544 - hash: "19389ae4da2ad3bc7076632366db55c7" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "5f1731dd62f61ddafb7cfe66167b7408" - } - Frame { - msec: 2576 - hash: "e37b8399f9ea92a91b0d98b01a4ef72b" - } - Frame { - msec: 2592 - hash: "e1282e3afc46fa8828a138e4722707b5" - } - Frame { - msec: 2608 - hash: "503ff7e940ac59006c1486e3d2027d35" - } - Frame { - msec: 2624 - hash: "503ff7e940ac59006c1486e3d2027d35" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2640 - hash: "925852b350354bb596d749fe31828147" - } - Frame { - msec: 2656 - hash: "1e302775a002185b888b590cc6533b28" - } - Frame { - msec: 2672 - hash: "b147169c3688148bda5b82afa1f5d2dc" - } - Frame { - msec: 2688 - hash: "34964e45ff808595845f4a868be3782e" - } - Frame { - msec: 2704 - hash: "b86ef7d97f20c3894dc5a551f41ab9c4" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2720 - hash: "dc9981cb1833b34fc4fc9b833281348e" - } - Frame { - msec: 2736 - hash: "b28644e06195849afd44143bd60aa27d" - } - Frame { - msec: 2752 - hash: "738278d39b73bfa15fc8b19b5720bbd7" - } - Frame { - msec: 2768 - hash: "738278d39b73bfa15fc8b19b5720bbd7" - } - Frame { - msec: 2784 - hash: "738278d39b73bfa15fc8b19b5720bbd7" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "745230d107911d033ebeb58dc8a94445" - } - Frame { - msec: 2816 - hash: "81cc4ac88a51518cf50cd6b46c3e0cb7" - } - Frame { - msec: 2832 - hash: "10b7cff34298222ee305c9895bcdef21" - } - Frame { - msec: 2848 - hash: "622a027091c1577a646ece0331016783" - } - Frame { - msec: 2864 - hash: "ab527747f9918774c7a4cfb476cc31f4" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2880 - hash: "1bf8a37b5aeb9df37f97083ce19a0c1a" - } - Frame { - msec: 2896 - image: "test3.3.png" - } - Frame { - msec: 2912 - hash: "19a2f59bfe96a0a33ff45ab72cc2a2fc" - } - Frame { - msec: 2928 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Frame { - msec: 2944 - hash: "202d4ca464f73e28a286ebed05e86d9d" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2960 - hash: "6b172121f35f9667f40b0006d5875685" - } - Frame { - msec: 2976 - hash: "6e65dfe717a69de65d58e059904bb00a" - } - Frame { - msec: 2992 - hash: "e660212f2d7d477213ef8b8262e8f2b1" - } - Frame { - msec: 3008 - hash: "df1e770a7177b7871cf734c47e1227ba" - } - Frame { - msec: 3024 - hash: "9d103d49ea30b04f3e97ecad3c13a816" - } - Frame { - msec: 3040 - hash: "4602aaf8b65c4ff5b9c8d4ba8d5b89d5" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3056 - hash: "bf029f1cb5ddf0dc3931b47895a2141d" - } - Frame { - msec: 3072 - hash: "0b216b28513d00939531e409aac328e8" - } - Frame { - msec: 3088 - hash: "0b216b28513d00939531e409aac328e8" - } - Frame { - msec: 3104 - hash: "0b216b28513d00939531e409aac328e8" - } - Frame { - msec: 3120 - hash: "0b216b28513d00939531e409aac328e8" - } - Frame { - msec: 3136 - hash: "0b216b28513d00939531e409aac328e8" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3152 - hash: "807fe46158fdc72c45cd6c8024ce705d" - } - Frame { - msec: 3168 - hash: "58dc1ca8e39488479acdb79762000ad5" - } - Frame { - msec: 3184 - hash: "48dd97d986ee545f6727128b7a06529f" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3200 - hash: "a7f0c00cb4bbbd65c02b3949c90564ad" - } - Frame { - msec: 3216 - hash: "3f1c40e8d17b83ff3a251d9284bd4282" - } - Frame { - msec: 3232 - hash: "d7527558128467c64cf0a07289158238" - } - Frame { - msec: 3248 - hash: "3af9f7618d0c9ffedb942ae422d61dcb" - } - Frame { - msec: 3264 - hash: "eb1703107106afc54d47d8600ea40f18" - } - Frame { - msec: 3280 - hash: "559a5c06ed2d1030d21f56aaaded8869" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3296 - hash: "c9a69d9ad499e6537ef047382dc01460" - } - Frame { - msec: 3312 - hash: "594911681db91c825b93633b6aa3fe1f" - } - Frame { - msec: 3328 - hash: "f566d5e728e9a45c7d339282c0c6709c" - } - Frame { - msec: 3344 - hash: "49f1d0164a1ae3c361421635a2038697" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3360 - hash: "a22b4ea9973c03042a3cfa5d23a79c86" - } - Frame { - msec: 3376 - hash: "abab27079cd52caaaf421d1b4d8d8066" - } - Frame { - msec: 3392 - hash: "e528a9ab6ae13518fa541d7f2c6e09a8" - } - Frame { - msec: 3408 - hash: "439456ecedad4674b6ecef415e53334b" - } - Frame { - msec: 3424 - hash: "439456ecedad4674b6ecef415e53334b" - } - Frame { - msec: 3440 - hash: "439456ecedad4674b6ecef415e53334b" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3456 - hash: "57543f91e958840efcad1948a19aa8e1" - } - Frame { - msec: 3472 - hash: "534fc45fdace49ebf444e393b57c1315" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3488 - hash: "0eee986f096e3ebddf61d3b0a18f2eff" - } - Frame { - msec: 3504 - hash: "74f702ca61d97d31f79d8ce3be53eee7" - } - Frame { - msec: 3520 - hash: "1f0b630548fe93f93550439b4945bdda" - } - Frame { - msec: 3536 - hash: "1eb442ca5e7e1f476d8297c3bdb7bbd1" - } - Frame { - msec: 3552 - hash: "1689cba06c74a6204d80cc651b1d2150" - } - Frame { - msec: 3568 - hash: "8711b6647c4146dfa3e3c680fbd1bf08" - } - Frame { - msec: 3584 - hash: "5c485ac62f637db9e3aa327dd1bee801" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3600 - hash: "0ac2726d000ba2ef1097a49f37d5c209" - } - Frame { - msec: 3616 - hash: "83d00571e499039b7f577e393eed881a" - } - Frame { - msec: 3632 - hash: "46724d427a8f6d7737abcacd76701259" - } - Frame { - msec: 3648 - hash: "a63554a4839e8874cbebe5204d43c6d5" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3664 - hash: "5946c98c4204d454a41575242db5fd45" - } - Frame { - msec: 3680 - hash: "a3d0107e71a6b454f8fdc7557eb9ce18" - } - Frame { - msec: 3696 - hash: "86d9ad1831acc4a73075e6792efb7db4" - } - Frame { - msec: 3712 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3728 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3744 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3760 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3776 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3792 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3808 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3824 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3840 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3856 - image: "test3.4.png" - } - Frame { - msec: 3872 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3888 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3904 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3920 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3936 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3952 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3968 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 3984 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4000 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4016 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4032 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4048 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4064 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4080 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4096 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4112 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4128 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4144 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4160 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4176 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4192 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4208 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4224 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4240 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } - Frame { - msec: 4256 - hash: "cb3a3cca07a49fadf8bb00834ea24f73" - } -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/test.qml b/tests/auto/declarative/qmlvisual/focusscope/test.qml deleted file mode 100644 index 7342e35..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/test.qml +++ /dev/null @@ -1,81 +0,0 @@ -import QtQuick 1.0 - -/* - Blue border indicates scoped focus - Black border indicates NOT scoped focus - Red box indicates active focus - Use arrow keys to navigate - Press "9" to print currently focused item -*/ -Rectangle { - color: "white" - width: 480 - height: 480 - - Keys.onDigit9Pressed: console.log("Error - Root") - - FocusScope { - id: myScope - focus: true - - Keys.onDigit9Pressed: console.log("Error - FocusScope") - - Rectangle { - height: 120 - width: 420 - - color: "transparent" - border.width: 5 - border.color: myScope.activeFocus?"blue":"black" - - Rectangle { - id: item1 - x: 10; y: 10 - width: 100; height: 100; color: "green" - border.width: 5 - border.color: activeFocus?"blue":"black" - Keys.onDigit9Pressed: console.log("Top Left"); - KeyNavigation.right: item2 - focus: true - - Rectangle { - width: 50; height: 50; anchors.centerIn: parent - color: parent.focus?"red":"transparent" - } - } - - Rectangle { - id: item2 - x: 310; y: 10 - width: 100; height: 100; color: "green" - border.width: 5 - border.color: activeFocus?"blue":"black" - KeyNavigation.left: item1 - Keys.onDigit9Pressed: console.log("Top Right"); - - Rectangle { - width: 50; height: 50; anchors.centerIn: parent - color: parent.focus?"red":"transparent" - } - } - } - KeyNavigation.down: item3 - } - - Rectangle { - id: item3 - x: 10; y: 300 - width: 100; height: 100; color: "green" - border.width: 5 - border.color: activeFocus?"blue":"black" - - Keys.onDigit9Pressed: console.log("Bottom Left"); - KeyNavigation.up: myScope - - Rectangle { - width: 50; height: 50; anchors.centerIn: parent - color: parent.focus?"red":"transparent" - } - } - -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/test2.qml deleted file mode 100644 index 072eddb..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/test2.qml +++ /dev/null @@ -1,38 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "white" - width: 400 - height: 50 - - //All five rectangles should be red - FocusScope { - focus: true - Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } - - FocusScope { - x: 80 - focus: true - Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } - - FocusScope { - x: 80 - focus: true - Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } - - FocusScope { - x: 80 - focus: true - Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } - - FocusScope { - x: 80 - focus: true - Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } - } - } - } - } - } - -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/test3.qml deleted file mode 100644 index 90c2357..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/test3.qml +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 1.0 - -/* - Currently selected element should be red - Pressing "9" should print the number of the currently selected item - Be sure to scroll all the way to the right, pause, and then all the way to the left -*/ -Rectangle { - color: "white" - width: 400 - height: 100 - - ListModel { - id: model - ListElement { name: "red" } - ListElement { name: "orange" } - ListElement { name: "yellow" } - ListElement { name: "green" } - ListElement { name: "cyan" } - ListElement { name: "blue" } - ListElement { name: "indigo" } - ListElement { name: "violet" } - ListElement { name: "pink" } - } - - Component { - id: verticalDelegate - FocusScope { - id: root - width: 50; height: 50; - Keys.onDigit9Pressed: console.log("Error - " + name) - Rectangle { - focus: true - Keys.onDigit9Pressed: console.log(name) - width: 50; height: 50; - color: root.ListView.isCurrentItem?"black":name - } - } - } - - ListView { - width: 800; height: 50; orientation: "Horizontal" - focus: true - model: model - delegate: verticalDelegate - preferredHighlightBegin: 100 - preferredHighlightEnd: 101 - highlightRangeMode: ListView.StrictlyEnforceRange - } - - -} 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 33d8cb8..0000000 --- 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 - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/animated.qml deleted file mode 100644 index 21f6b5f..0000000 --- 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 - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml deleted file mode 100644 index 1a8b7a5..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/borders.qml +++ /dev/null @@ -1,18 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: page - color: "white" - width: 520; height: 280 - - BorderImage { - x: 20; y: 20; width: 230; height: 240 - smooth: true - source: "content/colors-stretch.sci" - } - BorderImage { - x: 270; y: 20; width: 230; height: 240 - smooth: true - source: "content/colors-round.sci" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml deleted file mode 100644 index 923db47b..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml +++ /dev/null @@ -1,38 +0,0 @@ -import QtQuick 1.0 - -Item { - property alias horizontalMode: image.horizontalTileMode - property alias verticalMode: image.verticalTileMode - property alias source: image.source - property alias antialiased: image.smooth - - property int minWidth - property int minHeight - property int maxWidth - property int maxHeight - property int margin - - id: container - width: maxWidth; height: maxHeight - - BorderImage { - id: image; x: container.width / 2 - width / 2; y: container.height / 2 - height / 2 - - SequentialAnimation on width { - loops: Animation.Infinite - NumberAnimation { from: container.minWidth; to: container.maxWidth; duration: 600; easing.type: "InOutQuad"} - NumberAnimation { from: container.maxWidth; to: container.minWidth; duration: 600; easing.type: "InOutQuad" } - } - - SequentialAnimation on height { - loops: Animation.Infinite - NumberAnimation { from: container.minHeight; to: container.maxHeight; duration: 600; easing.type: "InOutQuad"} - NumberAnimation { from: container.maxHeight; to: container.minHeight; duration: 600; easing.type: "InOutQuad" } - } - - border.top: container.margin - border.left: container.margin - border.bottom: container.margin - border.right: container.margin - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/bw.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/bw.png deleted file mode 100644 index 486eaae..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/bw.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors-round.sci b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors-round.sci deleted file mode 100644 index 0d91764..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors-round.sci +++ /dev/null @@ -1,7 +0,0 @@ -border.left:15 -border.top:15 -border.right:15 -border.bottom:15 -horizontalTileRule:Round -verticalTileRule:Round -source:colors.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors-stretch.sci b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors-stretch.sci deleted file mode 100644 index 16ac8cc..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors-stretch.sci +++ /dev/null @@ -1,5 +0,0 @@ -border.left:15 -border.top:15 -border.right:15 -border.bottom:15 -source:colors.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors.png deleted file mode 100644 index 116907d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/colors.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/qmldir b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/qmldir deleted file mode 100644 index 0c732d2..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/qmldir +++ /dev/null @@ -1 +0,0 @@ -MyBorderImage 1.0 MyBorderImage.qml diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.0.png deleted file mode 100644 index b7d06e4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.1.png deleted file mode 100644 index d904aa0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml deleted file mode 100644 index 6c7a940..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml +++ /dev/null @@ -1,319 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "animated-smooth.0.png" - } - Frame { - msec: 32 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 48 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 64 - hash: "8ba2cebd7b80bd58612ce46470e7763b" - } - Frame { - msec: 80 - hash: "9ab9c8f788bbca58552bbb6009386d69" - } - Frame { - msec: 96 - hash: "7f4b50df7848ad07fb75cb19f2c4b04a" - } - Frame { - msec: 112 - hash: "425e48ae492190eb6b8028be11352d7e" - } - Frame { - msec: 128 - hash: "183e1f8321edb7b8d1cc2cc858039360" - } - Frame { - msec: 144 - hash: "83d82bc27b0e3387dddb8e7e09380e02" - } - Frame { - msec: 160 - hash: "bca94a64a283e7e30ec8c1fe3249f981" - } - Frame { - msec: 176 - hash: "26cbcf6233c8fd222a857a8ae801749a" - } - Frame { - msec: 192 - hash: "ac1d21dba648ab729e1670ead441b173" - } - Frame { - msec: 208 - hash: "e42811f8029c6cd70041f8492a31ff27" - } - Frame { - msec: 224 - hash: "f0b06b2ccf1be47ab7c5f6863ccdc495" - } - Frame { - msec: 240 - hash: "9b398166d385facb2d02c86cd92ab85f" - } - Frame { - msec: 256 - hash: "a4414a5ae4e44320383d49441d7acb51" - } - Frame { - msec: 272 - hash: "f09208fa210f3b0b271af9ef6f3741e8" - } - Frame { - msec: 288 - hash: "054f7aebcef583f9c8469aaa2e62f9ea" - } - Frame { - msec: 304 - hash: "1331b1218fa6134922ab248bfde5d3f6" - } - Frame { - msec: 320 - hash: "601b97220c77c185d9ed3ae3726815a5" - } - Frame { - msec: 336 - hash: "487c739f3849834e3d7fa2885bb28375" - } - Frame { - msec: 352 - hash: "c41dc19ab7f3c80349ac52ab2c3b410d" - } - Frame { - msec: 368 - hash: "c6e8b055e5919aecbf2ef4d88de6cabd" - } - Frame { - msec: 384 - hash: "f9d99999cccd8a3a9d7cb74cadb08059" - } - Frame { - msec: 400 - hash: "c466c57cda1c7666a46bab9478031c86" - } - Frame { - msec: 416 - hash: "02f9c85d8cbd9041ed18d2fe0071c526" - } - Frame { - msec: 432 - hash: "355d2b1b30a721a26f80c414bd9164f6" - } - Frame { - msec: 448 - hash: "bfc8b1bdb53f4a4c44285a5c10819ae7" - } - Frame { - msec: 464 - hash: "c272ac121fe5392f12ef3180d4c694c8" - } - Frame { - msec: 480 - hash: "83324ab9209ac5246c39274ecec2dbcf" - } - Frame { - msec: 496 - hash: "b128fd583f5fa460bcd1c062226274fb" - } - Frame { - msec: 512 - hash: "f46f1f1069806b1e17f340140e82bfd3" - } - Frame { - msec: 528 - hash: "dff621d5da5f4d008a8f874914f90637" - } - Frame { - msec: 544 - hash: "c5920a84e215f4bbda3032bbfbca4070" - } - Frame { - msec: 560 - hash: "ecc23f198a4bf346bf6eee51f7adea69" - } - Frame { - msec: 576 - hash: "dcc8f5b1b6aac31c3c5856560b37c501" - } - Frame { - msec: 592 - hash: "203fa4bd23440aa88fc2a27b66ee091d" - } - Frame { - msec: 608 - hash: "a2662209c8f9aa7bd9c5b4066b289cde" - } - Frame { - msec: 624 - hash: "a2662209c8f9aa7bd9c5b4066b289cde" - } - Frame { - msec: 640 - hash: "203fa4bd23440aa88fc2a27b66ee091d" - } - Frame { - msec: 656 - hash: "dcc8f5b1b6aac31c3c5856560b37c501" - } - Frame { - msec: 672 - hash: "ecc23f198a4bf346bf6eee51f7adea69" - } - Frame { - msec: 688 - hash: "c5920a84e215f4bbda3032bbfbca4070" - } - Frame { - msec: 704 - hash: "dff621d5da5f4d008a8f874914f90637" - } - Frame { - msec: 720 - hash: "f46f1f1069806b1e17f340140e82bfd3" - } - Frame { - msec: 736 - hash: "b128fd583f5fa460bcd1c062226274fb" - } - Frame { - msec: 752 - hash: "83324ab9209ac5246c39274ecec2dbcf" - } - Frame { - msec: 768 - hash: "c272ac121fe5392f12ef3180d4c694c8" - } - Frame { - msec: 784 - hash: "bfc8b1bdb53f4a4c44285a5c10819ae7" - } - Frame { - msec: 800 - hash: "355d2b1b30a721a26f80c414bd9164f6" - } - Frame { - msec: 816 - hash: "02f9c85d8cbd9041ed18d2fe0071c526" - } - Frame { - msec: 832 - hash: "c466c57cda1c7666a46bab9478031c86" - } - Frame { - msec: 848 - hash: "f9d99999cccd8a3a9d7cb74cadb08059" - } - Frame { - msec: 864 - hash: "c6e8b055e5919aecbf2ef4d88de6cabd" - } - Frame { - msec: 880 - hash: "c41dc19ab7f3c80349ac52ab2c3b410d" - } - Frame { - msec: 896 - hash: "487c739f3849834e3d7fa2885bb28375" - } - Frame { - msec: 912 - hash: "601b97220c77c185d9ed3ae3726815a5" - } - Frame { - msec: 928 - hash: "1331b1218fa6134922ab248bfde5d3f6" - } - Frame { - msec: 944 - hash: "054f7aebcef583f9c8469aaa2e62f9ea" - } - Frame { - msec: 960 - hash: "f09208fa210f3b0b271af9ef6f3741e8" - } - Frame { - msec: 976 - image: "animated-smooth.1.png" - } - Frame { - msec: 992 - hash: "9b398166d385facb2d02c86cd92ab85f" - } - Frame { - msec: 1008 - hash: "f0b06b2ccf1be47ab7c5f6863ccdc495" - } - Frame { - msec: 1024 - hash: "e42811f8029c6cd70041f8492a31ff27" - } - Frame { - msec: 1040 - hash: "ac1d21dba648ab729e1670ead441b173" - } - Frame { - msec: 1056 - hash: "26cbcf6233c8fd222a857a8ae801749a" - } - Frame { - msec: 1072 - hash: "bca94a64a283e7e30ec8c1fe3249f981" - } - Frame { - msec: 1088 - hash: "83d82bc27b0e3387dddb8e7e09380e02" - } - Frame { - msec: 1104 - hash: "183e1f8321edb7b8d1cc2cc858039360" - } - Frame { - msec: 1120 - hash: "425e48ae492190eb6b8028be11352d7e" - } - Frame { - msec: 1136 - hash: "7f4b50df7848ad07fb75cb19f2c4b04a" - } - Frame { - msec: 1152 - hash: "9ab9c8f788bbca58552bbb6009386d69" - } - Frame { - msec: 1168 - hash: "8ba2cebd7b80bd58612ce46470e7763b" - } - Frame { - msec: 1184 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1200 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1216 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1232 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1248 - hash: "a2467396d7318a93d35aa314896d3d05" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.0.png deleted file mode 100644 index b7d06e4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.1.png deleted file mode 100644 index a0081a9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml deleted file mode 100644 index 87be9f0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml +++ /dev/null @@ -1,343 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "animated.0.png" - } - Frame { - msec: 32 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 48 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 64 - hash: "ed19378ea8f51f5ecbd4c89ee5c905c2" - } - Frame { - msec: 80 - hash: "3dc69d5d1b6c524a74e7cec619df5ee3" - } - Frame { - msec: 96 - hash: "ab8d9aa7290be2134a6ef10ca1e1bfe7" - } - Frame { - msec: 112 - hash: "8091f4ff6f68e178b7a2a76ba2b38df3" - } - Frame { - msec: 128 - hash: "a94ad01eb63609b5e4a9e6570e1dc25c" - } - Frame { - msec: 144 - hash: "21692407cdfeeb20ff81d5d8a8ba3b7e" - } - Frame { - msec: 160 - hash: "b1d5e860ea311dce4a46fd6d46f9ed58" - } - Frame { - msec: 176 - hash: "a2ef453b88ee01c70a4312ab6dd26685" - } - Frame { - msec: 192 - hash: "6ce1f7da3994a51ad06afa0afb789752" - } - Frame { - msec: 208 - hash: "dccf9c55dfe7ae652b0e659893465158" - } - Frame { - msec: 224 - hash: "18b00b462711676fdf61ef1819f9f73a" - } - Frame { - msec: 240 - hash: "981011b01c3dbde098b1a3d0de4026cd" - } - Frame { - msec: 256 - hash: "86389b057e84c4dd4cf75d4e33d5e282" - } - Frame { - msec: 272 - hash: "6802146ad90b2921856c103246f4bca9" - } - Frame { - msec: 288 - hash: "7ab7d71199e883192e28fc150646128c" - } - Frame { - msec: 304 - hash: "3d2298cc655318029a2467813f8d75f4" - } - Frame { - msec: 320 - hash: "74a1ed7250f85e7ed4d811b5b697ecb3" - } - Frame { - msec: 336 - hash: "2cc6d5e8f4ebde059ffe31fffb2b359d" - } - Frame { - msec: 352 - hash: "b08aec6d9f82e0d530d57f592c25e91a" - } - Frame { - msec: 368 - hash: "9f4272d24685a9fbe5c48186932cac07" - } - Frame { - msec: 384 - hash: "4cde877841640aa89949c1369c3b6fd0" - } - Frame { - msec: 400 - hash: "bdbbd0b6a309b63d152b7f9b34b51d80" - } - Frame { - msec: 416 - hash: "531708677915c1e094ece6f1acac6d1f" - } - Frame { - msec: 432 - hash: "7213628b1f66f1dc47fa63eb2aad2d81" - } - Frame { - msec: 448 - hash: "0ff58a47d524fae956431efc21364ed2" - } - Frame { - msec: 464 - hash: "1e940cc44e00f05bad28bcf934b40b1c" - } - Frame { - msec: 480 - hash: "0f76be39637e8b6ac15c40ea95890189" - } - Frame { - msec: 496 - hash: "e23cf00dbd05677815e7e38f6f8e3a4a" - } - Frame { - msec: 512 - hash: "3d7e81620d169800f6a251fa3875f23d" - } - Frame { - msec: 528 - hash: "9e04076e283a3a71407488e94d84861f" - } - Frame { - msec: 544 - hash: "f4fc58740d6b5cf392e117164d859c0b" - } - Frame { - msec: 560 - hash: "8f041ba2a82618c1545aac6f50c95384" - } - Frame { - msec: 576 - hash: "759368622bc25c7ae1cb8d2c44affe6a" - } - Frame { - msec: 592 - hash: "90314671aab8165c7c1b35dcf5aaa6b9" - } - Frame { - msec: 608 - hash: "ecd1d2fe087a36fc58290c0c249a7ea0" - } - Frame { - msec: 624 - hash: "ecd1d2fe087a36fc58290c0c249a7ea0" - } - Frame { - msec: 640 - hash: "90314671aab8165c7c1b35dcf5aaa6b9" - } - Frame { - msec: 656 - hash: "759368622bc25c7ae1cb8d2c44affe6a" - } - Frame { - msec: 672 - hash: "8f041ba2a82618c1545aac6f50c95384" - } - Frame { - msec: 688 - hash: "f4fc58740d6b5cf392e117164d859c0b" - } - Frame { - msec: 704 - hash: "9e04076e283a3a71407488e94d84861f" - } - Frame { - msec: 720 - hash: "3d7e81620d169800f6a251fa3875f23d" - } - Frame { - msec: 736 - hash: "e23cf00dbd05677815e7e38f6f8e3a4a" - } - Frame { - msec: 752 - hash: "0f76be39637e8b6ac15c40ea95890189" - } - Frame { - msec: 768 - hash: "1e940cc44e00f05bad28bcf934b40b1c" - } - Frame { - msec: 784 - hash: "0ff58a47d524fae956431efc21364ed2" - } - Frame { - msec: 800 - hash: "7213628b1f66f1dc47fa63eb2aad2d81" - } - Frame { - msec: 816 - hash: "531708677915c1e094ece6f1acac6d1f" - } - Frame { - msec: 832 - hash: "bdbbd0b6a309b63d152b7f9b34b51d80" - } - Frame { - msec: 848 - hash: "4cde877841640aa89949c1369c3b6fd0" - } - Frame { - msec: 864 - hash: "9f4272d24685a9fbe5c48186932cac07" - } - Frame { - msec: 880 - hash: "b08aec6d9f82e0d530d57f592c25e91a" - } - Frame { - msec: 896 - hash: "2cc6d5e8f4ebde059ffe31fffb2b359d" - } - Frame { - msec: 912 - hash: "74a1ed7250f85e7ed4d811b5b697ecb3" - } - Frame { - msec: 928 - hash: "3d2298cc655318029a2467813f8d75f4" - } - Frame { - msec: 944 - hash: "7ab7d71199e883192e28fc150646128c" - } - Frame { - msec: 960 - hash: "6802146ad90b2921856c103246f4bca9" - } - Frame { - msec: 976 - image: "animated.1.png" - } - Frame { - msec: 992 - hash: "981011b01c3dbde098b1a3d0de4026cd" - } - Frame { - msec: 1008 - hash: "18b00b462711676fdf61ef1819f9f73a" - } - Frame { - msec: 1024 - hash: "dccf9c55dfe7ae652b0e659893465158" - } - Frame { - msec: 1040 - hash: "6ce1f7da3994a51ad06afa0afb789752" - } - Frame { - msec: 1056 - hash: "a2ef453b88ee01c70a4312ab6dd26685" - } - Frame { - msec: 1072 - hash: "b1d5e860ea311dce4a46fd6d46f9ed58" - } - Frame { - msec: 1088 - hash: "21692407cdfeeb20ff81d5d8a8ba3b7e" - } - Frame { - msec: 1104 - hash: "a94ad01eb63609b5e4a9e6570e1dc25c" - } - Frame { - msec: 1120 - hash: "8091f4ff6f68e178b7a2a76ba2b38df3" - } - Frame { - msec: 1136 - hash: "ab8d9aa7290be2134a6ef10ca1e1bfe7" - } - Frame { - msec: 1152 - hash: "3dc69d5d1b6c524a74e7cec619df5ee3" - } - Frame { - msec: 1168 - hash: "ed19378ea8f51f5ecbd4c89ee5c905c2" - } - Frame { - msec: 1184 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1200 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1216 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1232 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1248 - hash: "a2467396d7318a93d35aa314896d3d05" - } - Frame { - msec: 1264 - hash: "ed19378ea8f51f5ecbd4c89ee5c905c2" - } - Frame { - msec: 1280 - hash: "3dc69d5d1b6c524a74e7cec619df5ee3" - } - Frame { - msec: 1296 - hash: "ab8d9aa7290be2134a6ef10ca1e1bfe7" - } - Frame { - msec: 1312 - hash: "8091f4ff6f68e178b7a2a76ba2b38df3" - } - Frame { - msec: 1328 - hash: "a94ad01eb63609b5e4a9e6570e1dc25c" - } - Frame { - msec: 1344 - hash: "21692407cdfeeb20ff81d5d8a8ba3b7e" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.0.png deleted file mode 100644 index 8d43554..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml deleted file mode 100644 index eb40fcb..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "borders.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.0.png deleted file mode 100644 index 9a81b29..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.1.png deleted file mode 100644 index 2d9c4fd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.2.png deleted file mode 100644 index 2bb0cb0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.3.png deleted file mode 100644 index 8260a65..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.4.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.4.png deleted file mode 100644 index 0abcbc2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.qml deleted file mode 100644 index f1bb428..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data-MAC/flickable-horizontal.qml +++ /dev/null @@ -1,1575 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "flickable-horizontal.0.png" - } - Frame { - msec: 32 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 48 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 64 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 80 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 96 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 112 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 128 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 144 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 160 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 176 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 192 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 208 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 224 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 240 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 256 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 272 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 288 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 304 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 320 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 336 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 352 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 368 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 384 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 400 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 416 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 432 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 448 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 464 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 480 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 496 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 512 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 528 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 544 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 560 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 576 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 592 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 608 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 624 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 640 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 656 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 672 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 688 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 704 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 720 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 447; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 736 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 752 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 768 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 446; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 784 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 440; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 800 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 425; y: 151 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 407; y: 157 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 816 - hash: "c92e345e4ffdb30c28d9d5aa5400bd30" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 359; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 832 - hash: "90f94986ab44ab59618e9a5da17b8cc9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 309; y: 181 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 848 - hash: "0154a65f8693b98576101ac1c2fc8761" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 282; y: 187 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 282; y: 187 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 864 - hash: "792c1b5267f14c891dae2348a8188a92" - } - Frame { - msec: 880 - hash: "15ce9e88d4ad2e698bf167d1432c0b8a" - } - Frame { - msec: 896 - hash: "8f4109ef4c24d286d73f689565a0d056" - } - Frame { - msec: 912 - hash: "f5728190bf5c94742686f063b4a4b09b" - } - Frame { - msec: 928 - hash: "a38c7527a9a818b7bc25466b0e4939f9" - } - Frame { - msec: 944 - hash: "ed3902455fc31a4e3232308b815a4daa" - } - Frame { - msec: 960 - hash: "a2093589363ac2d50491412e99e0193a" - } - Frame { - msec: 976 - image: "flickable-horizontal.1.png" - } - Frame { - msec: 992 - hash: "c32349580e3a9586cc1133c935607cf0" - } - Frame { - msec: 1008 - hash: "cd2068492e346eb20d50aee69e3a3559" - } - Frame { - msec: 1024 - hash: "f43a1a38894b8ffad009ba995d84b0ee" - } - Frame { - msec: 1040 - hash: "2d5c4a73df2a054801571f1ce119e31f" - } - Frame { - msec: 1056 - hash: "b8825cc6bdca8102a655d797ea41b5b1" - } - Frame { - msec: 1072 - hash: "3f0be15b85220743d004f2d54b6e137c" - } - Frame { - msec: 1088 - hash: "4b0952d33149b44ffa0a06723a4116c7" - } - Frame { - msec: 1104 - hash: "9056bda43259e92cfe56fdf394e2ca54" - } - Frame { - msec: 1120 - hash: "82ec9f09d2303e5b0b9c05b9a10a84db" - } - Frame { - msec: 1136 - hash: "751a9b3054c09d900364d7c9cac8bc2b" - } - Frame { - msec: 1152 - hash: "17dfdfef20f9da7e8b6f16df974baea9" - } - Frame { - msec: 1168 - hash: "108e6d9a5a81df32823bfd7a90a000a7" - } - Frame { - msec: 1184 - hash: "71dd0d55a3e837d3a8e4b4e318579ade" - } - Frame { - msec: 1200 - hash: "8013cdb2615bca89134ea040409af509" - } - Frame { - msec: 1216 - hash: "4b2826ad4c755690bd837994133f5fac" - } - Frame { - msec: 1232 - hash: "52d0da7f138bd37ac587a448d6402aca" - } - Frame { - msec: 1248 - hash: "e634724c5bb294d338210845bf64d2cf" - } - Frame { - msec: 1264 - hash: "59bc5f0d057ee431f289806377f19213" - } - Frame { - msec: 1280 - hash: "6ef2c5f7766c2cc77b30d636bfaa4422" - } - Frame { - msec: 1296 - hash: "578d056c3db094420dbaa51bd08ced20" - } - Frame { - msec: 1312 - hash: "14c6f7a04a52caffefa07af556ccb262" - } - Frame { - msec: 1328 - hash: "7cb63d56fec144d0509ce219fc6fe459" - } - Frame { - msec: 1344 - hash: "462dafa7f6427aecf6c28a5dcf5a10cc" - } - Frame { - msec: 1360 - hash: "45360814f985ed780a443568a91fc170" - } - Frame { - msec: 1376 - hash: "0d18ceb2436e4f7eb56a3443fab706e6" - } - Frame { - msec: 1392 - hash: "1d83f367ba9f7f1d4496208271e925ed" - } - Frame { - msec: 1408 - hash: "fdbd00ee4c122aef779df42ea53f403a" - } - Frame { - msec: 1424 - hash: "bedd1cb304efd4851813b39a746198a4" - } - Frame { - msec: 1440 - hash: "9aa7bed86efa9634466736f20ee0ab5b" - } - Frame { - msec: 1456 - hash: "00fc8186a7ae44e10195a7b13defa0d2" - } - Frame { - msec: 1472 - hash: "42d6e8e0bbed879ed63644c83e61e7bd" - } - Frame { - msec: 1488 - hash: "df074f8c210249e5ef652349479b6325" - } - Frame { - msec: 1504 - hash: "4f94020437e35cf44dd3576997990ab7" - } - Frame { - msec: 1520 - hash: "8ca6c3b4fa3be73ac35073356b680a35" - } - Frame { - msec: 1536 - hash: "c25eee1c5791383ebc59974e7754eacb" - } - Frame { - msec: 1552 - hash: "f4917ada78942428cc6b9aa5e56c013d" - } - Frame { - msec: 1568 - hash: "23e1e607101fc7260a4ac841344f5fe0" - } - Frame { - msec: 1584 - hash: "2dcc7d187d8e0493e5766efbf09ef37c" - } - Frame { - msec: 1600 - hash: "c1e5602753e80cf44d7b330140c6912e" - } - Frame { - msec: 1616 - hash: "febaf72d01a3763461b4b7d2ddd7a23e" - } - Frame { - msec: 1632 - hash: "071262b911b61576f451be25691a57cf" - } - Frame { - msec: 1648 - hash: "44705db9289fd8753b9d63e8bc963b38" - } - Frame { - msec: 1664 - hash: "0c41d7b7d36bd083abfc0b83b862cad9" - } - Frame { - msec: 1680 - hash: "0c41d7b7d36bd083abfc0b83b862cad9" - } - Frame { - msec: 1696 - hash: "071262b911b61576f451be25691a57cf" - } - Frame { - msec: 1712 - hash: "a00aa90e894b48203b0446ca287ee712" - } - Frame { - msec: 1728 - hash: "26c9ca53ee4b084c6595ad65bf4880df" - } - Frame { - msec: 1744 - hash: "f4917ada78942428cc6b9aa5e56c013d" - } - Frame { - msec: 1760 - hash: "ffedee7bf2d8099e361b8b1706b03f88" - } - Frame { - msec: 1776 - hash: "1778ef1629ce977015b641448b46634f" - } - Frame { - msec: 1792 - hash: "42d6e8e0bbed879ed63644c83e61e7bd" - } - Frame { - msec: 1808 - hash: "99e843ec69b79b79b0792e0a2f28cd1b" - } - Frame { - msec: 1824 - hash: "8b3ebca70b50a6a93823e015ea80f0f9" - } - Frame { - msec: 1840 - hash: "8eaa7f076064ce55051237b04861e408" - } - Frame { - msec: 1856 - hash: "6acc0ca5e5808d911287edfa78c8ac02" - } - Frame { - msec: 1872 - hash: "e9f05899e0b53c21f6efe834095a3ea4" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 91; y: 208 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 93; y: 209 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1888 - hash: "e9f05899e0b53c21f6efe834095a3ea4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 99; y: 210 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1904 - hash: "d2dece405f5f6ed1de2acb6615a931de" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 142; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1920 - hash: "21e0f21edc77424e8327c9a3350ecc1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1936 - image: "flickable-horizontal.2.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 218 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 220 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1952 - hash: "c10c8b0c94f899414d8b3ef0b7c97646" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 322; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 322; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "807aff4e6c96a9d0de7fa55e233446b1" - } - Frame { - msec: 1984 - hash: "dbd02848cefacbb26f4bcb7d8f073d6c" - } - Frame { - msec: 2000 - hash: "9a60608d8ea1b39fa2d3851873f2f08e" - } - Frame { - msec: 2016 - hash: "e7b3e3a40281f63889808211d6746374" - } - Frame { - msec: 2032 - hash: "188c225c46ec00105df230bfeea09974" - } - Frame { - msec: 2048 - hash: "e2e977b42e91d8c5dee57fd8245692eb" - } - Frame { - msec: 2064 - hash: "ca2f12fb173c405f95e608858ab982ad" - } - Frame { - msec: 2080 - hash: "fa86ee5f25fa425cf2569c8ef570b9d8" - } - Frame { - msec: 2096 - hash: "9b74656866fb8c7394bbbecec6414aca" - } - Frame { - msec: 2112 - hash: "87147326d1baab174c0f9a5ccdc2cb84" - } - Frame { - msec: 2128 - hash: "c0d00f98c71bf3f8e5954b45fbab95a8" - } - Frame { - msec: 2144 - hash: "c087d1d62e56e573b55c1d8599bba8a6" - } - Frame { - msec: 2160 - hash: "dd5a94c6febdee58e8f115cb75131aaa" - } - Frame { - msec: 2176 - hash: "a7465d6137f865f512ce65ceb29533b4" - } - Frame { - msec: 2192 - hash: "409086f6bb661aab8b548fea56d7e6b1" - } - Frame { - msec: 2208 - hash: "6a22911e0fb58df31271baa463ff599d" - } - Frame { - msec: 2224 - hash: "c4f6dd30d5fdfcf91a8b29cf5c622423" - } - Frame { - msec: 2240 - hash: "5a95b83f237c7243a198a43e9a587179" - } - Frame { - msec: 2256 - hash: "d79ed290efc6dbd976d574bf0b14a6a3" - } - Frame { - msec: 2272 - hash: "a7bcb436e96d7c981852239462573495" - } - Frame { - msec: 2288 - hash: "f63cc82e351daab503e316f8b516990f" - } - Frame { - msec: 2304 - hash: "4ea63cd25a1424042ffc60549a78563c" - } - Frame { - msec: 2320 - hash: "ef0fb776012575b3b0dbf6e5f4dee571" - } - Frame { - msec: 2336 - hash: "e2508faec7737be2666d87ad715b5f74" - } - Frame { - msec: 2352 - hash: "9fe4e897c6b853f774d11817a0eb53bf" - } - Frame { - msec: 2368 - hash: "c122ce2e73cbfedcc99d649c21d91f9d" - } - Frame { - msec: 2384 - hash: "883b8b180853f1f432ae98ddfe1b6ce3" - } - Frame { - msec: 2400 - hash: "d0808284e431da60f61d571c257a3011" - } - Frame { - msec: 2416 - hash: "df90f19450bf4d9496aab987a89e3a02" - } - Frame { - msec: 2432 - hash: "5640c1e64556b90e7fbd4448fa9db462" - } - Frame { - msec: 2448 - hash: "6d9b5c2f7d0dedbbc444e69bb39fed08" - } - Frame { - msec: 2464 - hash: "485c4a8049068cf73bf22db5fd3618be" - } - Frame { - msec: 2480 - hash: "9e25da59c9e7e4cf7796902e8e2ff92a" - } - Frame { - msec: 2496 - hash: "bd45e8f2442d7c1a1b16a762bc29e7cf" - } - Frame { - msec: 2512 - hash: "ec1013d23e581dbb39b1549d2e1b3b32" - } - Frame { - msec: 2528 - hash: "1ea3c2fde8ee3a14406e027f2124d793" - } - Frame { - msec: 2544 - hash: "3c3f31a05fb2f32538872c9fa158aaab" - } - Frame { - msec: 2560 - hash: "05a84d9c55e634ec01edd2a63e13613b" - } - Frame { - msec: 2576 - hash: "0f7ccd2da58e2e73b0ab18bb681dafd5" - } - Frame { - msec: 2592 - hash: "e481ff78029f8bc4bf7c697db6824f6a" - } - Frame { - msec: 2608 - hash: "efb92b8b7a90acabeb4a8d5cae52fe3c" - } - Frame { - msec: 2624 - hash: "4728dd0fac4edf40cfd5ef5a422b4ed9" - } - Frame { - msec: 2640 - hash: "27641dcd772c979ae22d12bfbadbb67f" - } - Frame { - msec: 2656 - hash: "26268714105bc4832d336a38a859fc50" - } - Frame { - msec: 2672 - hash: "caf0d351d3b6914ca52853a30643ea48" - } - Frame { - msec: 2688 - hash: "319824b1143925162f04aaddcfaa65d9" - } - Frame { - msec: 2704 - hash: "73aa36815f34bf5e005000e7da38555e" - } - Frame { - msec: 2720 - hash: "73aa36815f34bf5e005000e7da38555e" - } - Frame { - msec: 2736 - hash: "319824b1143925162f04aaddcfaa65d9" - } - Frame { - msec: 2752 - hash: "caf0d351d3b6914ca52853a30643ea48" - } - Frame { - msec: 2768 - hash: "6608412ee80d14e13a1a05fb4716e719" - } - Frame { - msec: 2784 - hash: "f4f6f002fb76407a5120329972285dc4" - } - Frame { - msec: 2800 - hash: "474d8b566b9e4ef7dc125a8df30ccbb1" - } - Frame { - msec: 2816 - hash: "0133138f30be4ffc7f3af3d9f477c4b4" - } - Frame { - msec: 2832 - hash: "e9ee9d7d0ab9dcea3f28ae71ee19270f" - } - Frame { - msec: 2848 - hash: "9fd9eb665a42b48583bc28c6c0118799" - } - Frame { - msec: 2864 - hash: "94231107bc4a7e900fe5f4eb823bd9bf" - } - Frame { - msec: 2880 - hash: "6011b10728fb1c83f10d3c27366ea3a5" - } - Frame { - msec: 2896 - image: "flickable-horizontal.3.png" - } - Frame { - msec: 2912 - hash: "e456c5fddb5fbcb02662716f19755622" - } - Frame { - msec: 2928 - hash: "88cef15940302e2b8b43e73234fd7b9c" - } - Frame { - msec: 2944 - hash: "041aecec2b0b0d59a56e1dd26b45cab1" - } - Frame { - msec: 2960 - hash: "0d519463c713f3da46ecacd155e1a0f3" - } - Frame { - msec: 2976 - hash: "5dd0c855b97d298244fb599c9f781651" - } - Frame { - msec: 2992 - hash: "8677cec5e559e51095d89abfeda8e542" - } - Frame { - msec: 3008 - hash: "b05fb6e798ab3fed940b5ac4d88ca378" - } - Frame { - msec: 3024 - hash: "6bc9cc0d3b11ea91856296b0ec934a8b" - } - Frame { - msec: 3040 - hash: "f4e63f3af69dacbf2d1d719d4d03a266" - } - Frame { - msec: 3056 - hash: "31ab08997eb86fab062a3128aecbccb5" - } - Frame { - msec: 3072 - hash: "90736b240ba1e634bd0ea86423908e16" - } - Frame { - msec: 3088 - hash: "90736b240ba1e634bd0ea86423908e16" - } - Frame { - msec: 3104 - hash: "e74982557dc06aac572078840c7e889a" - } - Frame { - msec: 3120 - hash: "e74982557dc06aac572078840c7e889a" - } - Frame { - msec: 3136 - hash: "ca30c14c7344d1711a35c707f8804f6e" - } - Frame { - msec: 3152 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 3168 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 3184 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 3200 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 412; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3216 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 3232 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 3248 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 408; y: 214 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 407; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3264 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 403; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3280 - hash: "1991cbb0fb053937f922731d5716032c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 398; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3296 - hash: "df447575a4734bb5bd9badc6e27d98e4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 391; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3312 - hash: "0fbfe1e0d7fb54450188398aa40690cd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 383; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3328 - hash: "cb62e60296046c73d301d7186e14faed" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 369; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3344 - hash: "909cbd1292476584554e22232cb43639" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3360 - hash: "e63b7e502dfb2834c06a969b683b9bd3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 331; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "4ea63cd25a1424042ffc60549a78563c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 314; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3392 - hash: "77e39d2d4bfcacecdae4f014e4506d71" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 300; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3408 - hash: "db576eca8bad67cb8b994f12fc448969" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 288; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3424 - hash: "efeb3f616da9d78505c3c82fc34ee31c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 278; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3440 - hash: "e4f8bb02f8ac6bc40e1801cc8f360078" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3456 - hash: "82118ef71809e3867717232c4d9c5518" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 252; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3472 - hash: "5363451c696f6c6eb792b23d086243d7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 238; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3488 - hash: "fe6afe8ae8a7c216a1cffc5515f273d5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3504 - hash: "9b165741d86c70380c15e15cff3fabb6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3520 - hash: "f5e176355468f4fa224d4dfcdd7525a3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3536 - hash: "8c5a14a76e052cc6503a3e78245d1da3" - } - Frame { - msec: 3552 - hash: "8c5a14a76e052cc6503a3e78245d1da3" - } - Frame { - msec: 3568 - hash: "8c5a14a76e052cc6503a3e78245d1da3" - } - Frame { - msec: 3584 - hash: "8c5a14a76e052cc6503a3e78245d1da3" - } - Frame { - msec: 3600 - hash: "8c5a14a76e052cc6503a3e78245d1da3" - } - Frame { - msec: 3616 - hash: "8c5a14a76e052cc6503a3e78245d1da3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3632 - hash: "f5e176355468f4fa224d4dfcdd7525a3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3648 - hash: "acf538fce5f1b90b83474d9898b7cdd7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 246; y: 203 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3664 - hash: "5a0ee016b8732fbc36064e8a35d91215" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 265; y: 203 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3680 - hash: "8fd06a14c1de175813845ce8f07db6ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 292; y: 201 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3696 - hash: "26b0ff6ffda0725e0800f7ea3af510ef" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 310; y: 201 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3712 - hash: "80443f134511be0356a687c9b542b3e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 321; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3728 - hash: "3eeb98a829d29b3dc52f3d145ac49d58" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 323; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3744 - hash: "f4d43069b16f41a30e5549aae911d4cd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 324; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "661c89fa832f0abdcf4ae0c9e8e2d18f" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 324; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3776 - hash: "661c89fa832f0abdcf4ae0c9e8e2d18f" - } - Frame { - msec: 3792 - hash: "1520f54b6c8606b9e8372c5c06180453" - } - Frame { - msec: 3808 - hash: "0fcf5e2ce47348cbb5bb485f101fe5ac" - } - Frame { - msec: 3824 - hash: "2eb070e69de07c89830543e0475fc110" - } - Frame { - msec: 3840 - hash: "d73c1059219c0655968af268d22e2c18" - } - Frame { - msec: 3856 - image: "flickable-horizontal.4.png" - } - Frame { - msec: 3872 - hash: "cc969b2c64839ca6d3b5069c0ed938d0" - } - Frame { - msec: 3888 - hash: "1f819e18d1297a1c7eeebb7b040bdef8" - } - Frame { - msec: 3904 - hash: "3643b99afbd8af0953cb39b2c8c04b9f" - } - Frame { - msec: 3920 - hash: "713fd2e2fa38ab27604cb9cae59f1777" - } - Frame { - msec: 3936 - hash: "e2508faec7737be2666d87ad715b5f74" - } - Frame { - msec: 3952 - hash: "fc33b1c7479caeff676ffd885a18d618" - } - Frame { - msec: 3968 - hash: "aca01143db4f870a56bb7546e84cbc5e" - } - Frame { - msec: 3984 - hash: "442b58c39fd3745c61a1eb5043fcbb53" - } - Frame { - msec: 4000 - hash: "7983d7183cc11d6819fa0a006c2d67b4" - } - Frame { - msec: 4016 - hash: "9fe4e897c6b853f774d11817a0eb53bf" - } - Frame { - msec: 4032 - hash: "43f528c81ccfa5b9921dfa3564a24c68" - } - Frame { - msec: 4048 - hash: "dfe04ff0b3ccf205bb38beeab58a4411" - } - Frame { - msec: 4064 - hash: "32ff30b50b500e9feb51e8eef205783c" - } - Frame { - msec: 4080 - hash: "7d83ab4c336b05bcf2cde4e7d8031f6c" - } - Frame { - msec: 4096 - hash: "c92e345e4ffdb30c28d9d5aa5400bd30" - } - Frame { - msec: 4112 - hash: "02eec604d0c00965aae4ac61b91bdc22" - } - Frame { - msec: 4128 - hash: "df447575a4734bb5bd9badc6e27d98e4" - } - Frame { - msec: 4144 - hash: "bac10d8f94a39573313b3b8b2f871c49" - } - Frame { - msec: 4160 - hash: "e5944c5dc6dec8f0c28b7ec3cd58723d" - } - Frame { - msec: 4176 - hash: "1991cbb0fb053937f922731d5716032c" - } - Frame { - msec: 4192 - hash: "50d6538bcaffc343f6626635a3e5899c" - } - Frame { - msec: 4208 - hash: "f3613f57cdb9ed38d8e3fa636962aa99" - } - Frame { - msec: 4224 - hash: "10a89da9887cb4bbd812c090a8a56797" - } - Frame { - msec: 4240 - hash: "89ba74d46970ad2edff701475c059ec8" - } - Frame { - msec: 4256 - hash: "6e8b84c70e81578a2216e9e975b35434" - } - Frame { - msec: 4272 - hash: "6e8b84c70e81578a2216e9e975b35434" - } - Frame { - msec: 4288 - hash: "883b8b180853f1f432ae98ddfe1b6ce3" - } - Frame { - msec: 4304 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4320 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4336 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4352 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4368 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4384 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4400 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4416 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4432 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4448 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4464 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4480 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4496 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4512 - hash: "e616110d39009f0d636b816828cc0ccb" - } - Frame { - msec: 4528 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4544 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4560 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4576 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4592 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4608 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4624 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4640 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4656 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4672 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4688 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } - Frame { - msec: 4704 - hash: "244c12e82ee0b2528a0dbb02a8b8134a" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.0.png deleted file mode 100644 index 968a78f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.1.png deleted file mode 100644 index 55ab3b7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.2.png deleted file mode 100644 index a6ec6d1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.3.png deleted file mode 100644 index e6755ac..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.4.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.4.png deleted file mode 100644 index bc65634..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml deleted file mode 100644 index 106d108..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml +++ /dev/null @@ -1,1575 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "flickable-horizontal.0.png" - } - Frame { - msec: 32 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 48 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 64 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 80 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 96 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 112 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 128 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 144 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 160 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 176 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 192 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 208 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 224 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 240 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 256 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 272 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 288 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 304 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 320 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 336 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 352 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 368 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 384 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 400 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 416 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 432 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 448 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 464 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 480 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 496 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 512 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 528 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 544 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 560 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 576 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 592 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 608 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 624 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 640 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 656 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 672 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 688 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 704 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 720 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 447; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 736 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 752 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 768 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 446; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 784 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 440; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 800 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 425; y: 151 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 407; y: 157 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 816 - hash: "49372aa66b86904d587b72c6c2cfd467" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 359; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 832 - hash: "06519aabcc86c5fd961c80a65d2cf67c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 309; y: 181 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 848 - hash: "c3b182c37393ea0468c06474e84f127f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 282; y: 187 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 282; y: 187 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 864 - hash: "dce4bcca20e89c40a603394515f679b1" - } - Frame { - msec: 880 - hash: "dabf2b63bedd0073f761a858f048df5a" - } - Frame { - msec: 896 - hash: "c51ca7786b7346b3e62b774c01a67f98" - } - Frame { - msec: 912 - hash: "d1628aa2fd1ec92021fa37f9960fb06a" - } - Frame { - msec: 928 - hash: "4e571776c8a01d1ab79ff1c3affc0474" - } - Frame { - msec: 944 - hash: "85a3c22ecaed87c119202b76e22f2b2e" - } - Frame { - msec: 960 - hash: "42d345e97b0a8e5cbcfdf4243ccafcdc" - } - Frame { - msec: 976 - image: "flickable-horizontal.1.png" - } - Frame { - msec: 992 - hash: "1a651405076d8980b03cc8279a379fff" - } - Frame { - msec: 1008 - hash: "8c4f3c6a4c67c76fe92ff401114892e7" - } - Frame { - msec: 1024 - hash: "447a817e33cd8213e362192ffe663272" - } - Frame { - msec: 1040 - hash: "eed6ba9be5f7869101068afd1d46cb69" - } - Frame { - msec: 1056 - hash: "15ae5acff4211f97802c6c50649ad487" - } - Frame { - msec: 1072 - hash: "e30b0a23e215c0b9b71b083381a8523e" - } - Frame { - msec: 1088 - hash: "6fad48a7d3a2480468aca07e6760de94" - } - Frame { - msec: 1104 - hash: "998bd191ac5bac1f300e247514a112d7" - } - Frame { - msec: 1120 - hash: "9245e8bf2fb38f491aa7f0da4400e190" - } - Frame { - msec: 1136 - hash: "7565ea1f01cd9ad5d92e2a0ee7fc947d" - } - Frame { - msec: 1152 - hash: "898c6e226787391340099910ee128ed6" - } - Frame { - msec: 1168 - hash: "bafd74d70e99cf4053d3c00d18915762" - } - Frame { - msec: 1184 - hash: "6456a5ca9bb90b2d0fb99bae63a8db35" - } - Frame { - msec: 1200 - hash: "2b34216c9f7c76133ef4889b74df7ad9" - } - Frame { - msec: 1216 - hash: "cbc75068017b378f277c2692f2cb1709" - } - Frame { - msec: 1232 - hash: "8c72d80a5a2776ee2d805c089f5c534d" - } - Frame { - msec: 1248 - hash: "d5a248b9177e078cad40af72b3cbceb5" - } - Frame { - msec: 1264 - hash: "1a9b246f8223bbcf6421a22e8a1fb50e" - } - Frame { - msec: 1280 - hash: "ea9b292eb000a9e4c5b46a8d94b8e80e" - } - Frame { - msec: 1296 - hash: "ac059cd45cd1936a7ff3fd0fc9fa688b" - } - Frame { - msec: 1312 - hash: "fda383d47ffb1e2fd633793594831cfb" - } - Frame { - msec: 1328 - hash: "a4c7709f3642088e4be48ec607d0a0fe" - } - Frame { - msec: 1344 - hash: "08d0268402d4a410f5f8c9bb8ba7b306" - } - Frame { - msec: 1360 - hash: "ecc8f3c4faf86362e45b465b0f4d6dc2" - } - Frame { - msec: 1376 - hash: "3107a4b522744a643dd107da5e5e13c2" - } - Frame { - msec: 1392 - hash: "44c1731d0433aac53edc2e88a38c66b0" - } - Frame { - msec: 1408 - hash: "d86e9dfb38be51b2fa9cf44271eddc3e" - } - Frame { - msec: 1424 - hash: "0c33ce00df6fbb848d300aa510ad80d9" - } - Frame { - msec: 1440 - hash: "48ff92aaa0c797c10ca8dbc5b2240736" - } - Frame { - msec: 1456 - hash: "8582fd8c3643d9a5c1993e1607c6fae8" - } - Frame { - msec: 1472 - hash: "2390e374160ec5bc99613a463aa98fb2" - } - Frame { - msec: 1488 - hash: "369a11c32596b668a4f275232c45ac68" - } - Frame { - msec: 1504 - hash: "0b0d82d523a77a925ee00cf457326034" - } - Frame { - msec: 1520 - hash: "48e7a92905761d7f0b8b9ac95bb5ff45" - } - Frame { - msec: 1536 - hash: "2cdccfd2cdf56728fa07a49de34142d9" - } - Frame { - msec: 1552 - hash: "83a8166805523ee8426d88ef80c8f3a9" - } - Frame { - msec: 1568 - hash: "20ac2e68a5c733dc6128921c34f033e5" - } - Frame { - msec: 1584 - hash: "836963a1ed3084606b80b7f82fee09ef" - } - Frame { - msec: 1600 - hash: "ee49c684d788558e20a10899ebe0b6c2" - } - Frame { - msec: 1616 - hash: "e00c0b340165d335cb49730890eca301" - } - Frame { - msec: 1632 - hash: "fba2c2adeef04e6c1a764c4d8a1a97bc" - } - Frame { - msec: 1648 - hash: "8160bd2a6daa2757b948d038fa754c77" - } - Frame { - msec: 1664 - hash: "10130d0b75ce420f5c9af6f181500783" - } - Frame { - msec: 1680 - hash: "10130d0b75ce420f5c9af6f181500783" - } - Frame { - msec: 1696 - hash: "fba2c2adeef04e6c1a764c4d8a1a97bc" - } - Frame { - msec: 1712 - hash: "fec5477699ba60da129866e1c3727e08" - } - Frame { - msec: 1728 - hash: "12076b96a177bd24be8ad4a3dc179d79" - } - Frame { - msec: 1744 - hash: "83a8166805523ee8426d88ef80c8f3a9" - } - Frame { - msec: 1760 - hash: "e9016d43624060ef4efbad2b7bc53b1b" - } - Frame { - msec: 1776 - hash: "483700c4ba07a9f01d2a226a3efde15f" - } - Frame { - msec: 1792 - hash: "2390e374160ec5bc99613a463aa98fb2" - } - Frame { - msec: 1808 - hash: "094df49593f0cd1d6de4a0b91c459d15" - } - Frame { - msec: 1824 - hash: "0a60ed609c7fcb2d485f393ea309527a" - } - Frame { - msec: 1840 - hash: "d4e0f07c2f298626ae800d5d7b5f098b" - } - Frame { - msec: 1856 - hash: "ff249c1301704da0b82b023558512c6a" - } - Frame { - msec: 1872 - hash: "42883458efeb17ff1e52296ae7228fb2" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 91; y: 208 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 93; y: 209 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1888 - hash: "42883458efeb17ff1e52296ae7228fb2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 99; y: 210 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1904 - hash: "36a4b0d745ee8fa53e906b7a23b7ab88" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 142; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1920 - hash: "826187b1a24fd09e1abcb6a01c59c059" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1936 - image: "flickable-horizontal.2.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 218 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 220 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1952 - hash: "426f9459ac16c2903f85d618b366a475" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 322; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 322; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "d43dc1cfeaac1da281f2cdbffda93d17" - } - Frame { - msec: 1984 - hash: "766dd54cdb6253ead664b6ab852e934b" - } - Frame { - msec: 2000 - hash: "1db59868779a357917a5d4859130108e" - } - Frame { - msec: 2016 - hash: "1da33a5f6a001915464f34799a651f7a" - } - Frame { - msec: 2032 - hash: "868a6e445623378b6590789156e4b7e0" - } - Frame { - msec: 2048 - hash: "46ae42a4b7f00e24a10ffdfd7a076b68" - } - Frame { - msec: 2064 - hash: "2a91ffdfec461f573784cfaed2150e33" - } - Frame { - msec: 2080 - hash: "2cbaa11e8589c806e65e52ce59ad1c42" - } - Frame { - msec: 2096 - hash: "3b93b1e1fa7963d5a75103814f93a0a2" - } - Frame { - msec: 2112 - hash: "a2e59dc9459a7afb6916638d08330dff" - } - Frame { - msec: 2128 - hash: "cb3e8334babe3abffa202c2ba2d3b21f" - } - Frame { - msec: 2144 - hash: "07882f5f098e59c479f089dbc74612bf" - } - Frame { - msec: 2160 - hash: "e9ad84bf0c7f83bfe1bff3afed591bfd" - } - Frame { - msec: 2176 - hash: "1839c26fda8710dc3fa7f5abd8136eee" - } - Frame { - msec: 2192 - hash: "15e3bdd811c390ad3a9cf22949568ed7" - } - Frame { - msec: 2208 - hash: "61ede9a7ef29997627bb08070fea65a4" - } - Frame { - msec: 2224 - hash: "fac89040e757522117e3792625ca6a19" - } - Frame { - msec: 2240 - hash: "1dc01a1118681f8606768fcf246397f7" - } - Frame { - msec: 2256 - hash: "2b243094b7f25368a8fb4a9014968cad" - } - Frame { - msec: 2272 - hash: "c6677acf9b9d632bc99caa8626448c49" - } - Frame { - msec: 2288 - hash: "9035988b0dc0b7065fe4f1d1a4737801" - } - Frame { - msec: 2304 - hash: "cd34e7118d43968cfcf52ed9ce58fc0a" - } - Frame { - msec: 2320 - hash: "7142aeaed61722424e184c55bb8d047c" - } - Frame { - msec: 2336 - hash: "9113c68cf5689e1f4690e58bbf824ae6" - } - Frame { - msec: 2352 - hash: "2f9ec963d6f06f8252a69760965df2ee" - } - Frame { - msec: 2368 - hash: "07373282f0337437944dc8fff1e32343" - } - Frame { - msec: 2384 - hash: "4769fa4ba0c08baefa431b94b47a7ffc" - } - Frame { - msec: 2400 - hash: "390cd7786aa1989b590033682472f604" - } - Frame { - msec: 2416 - hash: "482e2969bc1a877ba63c3df65ec04b7e" - } - Frame { - msec: 2432 - hash: "e3dc252a3a0b35398bf3d91c37d6b5e9" - } - Frame { - msec: 2448 - hash: "5bce3aac5cc049d81a74e7f71e2cf522" - } - Frame { - msec: 2464 - hash: "390edc00756c4e92e94a7a75f3d65c45" - } - Frame { - msec: 2480 - hash: "285397b2ff5a64d2a112c458d6ec5aba" - } - Frame { - msec: 2496 - hash: "ed0889dc439d66e6b5a81059956ef564" - } - Frame { - msec: 2512 - hash: "cb804da0db92d879a5cb8f138c546f88" - } - Frame { - msec: 2528 - hash: "523fe4d3d9c11631f41d96bcc604103b" - } - Frame { - msec: 2544 - hash: "cc4717c4233f9a2f2380bfad6dc89075" - } - Frame { - msec: 2560 - hash: "65c4171ff3e98aa04667606d9f6bd9b3" - } - Frame { - msec: 2576 - hash: "b2994136a603206c8013158fd67ca6bd" - } - Frame { - msec: 2592 - hash: "44ad0d4645a01243b9d9be0faaf6d6ee" - } - Frame { - msec: 2608 - hash: "3b7b06f5f3f028fbae21dfedf821e696" - } - Frame { - msec: 2624 - hash: "b86466e530c3bd51353074cbb9da9ec3" - } - Frame { - msec: 2640 - hash: "2528deb04bae8b89a85dc6fcea05dbbd" - } - Frame { - msec: 2656 - hash: "e0ff5e36bff2b9e08244fc7f79cecee6" - } - Frame { - msec: 2672 - hash: "34ca311d2e3462da3779324419c027e7" - } - Frame { - msec: 2688 - hash: "75aae68f21f68364a897c504f26ee655" - } - Frame { - msec: 2704 - hash: "8039e52e7f1977433596c1a34a41cc9f" - } - Frame { - msec: 2720 - hash: "8039e52e7f1977433596c1a34a41cc9f" - } - Frame { - msec: 2736 - hash: "75aae68f21f68364a897c504f26ee655" - } - Frame { - msec: 2752 - hash: "34ca311d2e3462da3779324419c027e7" - } - Frame { - msec: 2768 - hash: "d3649eb8f8232b0e64b0cb476313b63c" - } - Frame { - msec: 2784 - hash: "cdb30549933d3778e74dbd419b474a5f" - } - Frame { - msec: 2800 - hash: "3a43d652bb85d3f562bd5eaec386107f" - } - Frame { - msec: 2816 - hash: "df6771eb2afa24b6e3250b05b180fa4d" - } - Frame { - msec: 2832 - hash: "cc4717c4233f9a2f2380bfad6dc89075" - } - Frame { - msec: 2848 - hash: "76e04278dab430d5860306830b73ab6f" - } - Frame { - msec: 2864 - hash: "8f70f69731fe8b8f4aa397a667f4c5c0" - } - Frame { - msec: 2880 - hash: "25b72be5ca16c246bfc6adc4bf19871c" - } - Frame { - msec: 2896 - image: "flickable-horizontal.3.png" - } - Frame { - msec: 2912 - hash: "e3dc252a3a0b35398bf3d91c37d6b5e9" - } - Frame { - msec: 2928 - hash: "ce0d8b3f0f0b235eaedc932f4514ea00" - } - Frame { - msec: 2944 - hash: "f6b030effcca891ab20073f106b22d73" - } - Frame { - msec: 2960 - hash: "2cfafd1f686f5794d5bf99ec4aaa1d08" - } - Frame { - msec: 2976 - hash: "502a23fd9a3bcccb29c496e7edeb5d66" - } - Frame { - msec: 2992 - hash: "82ac348a63a4e358a877a2e45d48e2b1" - } - Frame { - msec: 3008 - hash: "0d321f4ca15f09d849c4a28f032cc1cc" - } - Frame { - msec: 3024 - hash: "5c995f84415ea7a260647f946b8963ee" - } - Frame { - msec: 3040 - hash: "ee4ecac449c4a2ad4e11ad1d560b3ec3" - } - Frame { - msec: 3056 - hash: "0bc3d5b91d781bcf10041eb1557f0d6a" - } - Frame { - msec: 3072 - hash: "321297177b354e0cc435b3eae49331a3" - } - Frame { - msec: 3088 - hash: "321297177b354e0cc435b3eae49331a3" - } - Frame { - msec: 3104 - hash: "de00148fe89be44237af32d929432655" - } - Frame { - msec: 3120 - hash: "de00148fe89be44237af32d929432655" - } - Frame { - msec: 3136 - hash: "756c8068009e9780428bd3ae35df19fe" - } - Frame { - msec: 3152 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 3168 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 3184 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 3200 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 412; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3216 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 3232 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 3248 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 408; y: 214 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 407; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3264 - hash: "96a78749a57bdb87cf28a3804b63793f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 403; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3280 - hash: "b8f158a8694f2b922faf818d469230e4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 398; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3296 - hash: "257a298bec9589037e3022cc2fe7a775" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 391; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3312 - hash: "391d17c09dd33b3dcfc9a619fbb500dc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 383; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3328 - hash: "b645a1808de7a5d2ce7944ab66a7c233" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 369; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3344 - hash: "54ddfe85ca8923bcf7f3b6ccab0560de" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3360 - hash: "5c1169e17ee96b817e66b4a6097f790c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 331; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "cd34e7118d43968cfcf52ed9ce58fc0a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 314; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3392 - hash: "f3d9d5cd228914b2e1323f19c22aa6f9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 300; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3408 - hash: "10e63c46f4b970a9c997126906c01cf9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 288; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3424 - hash: "c9b412087f7b744096bf995c6a9ddf15" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 278; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3440 - hash: "70cdc34e22c7a031c2e28898f7edea72" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3456 - hash: "d0ea5c1f9050499d944ba7e61d354e40" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 252; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3472 - hash: "d9fc23e14a170b68264721dc18be4fb1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 238; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3488 - hash: "d59ccdfdb179f2c8c2636a64aecf2a6a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3504 - hash: "6d21752283210371faf2f757c7a972b3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3520 - hash: "1338a54d3b980a6868ba7d167cfdbdf7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3536 - hash: "0be430c9e6058be2aee599d4182bc0d0" - } - Frame { - msec: 3552 - hash: "0be430c9e6058be2aee599d4182bc0d0" - } - Frame { - msec: 3568 - hash: "0be430c9e6058be2aee599d4182bc0d0" - } - Frame { - msec: 3584 - hash: "0be430c9e6058be2aee599d4182bc0d0" - } - Frame { - msec: 3600 - hash: "0be430c9e6058be2aee599d4182bc0d0" - } - Frame { - msec: 3616 - hash: "0be430c9e6058be2aee599d4182bc0d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3632 - hash: "1338a54d3b980a6868ba7d167cfdbdf7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3648 - hash: "b58a71e761abe238de0e90c1c756cd37" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 246; y: 203 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3664 - hash: "3383dc4a9b1f8267d145d22f9d825dc0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 265; y: 203 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3680 - hash: "95df7fbe18630d9b8ffa83850bc5bec5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 292; y: 201 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3696 - hash: "96c625b6854a862c83ead3fbb32df3b0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 310; y: 201 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3712 - hash: "f48f12540c60bc7b60279db8e67ff91b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 321; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3728 - hash: "98353745244809a583c93c1fd87b9a56" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 323; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3744 - hash: "09a1bb3238282c80cc40fccb6e45ba28" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 324; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "9e50b6fc980c66698a35178e2520e13c" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 324; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3776 - hash: "9e50b6fc980c66698a35178e2520e13c" - } - Frame { - msec: 3792 - hash: "006c37d9d6b5a8470d74909b9646d5f1" - } - Frame { - msec: 3808 - hash: "24cf52f7c3cf095be20393757dfaaa6b" - } - Frame { - msec: 3824 - hash: "2189799d060770928f1feaaa44728ec8" - } - Frame { - msec: 3840 - hash: "b8a6375f0303ec8b66cf14f59888c273" - } - Frame { - msec: 3856 - image: "flickable-horizontal.4.png" - } - Frame { - msec: 3872 - hash: "1fd391b060c84ac99c6e94d2d3647c31" - } - Frame { - msec: 3888 - hash: "8b594f115e8158b931a9da42fa6829a5" - } - Frame { - msec: 3904 - hash: "8f93fdffed4bfd31f9f5977b09074f6a" - } - Frame { - msec: 3920 - hash: "d0f3eae785732bf24c363fd189672eb2" - } - Frame { - msec: 3936 - hash: "9113c68cf5689e1f4690e58bbf824ae6" - } - Frame { - msec: 3952 - hash: "44dd376f3d5f61ec71b7c488c3a6ee58" - } - Frame { - msec: 3968 - hash: "4555e295bd6de22abcbaecf797ec8902" - } - Frame { - msec: 3984 - hash: "eb343f3e69f205a240c0425873ea6db1" - } - Frame { - msec: 4000 - hash: "37a5b81894c16cacd13312f7113a5445" - } - Frame { - msec: 4016 - hash: "2f9ec963d6f06f8252a69760965df2ee" - } - Frame { - msec: 4032 - hash: "dec984b2a5cdd85f2dfb8983da5cdee4" - } - Frame { - msec: 4048 - hash: "a95f51c3e172ee76b5b74e94532cdfaf" - } - Frame { - msec: 4064 - hash: "62d73e875875329c886d2eb540a9c2d9" - } - Frame { - msec: 4080 - hash: "63c70a0ea1f43d92c717ff23dcfebe81" - } - Frame { - msec: 4096 - hash: "49372aa66b86904d587b72c6c2cfd467" - } - Frame { - msec: 4112 - hash: "523c18f3c7bbaaf9c625835ddf0d8435" - } - Frame { - msec: 4128 - hash: "257a298bec9589037e3022cc2fe7a775" - } - Frame { - msec: 4144 - hash: "d777e4b06791bda82cf1e8e84b1cff5c" - } - Frame { - msec: 4160 - hash: "c31de5bfff431b13dcbf2b8b4c503bc3" - } - Frame { - msec: 4176 - hash: "b8f158a8694f2b922faf818d469230e4" - } - Frame { - msec: 4192 - hash: "5fd4cd0c335cecc7468d44d188e1669d" - } - Frame { - msec: 4208 - hash: "77b003c8f72498ed295678158adf417c" - } - Frame { - msec: 4224 - hash: "96a78749a57bdb87cf28a3804b63793f" - } - Frame { - msec: 4240 - hash: "f497ed7bc98daea35a9ae4838427207e" - } - Frame { - msec: 4256 - hash: "35a7221f2888ab3afec443b2c1060c80" - } - Frame { - msec: 4272 - hash: "35a7221f2888ab3afec443b2c1060c80" - } - Frame { - msec: 4288 - hash: "4769fa4ba0c08baefa431b94b47a7ffc" - } - Frame { - msec: 4304 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4320 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4336 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4352 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4368 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4384 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4400 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4416 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4432 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4448 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4464 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4480 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4496 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4512 - hash: "afec5604967bc19a2bb8fc7e899c1e11" - } - Frame { - msec: 4528 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4544 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4560 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4576 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4592 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4608 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4624 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4640 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4656 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4672 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4688 - hash: "66d988259c52db9bd85f60ed598469f7" - } - Frame { - msec: 4704 - hash: "66d988259c52db9bd85f60ed598469f7" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.0.png deleted file mode 100644 index 464d913..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.1.png deleted file mode 100644 index 464d913..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.2.png deleted file mode 100644 index b16b9f0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.3.png deleted file mode 100644 index c3d2a6f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.4.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.4.png deleted file mode 100644 index d074e73..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.5.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.5.png deleted file mode 100644 index 0cac34c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.qml deleted file mode 100644 index c418cc8..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-nested.qml +++ /dev/null @@ -1,2159 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "flickable-nested.0.png" - } - Frame { - msec: 32 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 48 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 64 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 80 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 96 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 112 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 128 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 144 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 160 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 176 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 192 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 208 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 224 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 240 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 256 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 272 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 288 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 304 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 320 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 336 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 352 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 368 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 384 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 400 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 416 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 432 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 448 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 464 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 480 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 496 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 512 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 528 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 544 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 560 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 576 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 592 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 608 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 624 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 640 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 656 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 672 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 688 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 704 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 720 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 736 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 752 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 768 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 784 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 800 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 816 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 832 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 848 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 864 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 880 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 896 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 912 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 928 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 206; y: 205 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 944 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Frame { - msec: 960 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 976 - image: "flickable-nested.1.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 203 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 202 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 992 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 201 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 199 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1008 - hash: "7523750f0fd21aff13e6ab379e87640d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 197 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 196 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1024 - hash: "bddf8ca2638c9a04f7029d6982152d11" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 191 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 197; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1040 - hash: "bc15f1b562879d5058d3b1336fb9074e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 185 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 184 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1056 - hash: "3572c62d7d2b9b23a8d9d3e5037591dd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 182 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 194; y: 182 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "ce9658887cca581a88e7db14b92d46f2" - } - Frame { - msec: 1088 - hash: "e1fe1a2e1669a200e20468b4aa98dd3d" - } - Frame { - msec: 1104 - hash: "b7582829bf01223e6641ce82f62047df" - } - Frame { - msec: 1120 - hash: "80bd41fe22fb84efb011acf50ec38574" - } - Frame { - msec: 1136 - hash: "04c8d6c3922ce9777ee27d8df59d4729" - } - Frame { - msec: 1152 - hash: "f84dba18e525f1c06548c0232a244b6d" - } - Frame { - msec: 1168 - hash: "26c74b95835e8e0da5aadc7c42cac81c" - } - Frame { - msec: 1184 - hash: "1b4fcb1f0bd83a683cfe0ac303be0033" - } - Frame { - msec: 1200 - hash: "1b4fcb1f0bd83a683cfe0ac303be0033" - } - Frame { - msec: 1216 - hash: "4df47f90656fff253883e3e2d33506dc" - } - Frame { - msec: 1232 - hash: "4df47f90656fff253883e3e2d33506dc" - } - Frame { - msec: 1248 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1264 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1280 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1296 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1312 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1328 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1344 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1360 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1376 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1392 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1408 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1424 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1440 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1456 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1472 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1488 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1504 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1520 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1536 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1552 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1568 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1584 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Frame { - msec: 1600 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 226; y: 218 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1616 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 225; y: 218 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1632 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 223; y: 217 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 217 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1648 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 216 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1664 - hash: "7d0d94c4a7a9330f5bd17782ca484848" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 214; y: 212 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "54b41609ba43f710b08ba63f0b96df99" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 208 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 207 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1696 - hash: "8910b66b9eb1b2be80e36ed2824df1a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 205 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 205; y: 205 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1712 - hash: "38df31933f34f961a9b7020ad0d469c2" - } - Frame { - msec: 1728 - hash: "7702a7f710991225d9f411e8f410b515" - } - Frame { - msec: 1744 - hash: "c90d402e68208ccfd2c7345a2bf650cd" - } - Frame { - msec: 1760 - hash: "2630ed37aaf37907d1ee48efb0239615" - } - Frame { - msec: 1776 - hash: "527725818699ce3425b5cb95a25610d5" - } - Frame { - msec: 1792 - hash: "7bd6e37853946a835973c3da213beddc" - } - Frame { - msec: 1808 - hash: "e3c5e113d992e5e50b6780185891edd7" - } - Frame { - msec: 1824 - hash: "e3c5e113d992e5e50b6780185891edd7" - } - Frame { - msec: 1840 - hash: "20ced2b9960931c4c0cbe8bcc1f9e52a" - } - Frame { - msec: 1856 - hash: "09710c8964c8b010a90c67f126acdefa" - } - Frame { - msec: 1872 - hash: "09710c8964c8b010a90c67f126acdefa" - } - Frame { - msec: 1888 - hash: "09710c8964c8b010a90c67f126acdefa" - } - Frame { - msec: 1904 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 1920 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 1936 - image: "flickable-nested.2.png" - } - Frame { - msec: 1952 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 1968 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 1984 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2000 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2016 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2032 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2048 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2064 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2080 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2096 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2112 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2128 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2144 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2160 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2176 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2192 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2208 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2224 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2240 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2256 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2272 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2288 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Frame { - msec: 2304 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 274; y: 218 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2320 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 273; y: 218 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 273; y: 217 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2336 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 272; y: 215 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 272; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2352 - hash: "e80b03bd168ec62aba64cdf75dcd1d5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 210 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 270; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2368 - hash: "79a132ab719ccdf48d367cca443cd835" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 269; y: 204 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 269; y: 202 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2384 - hash: "1f19e7d2c7494f5b603dee16e211d65d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 196 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 193 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2400 - hash: "64fd22407c77fac28d13035ce78c67b2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 186 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 177 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2416 - hash: "f05a0f956b4964d4ebff056b63252297" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 265; y: 173 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 264; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2432 - hash: "3de1e9a2b33e37b0fe3b799b68ec22d6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 263; y: 164 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 263; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2448 - hash: "71f115c60d4f20422e4ac3f319644c48" - } - Frame { - msec: 2464 - hash: "c3995ac89f0a4b3fb07401479538d338" - } - Frame { - msec: 2480 - hash: "950e83408adf55f4e7fc1c0c127caa89" - } - Frame { - msec: 2496 - hash: "5b335621a76a527d058708384c2e5635" - } - Frame { - msec: 2512 - hash: "a201ae31d5bb778bd44a49dd21951c1b" - } - Frame { - msec: 2528 - hash: "550e6708a8999d56d1f57c121228692f" - } - Frame { - msec: 2544 - hash: "d8eb4dd2b3cf50273cb7dfbb5bd658b9" - } - Frame { - msec: 2560 - hash: "aa1fd0a990e42175acc84de96b384e9d" - } - Frame { - msec: 2576 - hash: "0236fb15db30da5ec794444affee1169" - } - Frame { - msec: 2592 - hash: "a7445a70874a9767462e79e1dff88dbc" - } - Frame { - msec: 2608 - hash: "339ea6bd5b486ff85272e19e07669f0b" - } - Frame { - msec: 2624 - hash: "2b24d9d17c77cd0ac52989328dcf499b" - } - Frame { - msec: 2640 - hash: "2b24d9d17c77cd0ac52989328dcf499b" - } - Frame { - msec: 2656 - hash: "e2fcfe4f3e14e46404eb6955502180a1" - } - Frame { - msec: 2672 - hash: "5d0c9601b871690047f4df91723ccfb1" - } - Frame { - msec: 2688 - hash: "5d0c9601b871690047f4df91723ccfb1" - } - Frame { - msec: 2704 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2720 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2736 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2752 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2768 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2784 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2800 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2816 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2832 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2848 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2864 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2880 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2896 - image: "flickable-nested.3.png" - } - Frame { - msec: 2912 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2928 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2944 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Frame { - msec: 2960 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 268; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2976 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2992 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 105 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 269; y: 108 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3008 - hash: "5b5d7e880e9f4942f52a3cde738dc7fb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 270; y: 111 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 270; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3024 - hash: "2b24d9d17c77cd0ac52989328dcf499b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 272; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3040 - hash: "550e6708a8999d56d1f57c121228692f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 273; y: 130 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 274; y: 138 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3056 - hash: "57f3c0a49cef2137e3cfa435396c099e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 274; y: 142 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 274; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3072 - hash: "0fffc659a270cc614d16ddf3fa2ab51d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 274; y: 153 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 274; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3088 - hash: "a8d937c8379950299a6e3611ff313415" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 273; y: 165 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 272; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3104 - hash: "46cfebbf821a08aa30055bfa8fffd137" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 175 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 270; y: 180 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 270; y: 180 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3120 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3136 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3152 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3168 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3184 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3200 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3216 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3232 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3248 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3264 - hash: "20a32ee8ae2cf88a2cfdb2dd8552255a" - } - Frame { - msec: 3280 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3296 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3312 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3328 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3344 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3360 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3376 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3392 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3408 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3424 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3440 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3456 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3472 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3488 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3504 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3520 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3536 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3552 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3568 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 3584 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 352; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3600 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 205 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3616 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 201 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 196 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3632 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 193 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 185 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3648 - hash: "eb718f97648438dae1440e2089434b0a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 176 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3664 - hash: "e4a2b82752939f351ac46032f2d3333e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 353; y: 163 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 354; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3680 - hash: "ab1099a146433a5ec77b336673d0527c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 356; y: 148 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 356; y: 142 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3696 - hash: "7e4ca5ba45d5de10d72ef5ab1171ead5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 357; y: 130 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 357; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3712 - hash: "417bb78fc4f255194a71193e388b752f" - } - Frame { - msec: 3728 - hash: "be63b1e57006d881a345db3ca66e7097" - } - Frame { - msec: 3744 - hash: "e1b96137c2cc0ef18e224a32f665de9d" - } - Frame { - msec: 3760 - hash: "6157ba3962fc7829e8693e2456fd6e8e" - } - Frame { - msec: 3776 - hash: "951ae231b7b18517f8d6504ce7f01b3d" - } - Frame { - msec: 3792 - hash: "57f60f9da1a204cc7eb930575de45ae4" - } - Frame { - msec: 3808 - hash: "008323603b48a55b589af7cbb2f1c8b0" - } - Frame { - msec: 3824 - hash: "b8447e994280cba5ccddc36e7ad3c927" - } - Frame { - msec: 3840 - hash: "98dfc2d6573e5cb7a56a893b8fecf422" - } - Frame { - msec: 3856 - image: "flickable-nested.4.png" - } - Frame { - msec: 3872 - hash: "09dabc3ef85dc857719e7d20111e6023" - } - Frame { - msec: 3888 - hash: "5864c4197fe3269c3f1ad05caf25832e" - } - Frame { - msec: 3904 - hash: "370a471a614d22d281d9987a5b6a42bf" - } - Frame { - msec: 3920 - hash: "36c74e2e325807c7c06e941581613f48" - } - Frame { - msec: 3936 - hash: "e1e2b69992294dc611e6eef7e259d4cd" - } - Frame { - msec: 3952 - hash: "e1e2b69992294dc611e6eef7e259d4cd" - } - Frame { - msec: 3968 - hash: "e1e2b69992294dc611e6eef7e259d4cd" - } - Frame { - msec: 3984 - hash: "36c74e2e325807c7c06e941581613f48" - } - Frame { - msec: 4000 - hash: "36c74e2e325807c7c06e941581613f48" - } - Frame { - msec: 4016 - hash: "bd8f39423d96fceaf577c7f792b61211" - } - Frame { - msec: 4032 - hash: "370a471a614d22d281d9987a5b6a42bf" - } - Frame { - msec: 4048 - hash: "c8fe4424d96460a2503632e3a54d4f6a" - } - Frame { - msec: 4064 - hash: "09dabc3ef85dc857719e7d20111e6023" - } - Frame { - msec: 4080 - hash: "22bff1406eba529d58320b8b19be76d9" - } - Frame { - msec: 4096 - hash: "478bc04322b93b75b5185d047c2898b7" - } - Frame { - msec: 4112 - hash: "98dfc2d6573e5cb7a56a893b8fecf422" - } - Frame { - msec: 4128 - hash: "03b96d3e148e86f1150b09696012d07c" - } - Frame { - msec: 4144 - hash: "735b24d2811beef969477c8b0f400d32" - } - Frame { - msec: 4160 - hash: "b8399d2a7a6de0b5f81e68e8f8825622" - } - Frame { - msec: 4176 - hash: "766a97e0881b623a0de93babfa841125" - } - Frame { - msec: 4192 - hash: "008323603b48a55b589af7cbb2f1c8b0" - } - Frame { - msec: 4208 - hash: "3da913235e4916b4691e3d089dc7b52f" - } - Frame { - msec: 4224 - hash: "3da913235e4916b4691e3d089dc7b52f" - } - Frame { - msec: 4240 - hash: "8c7f6ff7b3db65d7dd9ac4d18545f0d1" - } - Frame { - msec: 4256 - hash: "8c7f6ff7b3db65d7dd9ac4d18545f0d1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 346; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4272 - hash: "8c7f6ff7b3db65d7dd9ac4d18545f0d1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 346; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 346; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4288 - hash: "951ae231b7b18517f8d6504ce7f01b3d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 348; y: 110 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 348; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4304 - hash: "364283bbbcedabc87689ec174ae29818" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 351; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 353; y: 129 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4320 - hash: "6a8a59ba8cf0539704fc035d7d5def41" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 358; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 361; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4336 - hash: "d4626b39fbf24cc6a4e23ef33a570add" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 370; y: 163 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4352 - hash: "255604ac684a18e272dccfa9a81fa1bb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 376; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4368 - hash: "2696641e48ea2a0ccfc65057b283814f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 377; y: 175 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 377; y: 175 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4384 - hash: "4ae011d8d81c57f9e2495d32a90fb5c0" - } - Frame { - msec: 4400 - hash: "c07f57059244b1164e698430b20aac8e" - } - Frame { - msec: 4416 - hash: "d39c21bc6fc079c76ea78d1a3fb0c974" - } - Frame { - msec: 4432 - hash: "f955985ee02fcb810ab8c5f4790f5c12" - } - Frame { - msec: 4448 - hash: "d06b83769bf0f0331e53c270f5dc294c" - } - Frame { - msec: 4464 - hash: "a49ef3866e3f71c26c57fcd616a6dc4c" - } - Frame { - msec: 4480 - hash: "086f4bb966b2076f51b1f615368afda5" - } - Frame { - msec: 4496 - hash: "898de0b200cb83c9724869dd2b74ed52" - } - Frame { - msec: 4512 - hash: "47833f93c5c55f57de5733950ba53714" - } - Frame { - msec: 4528 - hash: "0ced71db7e8c5b8ce8e195a7b821507d" - } - Frame { - msec: 4544 - hash: "84888b8748e297ed4e0525019865ea2b" - } - Frame { - msec: 4560 - hash: "0f62d1aaa0fec0dd90351258a3745869" - } - Frame { - msec: 4576 - hash: "e34a874942161ea830907f94040fc0a5" - } - Frame { - msec: 4592 - hash: "9031e4ad8ee57a8b826d6a6394f0feb9" - } - Frame { - msec: 4608 - hash: "9031e4ad8ee57a8b826d6a6394f0feb9" - } - Frame { - msec: 4624 - hash: "cc8a2477368001015b68c99db95ebaa1" - } - Frame { - msec: 4640 - hash: "01c0f4d5b155eb16ac364b24d5085bac" - } - Frame { - msec: 4656 - hash: "4c4f318b03e0da461bcecb61f43ef3cd" - } - Frame { - msec: 4672 - hash: "dffd22d719f18c943cd0c30afe272434" - } - Frame { - msec: 4688 - hash: "4f7ab0450512ae1319dad22a6e0400b7" - } - Frame { - msec: 4704 - hash: "ea29e23bdb49a30694640dfb078c796a" - } - Frame { - msec: 4720 - hash: "80739ed287906d0b55297be4b74a54cb" - } - Frame { - msec: 4736 - hash: "8d9117cf841c4b158f30b79ac8f2afb0" - } - Frame { - msec: 4752 - hash: "1850e9117160b2bd1865274092f9ec84" - } - Frame { - msec: 4768 - hash: "07945c8954860895f95f8e352c49e0a5" - } - Frame { - msec: 4784 - hash: "d0fa6087d2859446ff8f317c9d7dafe1" - } - Frame { - msec: 4800 - hash: "8ebba2084793d90a640ec2fb12dc0547" - } - Frame { - msec: 4816 - image: "flickable-nested.5.png" - } - Frame { - msec: 4832 - hash: "77d479675c36ecda0926061449f5a60b" - } - Frame { - msec: 4848 - hash: "77d479675c36ecda0926061449f5a60b" - } - Frame { - msec: 4864 - hash: "b968c1528ce7ecf80008fbd56f0ca9a9" - } - Frame { - msec: 4880 - hash: "b968c1528ce7ecf80008fbd56f0ca9a9" - } - Frame { - msec: 4896 - hash: "b968c1528ce7ecf80008fbd56f0ca9a9" - } - Frame { - msec: 4912 - hash: "b968c1528ce7ecf80008fbd56f0ca9a9" - } - Frame { - msec: 4928 - hash: "b968c1528ce7ecf80008fbd56f0ca9a9" - } - Frame { - msec: 4944 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 4960 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 4976 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 4992 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5008 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5024 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5040 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5056 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5072 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5088 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5104 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5120 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5136 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5152 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5168 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5184 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5200 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5216 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5232 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5248 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5264 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5280 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5296 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5312 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5328 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5344 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5360 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5376 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5392 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5408 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5424 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5440 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5456 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5472 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5488 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5504 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5520 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5536 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5552 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5568 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5584 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5600 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5616 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5632 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5648 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5664 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5680 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } - Frame { - msec: 5696 - hash: "38f29e86bd9bfe4df04c6411374f76ae" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.0.png deleted file mode 100644 index 5af9306..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.1.png deleted file mode 100644 index 61acc87..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.2.png deleted file mode 100644 index bc6ac34..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.3.png deleted file mode 100644 index bc6ac34..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.4.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.4.png deleted file mode 100644 index c970488..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.5.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.5.png deleted file mode 100644 index 0af1424..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.6.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.6.png deleted file mode 100644 index c826907..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.7.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.7.png deleted file mode 100644 index 5af9306..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.8.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.8.png deleted file mode 100644 index f714fa5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml deleted file mode 100644 index 8ad3029..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml +++ /dev/null @@ -1,3647 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "flickable-vertical.0.png" - } - Frame { - msec: 32 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 48 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 64 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 80 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 96 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 112 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 128 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 144 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 160 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 176 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 192 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 208 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 224 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 240 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 256 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 272 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 288 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 159; y: 207 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 304 - hash: "71a0273e7582419e07937fe701d8e027" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 320 - hash: "71a0273e7582419e07937fe701d8e027" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 205 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 203 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 336 - hash: "71a0273e7582419e07937fe701d8e027" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 199 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 190 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 352 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 176 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 368 - hash: "a8d53f622836800e43157685ce21fad4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 384 - hash: "99c8215fbd87e45836908a85748dccc7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 141; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 400 - hash: "d56ff1a2994f1acb5ad06b0468672a29" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 46 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 136; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 416 - hash: "85ba01e36cc978459451887facbc3260" - } - Frame { - msec: 432 - hash: "958d223a6b27ecc87febd860168d5aa5" - } - Frame { - msec: 448 - hash: "851ef5f56b7b05d3feb0a1a357f96007" - } - Frame { - msec: 464 - hash: "4d90460d3b6c46075ffda426bc6ceaa6" - } - Frame { - msec: 480 - hash: "bb67acd602414cf59e27b5ff19f69169" - } - Frame { - msec: 496 - hash: "acce28653f8bf46c09067254774fb126" - } - Frame { - msec: 512 - hash: "91ea2538dfe0f9af7b4732cb4474215b" - } - Frame { - msec: 528 - hash: "e7fd52f25a4a9c31a2f2fabd59c31160" - } - Frame { - msec: 544 - hash: "6acdb4852ef9091382030998e28d02a5" - } - Frame { - msec: 560 - hash: "10c7eaab96a538a7111b054a403132a3" - } - Frame { - msec: 576 - hash: "4ebb31f7945bb5542f9e5146888b1065" - } - Frame { - msec: 592 - hash: "b98d594580ad701afb4d2ef186853bc4" - } - Frame { - msec: 608 - hash: "2700eb44f9b7400f3c1bd11d878e078d" - } - Frame { - msec: 624 - hash: "b8a8c4db8325b3e0292e6473084347d9" - } - Frame { - msec: 640 - hash: "88ff05697e82e78847794b153be12c46" - } - Frame { - msec: 656 - hash: "06970943c3cd12f07b1d661de0ab730f" - } - Frame { - msec: 672 - hash: "5804b412094ab17424de4ba12b2e2e32" - } - Frame { - msec: 688 - hash: "8ff038b364f065e67430b2a312a10101" - } - Frame { - msec: 704 - hash: "8a9a1c725b80af8fd3ffb9d8bc7328ac" - } - Frame { - msec: 720 - hash: "83c3481ec7a1dddcbc36d6fb9b7d6149" - } - Frame { - msec: 736 - hash: "abf102e5d88bef8ed429c222284907da" - } - Frame { - msec: 752 - hash: "e9bcb3268f705e708ffbcf707c78c889" - } - Frame { - msec: 768 - hash: "918c60c1ed90f5803d24ea515f21f8fa" - } - Frame { - msec: 784 - hash: "f3064485083025aba09224faafcede14" - } - Frame { - msec: 800 - hash: "9f36e5b91e6abc9f991625cc52afdd4e" - } - Frame { - msec: 816 - hash: "70a50039fbd67d4b56c0c7ec3d7aecd1" - } - Frame { - msec: 832 - hash: "90bbef58e2e59021f68b878db477f74b" - } - Frame { - msec: 848 - hash: "21480d7b949acba033f4686c666d3f85" - } - Frame { - msec: 864 - hash: "b622d2cea2428fb92a8e37715a60f195" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 109; y: 69 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 880 - hash: "b622d2cea2428fb92a8e37715a60f195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 70 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 896 - hash: "b622d2cea2428fb92a8e37715a60f195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 74 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 912 - hash: "8b537cd0481c1a9bf84f4855ae5697ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 89 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 113; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 928 - hash: "f5aba503b2c155401d26be068724e28a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 135 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 944 - hash: "1aca5a9415dd669a0ff76ef4da9c9a56" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 160 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 183 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 960 - hash: "b046e18396cd3d2da6505fa783bd2b89" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 205 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 230 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 124; y: 230 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 976 - image: "flickable-vertical.1.png" - } - Frame { - msec: 992 - hash: "c4506098417f905871a43d183cd5904d" - } - Frame { - msec: 1008 - hash: "fe8014819e6fe41fa109f5b0ff2e9764" - } - Frame { - msec: 1024 - hash: "6acdb4852ef9091382030998e28d02a5" - } - Frame { - msec: 1040 - hash: "d5a9739669a9a641c0c1f44b777cb9b8" - } - Frame { - msec: 1056 - hash: "a4006cb90c69313b9b04a6b7b8734855" - } - Frame { - msec: 1072 - hash: "23b447e486a6354354505171cf3c45ec" - } - Frame { - msec: 1088 - hash: "ad172b89d9764bd568d9127c91547c0b" - } - Frame { - msec: 1104 - hash: "0003fb6329e0bf293d56af63265bf0ca" - } - Frame { - msec: 1120 - hash: "dd62960e62800219c179fcd481e4504d" - } - Frame { - msec: 1136 - hash: "7fe6c7bd1bc9e46d3e520178a2309e87" - } - Frame { - msec: 1152 - hash: "bb67acd602414cf59e27b5ff19f69169" - } - Frame { - msec: 1168 - hash: "3170c18b8dd74429b0f366ec07f4870b" - } - Frame { - msec: 1184 - hash: "249e4e489236e3f0748ba63c7a105b33" - } - Frame { - msec: 1200 - hash: "bd2fb97c583e6fe653a32fa610d6ac83" - } - Frame { - msec: 1216 - hash: "95ca2f988370075070c6a98e5e680206" - } - Frame { - msec: 1232 - hash: "851ef5f56b7b05d3feb0a1a357f96007" - } - Frame { - msec: 1248 - hash: "80f599f50af9e601536f62ea93f4e429" - } - Frame { - msec: 1264 - hash: "485d719d81429e63be4de1ba81d53996" - } - Frame { - msec: 1280 - hash: "745f3c2e0baede59a52805eddac5b01f" - } - Frame { - msec: 1296 - hash: "fea3fa6e26eb150ab37fe96a34d3be3b" - } - Frame { - msec: 1312 - hash: "29c8004517294539adf3243533381436" - } - Frame { - msec: 1328 - hash: "85ba01e36cc978459451887facbc3260" - } - Frame { - msec: 1344 - hash: "deedb9ddcc2f5354a2356178db54d971" - } - Frame { - msec: 1360 - hash: "9e1fb461c13b4affa39e5909d3ade168" - } - Frame { - msec: 1376 - hash: "684a543d7afc5a5cac2bb823bbb94893" - } - Frame { - msec: 1392 - hash: "636f04661a0418c1fdcaaaba28092671" - } - Frame { - msec: 1408 - hash: "89cac82b6751208654d1e4ef4df8ef28" - } - Frame { - msec: 1424 - hash: "a974415dcf31bee79874c4a6e84cf796" - } - Frame { - msec: 1440 - hash: "f74c075e8cf2aef501b7115427b3b221" - } - Frame { - msec: 1456 - hash: "7efcd27e34db1d3adc3d31e0b9ebe432" - } - Frame { - msec: 1472 - hash: "c8747327ae3370b04a996aa6b5e373c6" - } - Frame { - msec: 1488 - hash: "b7b32b5e782f8f5b1cbd6f581f90004a" - } - Frame { - msec: 1504 - hash: "5fda56f77948e183557ff54690030746" - } - Frame { - msec: 1520 - hash: "6e43987a8db7a6231887cf5883d381bf" - } - Frame { - msec: 1536 - hash: "901e1f9851d05ff300fa2d52a38829ec" - } - Frame { - msec: 1552 - hash: "abda2edf3c9f1aa28f41bf28083d081f" - } - Frame { - msec: 1568 - hash: "5e324e90e4056f59730db9fbc941609a" - } - Frame { - msec: 1584 - hash: "d98ec6ad7e6f2df6796f975cdf06ea2c" - } - Frame { - msec: 1600 - hash: "fa62c8154b5aba9fa6daa0a50229e752" - } - Frame { - msec: 1616 - hash: "c03b7e52c7da4f1cb6a4a2cab119a1a1" - } - Frame { - msec: 1632 - hash: "57c1149d35ed84de63bac7accdb30c77" - } - Frame { - msec: 1648 - hash: "48823d7e5b72ff6e11bbe877962c9884" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 44; y: 282 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1664 - hash: "99c8215fbd87e45836908a85748dccc7" - } - Frame { - msec: 1680 - hash: "45e2cf43322f038d2b322dea82e829f1" - } - Frame { - msec: 1696 - hash: "6473a0dc426bf118674d09b281fb6c38" - } - Frame { - msec: 1712 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 44; y: 282 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1728 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1744 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1760 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1776 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1792 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1808 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1824 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1840 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1856 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1872 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1888 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1904 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1920 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1936 - image: "flickable-vertical.2.png" - } - Frame { - msec: 1952 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1968 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 1984 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2000 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2016 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2032 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2048 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2064 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2080 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 95; y: 222 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 221 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2096 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 220 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 218 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2112 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 216 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 212 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2128 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 205 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 195 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2144 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 97; y: 184 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 97; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2160 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 99; y: 153 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 99; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2176 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 125 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 112 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2192 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2208 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 62 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2224 - hash: "5f6ed58401fddd692503810f22b23e93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 53 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 103; y: 45 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2240 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2256 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2272 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2288 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2304 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2320 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2336 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2352 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2368 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2384 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2400 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2416 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2432 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2448 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2464 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2480 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2496 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2512 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2528 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 90; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2544 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 90; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2560 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 90; y: 40 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 90; y: 41 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2576 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 43 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2592 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 92; y: 50 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 92; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2608 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 94; y: 65 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2624 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 97; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 99; y: 112 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2640 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 129 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2656 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 165 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 180 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2672 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 192 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 205 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2688 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 219 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 230 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2704 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 235 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 238 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2720 - hash: "defd2e26ba579dffd2273bcc86c54a94" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 240 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 111; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2736 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2752 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2768 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2784 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2800 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2816 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2832 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2848 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2864 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2880 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2896 - image: "flickable-vertical.3.png" - } - Frame { - msec: 2912 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2928 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2944 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2960 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2976 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 2992 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3008 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3024 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3040 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3056 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3072 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3088 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3104 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3120 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3136 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 43; y: 269 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3152 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3168 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3184 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3200 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3216 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 43; y: 269 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3232 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3248 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3264 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3280 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3296 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3312 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3328 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3344 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3360 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3376 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3392 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3408 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3424 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3440 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3456 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3472 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 75; y: 279 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3488 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3504 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3520 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3536 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 75; y: 279 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3552 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3568 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3584 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3600 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3616 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3632 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3648 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3664 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3680 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3696 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3712 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3728 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Frame { - msec: 3744 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 116; y: 200 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 116; y: 199 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 198 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3776 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 195 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 190 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3792 - hash: "8caa38000edef97a8276022b5da19ecc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 183 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 166 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3808 - hash: "abda2edf3c9f1aa28f41bf28083d081f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 146 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 123 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3824 - hash: "1a0305de0a8156f3f059d74891b71846" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 128; y: 67 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3840 - hash: "04c2fbbb1df6ca9d03c105fcfa5c0770" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 41 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 133; y: 15 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3856 - image: "flickable-vertical.4.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: -6 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: -27 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3872 - hash: "4ebb31f7945bb5542f9e5146888b1065" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 140; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3888 - hash: "2a731429c6d5c4ee1f1fa8f3ca07f0c2" - } - Frame { - msec: 3904 - hash: "b8a8c4db8325b3e0292e6473084347d9" - } - Frame { - msec: 3920 - hash: "fae53bd8bc9d05f343968c7006723207" - } - Frame { - msec: 3936 - hash: "fe2fc28a79609af32ea1043f3c988b08" - } - Frame { - msec: 3952 - hash: "18f77a48b14347b2ab41eb39c9de3be4" - } - Frame { - msec: 3968 - hash: "93e83c35d34715ee703a0d79d51bc145" - } - Frame { - msec: 3984 - hash: "4ae9d80d6079b92be66fcc099209d779" - } - Frame { - msec: 4000 - hash: "bd8c0a924552cb4dfc5ddc1451931b01" - } - Frame { - msec: 4016 - hash: "6a1874cdac6f754b36f022c583834d32" - } - Frame { - msec: 4032 - hash: "f3064485083025aba09224faafcede14" - } - Frame { - msec: 4048 - hash: "8e82568ac62969dfedbf1c2082101661" - } - Frame { - msec: 4064 - hash: "4e447efea0dd139787c7aa9018327206" - } - Frame { - msec: 4080 - hash: "ed23778ce6843053cd4af6df7262bdd0" - } - Frame { - msec: 4096 - hash: "fe1118cc51b4cd25d775b5d1c1d66540" - } - Frame { - msec: 4112 - hash: "02a59ccc15df26abe5612f13ce926286" - } - Frame { - msec: 4128 - hash: "71c43a208e3dfbce6cb461f8ff0d2f17" - } - Frame { - msec: 4144 - hash: "404b8155f17dff084c2da1407d6915a9" - } - Frame { - msec: 4160 - hash: "ab0dba54c469dea461cd1619161edd82" - } - Frame { - msec: 4176 - hash: "e6f158712a7afe1844acc1a1cd9385ec" - } - Frame { - msec: 4192 - hash: "b9d8fcc3d68ebc6d4d4f60e4652befe3" - } - Frame { - msec: 4208 - hash: "9005a49b3ac2ef2344d78ef68595ea26" - } - Frame { - msec: 4224 - hash: "aad3dd90f766320ad68b62b97559ec02" - } - Frame { - msec: 4240 - hash: "a39008d78d188e8bd3571f80f679a915" - } - Frame { - msec: 4256 - hash: "cedc580acc63d6a069442bb83f17b6f8" - } - Frame { - msec: 4272 - hash: "f63f5d20e3b5a4b6247339d0ec518449" - } - Frame { - msec: 4288 - hash: "f63f5d20e3b5a4b6247339d0ec518449" - } - Frame { - msec: 4304 - hash: "cedc580acc63d6a069442bb83f17b6f8" - } - Frame { - msec: 4320 - hash: "bccf94c11e92af36f418dbee1b797a86" - } - Frame { - msec: 4336 - hash: "a39008d78d188e8bd3571f80f679a915" - } - Frame { - msec: 4352 - hash: "02d38396737a262fa983511a40514b38" - } - Frame { - msec: 4368 - hash: "9005a49b3ac2ef2344d78ef68595ea26" - } - Frame { - msec: 4384 - hash: "c05dad606a9b5b501a201bfead974f03" - } - Frame { - msec: 4400 - hash: "27846f086c13e1b06e89a8a395802678" - } - Frame { - msec: 4416 - hash: "f919b09b6f7f4f09b5d9b123b686a442" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 136; y: 176 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4432 - hash: "f919b09b6f7f4f09b5d9b123b686a442" - } - Frame { - msec: 4448 - hash: "f919b09b6f7f4f09b5d9b123b686a442" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 175 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4464 - hash: "f919b09b6f7f4f09b5d9b123b686a442" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 173 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4480 - hash: "ab0dba54c469dea461cd1619161edd82" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 134; y: 159 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 133; y: 142 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4496 - hash: "aad3dd90f766320ad68b62b97559ec02" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 128; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4512 - hash: "09e110197afc9350dbbaf3e19e24dbe8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 78 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 59 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4528 - hash: "c50fa7aa75b947d065109c97a0db4c02" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4544 - hash: "e701f8ef23f576f10c286191ea4caaf1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 12 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 118; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4560 - hash: "c24daebe9c5ba9bd46ef674c49edd160" - } - Frame { - msec: 4576 - hash: "fc762235395c772666d2529a5e9bff98" - } - Frame { - msec: 4592 - hash: "7f4f4420fde62e6126f0c3bf604425dc" - } - Frame { - msec: 4608 - hash: "0e9978b0f60cba7bf599571b97f2f751" - } - Frame { - msec: 4624 - hash: "ff19d1b0a0d7d0cc5dd8919606c17fc8" - } - Frame { - msec: 4640 - hash: "7c61e0a6c354b4f30db6c861b9250be2" - } - Frame { - msec: 4656 - hash: "bd1196ce51f5abd53f6052f17d926a81" - } - Frame { - msec: 4672 - hash: "ab2b1c33a5f60690fe2724a0ddd3bb67" - } - Frame { - msec: 4688 - hash: "0a0709d2649d649ab52eaddbe60c1dc9" - } - Frame { - msec: 4704 - hash: "ef3b3099811cc2e26d823d94c5b66f1d" - } - Frame { - msec: 4720 - hash: "522683305b2706b6e22d0e1770f285d6" - } - Frame { - msec: 4736 - hash: "c08d933b3dbda5fc476ed673cd7a2e4a" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 111; y: 67 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4752 - hash: "c08d933b3dbda5fc476ed673cd7a2e4a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 70 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4768 - hash: "ab0dba54c469dea461cd1619161edd82" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 79 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 86 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4784 - hash: "d23653a4e1651babdbb3561fb7029df2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 105 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4800 - hash: "702d94cbca1ba235a5a2cc30c552d8b7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 115 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4816 - image: "flickable-vertical.5.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 142 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 159 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4832 - hash: "f53134176897d55299ab723ab20ba3fc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 180 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 202 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4848 - hash: "84146c913b41215c4bab1f36471f2b7b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 127; y: 224 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 129; y: 243 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 129; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4864 - hash: "2a731429c6d5c4ee1f1fa8f3ca07f0c2" - } - Frame { - msec: 4880 - hash: "a1e960ffef391daecb52d31698c7b06c" - } - Frame { - msec: 4896 - hash: "adca54c132f170c517f1ef17c45006c8" - } - Frame { - msec: 4912 - hash: "4ebb31f7945bb5542f9e5146888b1065" - } - Frame { - msec: 4928 - hash: "c43ebd04137e379216c94b4c57cab3d9" - } - Frame { - msec: 4944 - hash: "c0218c548f5e3eb74ef33cb2921dbc96" - } - Frame { - msec: 4960 - hash: "e6a15947574c7ac8e5a2454a5f8b043d" - } - Frame { - msec: 4976 - hash: "ec9aca63b61a8c3beb4ad476d4e38568" - } - Frame { - msec: 4992 - hash: "28f0447e8107d7fac9ec29b83808d2cb" - } - Frame { - msec: 5008 - hash: "74e28cddf8dd7bd7593c7185e09ea752" - } - Frame { - msec: 5024 - hash: "23b447e486a6354354505171cf3c45ec" - } - Frame { - msec: 5040 - hash: "3e3948addc7236ff8638863786dfe045" - } - Frame { - msec: 5056 - hash: "49885ec2f3242fc3ba9c9b808b3bb491" - } - Frame { - msec: 5072 - hash: "0c12fc65a0298af1a1ec3bccfcdb20ab" - } - Frame { - msec: 5088 - hash: "49c71089343b963fd8b3587eb1d5d457" - } - Frame { - msec: 5104 - hash: "f083682e9bce74022baeafcb26870adb" - } - Frame { - msec: 5120 - hash: "5bd49eab3fd8b246659b51d4602ea391" - } - Frame { - msec: 5136 - hash: "3170c18b8dd74429b0f366ec07f4870b" - } - Frame { - msec: 5152 - hash: "d82de8b7c5a144b20085f447cf041350" - } - Frame { - msec: 5168 - hash: "60e520c52c5b87c686294a23d96dbd11" - } - Frame { - msec: 5184 - hash: "bb5b6cb5862e28a7f309ef5c7cf2b5dd" - } - Frame { - msec: 5200 - hash: "b9e255376ad0b74b2c9be6e694f84d90" - } - Frame { - msec: 5216 - hash: "e7527c7c8cb2f8c9e5ce32be98612837" - } - Frame { - msec: 5232 - hash: "8f8547a6508b156d514c6d4a61d18424" - } - Frame { - msec: 5248 - hash: "99b4220101d400b49346ca023799c8fe" - } - Frame { - msec: 5264 - hash: "2d83cf7c5f93aad4f9dcadcfdbb08fa3" - } - Frame { - msec: 5280 - hash: "c9ea64aa7000008ad9032cddd898767c" - } - Frame { - msec: 5296 - hash: "4c37b188261e927f72725484d08ac9e1" - } - Frame { - msec: 5312 - hash: "29c8004517294539adf3243533381436" - } - Frame { - msec: 5328 - hash: "b5126298ebb61d6ab5ae58822c9380ca" - } - Frame { - msec: 5344 - hash: "7b546c089dca57353b4867af724ea370" - } - Frame { - msec: 5360 - hash: "deedb9ddcc2f5354a2356178db54d971" - } - Frame { - msec: 5376 - hash: "9e1fb461c13b4affa39e5909d3ade168" - } - Frame { - msec: 5392 - hash: "dbb54d7d203c99d466b1a173fb90c148" - } - Frame { - msec: 5408 - hash: "0a67ef028264551c1122f4d8a0b07c20" - } - Frame { - msec: 5424 - hash: "636f04661a0418c1fdcaaaba28092671" - } - Frame { - msec: 5440 - hash: "de8946eb6317277b580cbf6a38a85a29" - } - Frame { - msec: 5456 - hash: "45dd5e856c10ef2e5a9b968044802096" - } - Frame { - msec: 5472 - hash: "a974415dcf31bee79874c4a6e84cf796" - } - Frame { - msec: 5488 - hash: "58dab05300d4c83ba084c8bef6a04958" - } - Frame { - msec: 5504 - hash: "f74c075e8cf2aef501b7115427b3b221" - } - Frame { - msec: 5520 - hash: "7fd3e958115134b2f15cc6d3e01cbcfe" - } - Frame { - msec: 5536 - hash: "7efcd27e34db1d3adc3d31e0b9ebe432" - } - Frame { - msec: 5552 - hash: "2229621b9ad55dddce371061584a4dfd" - } - Frame { - msec: 5568 - hash: "c8747327ae3370b04a996aa6b5e373c6" - } - Frame { - msec: 5584 - hash: "677f52c273dda1f878bfea43b6353aaa" - } - Frame { - msec: 5600 - hash: "d29de2f0505bdaca1e3443812a588fb1" - } - Frame { - msec: 5616 - hash: "71f3088ea8794a232ee08c6b0ad72e98" - } - Frame { - msec: 5632 - hash: "3733ba52e740ea8438967cb03c619368" - } - Frame { - msec: 5648 - hash: "5fda56f77948e183557ff54690030746" - } - Frame { - msec: 5664 - hash: "5996c2fc31ff3a13e1f3a23a230aad9a" - } - Frame { - msec: 5680 - hash: "90b9b19f9f6aef7279b1199ca7b34b07" - } - Frame { - msec: 5696 - hash: "05b4559167ff77d07bb3063b87c4e621" - } - Frame { - msec: 5712 - hash: "6e43987a8db7a6231887cf5883d381bf" - } - Frame { - msec: 5728 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5744 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5760 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5776 - image: "flickable-vertical.6.png" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 102; y: 279 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5792 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5808 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5824 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5840 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 102; y: 279 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5872 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5888 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5904 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5920 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5936 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5952 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5968 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 5984 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6000 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6016 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6032 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6048 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6064 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 148; y: 276 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6096 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6112 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6128 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6144 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 148; y: 276 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6176 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6192 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6208 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6224 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6240 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6256 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6272 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6288 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6304 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6320 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6336 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6352 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6368 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Frame { - msec: 6384 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 129; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6400 - hash: "9b748b3b85f63d7f62cd916b0bf4357c" - } - Frame { - msec: 6416 - hash: "9b748b3b85f63d7f62cd916b0bf4357c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 129; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 129; y: 105 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6432 - hash: "9b748b3b85f63d7f62cd916b0bf4357c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 110 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 123 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6448 - hash: "351d95ba7bc01ea8d4991883885ca537" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 133 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 134; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6464 - hash: "2c84bdd7066c8fd8c66b022783c6fcfe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 159 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6480 - hash: "ffe18300d9ce72e2d4e191c473a6973c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 187 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 203 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6496 - hash: "427720fdd38ff4310c8040b1a5a5f84f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 214 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 141; y: 224 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6512 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 235 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 246 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 257 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 269 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6544 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 278 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 289 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6560 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 147; y: 299 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 147; y: 308 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6576 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 316 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 318 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 320 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 321 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 149; y: 321 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6608 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6624 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6640 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6656 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6672 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6688 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6704 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6720 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6736 - image: "flickable-vertical.7.png" - } - Frame { - msec: 6752 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6768 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6784 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6800 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6816 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6832 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6848 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6864 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6880 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6896 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6912 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6928 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6944 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6960 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6976 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Frame { - msec: 6992 - hash: "08a827d109c78ff0d82ed7b6ef8d55b9" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 166; y: 191 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7008 - hash: "ff198f6b27379e64b901b37e0cf1e98b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 190 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7024 - hash: "ff198f6b27379e64b901b37e0cf1e98b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 188 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 185 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7040 - hash: "ff198f6b27379e64b901b37e0cf1e98b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 169; y: 183 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 169; y: 179 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7056 - hash: "61d410fdbe0ee8a41e9c7b25eb2901a7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 172 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 162 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7072 - hash: "8e27d1db841047a115561861a1c20e67" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 150 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7088 - hash: "7599e2f206da8b46dcaf35a4a7858747" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 165; y: 125 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7104 - hash: "45e2cf43322f038d2b322dea82e829f1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7120 - hash: "0170b6aff2eab67213fc4f2883be1db9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 80 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 66 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7136 - hash: "23ef985de50ae4600d8f62ed4c91edc9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 52 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7152 - hash: "a69e534df84e406e06ca94e2221c97f1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 27 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 150; y: 18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 150; y: 18 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7168 - hash: "99b4220101d400b49346ca023799c8fe" - } - Frame { - msec: 7184 - hash: "80f599f50af9e601536f62ea93f4e429" - } - Frame { - msec: 7200 - hash: "e211b4a9e0059eaf7a3654121ed6b7a4" - } - Frame { - msec: 7216 - hash: "ef0997291fb3323c877b65847905f7c3" - } - Frame { - msec: 7232 - hash: "95ca2f988370075070c6a98e5e680206" - } - Frame { - msec: 7248 - hash: "bb5b6cb5862e28a7f309ef5c7cf2b5dd" - } - Frame { - msec: 7264 - hash: "958e9074dfa2392db05fb3f532573519" - } - Frame { - msec: 7280 - hash: "4d90460d3b6c46075ffda426bc6ceaa6" - } - Frame { - msec: 7296 - hash: "d82de8b7c5a144b20085f447cf041350" - } - Frame { - msec: 7312 - hash: "4d5d1c8470df16097c51517e750ef6be" - } - Frame { - msec: 7328 - hash: "3170c18b8dd74429b0f366ec07f4870b" - } - Frame { - msec: 7344 - hash: "35b4e282089b4f7e8cc60aaf6635a0f7" - } - Frame { - msec: 7360 - hash: "bb67acd602414cf59e27b5ff19f69169" - } - Frame { - msec: 7376 - hash: "0135220633c5aebe964b596f3c1bae27" - } - Frame { - msec: 7392 - hash: "b4a996bdc1ccae96f84e285b212a19a3" - } - Frame { - msec: 7408 - hash: "7fe6c7bd1bc9e46d3e520178a2309e87" - } - Frame { - msec: 7424 - hash: "b803764915a58bd59aed1223bd7c67d7" - } - Frame { - msec: 7440 - hash: "49c71089343b963fd8b3587eb1d5d457" - } - Frame { - msec: 7456 - hash: "d2e577eecdf6fc9ecadf500896e0ff46" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 109; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "d2e577eecdf6fc9ecadf500896e0ff46" - } - Frame { - msec: 7488 - hash: "d2e577eecdf6fc9ecadf500896e0ff46" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 170 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7504 - hash: "d2e577eecdf6fc9ecadf500896e0ff46" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 165 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 152 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "21bf0affeaf1033e59a99bed9efeb80d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 135 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7536 - hash: "c4506098417f905871a43d183cd5904d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 91 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 66 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7552 - hash: "fdf8dfa53431f930b01e667b3b86c7a1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 42 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7568 - hash: "a94e05f80f0f8d3af13678318fd91416" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: -2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 100; y: -2 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7584 - hash: "bd8c0a924552cb4dfc5ddc1451931b01" - } - Frame { - msec: 7600 - hash: "ed5bab2126fb459989b7ea0e44da6776" - } - Frame { - msec: 7616 - hash: "756fc80a88e6f5d28f9c6bba771355c5" - } - Frame { - msec: 7632 - hash: "640c092db0d2a523ce0cdc961e64124a" - } - Frame { - msec: 7648 - hash: "097582f1b42c16d41f4413755ac15c3e" - } - Frame { - msec: 7664 - hash: "67ef5e3297fe5605bd41a72681899f48" - } - Frame { - msec: 7680 - hash: "91452c52c309b7d90c7ccca3fc9ae8b2" - } - Frame { - msec: 7696 - image: "flickable-vertical.8.png" - } - Frame { - msec: 7712 - hash: "ebef3c7095abadf45855fe75cbf3d358" - } - Frame { - msec: 7728 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7744 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7760 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7776 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7792 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7808 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7824 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7840 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7856 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7872 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7888 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7904 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7920 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7936 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7952 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7968 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 7984 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8000 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8016 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8032 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8048 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8064 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8080 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8096 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8112 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8128 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8144 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8160 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8176 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8192 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8208 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8224 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8240 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8256 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8272 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8288 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8304 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8320 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8336 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8352 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8368 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8384 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8400 - hash: "97b167a5a76d6b71713d25508ed360f0" - } - Frame { - msec: 8416 - hash: "97b167a5a76d6b71713d25508ed360f0" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml deleted file mode 100644 index 8aa2389..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-horizontal.qml +++ /dev/null @@ -1,37 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "lightSteelBlue" - width: 600; height: 300 - - ListModel { - id: list - ListElement { dayColor: "steelblue" } - ListElement { dayColor: "blue" } - ListElement { dayColor: "yellow" } - ListElement { dayColor: "purple" } - ListElement { dayColor: "red" } - ListElement { dayColor: "green" } - ListElement { dayColor: "orange" } - } - - Flickable { - id: flickable - anchors.fill: parent; contentWidth: row.width - - Row { - id: row - Repeater { - model: list - Rectangle { width: 200; height: 300; color: dayColor } - } - } - } - Rectangle { - radius: 3 - y: flickable.height-8 - height: 8 - x: flickable.visibleArea.xPosition * flickable.width - width: flickable.visibleArea.widthRatio * flickable.width - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-nested.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-nested.qml deleted file mode 100644 index 9335b9e..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-nested.qml +++ /dev/null @@ -1,50 +0,0 @@ -import QtQuick 1.0 - -Item { - width: 640 - height: 400 - - Flickable { - objectName: "flick 1" - anchors.fill: parent - contentWidth: width + 100 - contentHeight: height + 100 - - Rectangle { - width: 300 - height: 300 - color: "blue" - - Flickable { - objectName: "flick 2" - width: 300 - height: 300 - clip: true - contentWidth: 400 - contentHeight: 400 - - Rectangle { - width: 100 - height: 100 - anchors.centerIn: parent - color: "yellow" - - Flickable { - objectName: "flick 3" - anchors.fill: parent - clip: true - contentWidth: 150 - contentHeight: 150 - Rectangle { - x: 80 - y: 80 - width: 50 - height: 50 - color: "green" - } - } - } - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml deleted file mode 100644 index 1fd65d1..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml +++ /dev/null @@ -1,90 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "lightSteelBlue" - width: 200; height: 300 - - ListModel { - id: list - ListElement { dayColor: "steelblue" } - ListElement { dayColor: "blue" } - ListElement { dayColor: "yellow" } - ListElement { dayColor: "purple" } - ListElement { dayColor: "red" } - ListElement { dayColor: "green" } - ListElement { dayColor: "orange" } - } - - Flickable { - id: flick - height: parent.height-50 - width: parent.width; contentHeight: column.height - - Column { - id: column - Repeater { - model: list - Rectangle { width: 200; height: 100; color: mr.pressed ? "black" : dayColor - MouseArea { - id: mr - anchors.fill: parent - } - } - } - } - clip: true - } - Rectangle { - radius: 3 - x: flick.width-8 - width: 8 - y: flick.visibleArea.yPosition * flick.height - height: flick.visibleArea.heightRatio * flick.height - } - - // click to toggle interactive flag - Rectangle { - width: 64 - height: 48 - y: parent.height - 50 - color: "red" - MouseArea { - anchors.fill: parent - onClicked: flick.interactive = flick.interactive ? false : true - } - } - - // click to toggle click delay - Rectangle { - width: 64 - height: 48 - x: 66 - y: parent.height - 50 - color: "green" - MouseArea { - anchors.fill: parent - onClicked: flick.pressDelay = flick.pressDelay > 0 ? 0 : 500 - } - } - - // click to toggle overshoot - Rectangle { - width: 64 - height: 48 - x: 130 - y: parent.height - 50 - color: "yellow" - MouseArea { - anchors.fill: parent - onClicked: flick.boundsBehavior = flick.boundsBehavior == Flickable.StopAtBounds ? Flickable.DragAndOvershootBounds : Flickable.StopAtBounds - } - } - - Rectangle { - width: Math.abs(flick.verticalVelocity)/100 - height: 50 - x: 200 - y: parent.height - 50 - color: "blue" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.0.png deleted file mode 100644 index b3ae1bc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.1.png deleted file mode 100644 index 0458d82..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.2.png deleted file mode 100644 index 0e01afc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.3.png deleted file mode 100644 index b256bc2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.4.png b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.4.png deleted file mode 100644 index 8454ed2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.5.png b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.5.png deleted file mode 100644 index 177a0fe..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.6.png b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.6.png deleted file mode 100644 index a51cffe..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml deleted file mode 100644 index 2d362a4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test-flipable.qml +++ /dev/null @@ -1,1623 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "test-flipable.0.png" - } - Frame { - msec: 32 - hash: "7e16e6360fc2e9db67dbf11d58042745" - } - Frame { - msec: 48 - hash: "7e16e6360fc2e9db67dbf11d58042745" - } - Frame { - msec: 64 - hash: "06d7f0befa7e06972983ffe87c162750" - } - Frame { - msec: 80 - hash: "51dff66a7767e3464fda60f2cf906700" - } - Frame { - msec: 96 - hash: "f8038dc4b67b92ef776a97589240e8c5" - } - Frame { - msec: 112 - hash: "692931f1db6ddf0b37eb64026ca830f8" - } - Frame { - msec: 128 - hash: "f01b7368e42381dda5eadf56482ea993" - } - Frame { - msec: 144 - hash: "9811f823e057882d384f36d7227fa12e" - } - Frame { - msec: 160 - hash: "9b40b6c75af876567ff49688bc710f2a" - } - Frame { - msec: 176 - hash: "e97a5d968da37789c28816608fa262a1" - } - Frame { - msec: 192 - hash: "2cd0627fdc63bb91f8dcac789d7a93b2" - } - Frame { - msec: 208 - hash: "ae2407f8da9a047d2725bcdcf8e568b2" - } - Frame { - msec: 224 - hash: "da2a1e5e988c27577ceb453cb0383703" - } - Frame { - msec: 240 - hash: "90fb4e4ba04ac32b52c10b3258431c04" - } - Frame { - msec: 256 - hash: "90fb4e4ba04ac32b52c10b3258431c04" - } - Frame { - msec: 272 - hash: "90fb4e4ba04ac32b52c10b3258431c04" - } - Frame { - msec: 288 - hash: "73c06997014af4e008b546b53fe349fb" - } - Frame { - msec: 304 - hash: "262404c6e55b93c4ab940582a49f7e18" - } - Frame { - msec: 320 - hash: "451a9408b04826ab35749d9120efd6bb" - } - Frame { - msec: 336 - hash: "451a9408b04826ab35749d9120efd6bb" - } - Frame { - msec: 352 - hash: "2d112d040fd425c59b511066737e494d" - } - Frame { - msec: 368 - hash: "769d2724656dbf0e793ecd8e42db3de2" - } - Frame { - msec: 384 - hash: "9e375cb3815723a2c5dda39c79325e96" - } - Frame { - msec: 400 - hash: "b21e92871bf63873b8ae48a2aff47be5" - } - Frame { - msec: 416 - hash: "00d08f4257f35c6236cde0597b0005e4" - } - Frame { - msec: 432 - hash: "8048f84221a02e7102cf3272445862a1" - } - Frame { - msec: 448 - hash: "f0d7b45f0b01319494616c1893aa940e" - } - Frame { - msec: 464 - hash: "457fad89140a1dda9e70549d451482e9" - } - Frame { - msec: 480 - hash: "ee0feb79e843cdb2adea72fa37ecab67" - } - Frame { - msec: 496 - hash: "ece02d3590147884e697dd5228dee8c4" - } - Frame { - msec: 512 - hash: "91c4ec19716a0883c8f5c25b9a0d1f42" - } - Frame { - msec: 528 - hash: "a7c9860dd4962b11b92c54370ba156ee" - } - Frame { - msec: 544 - hash: "a28f2590be1e8cde4cde5219367015ac" - } - Frame { - msec: 560 - hash: "3b641ba58f5e1f0e1f2f528acf38cb28" - } - Frame { - msec: 576 - hash: "d0b0969ad165d4784f763683de42278e" - } - Frame { - msec: 592 - hash: "93968dffda327a101e2bd07b80fff842" - } - Frame { - msec: 608 - hash: "08f5db4cd7f27178c67e6d973e4bb023" - } - Frame { - msec: 624 - hash: "0967cad0a3ae82307a049944e1bcdc3e" - } - Frame { - msec: 640 - hash: "d70ffd02b434e607bc11a95ca536c19a" - } - Frame { - msec: 656 - hash: "cd561b4d5e707bb6b9f6d493f9b99512" - } - Frame { - msec: 672 - hash: "58355ca37c6e4e54061664180faa11fb" - } - Frame { - msec: 688 - hash: "bd873f48c79286c50333c838e57d8ec7" - } - Frame { - msec: 704 - hash: "db89bc0e04ebefe5440748fe85e0bdf7" - } - Frame { - msec: 720 - hash: "c400bc1e6c02c792cc515a6dd8bbaa9b" - } - Frame { - msec: 736 - hash: "accf3567a161239cd8c18dd9d4527aaf" - } - Frame { - msec: 752 - hash: "2e3bcdf70f160bf8e3f1b77ee472b782" - } - Frame { - msec: 768 - hash: "929da0d629253478c322360c9a8dfc9e" - } - Frame { - msec: 784 - hash: "d5d4b7c52ba14e84bc9c34a8b55f84b7" - } - Frame { - msec: 800 - hash: "063ce927e9e7c5afb9131302ea5a968c" - } - Frame { - msec: 816 - hash: "b94b6fff850aacccdaf0f74d4e36ba67" - } - Frame { - msec: 832 - hash: "bac2b9b9be4b71fafe59868506aa8ab9" - } - Frame { - msec: 848 - hash: "a91fed41a5a07e84424e45477f463aa1" - } - Frame { - msec: 864 - hash: "370eefd369ef366f1d5930b261340d0b" - } - Frame { - msec: 880 - hash: "b04a87997d0eeb6ff2f91fc2f0d016f6" - } - Frame { - msec: 896 - hash: "09c3602a08d6d3e2afb654c328606871" - } - Frame { - msec: 912 - hash: "101e66b9d13b1b0872cfcc497c9d6ae3" - } - Frame { - msec: 928 - hash: "b5eaf952e40cf90ef32e8cb64ccce7d3" - } - Frame { - msec: 944 - hash: "b43b02133ebe5db93e5236c0307939c3" - } - Frame { - msec: 960 - hash: "c03406106847c03c73f5897e65690925" - } - Frame { - msec: 976 - image: "test-flipable.1.png" - } - Frame { - msec: 992 - hash: "a7492d8ab6fddb5c1d7af2621078230b" - } - Frame { - msec: 1008 - hash: "2ed3dc7f10cc8279a6fd926914cdb234" - } - Frame { - msec: 1024 - hash: "e9f76e419f6f682bcc9052183bb50607" - } - Frame { - msec: 1040 - hash: "fdee6990e101d4a628272e7b09a217a3" - } - Frame { - msec: 1056 - hash: "05e028b2f37a433343d373bc05f73756" - } - Frame { - msec: 1072 - hash: "a9ece04666d17979408dcd8690cd697c" - } - Frame { - msec: 1088 - hash: "a5d8c9bee6ac10fb45cedf3bc4325539" - } - Frame { - msec: 1104 - hash: "08f1ff1e515ec78f75efa13a39b21f56" - } - Frame { - msec: 1120 - hash: "f0bc6c649a195e2c433cf84c1b4f5bcb" - } - Frame { - msec: 1136 - hash: "2a548614a9b38867cd0fe44985ca443f" - } - Frame { - msec: 1152 - hash: "8c8272fc028ce5b403e636b4061351d3" - } - Frame { - msec: 1168 - hash: "df11678b255cc3f624fed24d7e6a24af" - } - Frame { - msec: 1184 - hash: "7dd5ce1cce200d7eede0f248f150873c" - } - Frame { - msec: 1200 - hash: "e5cb8e0e588854dce5e7572fd1e3a445" - } - Frame { - msec: 1216 - hash: "71937cd7d319174232797d05fe28bda5" - } - Frame { - msec: 1232 - hash: "021c3a598b008991114b25b26191e8ef" - } - Frame { - msec: 1248 - hash: "b372131d6fc29e7dbffc2c5f4e269ad7" - } - Frame { - msec: 1264 - hash: "2120fc188aed6888eba85e9d49139000" - } - Frame { - msec: 1280 - hash: "0523499bb4f4c6d0c3d2cd28fbac7056" - } - Frame { - msec: 1296 - hash: "19d1fc79802728d6b0af222050b59463" - } - Frame { - msec: 1312 - hash: "f48686053780376c7ab2e6481e3fd0ad" - } - Frame { - msec: 1328 - hash: "0f7c5ca70fec90e7e8b2fd50b791fd2e" - } - Frame { - msec: 1344 - hash: "93cd129be7cfebaa2ea8a074a77aaa7c" - } - Frame { - msec: 1360 - hash: "e6b149da031b1c0b842b1b7872bd2d91" - } - Frame { - msec: 1376 - hash: "5481248e889fb4fe9f4cf54f69d9f614" - } - Frame { - msec: 1392 - hash: "23bb444b6248901da3eb6a2e805438cb" - } - Frame { - msec: 1408 - hash: "1c9feb1c3ae76d4015c99d005ecfed60" - } - Frame { - msec: 1424 - hash: "41e5345dc90fd48476f35ceeab281948" - } - Frame { - msec: 1440 - hash: "89682a955a00e68031571ac765f9f5e3" - } - Frame { - msec: 1456 - hash: "8ff7cee41c6f19eeda417052c1b071d6" - } - Frame { - msec: 1472 - hash: "67a73129d828e8a05b1efc768cf40146" - } - Frame { - msec: 1488 - hash: "0800a78c97c92c697e44ded54fdcf934" - } - Frame { - msec: 1504 - hash: "d5d51263367f0c53b8d94a03d83338d9" - } - Frame { - msec: 1520 - hash: "ab749885f356683e17ca52f904ae582d" - } - Frame { - msec: 1536 - hash: "7f5a56f30222a9886d1e9d014b4f5cab" - } - Frame { - msec: 1552 - hash: "10c5e64eff104dce59f54f70c5564959" - } - Frame { - msec: 1568 - hash: "38b00c7544648ef06705acc2e9eca1f5" - } - Frame { - msec: 1584 - hash: "56bdfcb8fbb776b3799676ba7934a354" - } - Frame { - msec: 1600 - hash: "ea5349d337e397b3ee5e0db0c296f5e5" - } - Frame { - msec: 1616 - hash: "6bd784ca760edba5a6f0b4212237e1e8" - } - Frame { - msec: 1632 - hash: "77e7888a37a7724bded817903cbe777e" - } - Frame { - msec: 1648 - hash: "55213bdb2f1f2d25b5680db95e79bbac" - } - Frame { - msec: 1664 - hash: "6d62c7f7f76cc1d4e33c152234000da0" - } - Frame { - msec: 1680 - hash: "0f6aa29c172054887e4ddb6512ae43b1" - } - Frame { - msec: 1696 - hash: "75fd94508b77bbdde34a61b74ff49e12" - } - Frame { - msec: 1712 - hash: "0dfdd9a1d83a706a09318c83fd08b6fe" - } - Frame { - msec: 1728 - hash: "4f895ee983424c164be3e2db488a4e51" - } - Frame { - msec: 1744 - hash: "974fd5f390d33afb779ac754f0e30b2a" - } - Frame { - msec: 1760 - hash: "fd40e22c7d3cfceeee7dc668d1cf0a12" - } - Frame { - msec: 1776 - hash: "4e3c04b35bcc43a4295582da1674da2e" - } - Frame { - msec: 1792 - hash: "629888aae80ea85db07a383df352214a" - } - Frame { - msec: 1808 - hash: "9a92c68cfad54c313d24e38240ea072f" - } - Frame { - msec: 1824 - hash: "3e27569d19670ec99f11bfa46099456a" - } - Frame { - msec: 1840 - hash: "5d4be9ed8c4ba7faefde5427cdbffc73" - } - Frame { - msec: 1856 - hash: "232d4e03a57edf0386b06884482f9730" - } - Frame { - msec: 1872 - hash: "c45f959fd81ac08add219326cb6a8bfc" - } - Frame { - msec: 1888 - hash: "349111e36190f77afd53c50ee2e9ba94" - } - Frame { - msec: 1904 - hash: "ea5ed48b2bcdfd2a711a3a71a4ae37c3" - } - Frame { - msec: 1920 - hash: "1e8348fbb51871dffe9543fca19bb452" - } - Frame { - msec: 1936 - image: "test-flipable.2.png" - } - Frame { - msec: 1952 - hash: "63cc3851236d5de613c85a2971ef7145" - } - Frame { - msec: 1968 - hash: "45d5fdb92107a7074d56d97bda34756f" - } - Frame { - msec: 1984 - hash: "f74d9a3b53a629f7fccfdd255fdbba62" - } - Frame { - msec: 2000 - hash: "60c6a30e15ed4ad61c14f15f9f1f3790" - } - Frame { - msec: 2016 - hash: "b5f7c630f6e61c7ddac8493e17a1f53e" - } - Frame { - msec: 2032 - hash: "98558c7135fa84fa08d457c6064b8653" - } - Frame { - msec: 2048 - hash: "2858e39a9b39739bb5c0c1ce23e83b20" - } - Frame { - msec: 2064 - hash: "0b174f04215131cfa32b5d1a32170ac3" - } - Frame { - msec: 2080 - hash: "67e3618bab95519a034ed6c8c1543212" - } - Frame { - msec: 2096 - hash: "2012c5310f198022a3878c9ded08523d" - } - Frame { - msec: 2112 - hash: "1cb6a1f6d873d2bfde457828c17b4886" - } - Frame { - msec: 2128 - hash: "be3f28bd56d9d985408e32cc0aab0623" - } - Frame { - msec: 2144 - hash: "4aa07c4887f873f0f034930bd681f9dc" - } - Frame { - msec: 2160 - hash: "adeae071187b590aa0a142c27098d2f4" - } - Frame { - msec: 2176 - hash: "d777aaccd6143c2c1000bbfabdbefeb2" - } - Frame { - msec: 2192 - hash: "7b4785b9e6610f02c52b4c824bea8ecd" - } - Frame { - msec: 2208 - hash: "c539b3638272e46120edbe4a58e1d894" - } - Frame { - msec: 2224 - hash: "ae466024a1dd731b6730dda255e68eb8" - } - Frame { - msec: 2240 - hash: "f844a288b009cc4c6c28eb30d799c397" - } - Frame { - msec: 2256 - hash: "4fc8ca1992802f97dd431783db89c725" - } - Frame { - msec: 2272 - hash: "79b899461efae97b65b8c24c8820f348" - } - Frame { - msec: 2288 - hash: "cb1ce87ddc372e24e37b60c013310549" - } - Frame { - msec: 2304 - hash: "c8937aea34fd299c151706598828be6f" - } - Frame { - msec: 2320 - hash: "ed5c3a904dc3b72937c6eea475514b2d" - } - Frame { - msec: 2336 - hash: "09043e74a3ac60d05122675a1b253320" - } - Frame { - msec: 2352 - hash: "57677a33d8c60a45c64aea10a695e8d0" - } - Frame { - msec: 2368 - hash: "496fe0b0e420356e4205537fdf3adc2f" - } - Frame { - msec: 2384 - hash: "f4146ce8db5cf2c3da15715820c9f62f" - } - Frame { - msec: 2400 - hash: "b80bc46468695b874d401c4c9bd68932" - } - Frame { - msec: 2416 - hash: "b0cf0021232ab917301206614f61f0bf" - } - Frame { - msec: 2432 - hash: "b0abdf5b86e3fcb22a9254ac5b522380" - } - Frame { - msec: 2448 - hash: "c1624cb7e90ea26ab0c37cfe9919ca36" - } - Frame { - msec: 2464 - hash: "0ffd6a3b3e5f6db5a3a8df756caf713e" - } - Frame { - msec: 2480 - hash: "1604ad8e7a4aa4fa8dff1f37fc8c51d7" - } - Frame { - msec: 2496 - hash: "5bbca0b79c42e263162926e5c2fd3d82" - } - Frame { - msec: 2512 - hash: "9436b4f2ab902673ed067de55da5003e" - } - Frame { - msec: 2528 - hash: "3c7b5fa0970242a2ad308c72d761713b" - } - Frame { - msec: 2544 - hash: "15e451c53e8f5c70614f87f33fe0a2e6" - } - Frame { - msec: 2560 - hash: "7e8cbe203306d2f267a42fed1e4790ed" - } - Frame { - msec: 2576 - hash: "db21ae28564614b58a7dd5ccd97082e6" - } - Frame { - msec: 2592 - hash: "ff52e198874de749c46f9b34cfe40cfc" - } - Frame { - msec: 2608 - hash: "916d92d24a81ced07a54d68c46299d4c" - } - Frame { - msec: 2624 - hash: "2f6cf122e5f15fc5f5d3c92d92ca1384" - } - Frame { - msec: 2640 - hash: "6f328038e5d505c402651423c44986a5" - } - Frame { - msec: 2656 - hash: "6f328038e5d505c402651423c44986a5" - } - Frame { - msec: 2672 - hash: "78e0dca60c04d3defbd90457685dbab3" - } - Frame { - msec: 2688 - hash: "b915de1be0c1779e06fb9eea8237f91d" - } - Frame { - msec: 2704 - hash: "0ff9fd6b09fc14abacb794353b9500f6" - } - Frame { - msec: 2720 - hash: "5a1c9cd9da5492a61a3a1bc6ad37ef17" - } - Frame { - msec: 2736 - hash: "4c4a72eb4105903802de56a4a62d86cc" - } - Frame { - msec: 2752 - hash: "6d813ee777a5900c65aca5939c004d0c" - } - Frame { - msec: 2768 - hash: "6d813ee777a5900c65aca5939c004d0c" - } - Frame { - msec: 2784 - hash: "0acaa3ece071ad4461cf4a79d65a0f03" - } - Frame { - msec: 2800 - hash: "0acaa3ece071ad4461cf4a79d65a0f03" - } - Frame { - msec: 2816 - hash: "f5cf7e68edc5fcd9dd91882d3f9ba380" - } - Frame { - msec: 2832 - hash: "51f8508eddffbac2fad22bd3e8040c69" - } - Frame { - msec: 2848 - hash: "a09746c72df5330f6ca2a93d9b8e79f6" - } - Frame { - msec: 2864 - hash: "b2ef52b66896649413b3852bcf642e1c" - } - Frame { - msec: 2880 - hash: "373141f99bc88c40ead161502c9750e9" - } - Frame { - msec: 2896 - image: "test-flipable.3.png" - } - Frame { - msec: 2912 - hash: "b19d89aa671cc3a773f64a7bae21adb6" - } - Frame { - msec: 2928 - hash: "08eb7bd2e49fe600e922e49a3aa56e93" - } - Frame { - msec: 2944 - hash: "1e3a7bdd0bd9d5b84c2cb5b646d7fb45" - } - Frame { - msec: 2960 - hash: "be9f5091197899c0b89823e4403358f3" - } - Frame { - msec: 2976 - hash: "1daeebce8e7eef80b135d2e4f83f780b" - } - Frame { - msec: 2992 - hash: "1daeebce8e7eef80b135d2e4f83f780b" - } - Frame { - msec: 3008 - hash: "1daeebce8e7eef80b135d2e4f83f780b" - } - Frame { - msec: 3024 - hash: "1daeebce8e7eef80b135d2e4f83f780b" - } - Frame { - msec: 3040 - hash: "1daeebce8e7eef80b135d2e4f83f780b" - } - Frame { - msec: 3056 - hash: "1daeebce8e7eef80b135d2e4f83f780b" - } - Frame { - msec: 3072 - hash: "be9f5091197899c0b89823e4403358f3" - } - Frame { - msec: 3088 - hash: "be9f5091197899c0b89823e4403358f3" - } - Frame { - msec: 3104 - hash: "1e3a7bdd0bd9d5b84c2cb5b646d7fb45" - } - Frame { - msec: 3120 - hash: "b19d89aa671cc3a773f64a7bae21adb6" - } - Frame { - msec: 3136 - hash: "e7ed4449b5ea3288d5e8fecb33a4a422" - } - Frame { - msec: 3152 - hash: "186a2c1af03e7fa590ff3cd7422285e3" - } - Frame { - msec: 3168 - hash: "373141f99bc88c40ead161502c9750e9" - } - Frame { - msec: 3184 - hash: "0221e2ef4cf809ebfeba466206a77cce" - } - Frame { - msec: 3200 - hash: "51f8508eddffbac2fad22bd3e8040c69" - } - Frame { - msec: 3216 - hash: "f5cf7e68edc5fcd9dd91882d3f9ba380" - } - Frame { - msec: 3232 - hash: "0acaa3ece071ad4461cf4a79d65a0f03" - } - Frame { - msec: 3248 - hash: "0acaa3ece071ad4461cf4a79d65a0f03" - } - Frame { - msec: 3264 - hash: "6d813ee777a5900c65aca5939c004d0c" - } - Frame { - msec: 3280 - hash: "6d813ee777a5900c65aca5939c004d0c" - } - Frame { - msec: 3296 - hash: "6d813ee777a5900c65aca5939c004d0c" - } - Frame { - msec: 3312 - hash: "5a1c9cd9da5492a61a3a1bc6ad37ef17" - } - Frame { - msec: 3328 - hash: "0ff9fd6b09fc14abacb794353b9500f6" - } - Frame { - msec: 3344 - hash: "0ff9fd6b09fc14abacb794353b9500f6" - } - Frame { - msec: 3360 - hash: "6f328038e5d505c402651423c44986a5" - } - Frame { - msec: 3376 - hash: "6f328038e5d505c402651423c44986a5" - } - Frame { - msec: 3392 - hash: "dd04a76df90f27358f4162fd85cfa4cd" - } - Frame { - msec: 3408 - hash: "12df495b5e8bfd2c9dd13fbeccc69e08" - } - Frame { - msec: 3424 - hash: "4b6f9dcde7d5d88b9c3eff3187378036" - } - Frame { - msec: 3440 - hash: "712f3850c0efe45c60a3761f1354b90b" - } - Frame { - msec: 3456 - hash: "22215981f00790d7a409230eb730abca" - } - Frame { - msec: 3472 - hash: "a4a26f9736282ceb307f0f97735002eb" - } - Frame { - msec: 3488 - hash: "b41d7a18d84a8b220e99464cab86882d" - } - Frame { - msec: 3504 - hash: "c7c1961120f128cd0fcd6a7b61c98197" - } - Frame { - msec: 3520 - hash: "e56e7ba603d2620afb0fab6b19aff33e" - } - Frame { - msec: 3536 - hash: "1a258bed9a7a38452a746d7641016e73" - } - Frame { - msec: 3552 - hash: "a237b9c187bbbcb79f624d74def15db2" - } - Frame { - msec: 3568 - hash: "34a7afdebb7352ca65e0eaec61632d12" - } - Frame { - msec: 3584 - hash: "a5a98e932a30418bae62bb006afc1048" - } - Frame { - msec: 3600 - hash: "2ee25374cb9fef01e78d02c4131010b7" - } - Frame { - msec: 3616 - hash: "7956b07b848ba89905e5c609657503e2" - } - Frame { - msec: 3632 - hash: "0949a2b13f6475b3f11be04321c953a1" - } - Frame { - msec: 3648 - hash: "5a1ff901ecc7c3cd7f39cd07e0273dd4" - } - Frame { - msec: 3664 - hash: "44fcd7209b9f5b1c28c21e9aae408097" - } - Frame { - msec: 3680 - hash: "bee94f395239aebb0bacca3dbbee95e5" - } - Frame { - msec: 3696 - hash: "bd26b7e2b07bbcee3819fdacc35eea8d" - } - Frame { - msec: 3712 - hash: "d3707b90c5cd0d1061db4b97b6fcb96a" - } - Frame { - msec: 3728 - hash: "6f6ed6c7553b3f909d53e2146b3831d5" - } - Frame { - msec: 3744 - hash: "a3a1a03617d1cb5660c51bf2f18088bc" - } - Frame { - msec: 3760 - hash: "6d4646f0a53800ad60d173ab9cb9010a" - } - Frame { - msec: 3776 - hash: "126cae232e2fe49e3188393c2798065b" - } - Frame { - msec: 3792 - hash: "e1fa758d333ffe5208365c0babff33a0" - } - Frame { - msec: 3808 - hash: "f2a6156f7d6013bd4234b35c21adb074" - } - Frame { - msec: 3824 - hash: "0271f66eb6d9b91a3ab8da2d728b9581" - } - Frame { - msec: 3840 - hash: "464a78e75e10b62773ab64af4fc4c7aa" - } - Frame { - msec: 3856 - image: "test-flipable.4.png" - } - Frame { - msec: 3872 - hash: "56100e9ca8d1eb7e6334e5a05ef2b94d" - } - Frame { - msec: 3888 - hash: "3d15b8d662d3df82dd78590c43794337" - } - Frame { - msec: 3904 - hash: "9729b36fe9dbabf0c46e78b723885530" - } - Frame { - msec: 3920 - hash: "ccb8b51084cc1ef3d201887b824fb1ac" - } - Frame { - msec: 3936 - hash: "d9dc9d240a6f89603a54bccd66361530" - } - Frame { - msec: 3952 - hash: "0e52d92455c263493d32ffe93f242739" - } - Frame { - msec: 3968 - hash: "695ab932722844b975097779e26df55c" - } - Frame { - msec: 3984 - hash: "da285cba2e11db1e87d1d180e376ff8e" - } - Frame { - msec: 4000 - hash: "54bd12888fc4526d310fa0a66b5ba3be" - } - Frame { - msec: 4016 - hash: "c3e3db473bdb96fd619b078f0f6b3ceb" - } - Frame { - msec: 4032 - hash: "acfd8aaf0bb52ad3ef3116bb99f3656a" - } - Frame { - msec: 4048 - hash: "c5a0877ce86c26b30b642818e83d6118" - } - Frame { - msec: 4064 - hash: "b187fde9af2bad37f84f6324afcbb303" - } - Frame { - msec: 4080 - hash: "0dfe035424d7f31dda88be3b4bb30c8a" - } - Frame { - msec: 4096 - hash: "893bddc95fbf6e452ba61b06eab1a8c5" - } - Frame { - msec: 4112 - hash: "35fb89ea579819f4b3416ff1c1b1cc9d" - } - Frame { - msec: 4128 - hash: "316371649f9a1e12e336c5823408eaf9" - } - Frame { - msec: 4144 - hash: "ade751c6e497c73a920baf18f0752908" - } - Frame { - msec: 4160 - hash: "86720fa1eeae374c6cc67e107d27e23a" - } - Frame { - msec: 4176 - hash: "1a6f080227f1ccd03b6c4093b9fdadb3" - } - Frame { - msec: 4192 - hash: "f7d7398edba69716ec8c0699d5472dca" - } - Frame { - msec: 4208 - hash: "9e62c9dd25abb203f5c06c7bff0d8363" - } - Frame { - msec: 4224 - hash: "fd90404238b458fc86a4a17e6a976f9b" - } - Frame { - msec: 4240 - hash: "e39668dc347318fc61a365f9006aab3c" - } - Frame { - msec: 4256 - hash: "c40f41f635f10f5f9b04b42ba2dc5bb1" - } - Frame { - msec: 4272 - hash: "c0f971c75b7237de7e9b2f25cc3f34b2" - } - Frame { - msec: 4288 - hash: "a1c79481fd1632cfdc396aefb3592534" - } - Frame { - msec: 4304 - hash: "6eee76f40fc7ec1a1e3d77c849321740" - } - Frame { - msec: 4320 - hash: "0a36746ab17caef5946731c31af3823f" - } - Frame { - msec: 4336 - hash: "863dedd22df4e1d14e73eaeb851e9b66" - } - Frame { - msec: 4352 - hash: "318e8751f7056bb6a004c8a7ce7be870" - } - Frame { - msec: 4368 - hash: "8fb2809a366f42c86fad7aa5db3ff22c" - } - Frame { - msec: 4384 - hash: "8aaea666640cb3b27e3374f756fe411b" - } - Frame { - msec: 4400 - hash: "1f552095d26a8d145584e36237630916" - } - Frame { - msec: 4416 - hash: "cd5aa55715786cac0f7efc90c7c4b9d6" - } - Frame { - msec: 4432 - hash: "7a3153d9309ec338dce3437ecf667646" - } - Frame { - msec: 4448 - hash: "c7fa40e69148f1c5ec494ad159b6ce6c" - } - Frame { - msec: 4464 - hash: "e131bc8ca25ddc4b7dd6582ff034fe14" - } - Frame { - msec: 4480 - hash: "3174c672e62dae0341d5849e23031280" - } - Frame { - msec: 4496 - hash: "0b25fb7d33708a3292ede7c66e25a3d7" - } - Frame { - msec: 4512 - hash: "84b3cf92b3abc2f5acf07cfccf3c0202" - } - Frame { - msec: 4528 - hash: "fafbd14d296e4954bce7816d811ddd89" - } - Frame { - msec: 4544 - hash: "865018d8408863b741a7082a962236dc" - } - Frame { - msec: 4560 - hash: "f626082691429565b55ce9e04b14a665" - } - Frame { - msec: 4576 - hash: "8a02f7d3d53e98384d1f05dc7fc5fd37" - } - Frame { - msec: 4592 - hash: "6af3a8305b25a9a769b8cf00479c6ab3" - } - Frame { - msec: 4608 - hash: "b31470b0ac4a593317abc365acb2b281" - } - Frame { - msec: 4624 - hash: "efd00c43b1b8bbc4bc5496dcfa58c6b0" - } - Frame { - msec: 4640 - hash: "498cf6c20aeca609e9d9cea78f0cc6a3" - } - Frame { - msec: 4656 - hash: "b55661b5d9632bc0d7fc7ff3a421a2e7" - } - Frame { - msec: 4672 - hash: "2f1e402c5e4a0615528f91dd2e183ddd" - } - Frame { - msec: 4688 - hash: "d1c166cc7932e72ba22a73637cad65d6" - } - Frame { - msec: 4704 - hash: "374b703e0059fc80b67480113d584754" - } - Frame { - msec: 4720 - hash: "e8de71d4a2a253e366b2edf5d475824d" - } - Frame { - msec: 4736 - hash: "6a9d033b332f0c0285284fdaddf3bbdb" - } - Frame { - msec: 4752 - hash: "640c227fb62e40c666035e7465ac5c4e" - } - Frame { - msec: 4768 - hash: "9cf7dc6507befd6ae54f380a7d87a207" - } - Frame { - msec: 4784 - hash: "d1c7b2160c08e03e7a98d7d2db0116f7" - } - Frame { - msec: 4800 - hash: "03f17b2cd781f2ee0ae5664a0491166c" - } - Frame { - msec: 4816 - image: "test-flipable.5.png" - } - Frame { - msec: 4832 - hash: "2dfa5fdfd07e7000caee6abf5fe84378" - } - Frame { - msec: 4848 - hash: "2b0c2f019b07f1f8b4e5af9a520ab061" - } - Frame { - msec: 4864 - hash: "33cb1aaeb7dafc2475e4337be7cc7892" - } - Frame { - msec: 4880 - hash: "91290d1435bedb5010ba135a7f99c0a2" - } - Frame { - msec: 4896 - hash: "df7434eb6c6e5d45935d6c6fd03f06d1" - } - Frame { - msec: 4912 - hash: "48dfe78dcdd65242132071454fb9ea33" - } - Frame { - msec: 4928 - hash: "1b288012e123cb6051bfa180ea2a2bc0" - } - Frame { - msec: 4944 - hash: "84b23d92987f59df336d9b269e3b7bbc" - } - Frame { - msec: 4960 - hash: "c413ca53240df702c3ba0c7f4dacca3b" - } - Frame { - msec: 4976 - hash: "339c06a2e1fc05ebfd3732097b9c5242" - } - Frame { - msec: 4992 - hash: "f1e647e274ac8c8458d2c1e576623688" - } - Frame { - msec: 5008 - hash: "a70dc2f51ecfc164595cfef61c1da245" - } - Frame { - msec: 5024 - hash: "b69f034a71b53c885cd177da422d5fc7" - } - Frame { - msec: 5040 - hash: "26c25a031944c677b30f69c8498ac6ce" - } - Frame { - msec: 5056 - hash: "ebc2328766e8736eac989e309968d8f9" - } - Frame { - msec: 5072 - hash: "41d55f53bfc74e614c906d3f6b813704" - } - Frame { - msec: 5088 - hash: "135e97adb3f19aa19d746ece1b2b3d02" - } - Frame { - msec: 5104 - hash: "85c4454dbe9a39b3005f32fd7a06b1b2" - } - Frame { - msec: 5120 - hash: "7561e0dd6970f7c81bcb53c9371d4405" - } - Frame { - msec: 5136 - hash: "c9961d5abf700a06ed294ce7aecb6147" - } - Frame { - msec: 5152 - hash: "29acf87effa3c21322334080776c566e" - } - Frame { - msec: 5168 - hash: "04990a79d5ff5cb41dcd48d3e3bf5b11" - } - Frame { - msec: 5184 - hash: "f40c78c37a26249ecb161af778631f7b" - } - Frame { - msec: 5200 - hash: "eddacaeae7c47d063db737f678896da1" - } - Frame { - msec: 5216 - hash: "5ae523dc1115fd0904875718e05aa2a5" - } - Frame { - msec: 5232 - hash: "f09c299412a9e2fd353c4937ad959f25" - } - Frame { - msec: 5248 - hash: "9caeae0abd3bc665bd307997baea6a48" - } - Frame { - msec: 5264 - hash: "e9d222c9d23773488b64b0a6323c1095" - } - Frame { - msec: 5280 - hash: "ad34c46ab3d418a2af7bffc59e720868" - } - Frame { - msec: 5296 - hash: "ff0d8cfd272fca5be34b663a7e52f283" - } - Frame { - msec: 5312 - hash: "55f95277276217de16b6b43090bbb807" - } - Frame { - msec: 5328 - hash: "387fadf4140d335c0b05cfee0c37a413" - } - Frame { - msec: 5344 - hash: "10a1a5a91c11aa8279ae4e57e4d3946b" - } - Frame { - msec: 5360 - hash: "414f7bf3a3ec05a9840cd104a13d5504" - } - Frame { - msec: 5376 - hash: "e027716402ead36450732c8350e614b5" - } - Frame { - msec: 5392 - hash: "0190f59275f01429ee6761b39ce99fc1" - } - Frame { - msec: 5408 - hash: "7f99dd337561f006a7c56babe3c10c38" - } - Frame { - msec: 5424 - hash: "4bbb76393e56b5da723c1f33a7694013" - } - Frame { - msec: 5440 - hash: "00eedf86916629fe90f3c2f36e0c689e" - } - Frame { - msec: 5456 - hash: "84d1f5a6604b75371f2fa7b60a59299b" - } - Frame { - msec: 5472 - hash: "00488220a460746be6d7d1b66d15c392" - } - Frame { - msec: 5488 - hash: "cae5a6d45425d641228210a47c5ee5f6" - } - Frame { - msec: 5504 - hash: "670a2132e65564ca2cfd58ec9842ba93" - } - Frame { - msec: 5520 - hash: "212b6cc9fa130bec9579cf218e1f7eeb" - } - Frame { - msec: 5536 - hash: "b159e67541b5b1b5071f6cd041c62293" - } - Frame { - msec: 5552 - hash: "8c4e62d26e19c32200772edefd329db3" - } - Frame { - msec: 5568 - hash: "1ff120d0444e398cc79190012b548b4b" - } - Frame { - msec: 5584 - hash: "1c75bccd5e19ee9a2644585b726db048" - } - Frame { - msec: 5600 - hash: "bc16aff96b1f9cfe3807e95e371a8f26" - } - Frame { - msec: 5616 - hash: "35a5fdb20bdbaf0122cac4cad60e7bb8" - } - Frame { - msec: 5632 - hash: "ea7ac72c81abff8af260be508b6cf117" - } - Frame { - msec: 5648 - hash: "2d112d040fd425c59b511066737e494d" - } - Frame { - msec: 5664 - hash: "769d2724656dbf0e793ecd8e42db3de2" - } - Frame { - msec: 5680 - hash: "1c25b3d65e8590f8c213afa76b722e97" - } - Frame { - msec: 5696 - hash: "760a103d4524f8b665c6ff42185a8ce7" - } - Frame { - msec: 5712 - hash: "451a9408b04826ab35749d9120efd6bb" - } - Frame { - msec: 5728 - hash: "3fad6b23b0b78f844e02fe307e20d376" - } - Frame { - msec: 5744 - hash: "451a9408b04826ab35749d9120efd6bb" - } - Frame { - msec: 5760 - hash: "73c06997014af4e008b546b53fe349fb" - } - Frame { - msec: 5776 - image: "test-flipable.6.png" - } - Frame { - msec: 5792 - hash: "90fb4e4ba04ac32b52c10b3258431c04" - } - Frame { - msec: 5808 - hash: "da2a1e5e988c27577ceb453cb0383703" - } - Frame { - msec: 5824 - hash: "ae2407f8da9a047d2725bcdcf8e568b2" - } - Frame { - msec: 5840 - hash: "ae2407f8da9a047d2725bcdcf8e568b2" - } - Frame { - msec: 5856 - hash: "e97a5d968da37789c28816608fa262a1" - } - Frame { - msec: 5872 - hash: "9becb90d9f8a61f5afacdc53d137ebcb" - } - Frame { - msec: 5888 - hash: "9811f823e057882d384f36d7227fa12e" - } - Frame { - msec: 5904 - hash: "1e7a308d18851db0a430542178944c67" - } - Frame { - msec: 5920 - hash: "692931f1db6ddf0b37eb64026ca830f8" - } - Frame { - msec: 5936 - hash: "2117c775960234c297187ea2e9d51e73" - } - Frame { - msec: 5952 - hash: "f8038dc4b67b92ef776a97589240e8c5" - } - Frame { - msec: 5968 - hash: "51dff66a7767e3464fda60f2cf906700" - } - Frame { - msec: 5984 - hash: "7e16e6360fc2e9db67dbf11d58042745" - } - Frame { - msec: 6000 - hash: "7e16e6360fc2e9db67dbf11d58042745" - } - Frame { - msec: 6016 - hash: "7e16e6360fc2e9db67dbf11d58042745" - } - Frame { - msec: 6032 - hash: "7e16e6360fc2e9db67dbf11d58042745" - } - Frame { - msec: 6048 - hash: "7e16e6360fc2e9db67dbf11d58042745" - } - Frame { - msec: 6064 - hash: "51dff66a7767e3464fda60f2cf906700" - } - Frame { - msec: 6080 - hash: "f8038dc4b67b92ef776a97589240e8c5" - } - Frame { - msec: 6096 - hash: "2117c775960234c297187ea2e9d51e73" - } - Frame { - msec: 6112 - hash: "692931f1db6ddf0b37eb64026ca830f8" - } - Frame { - msec: 6128 - hash: "f01b7368e42381dda5eadf56482ea993" - } - Frame { - msec: 6144 - hash: "9811f823e057882d384f36d7227fa12e" - } - Frame { - msec: 6160 - hash: "9b40b6c75af876567ff49688bc710f2a" - } - Frame { - msec: 6176 - hash: "e97a5d968da37789c28816608fa262a1" - } - Frame { - msec: 6192 - hash: "2cd0627fdc63bb91f8dcac789d7a93b2" - } - Frame { - msec: 6208 - hash: "ae2407f8da9a047d2725bcdcf8e568b2" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6224 - hash: "90fb4e4ba04ac32b52c10b3258431c04" - } - Frame { - msec: 6240 - hash: "90fb4e4ba04ac32b52c10b3258431c04" - } - Frame { - msec: 6256 - hash: "90fb4e4ba04ac32b52c10b3258431c04" - } - Frame { - msec: 6272 - hash: "90fb4e4ba04ac32b52c10b3258431c04" - } - Frame { - msec: 6288 - hash: "73c06997014af4e008b546b53fe349fb" - } - Frame { - msec: 6304 - hash: "451a9408b04826ab35749d9120efd6bb" - } - Frame { - msec: 6320 - hash: "451a9408b04826ab35749d9120efd6bb" - } - Frame { - msec: 6336 - hash: "3fad6b23b0b78f844e02fe307e20d376" - } - Frame { - msec: 6352 - hash: "1c25b3d65e8590f8c213afa76b722e97" - } - Frame { - msec: 6368 - hash: "769d2724656dbf0e793ecd8e42db3de2" - } - Frame { - msec: 6384 - hash: "9e375cb3815723a2c5dda39c79325e96" - } - Frame { - msec: 6400 - hash: "77a245991ed8e40163bd0224eb15f20e" - } - Frame { - msec: 6416 - hash: "e6936f1122c8c0a76b0eb61ad086a9f1" - } - Frame { - msec: 6432 - hash: "8048f84221a02e7102cf3272445862a1" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.0.png deleted file mode 100644 index 814cc89..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml deleted file mode 100644 index d211832..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/data/test_flipable_resize.qml +++ /dev/null @@ -1,207 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "test_flipable_resize.0.png" - } - Frame { - msec: 32 - hash: "8d8c6a3c37ba3cb77afcc7ed4234d40f" - } - Frame { - msec: 48 - hash: "93ab01494e2229c0921c25d3acbcffe6" - } - Frame { - msec: 64 - hash: "5036bf3c842e5ad09b7bac5512e433ad" - } - Frame { - msec: 80 - hash: "ef02ef4598fbe6390391b7f2c17ec99d" - } - Frame { - msec: 96 - hash: "7fa83afca86cfec48a4986ba3df08e3b" - } - Frame { - msec: 112 - hash: "d9388827bd7755bb9bc1ef78507cc0ac" - } - Frame { - msec: 128 - hash: "d18778f4f748f7ee54404db334831ff7" - } - Frame { - msec: 144 - hash: "fee69ae3b4d79b795d4443b055a8a91a" - } - Frame { - msec: 160 - hash: "f80fa0131c859286e900071b51e74784" - } - Frame { - msec: 176 - hash: "b654e51ea71ec118e6b985743281b6a1" - } - Frame { - msec: 192 - hash: "91c771226e9c97e0f00c6f7c6fc6c95c" - } - Frame { - msec: 208 - hash: "0f612f81541b093442e68d99e00c288c" - } - Frame { - msec: 224 - hash: "246b619598606fef9f0442439cee4ec6" - } - Frame { - msec: 240 - hash: "1d2f34459b2128877218cef340f46f06" - } - Frame { - msec: 256 - hash: "af3c2eef734da05d45484bbb19646425" - } - Frame { - msec: 272 - hash: "85dfe5680e47919500728de6e93c8290" - } - Frame { - msec: 288 - hash: "8fd7d439bafa07461a65a3c97cf8602a" - } - Frame { - msec: 304 - hash: "1ebf543a84aae4abfd480f24ad362cb0" - } - Frame { - msec: 320 - hash: "60a9c9300981282986659e7c73d381b0" - } - Frame { - msec: 336 - hash: "686f3ff048f2b214033988d989ed087a" - } - Frame { - msec: 352 - hash: "24694e17476b0ffe9848159aa282e931" - } - Frame { - msec: 368 - hash: "c05e1bdf62e3e58972f868b930823a58" - } - Frame { - msec: 384 - hash: "cbc1a3c78b8f79047d1221d5ae06f0f8" - } - Frame { - msec: 400 - hash: "05ad366e74bf30b1619cf2ef1f530d82" - } - Frame { - msec: 416 - hash: "4c5c536f2c03ecfb7d3d8f56638001ec" - } - Frame { - msec: 432 - hash: "9754048ffcb7863a8a676e5bee4a7991" - } - Frame { - msec: 448 - hash: "047aa8203ad18023f5af340a41f1084e" - } - Frame { - msec: 464 - hash: "1351b7c92cd873db387e93dc74cca848" - } - Frame { - msec: 480 - hash: "4066f52fae753013396195dc98311058" - } - Frame { - msec: 496 - hash: "21d969b92993e428e79babb574e9203d" - } - Frame { - msec: 512 - hash: "62c00f52e8b0592fbb59f88deb3b022e" - } - Frame { - msec: 528 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 544 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 560 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 576 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 592 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 608 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 624 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 640 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 656 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 672 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 688 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 704 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 720 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 736 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 752 - hash: "322719dee40d3495e9b4d2faac351e89" - } - Frame { - msec: 768 - hash: "322719dee40d3495e9b4d2faac351e89" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml deleted file mode 100644 index 8a178b3..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test-flipable.qml +++ /dev/null @@ -1,79 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - width: 400; height: 240 - color: "white" - - Timer { - interval: 3000; running: true; repeat: true; triggeredOnStart: true - onTriggered: { - if (flipable.state == '') flipable.state = 'back'; else flipable.state = '' - if (flipable2.state == '') flipable2.state = 'back'; else flipable2.state = '' - } - } - - Flipable { - id: flipable - width: 200; height: 200 - - transform: Rotation { - id: rotation; angle: 0 - origin.x: 100; origin.y: 100 - axis.x: 0; axis.y: 1; axis.z: 0 - } - - front: Rectangle { - color: "steelblue"; width: 200; height: 200 - } - - back: Rectangle { - color: "deeppink"; width: 200; height: 200 - } - - states: State { - name: "back" - PropertyChanges { target: rotation; angle: 180 } - } - - transitions: Transition { - NumberAnimation { easing.type: "InOutQuad"; properties: "angle"; duration: 3000 } - } - } - - Flipable { - id: flipable2 - x: 200; width: 200; height: 200 - - transform: Rotation { - id: rotation2; angle: 0 - origin.x: 100; origin.y: 100 - axis.x: 1; axis.z: 0 - } - - front: Rectangle { - color: "deeppink"; width: 200; height: 200 - } - - back: Rectangle { - color: "steelblue"; width: 200; height: 200 - } - - states: State { - name: "back" - PropertyChanges { target: rotation2; angle: 180 } - } - - transitions: Transition { - NumberAnimation { easing.type: "InOutQuad"; properties: "angle"; duration: 3000 } - } - } - - Rectangle { - x: 25; width: 150; y: 210; height: 20; color: "black" - visible: flipable.side == Flipable.Front - } - Rectangle { - x: 225; width: 150; y: 210; height: 20; color: "black" - visible: flipable2.side == Flipable.Back - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml deleted file mode 100644 index 8aeb6c8..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflipable/test_flipable_resize.qml +++ /dev/null @@ -1,62 +0,0 @@ -import QtQuick 1.0 -Item { //realWindow - width: 370 - height: 480 - Item { - id: window - NumberAnimation on width{ from:320; to:370; duration: 500 } - NumberAnimation on height{ from:480; to:320; duration: 500 } - Flipable { - id: flipable - x: 0 - y: window.height / 3.0 - 40 - width: parent.width - height: parent.height - transform: Rotation { - id: transform - origin.x: window.width / 2.0 - origin.y: 0 - origin.z: 0 - axis.x: 0 - axis.y: 1 - axis.z: 0 - angle: 0; - } - front: Rectangle{ - width: parent.width - height: 80 - color: "blue" - }back: Rectangle{ - width: parent.width - height: 80 - color: "red" - } - } - Flipable { - id: flipableBack - x: 0 - y: 2.0 * window.height / 3.0 - 40 - width: parent.width - height: parent.height - transform: Rotation { - id: transformBack - origin.x: window.width / 2.0 - origin.y: 0 - origin.z: 0 - axis.x: 0 - axis.y: 1 - axis.z: 0 - angle: 180; - } - front: Rectangle{ - width: parent.width - height: 80 - color: "blue" - }back: Rectangle{ - width: parent.width - height: 80 - color: "red" - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.0.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.0.png deleted file mode 100644 index b053048..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.1.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.1.png deleted file mode 100644 index c675be7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.10.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.10.png deleted file mode 100644 index c675be7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.2.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.2.png deleted file mode 100644 index 9f605c3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.3.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.3.png deleted file mode 100644 index 767d7a9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.4.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.4.png deleted file mode 100644 index 20146c9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.5.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.5.png deleted file mode 100644 index 85fac89..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.6.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.6.png deleted file mode 100644 index e522bae..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.7.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.7.png deleted file mode 100644 index f9192e4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.8.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.8.png deleted file mode 100644 index ad187bd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.9.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.9.png deleted file mode 100644 index 96c6325..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml deleted file mode 100644 index 6f0352d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml +++ /dev/null @@ -1,2859 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "gridview.0.png" - } - Frame { - msec: 32 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 48 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 64 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 80 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 96 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 112 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 128 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 144 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 160 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 176 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 192 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 208 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 224 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 240 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 256 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 272 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 288 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 304 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 320 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 336 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 352 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 368 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 384 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 400 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 416 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 432 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 464 - hash: "159004854f8c07144034e1265cf6f44a" - } - Frame { - msec: 480 - hash: "a3f2471ef4ceac77a1c20ac327550d8d" - } - Frame { - msec: 496 - hash: "1121efa0df5057387be08fced62fe9eb" - } - Frame { - msec: 512 - hash: "67ad85cda0b8fb382cb536ef880f715b" - } - Frame { - msec: 528 - hash: "4de18d32c93ca5cd77cb45c8c4f3b4fc" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "de26f0243101d57f4acf42b256ad75f9" - } - Frame { - msec: 560 - hash: "119ea359724d5f4ba1e1aa120cddf3ea" - } - Frame { - msec: 576 - hash: "65fbee28f9ea68a6f2736d75a65b3ee2" - } - Frame { - msec: 592 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 608 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 624 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 640 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 656 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 672 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 688 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 704 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 720 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 736 - hash: "6123118055b4d0678eb2b7cdf8b12592" - } - Frame { - msec: 752 - hash: "fe4b009abe081a6eaeab6ef9e996f3fd" - } - Frame { - msec: 768 - hash: "2f23f647daa1c11637d6a21c2668be49" - } - Frame { - msec: 784 - hash: "62d995a1feb7f600669c1c7ef5f6a5da" - } - Frame { - msec: 800 - hash: "66e881ee93f4722605a63dccd083635d" - } - Frame { - msec: 816 - hash: "27ac08cc4f62552a9d1c1cbf781a00f9" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 832 - hash: "792be2ec5a08ad74cda4c19b6bc209d0" - } - Frame { - msec: 848 - hash: "0d28add40afd81f768603ea3e396f0b3" - } - Frame { - msec: 864 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 880 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 896 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 912 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 928 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 944 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 960 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 976 - image: "gridview.1.png" - } - Frame { - msec: 992 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1008 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1024 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1040 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1056 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1072 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1088 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1104 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1120 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1136 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1152 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1168 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1184 - hash: "eac6b1299cb386f2be244b43a0be26ae" - } - Frame { - msec: 1200 - hash: "14350c877f5259a3cb3836fa5f8ff563" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1216 - hash: "582bfeca87cba0dee21b9551e583ec93" - } - Frame { - msec: 1232 - hash: "cefe1139141fa381e55f1254713a1380" - } - Frame { - msec: 1248 - hash: "72e966a995c818b16b48bb193eda241a" - } - Frame { - msec: 1264 - hash: "8dfeefd93687861158ca4496e56cdbb9" - } - Frame { - msec: 1280 - hash: "daf8474f1f583039f6a14b822e5dff5e" - } - Frame { - msec: 1296 - hash: "eb2b4ba7ffab22660d0b9de4226ea88f" - } - Frame { - msec: 1312 - hash: "f0f00d22d15ed9828db7b5f3a3669fe9" - } - Frame { - msec: 1328 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1344 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1360 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1376 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1392 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1408 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1424 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1440 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1456 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1472 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1488 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1504 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1520 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1536 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1552 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1568 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1584 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1600 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1616 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1632 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1648 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1680 - hash: "66e158aa7dd78362dffddf2a9e7375ef" - } - Frame { - msec: 1696 - hash: "8c23d5245774ab5252c98c19c33f8171" - } - Frame { - msec: 1712 - hash: "bf37dc941e49af9bd1e0e182a4ef6f0a" - } - Frame { - msec: 1728 - hash: "3fc025193fa6d6db0428ae1fa179bf55" - } - Frame { - msec: 1744 - hash: "9efef22e6e29e18b2896982440c7bbae" - } - Frame { - msec: 1760 - hash: "380e92b30430d3f589a88e67b7b959bd" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1776 - hash: "80329cd1548c4ff9ee589d56e9d8cd90" - } - Frame { - msec: 1792 - hash: "6030c139032fc80abb5aabb85d8dfa4d" - } - Frame { - msec: 1808 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1824 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1840 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1856 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1872 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1888 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1904 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1920 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1936 - image: "gridview.2.png" - } - Frame { - msec: 1952 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1968 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1984 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2000 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 2016 - hash: "719eabf9ad7e15d5429630c7f7136980" - } - Frame { - msec: 2032 - hash: "a1bd870fffd95a0604dd8e170e571632" - } - Frame { - msec: 2048 - hash: "b406160dda839ee34002190e05ceffac" - } - Frame { - msec: 2064 - hash: "a139784af7675281f0f3760a932aef0c" - } - Frame { - msec: 2080 - hash: "2c7d2f857919deae0a8ad6dc2f7d806f" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2096 - hash: "80af5431f6d9a77f98c23d913c6caad4" - } - Frame { - msec: 2112 - hash: "b3ccaf648e09dbfcbaa7609440c63fc9" - } - Frame { - msec: 2128 - hash: "d267f9f4dd471be1cf4718d212c79887" - } - Frame { - msec: 2144 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2160 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2176 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2192 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2208 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2224 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2240 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2256 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2272 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2288 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2304 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2320 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2336 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2352 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2368 - hash: "db27d4cc92c09148675e76459d8ecb15" - } - Frame { - msec: 2384 - hash: "2c6f60eb170588a8450c679f3b16a6a4" - } - Frame { - msec: 2400 - hash: "024a4d4fc9a11d352d1e0f5ee7f7dbc8" - } - Frame { - msec: 2416 - hash: "c966b518b881f85a2d1cc86f5284ee1b" - } - Frame { - msec: 2432 - hash: "db15811f2d2cff0949213823649ef1d4" - } - Frame { - msec: 2448 - hash: "bbd9fad235aa2843bf2b64f3cf24f4e3" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2464 - hash: "ccbc2f09ed263375e7b52f556fb2836f" - } - Frame { - msec: 2480 - hash: "c3b74e90fa99f4357762b57b9317b6f5" - } - Frame { - msec: 2496 - hash: "4f2fafdb59db544352e3067d67c0a714" - } - Frame { - msec: 2512 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2528 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2544 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2560 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2576 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2592 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2608 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2624 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2640 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2656 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2672 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2688 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2704 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2720 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2736 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2752 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2768 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2784 - hash: "043583b19c921740dbc990afd4f508ed" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2816 - hash: "64fdbc9a930e44dcc38542f720b41b0a" - } - Frame { - msec: 2832 - hash: "257d3d8bcf78671d35a898befec091cb" - } - Frame { - msec: 2848 - hash: "92a51faf52bdc7f895bdc08f049f6ed3" - } - Frame { - msec: 2864 - hash: "5aec71e84a4e9c4962ed73c39d337910" - } - Frame { - msec: 2880 - hash: "e9112eea445585b17d58b6f9ba039c39" - } - Frame { - msec: 2896 - image: "gridview.3.png" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2912 - hash: "32faa54e636773747a2ec4065a11c337" - } - Frame { - msec: 2928 - hash: "ebe24b814e27cd8a8db78da58c8f86d7" - } - Frame { - msec: 2944 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 2960 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 2976 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 2992 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3008 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3024 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3040 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3056 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3072 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3088 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3104 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3120 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3136 - hash: "d446b94a2e3d9f7091c5520852d1a215" - } - Frame { - msec: 3152 - hash: "79d1a3489be95d113e8c611a2ba63456" - } - Frame { - msec: 3168 - hash: "95601b7d8ab689142ca89343743b55b2" - } - Frame { - msec: 3184 - hash: "ad67049e51eafbbc33d1e3763d78b5f9" - } - Frame { - msec: 3200 - hash: "69b1d558065ee9b9719c3ae8f08b52ab" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3216 - hash: "858fd65adb231bf2002bcc25075be261" - } - Frame { - msec: 3232 - hash: "2dc6fb114e1d2a606efe48f349251504" - } - Frame { - msec: 3248 - hash: "e4819f09d6640021408e03c50090e849" - } - Frame { - msec: 3264 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3280 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3296 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3312 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3328 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3344 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3360 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3376 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3392 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3408 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3424 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3440 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3456 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3472 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3488 - hash: "6c84f5e6d352ed345a0bed12c50bf7a9" - } - Frame { - msec: 3504 - hash: "15690df807a7c1e9aa9d7e9154c1a492" - } - Frame { - msec: 3520 - hash: "3d6cc3e0d93ddf4b66321fda361f05c0" - } - Frame { - msec: 3536 - hash: "8e3526ffeb9873b55b3bae2827391628" - } - Frame { - msec: 3552 - hash: "33097267d43a7e16a78102cb91c9fd42" - } - Frame { - msec: 3568 - hash: "17ab2623432bba92dc9d99e5764e626e" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3584 - hash: "9945a723d9a3399bb5311eea3d9b0b77" - } - Frame { - msec: 3600 - hash: "e6e9251cd6d941a050beaa36b851e314" - } - Frame { - msec: 3616 - hash: "a61dbcb7d914afe34009085bf37fb8e2" - } - Frame { - msec: 3632 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3648 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3664 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3680 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3696 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3712 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3728 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3744 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3760 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3776 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3792 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3808 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3824 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3840 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3856 - image: "gridview.4.png" - } - Frame { - msec: 3872 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3888 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3904 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3920 - hash: "e63d987ba303a42046827f14941b444a" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3936 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3952 - hash: "9942059cb380dbae191850d2e7175906" - } - Frame { - msec: 3968 - hash: "ca5af7d98a008eccba1e21be0da61f3c" - } - Frame { - msec: 3984 - hash: "abb95ac1408d34e2eb319e5396511d65" - } - Frame { - msec: 4000 - hash: "183df6d4be489280181f01a0c0ed3cde" - } - Frame { - msec: 4016 - hash: "64733a4d609c621765d114a6b482dc57" - } - Frame { - msec: 4032 - hash: "897aa5b42e48a7235ab4fdded5876da2" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4048 - hash: "c80f01a1e683d84bfa0821832c113820" - } - Frame { - msec: 4064 - hash: "e7065bf6934c7fb7b160ae5c169633e4" - } - Frame { - msec: 4080 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4096 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4112 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4128 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4144 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4160 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4176 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4192 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4208 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4224 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4240 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4256 - hash: "917c11b16c6286bea7a37990d7fa078f" - } - Frame { - msec: 4272 - hash: "1616c6def28659d51905564ff83cc112" - } - Frame { - msec: 4288 - hash: "fce04972557736a8dfa8de5f1a605ddb" - } - Frame { - msec: 4304 - hash: "6acffcea115f8a777f62c1f68cd25fa6" - } - Frame { - msec: 4320 - hash: "f96ae6a4f437cf98b268fc0b0611ddc4" - } - Frame { - msec: 4336 - hash: "c9e14157dca547623497a6107f14b73d" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4352 - hash: "6489766ed84c4b6ff26de24cb74848cb" - } - Frame { - msec: 4368 - hash: "9d229c10853b30ed048b892953c5d86c" - } - Frame { - msec: 4384 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4400 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4416 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4432 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4448 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4464 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4480 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4496 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4512 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4528 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4544 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4560 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4576 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4592 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4608 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4624 - hash: "12f17d727d70269fd98a0f6524c9f750" - } - Frame { - msec: 4640 - hash: "e73d64ebe242eae0f412ca463c76085d" - } - Frame { - msec: 4656 - hash: "f37a468e04155c880e707d1d12f71f94" - } - Frame { - msec: 4672 - hash: "3789293a6b8791d8e60b5160fc457345" - } - Frame { - msec: 4688 - hash: "7d8377c816f19fa32d847a30d1c71da9" - } - Frame { - msec: 4704 - hash: "b9867dbb6f03d5970076251e10e47f16" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4720 - hash: "0604bbd1afdfee5881d9d9d79a67a3df" - } - Frame { - msec: 4736 - hash: "93401cdfa6cc7fbbfc479faa0bc1d63f" - } - Frame { - msec: 4752 - hash: "aa379c70dd6a94a55fd8c065331ad47b" - } - Frame { - msec: 4768 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4784 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4800 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4816 - image: "gridview.5.png" - } - Frame { - msec: 4832 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4848 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4864 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4880 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4896 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4912 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4928 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4944 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4960 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4976 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 4992 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5008 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5024 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5040 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5056 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5072 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5088 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5104 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5120 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5136 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5152 - hash: "11150995098af8516513230360d40108" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5168 - hash: "11150995098af8516513230360d40108" - } - Frame { - msec: 5184 - hash: "c58f071ae4efde5cd265fa6e82dda56b" - } - Frame { - msec: 5200 - hash: "bea9eadda7b015d0e9a0f05924e723f7" - } - Frame { - msec: 5216 - hash: "c255da63dc59ca7555c91701ed373fd5" - } - Frame { - msec: 5232 - hash: "fa0a697341baae4b3aa4dee721ef10a2" - } - Frame { - msec: 5248 - hash: "2d2148840143772fab6b2405bf5eb609" - } - Frame { - msec: 5264 - hash: "3716705b5f7caa86eecc1dfafe31ebcf" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5280 - hash: "35cfea054566eae3bcc9c8a41caadcdc" - } - Frame { - msec: 5296 - hash: "916858ff0ca4370840d072c389242a2b" - } - Frame { - msec: 5312 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5328 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5344 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5360 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5376 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5392 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5408 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5424 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5440 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5456 - hash: "417f4bce58783f0e677b17b05147a663" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5472 - hash: "417f4bce58783f0e677b17b05147a663" - } - Frame { - msec: 5488 - hash: "191f2c80617cef61a2890977c3079ad2" - } - Frame { - msec: 5504 - hash: "0902ef220363ad2c08f09199278cecf8" - } - Frame { - msec: 5520 - hash: "d28ea1b1e01588bbb767a5599c5345d2" - } - Frame { - msec: 5536 - hash: "36eeaf2755fffefc32bcd580fade6305" - } - Frame { - msec: 5552 - hash: "51560b23e44e5548875b13ff6dc6ee8d" - } - Frame { - msec: 5568 - hash: "082abbc9ecd0bf39619819aa526c021c" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5584 - hash: "ab956d21f8ea55dad590b3cafc887585" - } - Frame { - msec: 5600 - hash: "9501050f547de1de0d280a839e35e120" - } - Frame { - msec: 5616 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5632 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5648 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5664 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5680 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5696 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5712 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5728 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5744 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5760 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5776 - image: "gridview.6.png" - } - Frame { - msec: 5792 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5808 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5824 - hash: "3de570332e8a1e01f409d892feb7930e" - } - Frame { - msec: 5840 - hash: "6aefcf9976f5910376a583b020c8dd4b" - } - Frame { - msec: 5856 - hash: "971ca1e2537d52f352c889817e353736" - } - Frame { - msec: 5872 - hash: "f1f0599e7f4ba2fb869e886a2e7ff216" - } - Frame { - msec: 5888 - hash: "8bf62b11cd4ec99ae41752e1a9a9c7ca" - } - Frame { - msec: 5904 - hash: "f2fcf6ad484b240373822c2450dd5305" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5920 - hash: "f999073e6303ff5658012dabbef4ee8e" - } - Frame { - msec: 5936 - hash: "c35ef3056155d8d30dd4b9e6299ac68f" - } - Frame { - msec: 5952 - hash: "0326908135c0d693f2fc99c9e02d8f94" - } - Frame { - msec: 5968 - hash: "b0def7204463648dac117ddcc2241c3e" - } - Frame { - msec: 5984 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6000 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6016 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6032 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6048 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6064 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6080 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6096 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6112 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6128 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6144 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6160 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6176 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6192 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6208 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6224 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6240 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6256 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6272 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6288 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6304 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6320 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6336 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6352 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6368 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6384 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6400 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6416 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 6432 - hash: "5e88aeab16a0ccca400163889851bc45" - } - Frame { - msec: 6448 - hash: "5531bf9affacf58945c6c54c5d14c9c9" - } - Frame { - msec: 6464 - hash: "ebc8f36eb0fc7d40bf9f268ef03522a0" - } - Frame { - msec: 6480 - hash: "621a3c318fc259ed27ae050d70d46d39" - } - Frame { - msec: 6496 - hash: "688bea0c0c864d9bc4204cf06b480d3a" - } - Frame { - msec: 6512 - hash: "8419262c19c40172b93c74d34cad12cb" - } - Frame { - msec: 6528 - hash: "57ce65a4ebe51c14ee69083f90ed5b80" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 6544 - hash: "43827ad5cb4173a8a5d434b167f68761" - } - Frame { - msec: 6560 - hash: "13e3e00ec3c11d6ca3e51a7aba0e1a97" - } - Frame { - msec: 6576 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6592 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6608 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6624 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6640 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6656 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6672 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6688 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6704 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 6720 - hash: "dcf8c3078973ad99fbbcc763e433de11" - } - Frame { - msec: 6736 - image: "gridview.7.png" - } - Frame { - msec: 6752 - hash: "bb4674d0de11e4f625e6db940b4ec06c" - } - Frame { - msec: 6768 - hash: "26f602a711cea77e5c7be08a93981306" - } - Frame { - msec: 6784 - hash: "5346bc8b1711a6679867d81efb9da563" - } - Frame { - msec: 6800 - hash: "3aa4d335a91be2bf2616d61fa7719ce5" - } - Frame { - msec: 6816 - hash: "2bad8dd039a35f11ba86b409bbcea6fe" - } - Frame { - msec: 6832 - hash: "20e4b381a6bed27e9e64d2eeda7870da" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 6848 - hash: "e96eb16671f26f04a72498bc3ab54f06" - } - Frame { - msec: 6864 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 6880 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 6896 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 6912 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 6928 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 6944 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 6960 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 6976 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 6992 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7008 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7024 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 7040 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7056 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7072 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7088 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7104 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7120 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7136 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7152 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 7168 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7184 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7200 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7216 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7232 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7248 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7264 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7280 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7296 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7312 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7328 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7344 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7360 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7376 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7392 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7408 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7424 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7440 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7456 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7472 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7488 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7504 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7520 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7536 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7552 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7568 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7584 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 7600 - hash: "f0e0fe7c155bbee3957a80077703fadc" - } - Frame { - msec: 7616 - hash: "6e26f05f7a2531620ed4a25073e0f0c5" - } - Frame { - msec: 7632 - hash: "9fe693b6b53763ffc1b94d157252b18c" - } - Frame { - msec: 7648 - hash: "49aae47da204d4104757b4420df7413e" - } - Frame { - msec: 7664 - hash: "ecd7456cb5ba2034c766e1ec298c2ebf" - } - Frame { - msec: 7680 - hash: "2a5a7dfcd64200864abfa9267e802f4e" - } - Frame { - msec: 7696 - image: "gridview.8.png" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 7712 - hash: "e11fcb0e62d7f6bfb40b7336e89ff014" - } - Frame { - msec: 7728 - hash: "5a07fa8768ebfb938204e500f4a09253" - } - Frame { - msec: 7744 - hash: "1ee3a4780979f69cd7926df3d4c18731" - } - Frame { - msec: 7760 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7776 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7792 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7808 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7824 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7840 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7856 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7872 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7888 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7904 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7920 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7936 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7952 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 7968 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 7984 - hash: "ca4edfecdfc410aca6557b9a3095d92b" - } - Frame { - msec: 8000 - hash: "1306bb76c161e84e2e5307a0ebc34393" - } - Frame { - msec: 8016 - hash: "a97cbb851cf1fdeb428ee36042be52e1" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8032 - hash: "e79ccbe112066ded3276aa7feb2e7848" - } - Frame { - msec: 8048 - hash: "9cc673f743e2018cf9a6d815fe76dc80" - } - Frame { - msec: 8064 - hash: "8179262829f88ee4bbb9537b29ab56ee" - } - Frame { - msec: 8080 - hash: "3810cc1b5902259c22bce0118497aaf3" - } - Frame { - msec: 8096 - hash: "d41c5a6fdfafb2263e7c35a927f7753c" - } - Frame { - msec: 8112 - hash: "e54d0179d62b7cdec96218c3a0ef110d" - } - Frame { - msec: 8128 - hash: "da89e8408417b99582ffd825c2226bf4" - } - Frame { - msec: 8144 - hash: "5d7b9247aecd4adc939c6fb89d5eac2c" - } - Frame { - msec: 8160 - hash: "5d7b9247aecd4adc939c6fb89d5eac2c" - } - Frame { - msec: 8176 - hash: "5d7b9247aecd4adc939c6fb89d5eac2c" - } - Frame { - msec: 8192 - hash: "5d7b9247aecd4adc939c6fb89d5eac2c" - } - Frame { - msec: 8208 - hash: "5d7b9247aecd4adc939c6fb89d5eac2c" - } - Frame { - msec: 8224 - hash: "5d7b9247aecd4adc939c6fb89d5eac2c" - } - Frame { - msec: 8240 - hash: "5d7b9247aecd4adc939c6fb89d5eac2c" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8256 - hash: "5d7b9247aecd4adc939c6fb89d5eac2c" - } - Frame { - msec: 8272 - hash: "2fcac6c204d45d6fbab76c3d07e2c8ad" - } - Frame { - msec: 8288 - hash: "78602c9ac9dbd6c34ef539799513d874" - } - Frame { - msec: 8304 - hash: "02f8d434d50af8fa6063a4f03dabe2b1" - } - Frame { - msec: 8320 - hash: "ff5da7b1a1467418bc712c0ac33c878f" - } - Frame { - msec: 8336 - hash: "2aed8048e5040ebda3bdfdf4a57d08eb" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8352 - hash: "c6b50c1a6a843aa9484c48e4bf073e4b" - } - Frame { - msec: 8368 - hash: "a08ef172dfb72151108e81cacfaa964f" - } - Frame { - msec: 8384 - hash: "a2a755231d0eee686aa38cd4d4b417f2" - } - Frame { - msec: 8400 - hash: "5c598e26c1b65796b8e68c7d27abbc0f" - } - Frame { - msec: 8416 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8432 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8448 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8464 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8480 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8496 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8512 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8528 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8544 - hash: "290662cda876fccc87971d2cebc69d52" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8560 - hash: "290662cda876fccc87971d2cebc69d52" - } - Frame { - msec: 8576 - hash: "1aface9c3746488496af48caf23af1a5" - } - Frame { - msec: 8592 - hash: "c08f9756c9cc453a2544052b15beab5d" - } - Frame { - msec: 8608 - hash: "b70544dc0d5cc18181f0bf40c068410b" - } - Frame { - msec: 8624 - hash: "7e8fbce1337b0b04beda76ee54c98285" - } - Frame { - msec: 8640 - hash: "fb8acbfc93b64d960abb17f097fe36fe" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8656 - image: "gridview.9.png" - } - Frame { - msec: 8672 - hash: "16013089bfe18b35efbd8cd36d37bb0a" - } - Frame { - msec: 8688 - hash: "57a857a48922cb252bb4ddc77b29825e" - } - Frame { - msec: 8704 - hash: "10a46ba67a0c7abe08ea8f80a75040e8" - } - Frame { - msec: 8720 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8736 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8752 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8768 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8784 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8800 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8816 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8832 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8848 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8864 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8880 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8896 - hash: "df1797772003dc3dbdd0e245c447bf20" - } - Frame { - msec: 8912 - hash: "70dd7fd50388196706f72a48ac96963c" - } - Frame { - msec: 8928 - hash: "439e43c26fc22a6c3a2b8568bfddbfa3" - } - Frame { - msec: 8944 - hash: "77e9ea697690a3e5c3965c0bf76055b0" - } - Frame { - msec: 8960 - hash: "30226190fa4466b3450ff1f810e85635" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8976 - hash: "9a69afa4de272f00d8a26141fa974f6e" - } - Frame { - msec: 8992 - hash: "1883a34a21ecc690022a6623c67c8ba1" - } - Frame { - msec: 9008 - hash: "e5be5b7e7060fffacaf93b6bf8d051a4" - } - Frame { - msec: 9024 - hash: "2667c2596de97dc15353158eba03495f" - } - Frame { - msec: 9040 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9056 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9072 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9088 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9104 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9120 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9136 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9152 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9168 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9184 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9200 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9216 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9232 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9248 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9264 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 9280 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9296 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9312 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9328 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9344 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9360 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9376 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 9392 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9408 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9424 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9440 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9456 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9472 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9488 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9504 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9520 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9536 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9552 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9568 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9584 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9600 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9616 - image: "gridview.10.png" - } - Frame { - msec: 9632 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9648 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9664 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9680 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9696 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9712 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9728 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9744 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9760 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 9776 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9792 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9808 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9824 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9840 - hash: "02c632713d0dc64bff9d8e58f745df95" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.0.png deleted file mode 100644 index 27e0783..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.1.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.1.png deleted file mode 100644 index 27e0783..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.10.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.10.png deleted file mode 100644 index b0486e5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.2.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.2.png deleted file mode 100644 index b0348ab..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.3.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.3.png deleted file mode 100644 index c3113e9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.4.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.4.png deleted file mode 100644 index 725d4e9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.5.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.5.png deleted file mode 100644 index cc6d8d6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.6.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.6.png deleted file mode 100644 index ccf9f5f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.7.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.7.png deleted file mode 100644 index 2f7f475..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.8.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.8.png deleted file mode 100644 index fff1b40..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.9.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.9.png deleted file mode 100644 index 27e0783..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml deleted file mode 100644 index 2c43f7d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml +++ /dev/null @@ -1,2479 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "gridview2.0.png" - } - Frame { - msec: 32 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 48 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 64 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 80 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 96 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 112 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 128 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 144 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 160 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 176 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 192 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 208 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 224 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 240 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 256 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 272 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 288 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 304 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 320 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 336 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 352 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 368 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 384 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 400 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 416 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 432 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 448 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 464 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 480 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 496 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 512 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 528 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 544 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 560 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 576 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 592 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 608 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 624 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 640 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 656 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 672 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 688 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 704 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 720 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 736 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 752 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 768 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 784 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 800 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 816 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 832 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 848 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 864 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 880 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 896 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 912 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 928 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 944 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 960 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 976 - image: "gridview2.1.png" - } - Frame { - msec: 992 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1008 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1024 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1040 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1056 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1072 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1088 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1104 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1120 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1136 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1152 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1168 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1184 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1200 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1216 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1232 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1248 - hash: "33d81c39d16c6a326012499796e50e03" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1264 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1280 - hash: "4ffd56d59c14ba676393686d753951d7" - } - Frame { - msec: 1296 - hash: "e2f7702ed749330b2f027aa73967a4cf" - } - Frame { - msec: 1312 - hash: "3f4dcee547e925db9b3da1fa08bab3c9" - } - Frame { - msec: 1328 - hash: "12b0bf8abbb9b6a0597eccebe5322551" - } - Frame { - msec: 1344 - hash: "23da2f9a800b805ce7b77ff08218907d" - } - Frame { - msec: 1360 - hash: "9c039c94a4202b99bf913891bdcb3698" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1376 - hash: "dd7c95ca98c4f37837c2ff7f03243fc3" - } - Frame { - msec: 1392 - hash: "6f31f7af4e68ab0eab101e7ae840b4b6" - } - Frame { - msec: 1408 - hash: "29943a44b9830bb64b3e5a3b6abd8c42" - } - Frame { - msec: 1424 - hash: "93d37221e8e022c84e35c7bd44b0644e" - } - Frame { - msec: 1440 - hash: "9ce3cd471dba7fe94de4e9ad321803b2" - } - Frame { - msec: 1456 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1472 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1488 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1504 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1520 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1536 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1552 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1568 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1584 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 1600 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1616 - hash: "6775c78beca0f078c5f2c57370de1946" - } - Frame { - msec: 1632 - hash: "898709f3871e13825baf48861930f26c" - } - Frame { - msec: 1648 - hash: "c1a568599592a3f455ad550c2e4878a8" - } - Frame { - msec: 1664 - hash: "a80d8cbf0c6fe8383badbb2badb361ad" - } - Frame { - msec: 1680 - hash: "310eaf71fe8d3807606e58a666c65ccd" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 1696 - hash: "0f317f50b0d2a4c5daf819431527416e" - } - Frame { - msec: 1712 - hash: "d251b64b794902fe2c5da3cee43ff82d" - } - Frame { - msec: 1728 - hash: "757adc256e1b5d739c29ee82bdacfa16" - } - Frame { - msec: 1744 - hash: "1c20e69e033a5fa4825fd46f51d1e348" - } - Frame { - msec: 1760 - hash: "03cbcd361ec24925222802c8ece99793" - } - Frame { - msec: 1776 - hash: "dffaa2dd4d6dd89a1b26d5db38906059" - } - Frame { - msec: 1792 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1808 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1824 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1840 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1856 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1872 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1888 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1904 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1920 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1936 - image: "gridview2.2.png" - } - Frame { - msec: 1952 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1968 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1984 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 2000 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 2016 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 2048 - hash: "1f046afe50ee5e1fc07e89a40528351c" - } - Frame { - msec: 2064 - hash: "132fbaa8fc2890d48f1916a25cb09887" - } - Frame { - msec: 2080 - hash: "e904c892dc27ff1700009470f234ce0d" - } - Frame { - msec: 2096 - hash: "0968397c7a209059cd466c61ac891081" - } - Frame { - msec: 2112 - hash: "d5b4fc1b568a4a1b63a91b422272c704" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "a980a2e7bd10328fbd4400e799aa7c24" - } - Frame { - msec: 2144 - hash: "b74be5349822d52ced201d7f34a96122" - } - Frame { - msec: 2160 - hash: "f7c6dbcd7d55b3230af463098f346bd8" - } - Frame { - msec: 2176 - hash: "393358a0ee7636a535f14f0dc9c3d609" - } - Frame { - msec: 2192 - hash: "cad337b87b629b1eee78407aacfd279e" - } - Frame { - msec: 2208 - hash: "d90b762e62867e3ff928160bed85d2ff" - } - Frame { - msec: 2224 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2240 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2256 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2272 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2288 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2304 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2320 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2336 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2352 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2368 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 2384 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2400 - hash: "5c9801ffdb07be53524cf0a4f8709ee4" - } - Frame { - msec: 2416 - hash: "adef25d77f816e40ec02886187f456bf" - } - Frame { - msec: 2432 - hash: "56290066fa32054bb7e1669bbda3f3bb" - } - Frame { - msec: 2448 - hash: "101b94bcf3f536bd64f0ac50f21cd5de" - } - Frame { - msec: 2464 - hash: "edaee946a2e25fed6de9acfda0d44a14" - } - Frame { - msec: 2480 - hash: "b170b60632b17595713dd911afc46fcc" - } - Frame { - msec: 2496 - hash: "57550914cd214025c6b1f3dfa446417f" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 2512 - hash: "3fd7252f5e61e3c348219a54fd5b95d9" - } - Frame { - msec: 2528 - hash: "c6c27dd386e40bc0a02ad8104301d391" - } - Frame { - msec: 2544 - hash: "dd476c04d3612f940e1959030ee8e264" - } - Frame { - msec: 2560 - hash: "f2f8d9bb8a1865237398421f6a6d89dc" - } - Frame { - msec: 2576 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2592 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2608 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2624 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2640 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2656 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2672 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2688 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2704 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2720 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2736 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 2752 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2768 - hash: "f13bc957329adad9dcb1ce0c408eeaaf" - } - Frame { - msec: 2784 - hash: "9a676805f3474f924cbe7ea21ee9dcab" - } - Frame { - msec: 2800 - hash: "f0161b0d27757137bcb7fd3e6db2280c" - } - Frame { - msec: 2816 - hash: "c7034a0e8956c9f483c128a934d68fa7" - } - Frame { - msec: 2832 - hash: "19664de1a738458810896959ba4087ad" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 2848 - hash: "c5d5ff1884dd0ede23097530c249678c" - } - Frame { - msec: 2864 - hash: "131ae4a26ad06bbef105668d30e154aa" - } - Frame { - msec: 2880 - hash: "5d6ba09a5038e00007af0fa3f89b67b8" - } - Frame { - msec: 2896 - image: "gridview2.3.png" - } - Frame { - msec: 2912 - hash: "9d5ee2458abc5dfd56abfd42c906270f" - } - Frame { - msec: 2928 - hash: "823b5d63768f5a18e795d5ed61f4dec8" - } - Frame { - msec: 2944 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 2960 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 2976 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 2992 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 3008 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 3024 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 3040 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 3056 - hash: "1a8a32127c1b699bc282b0c209117a00" - } - Frame { - msec: 3072 - hash: "2f5f2ab12410c070a7c05a1674e273fe" - } - Frame { - msec: 3088 - hash: "afe7c2cd74cc90d67e8c068eaf5988eb" - } - Frame { - msec: 3104 - hash: "e063d9eb45dc42b3f8b66937b7b4c19a" - } - Frame { - msec: 3120 - hash: "75a620b42caabf5b1576041dbd4c2808" - } - Frame { - msec: 3136 - hash: "2e2b9db4d2f19035c7c29489332b2550" - } - Frame { - msec: 3152 - hash: "32370cba80db8eaf1f5cd9b73d3472ed" - } - Frame { - msec: 3168 - hash: "3a79c47a8eb8bb79316e61a7eed58e57" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 3184 - hash: "c84e47182ef6ebec61163f9b42d03c64" - } - Frame { - msec: 3200 - hash: "6a0a83a39e6ab82b5437d46468e4776d" - } - Frame { - msec: 3216 - hash: "945929656c1d27bcba51ce908e72a770" - } - Frame { - msec: 3232 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3248 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3264 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3280 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3296 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3312 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3328 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3344 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3360 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3376 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3392 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3408 - hash: "7d12bcac0fcaaff7467c444ab89f1e06" - } - Frame { - msec: 3424 - hash: "2f4538eec0c704af25b0a73d5a8dded4" - } - Frame { - msec: 3440 - hash: "4722cbfba5de7e4f7b3cee10bd0f75b5" - } - Frame { - msec: 3456 - hash: "3a6df7e6d771c6edc5218ad9a4bf6ab0" - } - Frame { - msec: 3472 - hash: "09219f55fae47a0afed887ebf68a36bc" - } - Frame { - msec: 3488 - hash: "c04c0010761f572c5b16963699c70135" - } - Frame { - msec: 3504 - hash: "52d59ffff0f2109f9a584f3582158798" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3520 - hash: "9b1d58189c56205ba8963671bfb86742" - } - Frame { - msec: 3536 - hash: "7de84895e12919ffe935b23372db95db" - } - Frame { - msec: 3552 - hash: "d9c5b4c2a7831c216fe2266fe26306b0" - } - Frame { - msec: 3568 - hash: "1c2bc039c48e7e9da07165f405a6f207" - } - Frame { - msec: 3584 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3600 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3616 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3632 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3648 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3664 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3680 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3696 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3712 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3728 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3744 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3760 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3776 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3792 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3808 - hash: "abf9f5ef21fb62e5ad89ae2640a5a7e1" - } - Frame { - msec: 3824 - hash: "58103d91498617585163e0508bdb724d" - } - Frame { - msec: 3840 - hash: "c46ea52b070681155466b30096379c4f" - } - Frame { - msec: 3856 - image: "gridview2.4.png" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3872 - hash: "523667a6f3213fb67de1744636780831" - } - Frame { - msec: 3888 - hash: "f0b7d38f695a29f6787dc3683a05a7c8" - } - Frame { - msec: 3904 - hash: "1e5cf55e27217e67a5deb89e2d46349a" - } - Frame { - msec: 3920 - hash: "c49869491f484d07da838a21564e5e19" - } - Frame { - msec: 3936 - hash: "1acce2b796476d2d7d130749b06f334f" - } - Frame { - msec: 3952 - hash: "19ee6550b52517345859f9feb0b0d5a4" - } - Frame { - msec: 3968 - hash: "d2f360af319c740ad095ee0a463fa6fa" - } - Frame { - msec: 3984 - hash: "032326c6cf2a9da09c2388626ce942ef" - } - Frame { - msec: 4000 - hash: "ba2a7178b7c68001ecfdfea053507d0e" - } - Frame { - msec: 4016 - hash: "9afddf683c810e288ed0da2fa44c5182" - } - Frame { - msec: 4032 - hash: "93a7145e4bafa1e40a1db013b1c4337c" - } - Frame { - msec: 4048 - hash: "3d48687ecb20a8670dd656c5705a0797" - } - Frame { - msec: 4064 - hash: "7578264d5ea215f7fde90478ba5e6d32" - } - Frame { - msec: 4080 - hash: "fb84bbce52e9c4dc4efc1eed7e863007" - } - Frame { - msec: 4096 - hash: "df5d88d8421af767057fc4b3d0de23b1" - } - Frame { - msec: 4112 - hash: "dae3e3e10fe7e0ddcf10a7bb4ecc3f1a" - } - Frame { - msec: 4128 - hash: "eb15ba34411afd416dea5bc2b18cfb27" - } - Frame { - msec: 4144 - hash: "5f51ade6a1400093e9dd2b80d6f7a6ca" - } - Frame { - msec: 4160 - hash: "5e240752b752ca2ed4e6087f4deb0fbf" - } - Frame { - msec: 4176 - hash: "ae1931b9f168211c44c7269a245635fd" - } - Frame { - msec: 4192 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4208 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4224 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4240 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4256 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4272 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4288 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4304 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4320 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4336 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4352 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4368 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4384 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4400 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4416 - hash: "83588693715deadea8b875d6c6547371" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4432 - hash: "83588693715deadea8b875d6c6547371" - } - Frame { - msec: 4448 - hash: "ae1931b9f168211c44c7269a245635fd" - } - Frame { - msec: 4464 - hash: "a8e4b69162a6298929c12a91e60f20c1" - } - Frame { - msec: 4480 - hash: "ca4694bbbdc206c46600c894ed853390" - } - Frame { - msec: 4496 - hash: "21b2f2ee716d6b28066d44bfdc57babf" - } - Frame { - msec: 4512 - hash: "d37df25a59f3ba88b78f548521a6e5b2" - } - Frame { - msec: 4528 - hash: "b554cb62b97bbbb671d9b34389d4187a" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4544 - hash: "d28889303f98c47665247009bcfd68e7" - } - Frame { - msec: 4560 - hash: "80e7808641fc79c893a02842f641249b" - } - Frame { - msec: 4576 - hash: "4f3a39e8c61ad9197e7f24058671e510" - } - Frame { - msec: 4592 - hash: "ba2a7178b7c68001ecfdfea053507d0e" - } - Frame { - msec: 4608 - hash: "ca1c72729c41845151820d362721a1e7" - } - Frame { - msec: 4624 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4640 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4656 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4672 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4688 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4704 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4720 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4736 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4752 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4768 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4784 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4800 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4816 - image: "gridview2.5.png" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4832 - hash: "ac37c4abbbc11b8e2bf8e0e8dae6180f" - } - Frame { - msec: 4848 - hash: "1176eed6f023a843a646517e60f848b5" - } - Frame { - msec: 4864 - hash: "26eca367a7fe38ac123fa63cfbb20421" - } - Frame { - msec: 4880 - hash: "d471f06d345e5a09bf4ea540b80fe1e3" - } - Frame { - msec: 4896 - hash: "e3694d271e363df1b212d975a464df62" - } - Frame { - msec: 4912 - hash: "3dc24a10bbf6a6a0ba85f50de8646305" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4928 - hash: "08e7979e36a9a8a500193020ab68c616" - } - Frame { - msec: 4944 - hash: "bd91601e455c2c37c786f907bd20b447" - } - Frame { - msec: 4960 - hash: "e4b676fc9752f3bff5353a2bf528b3ac" - } - Frame { - msec: 4976 - hash: "c772188a68cc0958c247145005d580ef" - } - Frame { - msec: 4992 - hash: "eded946d9e7c6418e3933624fe2f1dbf" - } - Frame { - msec: 5008 - hash: "46a2dd2bfa66a3781a00fe466e05eeb0" - } - Frame { - msec: 5024 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5040 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5056 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5072 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5088 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5104 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5120 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5136 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5152 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5168 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5184 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5200 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5216 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5232 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5248 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5264 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5280 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5296 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5312 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5328 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5344 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5360 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5376 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5392 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5408 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5424 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5440 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5456 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5472 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5488 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5504 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5520 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5536 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5552 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5568 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5584 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5600 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 5616 - hash: "4e11a072f1136c2c6298e6cfb25700dd" - } - Frame { - msec: 5632 - hash: "e44ee0f83cbd176620d5c91851402b5b" - } - Frame { - msec: 5648 - hash: "c18bc8109b350673faf64b4722e86f3d" - } - Frame { - msec: 5664 - hash: "1b552ed8555c61e1fa664e6c88aee64d" - } - Frame { - msec: 5680 - hash: "11284c77b23ba4b4b0c664b387dc9d48" - } - Frame { - msec: 5696 - hash: "fbd015d60a8ada6a671301d01846b4c8" - } - Frame { - msec: 5712 - hash: "1456fca256ab6fdf930dd079ee8b77a7" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 5728 - hash: "bf7f688319a89ade564734d7fc658167" - } - Frame { - msec: 5744 - hash: "68819e722d6032881824448ed63248b2" - } - Frame { - msec: 5760 - hash: "510589f35813c6c1d6484f614da92ae3" - } - Frame { - msec: 5776 - image: "gridview2.6.png" - } - Frame { - msec: 5792 - hash: "37f9e630ac66e999046d686078cf5a68" - } - Frame { - msec: 5808 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5824 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5840 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5856 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5872 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5888 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5904 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5920 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5936 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5952 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5968 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 5984 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 6000 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 6016 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 6032 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 6048 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 6064 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 6080 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 6096 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 6112 - hash: "b534ccea1f69ececc54d943e73b7e9f4" - } - Frame { - msec: 6128 - hash: "f45eb6005981864d7e4d1379a4390b02" - } - Frame { - msec: 6144 - hash: "a644905acb7cf6e4d9351f1140985a98" - } - Frame { - msec: 6160 - hash: "011be55b909843b2506c5a97e7571e51" - } - Frame { - msec: 6176 - hash: "35b224d84ae3a4bdba0ace487471f0a6" - } - Frame { - msec: 6192 - hash: "dcfd5536e6065a19650fe67914211223" - } - Frame { - msec: 6208 - hash: "8ad99c352901c54ecc601ca2ac8c1f08" - } - Frame { - msec: 6224 - hash: "e4774d15b45865b9f445f679cd0414ea" - } - Frame { - msec: 6240 - hash: "a5b78dfb09b9031f0aabfa7439cbc433" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 6256 - hash: "20b87dc26080f8e8e070b2fa299f496a" - } - Frame { - msec: 6272 - hash: "0e6d05d1df8328ca17d953476d19ae14" - } - Frame { - msec: 6288 - hash: "e2b1ec6b985bbc57f0384a49f3af545c" - } - Frame { - msec: 6304 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6320 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6336 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6352 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6368 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6384 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6400 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6416 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6432 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6448 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6464 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6480 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6496 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6512 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6528 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6544 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6560 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6576 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6592 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6608 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6624 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6640 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6656 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6672 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6688 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6704 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6720 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6736 - image: "gridview2.7.png" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 6752 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 6768 - hash: "6cbeb42ae5aa75638fedcaf38d25370a" - } - Frame { - msec: 6784 - hash: "fe3b287b14cbfbca4e19a2de979e9e16" - } - Frame { - msec: 6800 - hash: "69650da29b84b8009c30de516fb9b623" - } - Frame { - msec: 6816 - hash: "5cbcaf1e6916aa635e31ac4219e387f7" - } - Frame { - msec: 6832 - hash: "acb7f98da26b70bebe20336c51449318" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 6848 - hash: "8588b82fadca8ea18d4cc268508119e0" - } - Frame { - msec: 6864 - hash: "e2cf9055220b1c8126423df30e3607ed" - } - Frame { - msec: 6880 - hash: "d06e77ff2044ba3f6fc1664af5720a0a" - } - Frame { - msec: 6896 - hash: "b931ef84ecc38676d602638081b1f126" - } - Frame { - msec: 6912 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6928 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6944 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6960 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6976 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6992 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7008 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7024 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7040 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7056 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7072 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7088 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7104 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7120 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7136 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7152 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7168 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7184 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7200 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7216 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7232 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7248 - hash: "d30ed063d99d02f6d8302847e83d60a1" - } - Frame { - msec: 7264 - hash: "30b128c6248cb35ee4c55e1c2129a19c" - } - Frame { - msec: 7280 - hash: "1ae71ef5b1006f637bd8df0769af65a6" - } - Frame { - msec: 7296 - hash: "6bd6f0c35aeede01d1a8e42c81cd6fb8" - } - Frame { - msec: 7312 - hash: "ca90dcb70d416616dcae2df84956cff1" - } - Frame { - msec: 7328 - hash: "a33bc4f7c40fa3eb36803c20222d75f6" - } - Frame { - msec: 7344 - hash: "12430a710362b47fef8dfc022b789e07" - } - Frame { - msec: 7360 - hash: "a18abef207f5f6bbd260ca98cce91380" - } - Frame { - msec: 7376 - hash: "e853ea2eba5e3baeba0f43e57d2415ba" - } - Frame { - msec: 7392 - hash: "294cff3e6d3a1101f76d2ecce14e11a1" - } - Frame { - msec: 7408 - hash: "c38ee992a1b435c12a66e4d49d78c2ed" - } - Frame { - msec: 7424 - hash: "54775aed3a6283c1fa330d65de5bc70c" - } - Frame { - msec: 7440 - hash: "eba9a696d9ab1e8da7c6c59787d3f311" - } - Frame { - msec: 7456 - hash: "2048cd8abb56be34f9e475d7f92b6153" - } - Frame { - msec: 7472 - hash: "d56b4a04f1d2835a0852ea20e8e2f451" - } - Frame { - msec: 7488 - hash: "f5afb489b7aee20b45c9f5eb5a9eb8d7" - } - Frame { - msec: 7504 - hash: "26f25129f9d2c73a7a5168c73e299919" - } - Frame { - msec: 7520 - hash: "6f23e3c4ec738903b5011cbee1141b00" - } - Frame { - msec: 7536 - hash: "e10d4bf08980ea7d079a2f359ee62b95" - } - Frame { - msec: 7552 - hash: "eb0a656e8feabcb131e59c66b64f7d09" - } - Frame { - msec: 7568 - hash: "94cfa3f71326f6e188fee32c0970de30" - } - Frame { - msec: 7584 - hash: "8bc4274a3f0498d600405409f69c1d16" - } - Frame { - msec: 7600 - hash: "995cb12e1d07488ae4139d2c67552dc6" - } - Frame { - msec: 7616 - hash: "2d9d9f3fb43e2280b0dea054dc8d7dd4" - } - Frame { - msec: 7632 - hash: "dd68eb502e1fe114a24d902b50a5dff9" - } - Frame { - msec: 7648 - hash: "b2738b11e34c5d7840e9aacc443cc1f0" - } - Frame { - msec: 7664 - hash: "de148713c156476ca7c4021633596782" - } - Frame { - msec: 7680 - hash: "0e273dbaaab76058b6e04a830bbd80d3" - } - Frame { - msec: 7696 - image: "gridview2.8.png" - } - Frame { - msec: 7712 - hash: "5dcad019a1c0eaaab381a7602e1914ff" - } - Frame { - msec: 7728 - hash: "e046dc0869cc629de5037214af1d58f8" - } - Frame { - msec: 7744 - hash: "affc71688994d6b6763e78305ba1d6b3" - } - Frame { - msec: 7760 - hash: "d5ec397fdf17bf864e4575543c535dad" - } - Frame { - msec: 7776 - hash: "b37cb5816c2077b8018f78985b91fdeb" - } - Frame { - msec: 7792 - hash: "a3060fa79b1f7f0d9e61ad8c69be19ed" - } - Frame { - msec: 7808 - hash: "236dcbaf20e11335efc64b2ce87b551d" - } - Frame { - msec: 7824 - hash: "09af1c488b56dc3c7c3893b024f6d53f" - } - Frame { - msec: 7840 - hash: "ef2bf66ac68002102476d3cfe4501cb7" - } - Frame { - msec: 7856 - hash: "165c02de63604aa118d9f8995e6b45af" - } - Frame { - msec: 7872 - hash: "fb790a0e4bc20afe24639dadf50a03c0" - } - Frame { - msec: 7888 - hash: "881298b629aeaeb23fa9e9eb446912d2" - } - Frame { - msec: 7904 - hash: "2175ff436c42616147b2e71b91e34060" - } - Frame { - msec: 7920 - hash: "85bc0cd40ddc08814a2c3677e7e43bcf" - } - Frame { - msec: 7936 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 7952 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 7968 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 7984 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8000 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8016 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8032 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8048 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8064 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8080 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8096 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8112 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8128 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8144 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8160 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8176 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8192 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8208 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8224 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8240 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8256 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8272 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8288 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8304 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8320 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8336 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8352 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8368 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8384 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8400 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8416 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8432 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8448 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8464 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8480 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8496 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8512 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8528 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8544 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8560 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8576 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8592 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8608 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8624 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8640 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8656 - image: "gridview2.9.png" - } - Frame { - msec: 8672 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8688 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8704 - hash: "33d81c39d16c6a326012499796e50e03" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8720 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8736 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8752 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8768 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8784 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8800 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8816 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8832 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8848 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8864 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8880 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8896 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8912 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8928 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8944 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8960 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8976 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8992 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 9008 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 9024 - hash: "33d81c39d16c6a326012499796e50e03" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml deleted file mode 100644 index 95556f1..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml +++ /dev/null @@ -1,51 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - width: 300; height: 400; color: "black" - - ListModel { - id: appModel - ListElement { lColor: "red" } - ListElement { lColor: "yellow" } - ListElement { lColor: "green" } - ListElement { lColor: "blue" } - ListElement { lColor: "purple" } - ListElement { lColor: "orange" } - ListElement { lColor: "pink" } - ListElement { lColor: "brown" } - ListElement { lColor: "gray" } - ListElement { lColor: "red" } - ListElement { lColor: "yellow" } - ListElement { lColor: "green" } - ListElement { lColor: "blue" } - ListElement { lColor: "purple" } - ListElement { lColor: "orange" } - ListElement { lColor: "pink" } - ListElement { lColor: "brown" } - ListElement { lColor: "gray" } - } - - Component { - id: appDelegate - Item { - width: 100; height: 100 - Rectangle { - color: lColor; x: 4; y: 4 - width: 92; height: 92 - } - } - } - - Component { - id: appHighlight - Rectangle { width: 100; height: 100; color: "white"; z: 0 } - } - - GridView { - anchors.fill: parent - cellWidth: 100; cellHeight: 100; cacheBuffer: 200 - model: appModel; delegate: appDelegate - highlight: appHighlight - focus: true - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml deleted file mode 100644 index 0dd9d0e..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml +++ /dev/null @@ -1,62 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - property string skip: "Last bit is wrong (rest is probably right, just bitrot). QTBUG-14838" - width: 300; height: 400; color: "black" - - ListModel { - id: appModel - ListElement { lColor: "red" } - ListElement { lColor: "yellow" } - ListElement { lColor: "green" } - ListElement { lColor: "blue" } - ListElement { lColor: "purple" } - ListElement { lColor: "orange" } - ListElement { lColor: "pink" } - ListElement { lColor: "brown" } - ListElement { lColor: "gray" } - ListElement { lColor: "red" } - ListElement { lColor: "yellow" } - ListElement { lColor: "green" } - ListElement { lColor: "blue" } - ListElement { lColor: "purple" } - ListElement { lColor: "orange" } - ListElement { lColor: "pink" } - ListElement { lColor: "brown" } - ListElement { lColor: "gray" } - ListElement { lColor: "red" } - ListElement { lColor: "yellow" } - ListElement { lColor: "green" } - } - - Component { - id: appDelegate - Item { - width: 100; height: 100 - Rectangle { - color: lColor; x: 4; y: 4 - width: 92; height: 92 - } - } - } - - GridView { - id: gridView; anchors.fill: parent - cellWidth: 100; cellHeight: 100; cacheBuffer: 200 - model: appModel; delegate: appDelegate; focus: true - keyNavigationWraps: true - - flickableData: [//Presumably the different way of doing highlight tests more things - Rectangle { - color: "transparent"; border.color: "white"; border.width: 8; z: 3000 - height: 100; width: 100 - x: gridView.currentItem.x - y: gridView.currentItem.y - - Behavior on x { SmoothedAnimation { velocity: 500 } } - Behavior on y { SmoothedAnimation { velocity: 500 } } - } - ] - } - -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.0.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.0.png deleted file mode 100644 index dd992cc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.1.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.1.png deleted file mode 100644 index dd992cc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.2.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.2.png deleted file mode 100644 index 887d395..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.3.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.3.png deleted file mode 100644 index 055258d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.4.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.4.png deleted file mode 100644 index dd992cc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.5.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.5.png deleted file mode 100644 index d3d35af..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.6.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.6.png deleted file mode 100644 index 2028c96..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.7.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.7.png deleted file mode 100644 index a667cf9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.8.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.8.png deleted file mode 100644 index 2f0967d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml deleted file mode 100644 index 001861d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/drag.qml +++ /dev/null @@ -1,5207 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "drag.0.png" - } - Frame { - msec: 32 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 48 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 64 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 80 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 96 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 112 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 128 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 144 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 160 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 176 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 192 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 208 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 224 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 240 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 256 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 272 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 288 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 304 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 320 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 336 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 352 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 368 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 384 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 400 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 416 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 432 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 448 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 464 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 480 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 496 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 512 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 528 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 544 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 560 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 576 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 592 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 608 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 624 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 640 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 656 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 672 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 688 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 704 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 720 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 736 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 752 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 768 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 784 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 800 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 816 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 832 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 848 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 864 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 880 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 896 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 912 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 928 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 944 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 960 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 976 - image: "drag.1.png" - } - Frame { - msec: 992 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1008 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1024 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1040 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1056 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1072 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1088 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1104 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1120 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1136 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1152 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1168 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1184 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1200 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1216 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1232 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1248 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1264 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1280 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1296 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1312 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1328 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1344 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1360 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1376 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1392 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1408 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1424 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1440 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1456 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1472 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1488 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1504 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1520 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1536 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1552 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1568 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1584 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1600 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1616 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1632 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1648 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1664 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1680 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1696 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1712 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1728 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1744 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1760 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1776 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1792 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 16; y: 54 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1808 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 1824 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 55 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1840 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1856 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 18; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1872 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 19; y: 54 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1888 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 22; y: 49 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 29; y: 42 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1904 - hash: "a6c6df34bb552249393ba208ad327691" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 37; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1920 - hash: "a611a57ed2bdf4eaa5e13612346ecce7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 27 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1936 - image: "drag.2.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 15 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1952 - hash: "6170ab3a7e51278ac4462b89fe7781b4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 87; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "32866f0aa5b13b3ab68661f49336439e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 5 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1984 - hash: "26dc17c16eed46d37932cfe48d182b62" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 1 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 121; y: -3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2000 - hash: "ba70936fb44396fac184cc7ba0e94a90" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: -6 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2016 - hash: "bae13291d4f031c34d80428d83367ede" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: -8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2032 - hash: "0a2fbfdc27bb6662553f637f1c325475" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: -9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2048 - hash: "cdab85736dfcc4424d42e0e96094eded" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2064 - hash: "76d51ce9ad69560d983d8d86d50f7bd0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2080 - hash: "b5ada9e80f7f894aa141d5e3cfa5d69e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2096 - hash: "446d35fc7b9c0fe4bf0bfe0182f994f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: -5 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2112 - hash: "cced849d314835d43ebd93bcfe396c12" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: -3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2128 - hash: "09696d700944c373f82d7c6f75d51c51" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 0 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2144 - hash: "af56586db93c49637c9bfbb17cac9001" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 5 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2160 - hash: "66fc1b30b4037aad3975036faccbb7a7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2176 - hash: "3f443d9c89d6ba1b36ca9635bc32de1a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2192 - hash: "df47db8cc7bb466b298749a6449d3d70" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 15 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 234; y: 18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 241; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2208 - hash: "c1146fdc0e628d050442606096e52b10" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 252; y: 23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2224 - hash: "22f44c43f300fd7ff2b4d87d93756178" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 272; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2240 - hash: "bf11dc9a9679692abde5d116a169eecf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 299; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 329; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2256 - hash: "e63f1960f342639ac412010ffcefb049" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 360; y: 57 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2272 - hash: "ae0228419ec9358025c3026a39abd671" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 392; y: 65 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2288 - hash: "6d2272e2bea21c280100ed8de5b95d4e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 422; y: 72 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 451; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2304 - hash: "1628c6fa5feabd90924452bc9f55054d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 476; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2320 - hash: "f696791eb0a317b0efb69407616bec9f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 497; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2336 - hash: "f696791eb0a317b0efb69407616bec9f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 513; y: 77 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 527; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2352 - hash: "1628c6fa5feabd90924452bc9f55054d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 538; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2368 - hash: "a5d3d247e22a2852a60fe07ab40345a5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 548; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2384 - hash: "a453fb6bcdd87f819782d8d8c46b56ee" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 556; y: 74 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 563; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2400 - hash: "a5d3d247e22a2852a60fe07ab40345a5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 570; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2416 - hash: "1628c6fa5feabd90924452bc9f55054d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 576; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2432 - hash: "f696791eb0a317b0efb69407616bec9f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 582; y: 78 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 585; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2448 - hash: "8f061986df633c21dcad767ee857988c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 589; y: 81 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2464 - hash: "2cc110a6fb800171d7d752693ede1e4e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 592; y: 82 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2480 - hash: "319fc3053e02a8b161f33a79d9839bb1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 595; y: 85 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 597; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2496 - hash: "42915c8866746316cf1083a2d55410fb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 601; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2512 - hash: "5df34b3ae292de9a9cd8ff09347e7bd4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 606; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2528 - hash: "1f9bc3c955983ea85f568797cb4f7365" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 609; y: 113 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 613; y: 124 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2544 - hash: "3f156dc64a12c672874acf5456ef4a31" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 618; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2560 - hash: "d4d9fe5b5f138e06a87039ebf8695d03" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 619; y: 142 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2576 - hash: "383fe813021ee2791930200b2f88a802" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 620; y: 148 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 622; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2592 - hash: "a235544bd5e791dfa329bd0b87358bfa" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 625; y: 163 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2608 - hash: "a87497cf47db3209610b532efe7eb380" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 629; y: 174 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2624 - hash: "abe69b4e4b7508028226f9b73c38058a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 634; y: 194 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 642; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2640 - hash: "51c72fa2fa4c8765d882fe65dc0d697d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 649; y: 260 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2656 - hash: "79da7ed21bd6fc16b7264d4403e763cc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 655; y: 291 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2672 - hash: "b2828b6340a57fa45416469b23b7cef0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 658; y: 316 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 659; y: 340 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2688 - hash: "64a5351f2d746b338c34c7ea9ba6e1fe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 660; y: 370 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2704 - hash: "9eedb7a6875210084fd2ec95d3505512" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 661; y: 408 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2720 - hash: "b88eb8fa8a0cfc263dc7b655ddc29db0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 661; y: 448 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2736 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 660; y: 487 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 659; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2752 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 658; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2768 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 658; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2784 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 658; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 658; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2800 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 657; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2816 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 656; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2832 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 654; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 652; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2848 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 651; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2864 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 650; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2880 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 650; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 648; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2896 - image: "drag.3.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 647; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2912 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 646; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2928 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 645; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 644; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2944 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 643; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2960 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 642; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2976 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 641; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 640; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2992 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 640; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3008 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 639; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3024 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 639; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 638; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3040 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 636; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3056 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 625; y: 505 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3072 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 611; y: 505 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3088 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 582; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 546; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3104 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 505; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3120 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 460; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3136 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 408; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 354; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3152 - hash: "c2997fdde10812f02791bfed5f158ac3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 300; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3168 - hash: "23a6dfbd09e5b44d04f252cedaeb68af" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 250; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3184 - hash: "f74422989711f86a0840ffc98e8a29e9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3200 - hash: "fa922246d254a7c46d2d1d6ec91a2b02" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3216 - hash: "ef216cb8c2bf58db7d58bd8a2e4eb38d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3232 - hash: "a383228d22e64b8a7758c959288eaca8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3248 - hash: "636ca2a8e91c49ef6c8b1c93b830f345" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 36; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3264 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -1; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3280 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3296 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3312 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3328 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3344 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3360 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 505 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3392 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 504 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 504 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3408 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 505 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3424 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3440 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3456 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3472 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3488 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3504 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3520 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3536 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3552 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Frame { - msec: 3568 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3584 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3600 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3616 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Frame { - msec: 3632 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 491 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3648 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 428 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3664 - hash: "9fa1e3686467f28cb013fe093dab388c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 342 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3680 - hash: "7ef97d10862f80d53e0b3b4446661deb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 264 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 203 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3696 - hash: "c679866b3965b7b5f48b843d6efccf42" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3712 - hash: "de4bd9ad3cbb9bb19bf75f871b044072" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3728 - hash: "c5349bbddc03edd5ee3537e2a738f1ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 136 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3744 - hash: "bcbe9ec2687a6030385f08d3dc17becf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "3ad767f63eaccb9e64a9f704900f2530" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 129 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3776 - hash: "421a1ffde15fda0e7846bc095ed2ea37" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 128 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 128 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3792 - hash: "55c260da304a6b1119af83f6a4efcff0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 123 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3808 - hash: "f231cc521db801b4ec71248812e12db8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3824 - hash: "b489b6b604e7f7699cac9e42d0725323" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 68 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3840 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 13 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3856 - image: "drag.4.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 2 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3872 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -6 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3888 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3904 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3920 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -65 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3936 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3952 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3968 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3984 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4000 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4016 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4032 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4048 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4064 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4080 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4096 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4112 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4128 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4144 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: -78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4160 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -3; y: -84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4176 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -2; y: -105 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 1; y: -151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4192 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4208 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4224 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4240 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4256 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4272 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4288 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4304 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4320 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4336 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4352 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4368 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Frame { - msec: 4384 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 3; y: -151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4400 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 4; y: -149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4416 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 5; y: -147 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4432 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 5; y: -143 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 6; y: -138 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4448 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 7; y: -130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4464 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 9; y: -117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4480 - hash: "668cc6d9d699b947a7c0f3ff4b26853f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 13; y: -94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 20; y: -63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4496 - hash: "b1b54f7bf8ab9cf98d96f9b34192434b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 29; y: -24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4512 - hash: "a6c6df34bb552249393ba208ad327691" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 39; y: 15 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4528 - hash: "a05eb803b1f1f3574a2f2e08fe37bd35" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 50 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4544 - hash: "3c2f3db46673c2640a26832900b609cb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 65; y: 91 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4560 - hash: "d0539a9791874f48634bb3cb9f78d9db" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4576 - hash: "f2d862a0b81e2578799d64aef2e6bddc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 77; y: 112 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4592 - hash: "295ef097845e30064c4d810a7718896c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 86; y: 128 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4608 - hash: "22a4a17d82ac402c0e8372861609ff1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 92; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4624 - hash: "a70e81b1435afd77b9079c58685ef9d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 98; y: 143 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4640 - hash: "d66fefd68fcd96834548c18797eee4bd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 159 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4656 - hash: "fcc435dc6f2643cd21a7cfac078880af" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 166 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4672 - hash: "736edfcf33245d46aaea199634896c17" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 123; y: 173 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 129; y: 183 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4688 - hash: "7b7ab312d0c6f4bfc87a2ae467324f4e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 197 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4704 - hash: "d78ce756fc27055eeee15001419b7fb5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 215 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "4f15a726939d7f489d1fe58ebb5bcd0a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 235 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 255 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4736 - hash: "72184d71fd2fdc6786a43045db0be68f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 274 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4752 - hash: "3b3f3f34218bf238f310412cb8c4968d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 293 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4768 - hash: "24c00a7154471431d43b1db957ad6424" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 316 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 343 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4784 - hash: "30081a33ab007ff2c7ba6cc293a5aec3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 237; y: 371 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4800 - hash: "c6d398d42d968763c7597728e86304f2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 253; y: 396 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4816 - image: "drag.5.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 419 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 276; y: 429 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 284; y: 438 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4832 - hash: "101c007d0e2cf82331ba1cab4880e8a2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 291; y: 448 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4848 - hash: "72e46df7427420c5e942a97831723d3f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 307; y: 468 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4864 - hash: "4b7a009b46982a1e9e31250d7ebf0a20" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 323; y: 492 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 341; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4880 - hash: "a3ba70933b6452fad0cdc4192e04be23" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 359; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4896 - hash: "c2ee16182222b403f914eb5550ac6f91" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 378; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4912 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 397; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 416; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4928 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 432; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4944 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 445; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4960 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 456; y: 506 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 466; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4976 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 475; y: 506 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4992 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 482; y: 505 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5008 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 488; y: 504 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 492; y: 503 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5024 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 496; y: 503 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5040 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 500; y: 502 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5056 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 507; y: 501 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5072 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 512; y: 500 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 516; y: 498 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5088 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 494 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5104 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 525; y: 486 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5120 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 532; y: 472 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 542; y: 445 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5136 - hash: "9356ce797d12ae076af947cd0e658551" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 553; y: 414 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5152 - hash: "76a8d3b8465f08fdc4586c7766667eff" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 563; y: 389 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5168 - hash: "569e56ba99776d03dd3140e53bc77f56" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 569; y: 373 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 573; y: 363 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5184 - hash: "7139c72a2458685006da79d9cf11bc44" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 577; y: 354 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5200 - hash: "a83d5ef213edec4c8f938ab04afb5c4f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 580; y: 344 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5216 - hash: "5533602bc8a473c162966142d4bddebd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 584; y: 321 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 586; y: 301 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5232 - hash: "7a79d6e31874428233e9c141d70522fd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 588; y: 264 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5248 - hash: "b14f4daeb25cd71baae36f4cec111813" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 591; y: 238 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5264 - hash: "e2b2513d2918ffb85bab5fff5a8be644" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 592; y: 225 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 593; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5280 - hash: "af0cbb3423491917db1fdaa8350d48b0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 594; y: 209 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "b9c107f0a13ad37ae05b4d5f9e5f5442" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 594; y: 200 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "0bbc0c7a4a40ee6b19565c04c23b565d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 594; y: 182 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 593; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5328 - hash: "49494e8526a1417c151c7cac7099b9e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 590; y: 107 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5344 - hash: "5e0839c4414cc8ddc5241c658fd3bf88" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 585; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5360 - hash: "8f061986df633c21dcad767ee857988c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 582; y: 67 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5376 - hash: "d78c0a4fa0ccad407a565fab3a5c95b9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 579; y: 61 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 576; y: 57 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5392 - hash: "cee6816f84911bc2262afe28d8996719" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 573; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5408 - hash: "2cc6cd514ef7299dd60bf1a735b81d36" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 569; y: 51 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5424 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 564; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 557; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5440 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 548; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5456 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 540; y: 14 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 532; y: 5 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5472 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 524; y: -1 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5488 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: -5 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5504 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 510; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5520 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 501; y: -14 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 492; y: -18 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5536 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 483; y: -21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5552 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 476; y: -21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5568 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 470; y: -19 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 464; y: -15 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5584 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 458; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5600 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 452; y: -3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5616 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 446; y: 4 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 439; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5632 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 432; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5648 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 424; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5664 - hash: "68c40f3551d7d10e61c5ffbb6948c7e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 413; y: 42 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 400; y: 59 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5680 - hash: "9bc8a652f43c0e3cae9492f5dff624e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 392; y: 70 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 385; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5696 - hash: "5465128afe72d9618cd9abc47f4ce72f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 378; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5712 - hash: "ad739c2028caf8f89d8ae04d509c7854" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 366; y: 102 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 353; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5728 - hash: "97cd37f639a7bea76a2f68774c0753db" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 339; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5744 - hash: "d24fc8a57dd34e6ddb726426247ec219" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 324; y: 140 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5760 - hash: "f0454d80a51c5f2226bd45aba58dc1e9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 308; y: 158 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 288; y: 181 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - image: "drag.6.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5792 - hash: "73623f4a857fd4d5150c2eeef1341540" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 243; y: 237 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5808 - hash: "076c4b60d9ec197950ade51e3f1be791" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 265 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 291 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5824 - hash: "22b7d7765c634763fa86912ea262efca" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 314 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "1267c017931bda0b88b4672f46d499e0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 147; y: 331 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "b6a545e4c14b809f4ebcffbcb59a8e4f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 344 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 121; y: 354 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "b1085cb508d4613c76e99bc879c62cbf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 363 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "365fd1260c2109e6d5bd0a97ce3a7e4e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 370 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "3a7d001313b23cbbb7f3d842ab40f41b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 86; y: 377 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 385 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5920 - hash: "c5bda48bb2eaee54d6d8416592830327" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 394 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5936 - hash: "5d0fd6d8a6ced4f197fe3b09e7e9155b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 29; y: 402 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5952 - hash: "79e2825f98644c061ae5216ae1823e4b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 410 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 6; y: 417 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5968 - hash: "22a3978f2f3a0cde67f459527af3b3f2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 0; y: 422 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 427 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "1511bec94911dd272f78a726e15bf76e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 432 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "0f892f7e570cdc703e492248c9f54b6c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 439 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 447 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 452 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 457 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 459 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 464 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 465 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 467 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 468 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 468 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 468 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 468 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 468 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 469 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 470 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 470 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Frame { - msec: 6208 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 470 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6224 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -3; y: 470 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -3; y: 470 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6240 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -2; y: 470 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6256 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -1; y: 470 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -1; y: 468 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 0; y: 467 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6288 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 0; y: 464 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6304 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 0; y: 458 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6320 - hash: "ec34aa6937d2c081bdf11660a5eb461a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -3; y: 441 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 408 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6336 - hash: "58413f9b01f1e0b49519d8b6a3011607" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 366 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6352 - hash: "b3992d2f9c1383c710ee325a94117a8b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 327 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6368 - hash: "bd415044fcf6218d8184cb0206105e65" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 300 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 288 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6384 - hash: "e7296140fe8b28bed77e95e588c0e463" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 280 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6400 - hash: "9ff532223ccccd663809187465e478c2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 276 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6416 - hash: "4de9ca75503db05df5d8274d75c202e5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 271 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 259 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6432 - hash: "a83b5bc409207e986055081b4ed3faa6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6448 - hash: "7fdbd00dd3553241f30fd6568a8ab646" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 190 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6464 - hash: "5ebaa67eaadc1ede8c46964fa1dffff1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -4; y: 169 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -2; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6480 - hash: "de4bd9ad3cbb9bb19bf75f871b044072" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 1; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6496 - hash: "9d762cd4dd6508cf8b54c47b76f4ef37" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 5; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6512 - hash: "bdf17c384f4f824a89a06b88ba17c15f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 10; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 25; y: 152 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "f279f28995785afd143726aef7673b50" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6544 - hash: "53b6b82a61d017e12afb01a728d8d856" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6560 - hash: "9a48039175cab1360a0cf5cc195e2082" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 98; y: 148 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 150 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6576 - hash: "cfc3991e30eef6c2edb66cb6060b2bde" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 123; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "737d8907f62768e623ba76866a509d1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 134; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6608 - hash: "dea2a596f7d85f29728b33d126d997e5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 158 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6624 - hash: "3969a0bbb284ab1d5efd20cf93b0422d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6640 - hash: "071ff25e49f7f16a727ff58c42ff766e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6656 - hash: "454abec991a4675763f379c256919fa7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 184; y: 173 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 177 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6672 - hash: "6de741c4e6057dc8580106155c4ac627" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 184 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "e35853e99cd205b7ccabdf632b238584" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 192 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "15a70a0196227c6bce50ed70cd6383c8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 201 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6720 - hash: "bf4b18a73b53c0a554f9bb0ac32a465d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 217 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - image: "drag.7.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6752 - hash: "ddd0f27027e23a45aef131296c781865" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 235; y: 228 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 246; y: 232 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6768 - hash: "715102a252756e5a8c4f459d808aec6a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 257; y: 235 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6784 - hash: "42b9c1b894247ddbd85f4a4aca5695f1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 267; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6800 - hash: "b67b4bdd412ed5160901803c60c6f19e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 275; y: 239 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 280; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6816 - hash: "3490cc41c2b1f9301c209bdb8f052add" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 281; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6832 - hash: "df32868d564ebbc41c359409b5a69e7d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 282; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6848 - hash: "b9cb430a6f677e67c87322e0aff53fb1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 282; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6864 - hash: "b9cb430a6f677e67c87322e0aff53fb1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 281; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "df32868d564ebbc41c359409b5a69e7d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 280; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6896 - hash: "3490cc41c2b1f9301c209bdb8f052add" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 279; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6912 - hash: "e23a88f49a73cd2a9326095dd380ab55" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 277; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6928 - hash: "ffffc1aed27fe77c2fe5c035eab706a9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 277; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6944 - hash: "ffffc1aed27fe77c2fe5c035eab706a9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 276; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6960 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 276; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6976 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 6992 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 276; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7008 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7024 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7040 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7056 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7072 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7088 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7104 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7120 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7136 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7152 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7168 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7184 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7200 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7216 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7232 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7248 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7264 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7280 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7296 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7312 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7328 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7344 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7360 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7376 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7392 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7408 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7424 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7440 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7456 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7472 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7488 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7504 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7520 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7536 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7552 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7568 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7584 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7600 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7616 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7632 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7648 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7664 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7680 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7696 - image: "drag.8.png" - } - Frame { - msec: 7712 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7728 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7744 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7760 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7776 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7792 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7808 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7824 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7840 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7856 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7872 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7888 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7904 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7920 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7936 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7952 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7968 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 7984 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } - Frame { - msec: 8000 - hash: "2c1ce07ab6ce0072f6cb205f1e5297e0" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.0.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.0.png deleted file mode 100644 index 87305b3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.1.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.1.png deleted file mode 100644 index 87305b3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.10.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.10.png deleted file mode 100644 index 87305b3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.11.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.11.png deleted file mode 100644 index b268c5c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.12.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.12.png deleted file mode 100644 index 3926b9b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.13.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.13.png deleted file mode 100644 index 6956195..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.13.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.14.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.14.png deleted file mode 100644 index 87305b3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.14.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.2.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.2.png deleted file mode 100644 index 87305b3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.3.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.3.png deleted file mode 100644 index 1d12691..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.4.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.4.png deleted file mode 100644 index 1d12691..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.5.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.5.png deleted file mode 100644 index 7f76076..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.6.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.6.png deleted file mode 100644 index 02c6af0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.7.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.7.png deleted file mode 100644 index 15f0ec5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.8.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.8.png deleted file mode 100644 index 15f0ec5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.9.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.9.png deleted file mode 100644 index 71bf9cd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml deleted file mode 100644 index c862678..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-flickable.qml +++ /dev/null @@ -1,5127 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "mousearea-flickable.0.png" - } - Frame { - msec: 32 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 48 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 64 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 80 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 96 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 112 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 128 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 144 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 160 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 176 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 192 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 208 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 224 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 240 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 256 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 272 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 288 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 304 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 320 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 336 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 352 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 368 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 384 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 400 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 416 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 432 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 448 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 464 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 480 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 496 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 512 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 528 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 544 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 560 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 576 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 592 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 608 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 624 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 640 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 656 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 672 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 688 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 704 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 720 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 736 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 752 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 768 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 784 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 800 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 816 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 832 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 848 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 864 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 880 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 896 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 912 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 928 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 944 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 960 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 976 - image: "mousearea-flickable.1.png" - } - Frame { - msec: 992 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1008 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1024 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1040 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1056 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1072 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1088 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1104 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1120 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1136 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1152 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1168 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1184 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1200 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1216 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1232 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1248 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1264 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1280 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1296 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1312 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1328 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1344 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1360 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1376 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1392 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1408 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1424 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1440 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1456 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1472 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1488 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1504 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1520 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1536 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1552 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1568 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1584 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1600 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1616 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1632 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1648 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1664 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1680 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1696 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1712 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1728 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1744 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1760 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1776 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1792 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1808 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1824 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1840 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1856 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1872 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1888 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1904 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1920 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1936 - image: "mousearea-flickable.2.png" - } - Frame { - msec: 1952 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1968 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 1984 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2000 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2016 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2032 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2048 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2064 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2080 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2096 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2112 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2128 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2144 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2160 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2176 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2192 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2208 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2224 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2240 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2256 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2272 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2288 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2304 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2320 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2336 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2352 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2368 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2384 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2400 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2416 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2432 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2448 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2464 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2480 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2496 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2512 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2528 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2544 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2560 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2576 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2592 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 2608 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 188; y: 41 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2624 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2640 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2656 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2672 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2688 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2704 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2720 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2736 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2752 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2768 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2784 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2800 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2816 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2832 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2848 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2864 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2880 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2896 - image: "mousearea-flickable.3.png" - } - Frame { - msec: 2912 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2928 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2944 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2960 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2976 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 2992 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3008 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3024 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3040 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3056 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3072 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3088 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3104 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3120 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3136 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3152 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3168 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3184 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3200 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3216 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3232 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3248 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3264 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3280 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3296 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3312 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3328 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3344 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3360 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3376 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3392 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3408 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3424 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3440 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3456 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3472 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3488 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3504 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3520 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3536 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3552 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3568 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3584 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3600 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3616 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3632 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3648 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3664 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3680 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3696 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3712 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3728 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3744 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3760 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3776 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3792 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3808 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3824 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3840 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3856 - image: "mousearea-flickable.4.png" - } - Frame { - msec: 3872 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3888 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3904 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3920 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3936 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3952 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3968 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 3984 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4000 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4016 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4032 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4048 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4064 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4080 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4096 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4112 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4128 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4144 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4160 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4176 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4192 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4208 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4224 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4240 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4256 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4272 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4288 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4304 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4320 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4336 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4352 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4368 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4384 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4400 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4416 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4432 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4448 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4464 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4480 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4496 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Frame { - msec: 4512 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 42 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4528 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4544 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 47 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4560 - hash: "4a60ab820ca66548384b2257b21de8ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 50 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4576 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 51 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 53 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4592 - hash: "9f9f85d5f879b0e52ebc751d6668cfb8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 54 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4608 - hash: "a569789b082296415321ba11c859abe5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 57 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 59 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4624 - hash: "7a5f69a1eecb5de0fc2295cd287eb449" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 61 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 62 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4640 - hash: "70e522f64236dfa4e1613ffc29b4b23e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 66 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4656 - hash: "11120d6de575ffa639b6abb3af4afef7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 68 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4672 - hash: "ab4c936a81299adf080f3b14f7e6be49" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 195; y: 72 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 195; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4688 - hash: "c29ab366ba3f11de6452949c11310b4a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 77 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4704 - hash: "34ef0279e3731447f1df97784b47648a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 82 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 197; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "84df34cd981e0465aaaae47881de6c3b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 197; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 197; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4736 - hash: "837deeb2a92648d830acf29e829ebb53" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 90 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4752 - hash: "572cb62d69ccb973ea18d3b0eaff571b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4768 - hash: "3d75735eefbf95f37e2a8605b9167ba1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4784 - hash: "c37507a29e3a6d80446ad68f2d92f266" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4800 - hash: "b66571ae47bf129be88dc66785a81a7d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4816 - image: "mousearea-flickable.5.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 113 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4832 - hash: "363eca81f97f20f14e8d480f83d2bc7d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4848 - hash: "72e75cfa62993593303b25cbff4af0e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4864 - hash: "cc6619c7cd6e4e274df4729aad6cca46" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 133 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 135 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4880 - hash: "0b16e524cd5253d07aa9b5855967fa71" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4896 - hash: "091d1ad7aba4b662cba98214c98a4707" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 149 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 152 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4912 - hash: "f334bfcc3af89bf1405762a215c54ea6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4928 - hash: "7b41d651ad46341859d0188db341ae10" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 164 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 166 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4944 - hash: "95b57cd3dac3bce56674f2c4143f42d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4960 - hash: "1709dda08ce7494ff6d082cc5d93f0d2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 175 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 177 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4976 - hash: "390105f21526e1f8fda15666631578a1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 180 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 182 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4992 - hash: "ee40862a59f14667c89fa62f380c10fb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 187 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5008 - hash: "6d6cec95a6a2445d88b015ff76af032e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 189 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 192 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5024 - hash: "e87bf82b6a7a928a27bffd9cb2dd7604" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 194 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 196 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5040 - hash: "9a9d1e0b1d7b9291480b3ec641f354ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 198 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 200 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5056 - hash: "d1372239a681d1fccc25257b4a02fb39" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 202 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5072 - hash: "1f37473ab2fb0643e11e4a41a2ee4561" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 205 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 207 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5088 - hash: "1533c6ff17e79a47a5d3510aa85bcf8a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 209 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5104 - hash: "c5980322acf00a04efbd5e1b92aa0e98" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 211 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5120 - hash: "b81183233961b34c2a3f21a249b0fbfb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 215 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5136 - hash: "2dc2def0c748ac94d33d90d4a3610136" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 217 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5152 - hash: "9f876eb93a16c24843dd6a5acd303ab3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 218 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5168 - hash: "9f876eb93a16c24843dd6a5acd303ab3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 219 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 220 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5184 - hash: "237dd62011f4253970b946b335e3fb71" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 222 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5200 - hash: "6206ad3e633b6b1b068304caa4efe48a" - } - Frame { - msec: 5216 - hash: "6206ad3e633b6b1b068304caa4efe48a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5232 - hash: "1eb5f0e1aa014a38e6ca66ddfc2a076b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 224 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5248 - hash: "1eb5f0e1aa014a38e6ca66ddfc2a076b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5264 - hash: "d9e953d132330f8a58a190d61aec6ec3" - } - Frame { - msec: 5280 - hash: "d9e953d132330f8a58a190d61aec6ec3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 226 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "d9e953d132330f8a58a190d61aec6ec3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "c1570ad4cb688ea51818e0a09e349daa" - } - Frame { - msec: 5328 - hash: "c1570ad4cb688ea51818e0a09e349daa" - } - Frame { - msec: 5344 - hash: "c1570ad4cb688ea51818e0a09e349daa" - } - Frame { - msec: 5360 - hash: "c1570ad4cb688ea51818e0a09e349daa" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 209; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5376 - hash: "c1570ad4cb688ea51818e0a09e349daa" - } - Frame { - msec: 5392 - hash: "d9e953d132330f8a58a190d61aec6ec3" - } - Frame { - msec: 5408 - hash: "1eb5f0e1aa014a38e6ca66ddfc2a076b" - } - Frame { - msec: 5424 - hash: "9f876eb93a16c24843dd6a5acd303ab3" - } - Frame { - msec: 5440 - hash: "4cad3c6caf8d3009f63923df897c4723" - } - Frame { - msec: 5456 - hash: "79538d2f507fd6eea7ea1f990e90388a" - } - Frame { - msec: 5472 - hash: "e87bf82b6a7a928a27bffd9cb2dd7604" - } - Frame { - msec: 5488 - hash: "390105f21526e1f8fda15666631578a1" - } - Frame { - msec: 5504 - hash: "7b41d651ad46341859d0188db341ae10" - } - Frame { - msec: 5520 - hash: "091d1ad7aba4b662cba98214c98a4707" - } - Frame { - msec: 5536 - hash: "1978cda418856b542d7c5a155b74f09c" - } - Frame { - msec: 5552 - hash: "01bf03313a0229e810a24e2adbbe9775" - } - Frame { - msec: 5568 - hash: "79650397b868019909b931a32a115823" - } - Frame { - msec: 5584 - hash: "84df34cd981e0465aaaae47881de6c3b" - } - Frame { - msec: 5600 - hash: "c29ab366ba3f11de6452949c11310b4a" - } - Frame { - msec: 5616 - hash: "ab4c936a81299adf080f3b14f7e6be49" - } - Frame { - msec: 5632 - hash: "11120d6de575ffa639b6abb3af4afef7" - } - Frame { - msec: 5648 - hash: "70e522f64236dfa4e1613ffc29b4b23e" - } - Frame { - msec: 5664 - hash: "86b32befe0dada5bdce82a7dd14777ce" - } - Frame { - msec: 5680 - hash: "a569789b082296415321ba11c859abe5" - } - Frame { - msec: 5696 - hash: "9f9f85d5f879b0e52ebc751d6668cfb8" - } - Frame { - msec: 5712 - hash: "9f9f85d5f879b0e52ebc751d6668cfb8" - } - Frame { - msec: 5728 - hash: "43fc85bb3b1501f5e12f1fedaaa14c64" - } - Frame { - msec: 5744 - hash: "43fc85bb3b1501f5e12f1fedaaa14c64" - } - Frame { - msec: 5760 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 5776 - image: "mousearea-flickable.6.png" - } - Frame { - msec: 5792 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 5808 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 5824 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5840 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5856 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5872 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5888 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5904 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5920 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5936 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5952 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5968 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 5984 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6000 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6016 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6032 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6048 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6064 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6080 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6096 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6112 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6128 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6144 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6160 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6176 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6192 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6208 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6224 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6240 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6256 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6272 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6288 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6304 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6320 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6336 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6352 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 6368 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 188; y: 180 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6384 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6400 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6416 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6432 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6448 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6464 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6480 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6496 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6512 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6528 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6544 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6560 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6576 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6592 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6608 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6624 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6640 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6656 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6672 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6688 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6704 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6720 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6736 - image: "mousearea-flickable.7.png" - } - Frame { - msec: 6752 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6768 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6784 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6800 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6816 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6832 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6848 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6864 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6880 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6896 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6912 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6928 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6944 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6960 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6976 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 6992 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7008 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7024 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7040 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7056 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7072 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7088 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7104 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7120 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7136 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7152 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7168 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7184 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7200 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7216 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7232 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7248 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7264 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7280 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7296 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7312 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7328 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7344 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7360 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7376 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7392 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7408 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7424 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7440 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7456 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7472 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7488 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7504 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7520 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7536 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7552 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7568 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7584 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7600 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7616 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7632 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7648 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7664 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7680 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7696 - image: "mousearea-flickable.8.png" - } - Frame { - msec: 7712 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7728 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7744 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7760 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7776 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7792 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7808 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7824 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7840 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7856 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7872 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7888 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7904 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7920 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7936 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7952 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7968 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 7984 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8000 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8016 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8032 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8048 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8064 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8080 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8096 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8112 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8128 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8144 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8160 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8176 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Frame { - msec: 8192 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 182 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8208 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 183 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8224 - hash: "037386eb30a5e8d53a20a11258ee0f60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 185 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 186 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8240 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 194 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8256 - hash: "a569789b082296415321ba11c859abe5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 196 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 198 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8272 - hash: "7a5f69a1eecb5de0fc2295cd287eb449" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 201 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 203 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8288 - hash: "11120d6de575ffa639b6abb3af4afef7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 211 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8304 - hash: "c29ab366ba3f11de6452949c11310b4a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 219 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8320 - hash: "4e129ebba85d1f3717d09f71eb5a1a7d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8336 - hash: "837deeb2a92648d830acf29e829ebb53" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 231 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 234 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8352 - hash: "79650397b868019909b931a32a115823" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8368 - hash: "c37507a29e3a6d80446ad68f2d92f266" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 245 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8384 - hash: "01bf03313a0229e810a24e2adbbe9775" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 248 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 251 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8400 - hash: "8ffbbed46737837e55383833b96d2624" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 257 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8416 - hash: "6d49fc41fb6d74643c7613df7e417833" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 259 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 262 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8432 - hash: "806d22bc3533c729cd10dc889c36902d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 265 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 267 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8448 - hash: "cc6619c7cd6e4e274df4729aad6cca46" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 270 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 272 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8464 - hash: "929bf28dcb97e8c93dae5dbe23beecc8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 275 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 278 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8480 - hash: "0121c18897c37481fddbac57db636a60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 283 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8496 - hash: "091d1ad7aba4b662cba98214c98a4707" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 285 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 288 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8512 - hash: "ce673b66f695f5b002515a5416bbf913" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 290 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 293 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8528 - hash: "66f71641c7a607152f140428ab9621d6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 298 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8544 - hash: "29ca97cc573d3a1fde65320b61678c60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 299 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 305 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8560 - hash: "021bda841eaefa76ce5e1c97150af6f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 306 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 308 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8576 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 310 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 312 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8592 - hash: "80edf52cc9e64a29f677bc2203220ba9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 316 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8608 - hash: "390105f21526e1f8fda15666631578a1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 318 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 320 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8624 - hash: "ee40862a59f14667c89fa62f380c10fb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 322 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 324 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8640 - hash: "524db6ce45674c777d72f9206415be2f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 328 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8656 - image: "mousearea-flickable.9.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 330 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 332 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8672 - hash: "3ca9742356b6ff833fd287a95520174a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 335 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 338 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8688 - hash: "d1372239a681d1fccc25257b4a02fb39" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 341 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 347 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8704 - hash: "c5980322acf00a04efbd5e1b92aa0e98" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 350 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 356 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8720 - hash: "9f876eb93a16c24843dd6a5acd303ab3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 358 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 360 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8736 - hash: "6206ad3e633b6b1b068304caa4efe48a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 364 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8752 - hash: "d9e953d132330f8a58a190d61aec6ec3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 366 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8768 - hash: "c1570ad4cb688ea51818e0a09e349daa" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 368 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8784 - hash: "11853dcbad9d1d9a8b7d8a4e6fcca140" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 369 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8800 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8816 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8832 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8848 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8864 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8880 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8896 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8912 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8928 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8944 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8960 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 8976 - hash: "c6a81be579382f25ac583734897c2570" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 202; y: 369 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8992 - hash: "c6a81be579382f25ac583734897c2570" - } - Frame { - msec: 9008 - hash: "11853dcbad9d1d9a8b7d8a4e6fcca140" - } - Frame { - msec: 9024 - hash: "c1570ad4cb688ea51818e0a09e349daa" - } - Frame { - msec: 9040 - hash: "6206ad3e633b6b1b068304caa4efe48a" - } - Frame { - msec: 9056 - hash: "2dc2def0c748ac94d33d90d4a3610136" - } - Frame { - msec: 9072 - hash: "2010f6f0c34e59f505bbe1aab262b646" - } - Frame { - msec: 9088 - hash: "3ca9742356b6ff833fd287a95520174a" - } - Frame { - msec: 9104 - hash: "c09f4002ed9d41f62bb1aaff95723cce" - } - Frame { - msec: 9120 - hash: "95b57cd3dac3bce56674f2c4143f42d4" - } - Frame { - msec: 9136 - hash: "52d45e8dde81fef5ee93bbd5a40d4851" - } - Frame { - msec: 9152 - hash: "1978cda418856b542d7c5a155b74f09c" - } - Frame { - msec: 9168 - hash: "7d03030f5a672d87aeabefdf4f3a39a4" - } - Frame { - msec: 9184 - hash: "79650397b868019909b931a32a115823" - } - Frame { - msec: 9200 - hash: "82f54d7e254edcf499ea12a63118e8a7" - } - Frame { - msec: 9216 - hash: "8517007d5102af238935e93a3b38087f" - } - Frame { - msec: 9232 - hash: "ab4c936a81299adf080f3b14f7e6be49" - } - Frame { - msec: 9248 - hash: "11120d6de575ffa639b6abb3af4afef7" - } - Frame { - msec: 9264 - hash: "70e522f64236dfa4e1613ffc29b4b23e" - } - Frame { - msec: 9280 - hash: "86b32befe0dada5bdce82a7dd14777ce" - } - Frame { - msec: 9296 - hash: "a569789b082296415321ba11c859abe5" - } - Frame { - msec: 9312 - hash: "9f9f85d5f879b0e52ebc751d6668cfb8" - } - Frame { - msec: 9328 - hash: "9f9f85d5f879b0e52ebc751d6668cfb8" - } - Frame { - msec: 9344 - hash: "43fc85bb3b1501f5e12f1fedaaa14c64" - } - Frame { - msec: 9360 - hash: "43fc85bb3b1501f5e12f1fedaaa14c64" - } - Frame { - msec: 9376 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 9392 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 9408 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 9424 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 9440 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9456 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9472 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9488 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9504 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9520 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9536 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9552 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9568 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9584 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9600 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9616 - image: "mousearea-flickable.10.png" - } - Frame { - msec: 9632 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9648 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9664 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9680 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9696 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9712 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9728 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 9744 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 205; y: 307 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9760 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9776 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9792 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9808 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9824 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9840 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9856 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9872 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9888 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9904 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9920 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9936 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9952 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9968 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 9984 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10000 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10016 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10032 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10048 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10064 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10080 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10096 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10112 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10128 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10144 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10160 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10176 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10192 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10208 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10224 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10240 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10256 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10272 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10288 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10304 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10320 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10336 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10352 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10368 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10384 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10400 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10416 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10432 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10448 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10464 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10480 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10496 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10512 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10528 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10544 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10560 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10576 - image: "mousearea-flickable.11.png" - } - Frame { - msec: 10592 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10608 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10624 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10640 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10656 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10672 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10688 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10704 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10720 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10736 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10752 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10768 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10784 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10800 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10816 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10832 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10848 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10864 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10880 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10896 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10912 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10928 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10944 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10960 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10976 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 10992 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11008 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11024 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11040 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11056 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11072 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11088 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 308 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11104 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11120 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11136 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 309 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11152 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11168 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Frame { - msec: 11184 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 310 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11200 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 311 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11216 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 312 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11232 - hash: "90cdfe8920f115fd55cde6fdbd95e867" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 313 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 314 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11248 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 316 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 317 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11264 - hash: "43fc85bb3b1501f5e12f1fedaaa14c64" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 319 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 321 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11280 - hash: "a569789b082296415321ba11c859abe5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 324 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11296 - hash: "7a5f69a1eecb5de0fc2295cd287eb449" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 326 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 327 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11312 - hash: "70e522f64236dfa4e1613ffc29b4b23e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 330 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 332 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11328 - hash: "8e05207e0d0d9d15a61a0d21d985a83a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 335 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 337 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11344 - hash: "dc272fc8fc98d822a154da1d495d4f7e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 343 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 345 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11360 - hash: "34ef0279e3731447f1df97784b47648a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 348 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 350 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11376 - hash: "82f54d7e254edcf499ea12a63118e8a7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 352 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 355 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11392 - hash: "6ef4abc294d928381346e8ff9b012475" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 357 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 359 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11408 - hash: "7d2606d432858288dac019e0002ff85a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 361 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 363 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11424 - hash: "3d75735eefbf95f37e2a8605b9167ba1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 365 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 367 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11440 - hash: "c37507a29e3a6d80446ad68f2d92f266" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 369 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 371 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11456 - hash: "b66571ae47bf129be88dc66785a81a7d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 373 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 375 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11472 - hash: "7d03030f5a672d87aeabefdf4f3a39a4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 379 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11488 - hash: "8ffbbed46737837e55383833b96d2624" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 381 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 383 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11504 - hash: "aafb12a520eb443ee1348282f2c54e4a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 385 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 387 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11520 - hash: "72e75cfa62993593303b25cbff4af0e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 389 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 392 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11536 - image: "mousearea-flickable.12.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 394 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 396 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11552 - hash: "1451addb43319318c794333cd1cec3fd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 398 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 399 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11568 - hash: "929bf28dcb97e8c93dae5dbe23beecc8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 402 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11584 - hash: "cb49adcd2c8afe27fd5926bd622added" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 404 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 406 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11600 - hash: "d0b4215b43403c97d83250add6d2b6db" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 407 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 409 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11616 - hash: "c0a569ee064d844835dddab11eadcd33" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 410 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11632 - hash: "091d1ad7aba4b662cba98214c98a4707" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 411 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 412 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11648 - hash: "52d45e8dde81fef5ee93bbd5a40d4851" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 414 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11664 - hash: "ce673b66f695f5b002515a5416bbf913" - } - Frame { - msec: 11680 - hash: "ce673b66f695f5b002515a5416bbf913" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 415 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11696 - hash: "ce673b66f695f5b002515a5416bbf913" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 416 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11712 - hash: "f334bfcc3af89bf1405762a215c54ea6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 417 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11728 - hash: "f334bfcc3af89bf1405762a215c54ea6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 418 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11744 - hash: "ee0523fe6a33b59871ad3b311ca0cbeb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 419 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11760 - hash: "ee0523fe6a33b59871ad3b311ca0cbeb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 421 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11776 - hash: "66f71641c7a607152f140428ab9621d6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 423 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11792 - hash: "ddd3d8cb82e238358cdb16c1df7d27b7" - } - Frame { - msec: 11808 - hash: "ddd3d8cb82e238358cdb16c1df7d27b7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 424 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11824 - hash: "29ca97cc573d3a1fde65320b61678c60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 425 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11840 - hash: "29ca97cc573d3a1fde65320b61678c60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 426 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11856 - hash: "7b41d651ad46341859d0188db341ae10" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 428 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11872 - hash: "6b236864b7d95bf9f76b8afd6ba78613" - } - Frame { - msec: 11888 - hash: "6b236864b7d95bf9f76b8afd6ba78613" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 429 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11904 - hash: "6b236864b7d95bf9f76b8afd6ba78613" - } - Frame { - msec: 11920 - hash: "6b236864b7d95bf9f76b8afd6ba78613" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 430 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11936 - hash: "95b57cd3dac3bce56674f2c4143f42d4" - } - Frame { - msec: 11952 - hash: "95b57cd3dac3bce56674f2c4143f42d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 431 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11968 - hash: "95b57cd3dac3bce56674f2c4143f42d4" - } - Frame { - msec: 11984 - hash: "95b57cd3dac3bce56674f2c4143f42d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 432 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12000 - hash: "021bda841eaefa76ce5e1c97150af6f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 433 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12016 - hash: "021bda841eaefa76ce5e1c97150af6f6" - } - Frame { - msec: 12032 - hash: "021bda841eaefa76ce5e1c97150af6f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 434 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12048 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12064 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12080 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12096 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12112 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 435 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12128 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12144 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12160 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12176 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12192 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 210; y: 435 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12208 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12224 - hash: "b1ea82b880a2fc35bf1ed117d8ab21b0" - } - Frame { - msec: 12240 - hash: "021bda841eaefa76ce5e1c97150af6f6" - } - Frame { - msec: 12256 - hash: "6b236864b7d95bf9f76b8afd6ba78613" - } - Frame { - msec: 12272 - hash: "ddd3d8cb82e238358cdb16c1df7d27b7" - } - Frame { - msec: 12288 - hash: "f334bfcc3af89bf1405762a215c54ea6" - } - Frame { - msec: 12304 - hash: "091d1ad7aba4b662cba98214c98a4707" - } - Frame { - msec: 12320 - hash: "0b16e524cd5253d07aa9b5855967fa71" - } - Frame { - msec: 12336 - hash: "1978cda418856b542d7c5a155b74f09c" - } - Frame { - msec: 12352 - hash: "8ffbbed46737837e55383833b96d2624" - } - Frame { - msec: 12368 - hash: "43e50f4d4d37373e26af0a5d3cb64c4c" - } - Frame { - msec: 12384 - hash: "837deeb2a92648d830acf29e829ebb53" - } - Frame { - msec: 12400 - hash: "34ef0279e3731447f1df97784b47648a" - } - Frame { - msec: 12416 - hash: "dc272fc8fc98d822a154da1d495d4f7e" - } - Frame { - msec: 12432 - hash: "8e05207e0d0d9d15a61a0d21d985a83a" - } - Frame { - msec: 12448 - hash: "144eeb7c2a32cedb6ebba063501c9176" - } - Frame { - msec: 12464 - hash: "7a5f69a1eecb5de0fc2295cd287eb449" - } - Frame { - msec: 12480 - hash: "86b32befe0dada5bdce82a7dd14777ce" - } - Frame { - msec: 12496 - image: "mousearea-flickable.13.png" - } - Frame { - msec: 12512 - hash: "9f9f85d5f879b0e52ebc751d6668cfb8" - } - Frame { - msec: 12528 - hash: "43fc85bb3b1501f5e12f1fedaaa14c64" - } - Frame { - msec: 12544 - hash: "43fc85bb3b1501f5e12f1fedaaa14c64" - } - Frame { - msec: 12560 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 12576 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 12592 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 12608 - hash: "d75a43305e2884759ca41d7b1cbadf52" - } - Frame { - msec: 12624 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12640 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12656 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12672 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12688 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12704 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12720 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12736 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12752 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12768 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12784 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12800 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12816 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12832 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12848 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12864 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12880 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12896 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12912 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12928 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12944 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12960 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12976 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 12992 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13008 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13024 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13040 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13056 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13072 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13088 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13104 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13120 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13136 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13152 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13168 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13184 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13200 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13216 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13232 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13248 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13264 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13280 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13296 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13312 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13328 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13344 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13360 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Key { - type: 6 - key: 16777251 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 13376 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13392 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13408 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13424 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13440 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13456 - image: "mousearea-flickable.14.png" - } - Frame { - msec: 13472 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13488 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } - Frame { - msec: 13504 - hash: "cc1fd2f4c3be318052254a9b6be7a57b" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.0.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.0.png deleted file mode 100644 index e2e90d2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.1.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.1.png deleted file mode 100644 index e2e90d2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.10.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.10.png deleted file mode 100644 index 93cf54c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.11.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.11.png deleted file mode 100644 index 93cf54c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.12.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.12.png deleted file mode 100644 index 93cf54c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.13.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.13.png deleted file mode 100644 index 93cf54c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.13.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.14.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.14.png deleted file mode 100644 index 93cf54c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.14.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.15.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.15.png deleted file mode 100644 index 93cf54c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.15.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.2.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.2.png deleted file mode 100644 index 25facec..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.3.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.3.png deleted file mode 100644 index 25facec..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.4.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.4.png deleted file mode 100644 index 25facec..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.5.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.5.png deleted file mode 100644 index 630b14a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.6.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.6.png deleted file mode 100644 index 630b14a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.7.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.7.png deleted file mode 100644 index 630b14a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.8.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.8.png deleted file mode 100644 index 630b14a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.9.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.9.png deleted file mode 100644 index 93cf54c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml deleted file mode 100644 index 2daeebc..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mousearea-visual.qml +++ /dev/null @@ -1,5867 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "mousearea-visual.0.png" - } - Frame { - msec: 32 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 48 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 64 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 80 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 96 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 112 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 128 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 144 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 160 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 176 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 192 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 208 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 224 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 240 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 256 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 272 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 288 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 304 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 320 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 336 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 352 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 368 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 384 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 400 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 416 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 432 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 448 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 464 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 480 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 496 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 512 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 528 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 544 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 560 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 576 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 592 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 608 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 624 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 640 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 656 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 672 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 688 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 704 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 720 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 736 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 752 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 768 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 784 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 800 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 816 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 832 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 848 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 864 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 880 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 896 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 912 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 928 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 944 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 960 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 976 - image: "mousearea-visual.1.png" - } - Frame { - msec: 992 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1008 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1024 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1040 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1056 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1072 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1088 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1104 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1120 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1136 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1152 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1168 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1184 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1200 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1216 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1232 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1248 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1264 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1280 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1296 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1312 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1328 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1344 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1360 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1376 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1392 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1408 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1424 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1440 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1456 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1472 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1488 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1504 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1520 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1536 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1552 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1568 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1584 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1600 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1616 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1632 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1648 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Frame { - msec: 1664 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 2; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 7; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 19; y: 40 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 33; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1696 - hash: "1121bb51fc2d4c5c7ef3ae2c44794b49" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 49; y: 54 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1712 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 67; y: 56 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1728 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 78; y: 57 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 81; y: 57 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1744 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 56 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1760 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 54 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1776 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 53 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1792 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Frame { - msec: 1808 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Frame { - msec: 1824 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Frame { - msec: 1840 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Frame { - msec: 1856 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Frame { - msec: 1872 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 52 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 51 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1888 - hash: "337f0f4af627bbdf8807135ce39d5070" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 80; y: 50 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 78; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1904 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 75; y: 46 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 73; y: 45 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1920 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 71; y: 43 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 68; y: 41 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1936 - image: "mousearea-visual.2.png" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 66; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1952 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 64; y: 39 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 63; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 61; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 60; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1984 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 58; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2000 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 56; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2016 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 55; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 54; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2032 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2048 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2064 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2080 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2096 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2112 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2128 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 54; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2144 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2160 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2176 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2192 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2208 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2224 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2240 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 54; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2256 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2272 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2288 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2304 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2320 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2336 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2352 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2368 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2384 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2400 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2416 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2432 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2448 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2464 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2480 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2496 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2512 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2528 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2544 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2560 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2576 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2592 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2608 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2624 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2640 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 2 - button: 2 - buttons: 2 - x: 54; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2656 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2672 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2688 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2704 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2720 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2736 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2752 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 3 - button: 2 - buttons: 0 - x: 54; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2768 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2784 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2800 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2816 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2832 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2848 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2864 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2880 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 2896 - image: "mousearea-visual.3.png" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 55; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 58; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2912 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 67; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2928 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 75; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2944 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 99; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2960 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 107; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 113; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2976 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 119; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 124; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2992 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 128; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 131; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3008 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 132; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 132; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3024 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3040 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3056 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3072 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3088 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3104 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3120 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3136 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3152 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3168 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3184 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3200 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3216 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3232 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3248 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3264 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3280 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3296 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3312 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3328 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3344 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3360 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3376 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3392 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3408 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3424 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3440 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3456 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3472 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3488 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3504 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3520 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3536 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3552 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 133; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3568 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3584 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 133; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3600 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3616 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3632 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3648 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3664 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3680 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3696 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 133; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3712 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3728 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3744 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3760 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3776 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3792 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3808 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3824 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3840 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3856 - image: "mousearea-visual.4.png" - } - Frame { - msec: 3872 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3888 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3904 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3920 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3936 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3952 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3968 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 3984 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4000 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4016 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4032 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4048 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4064 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4080 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4096 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4112 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4128 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4144 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4160 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4176 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4192 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4208 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4224 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4240 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4256 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4272 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4288 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4304 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4320 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 2 - button: 2 - buttons: 2 - x: 133; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4336 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4352 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4368 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4384 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4400 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4416 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Frame { - msec: 4432 - hash: "73f1639b9e2164c7b974042934c0d151" - } - Mouse { - type: 3 - button: 2 - buttons: 0 - x: 133; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4448 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4464 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4480 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4496 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4512 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4528 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4544 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4560 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4576 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4592 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4608 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4624 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4640 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4656 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4672 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4688 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4704 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4720 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4736 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 133; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 136; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4752 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 142; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 148; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4768 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 155; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 161; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4784 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 166; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4800 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 168; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 170; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4816 - image: "mousearea-visual.5.png" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 171; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4832 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4848 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4864 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 4880 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 172; y: 28 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 175; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4896 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 178; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4912 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 182; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 187; y: 22 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4928 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 191; y: 22 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 195; y: 21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4944 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 200; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 206; y: 21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4960 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 211; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 215; y: 21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4976 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 218; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 221; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4992 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 224; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5008 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 225; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 226; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5024 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 227; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5040 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5056 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5072 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 228; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 229; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5088 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 231; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 232; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5104 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 233; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5120 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5136 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5152 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5168 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 233; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 234; y: 22 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5184 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 237; y: 23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5200 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 239; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 242; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5216 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 244; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 245; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5232 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5248 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5264 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5280 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5296 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5312 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5328 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5344 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5360 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5376 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5392 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5408 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5424 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5440 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5456 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5472 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5488 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5504 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5520 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5536 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5552 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5568 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5584 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5600 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5616 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5632 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5648 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5664 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5680 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5696 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5712 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5728 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5744 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5760 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5776 - image: "mousearea-visual.6.png" - } - Frame { - msec: 5792 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5808 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5824 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5840 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5872 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5888 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5904 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5920 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5936 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5952 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5968 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 5984 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6000 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6016 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6032 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6048 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6064 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6080 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6096 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6112 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6128 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6144 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6160 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6176 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6192 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6208 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6224 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6240 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6256 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6272 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6288 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6304 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6320 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6336 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6352 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6368 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6384 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6400 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6416 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6432 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6448 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6464 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6480 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6496 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6512 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6528 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6544 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6560 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6576 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6608 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6624 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6640 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6656 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6672 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6688 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6704 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6720 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6736 - image: "mousearea-visual.7.png" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6752 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6768 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6784 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6800 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6816 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6832 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6848 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6864 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6880 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6896 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6912 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6928 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6944 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6960 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6976 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 6992 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7008 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7024 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7040 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7056 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7072 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7088 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7104 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7120 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7136 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7152 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7168 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7184 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7200 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7216 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7232 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7248 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7264 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7280 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7296 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7312 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7328 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7344 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7360 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7376 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7392 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7408 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7424 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7440 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7456 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7472 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7488 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7504 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7520 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7536 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7552 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7568 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7584 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7600 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7616 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7632 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7648 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7664 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7680 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7696 - image: "mousearea-visual.8.png" - } - Frame { - msec: 7712 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7728 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7744 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7760 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7776 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7792 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7808 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7824 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7840 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7856 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7872 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7888 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7904 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7920 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7936 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7952 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7968 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 7984 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 8000 - hash: "12edb0902e4d480c9052b00edc1a0a42" - } - Frame { - msec: 8016 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8032 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8048 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8064 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8080 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8096 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8112 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8128 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8144 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8160 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8176 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8192 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8208 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8224 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8240 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8256 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8272 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8288 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8304 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8320 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8336 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 247; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8352 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8368 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8384 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8400 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8416 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8432 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8448 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8464 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8480 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8496 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8512 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8528 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 248; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8544 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 254; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 259; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8560 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 264; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 268; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8576 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 273; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 277; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8592 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 281; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 284; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8608 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 287; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 289; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8624 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 292; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8640 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 294; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 295; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8656 - image: "mousearea-visual.9.png" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 297; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 299; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8672 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 301; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 304; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8688 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 307; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8704 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 310; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 312; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8720 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 314; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 315; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8736 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 317; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 318; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8752 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 319; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8768 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 320; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8784 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 322; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 323; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8800 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 325; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 327; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8816 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 330; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 333; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8832 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 336; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 338; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8848 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 339; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8864 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 340; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8880 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 8896 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 340; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8912 - hash: "d1f2fc2133f3d6554e41982196662c2a" - } - Frame { - msec: 8928 - hash: "d1f2fc2133f3d6554e41982196662c2a" - } - Frame { - msec: 8944 - hash: "d1f2fc2133f3d6554e41982196662c2a" - } - Frame { - msec: 8960 - hash: "d1f2fc2133f3d6554e41982196662c2a" - } - Frame { - msec: 8976 - hash: "d1f2fc2133f3d6554e41982196662c2a" - } - Frame { - msec: 8992 - hash: "d1f2fc2133f3d6554e41982196662c2a" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 340; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9008 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9024 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9040 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9056 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9072 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9088 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9104 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9120 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9136 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9152 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9168 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9184 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9200 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9216 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9232 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9248 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9264 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9280 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9296 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9312 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9328 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9344 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9360 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9376 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9392 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9408 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9424 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9440 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9456 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9472 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9488 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9504 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9520 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9536 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9552 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9568 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9584 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 9600 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 339; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9616 - image: "mousearea-visual.10.png" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 336; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9632 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 332; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 326; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9648 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 320; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 312; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9664 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 292; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 283; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9680 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 261; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9696 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 252; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 243; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9712 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 225; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 207; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9728 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 189; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 169; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9744 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 161; y: 40 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 145; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9760 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 138; y: 45 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9776 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 133; y: 48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 127; y: 50 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9792 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 122; y: 52 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 118; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9808 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 114; y: 57 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 110; y: 60 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9824 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 109; y: 61 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9840 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 107; y: 62 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 106; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9856 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 103; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 100; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9872 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 92; y: 65 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9888 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 88; y: 65 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9904 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 85; y: 66 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 67 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9920 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 79; y: 69 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 77; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9936 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 72 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9952 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 67; y: 74 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 64; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9968 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9984 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 61; y: 76 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 60; y: 77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10000 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10016 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10032 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 59; y: 77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10048 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 58; y: 77 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10064 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 56; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10080 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10096 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10112 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10128 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10144 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10160 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10176 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10192 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10208 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10224 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Frame { - msec: 10240 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 76 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 59; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10256 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10272 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 65; y: 74 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 69; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10288 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 72; y: 73 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 76; y: 73 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10304 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 80; y: 72 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10320 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 87; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 90; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10336 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 93; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10352 - hash: "6627c7a1a4da7e642f4b4b24ca5e8e7a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 99; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10368 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 102; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 106; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10384 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 108; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 110; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10400 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 113; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 115; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10416 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 118; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 121; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10432 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 123; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10448 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 126; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 128; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10464 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 130; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 132; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10480 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 133; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10496 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 134; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10512 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10528 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 135; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 136; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10544 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 137; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 138; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10560 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 140; y: 71 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10576 - image: "mousearea-visual.11.png" - } - Frame { - msec: 10592 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10608 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10624 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10640 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10656 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10672 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10688 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10704 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10720 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10736 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10752 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10768 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10784 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10800 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10816 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10832 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10848 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10864 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10880 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10896 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10912 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10928 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10944 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10960 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10976 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 10992 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11008 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11024 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11040 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11056 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11072 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11088 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11104 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11120 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11136 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11152 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11168 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11184 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11200 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11216 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11232 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11248 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11264 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11280 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11296 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11312 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11328 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11344 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11360 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11376 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11392 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11408 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11424 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11440 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11456 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11472 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11488 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11504 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11520 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11536 - image: "mousearea-visual.12.png" - } - Frame { - msec: 11552 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11568 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11584 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11600 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11616 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11632 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11648 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11664 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11680 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11696 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11712 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 2 - buttons: 2 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11728 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11744 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11760 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11776 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11792 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11808 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11824 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 2 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11840 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11856 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11872 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11888 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11904 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11920 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11936 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11952 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11968 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 11984 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12000 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12016 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12032 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12048 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 4 - button: 2 - buttons: 2 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12064 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12080 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12096 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12112 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12128 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12144 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12160 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12176 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12192 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12208 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 2 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12224 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12240 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12256 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12272 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12288 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12304 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12320 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12336 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12352 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12368 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12384 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12400 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12416 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12432 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12448 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 2 - buttons: 3 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12464 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12480 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12496 - image: "mousearea-visual.13.png" - } - Frame { - msec: 12512 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12528 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 2 - buttons: 1 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12544 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12560 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12576 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12592 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12608 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12624 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12640 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12656 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12672 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12688 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12704 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12720 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12736 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12752 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12768 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12784 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12800 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12816 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12832 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12848 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12864 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12880 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12896 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12912 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12928 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12944 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12960 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 12976 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 12992 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13008 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13024 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13040 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13056 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13072 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13088 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13104 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13120 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13136 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13152 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13168 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13184 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13200 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13216 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13232 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13248 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13264 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13280 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13296 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13312 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13328 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13344 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13360 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13376 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13392 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13408 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13424 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13440 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13456 - image: "mousearea-visual.14.png" - } - Frame { - msec: 13472 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13488 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13504 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13520 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13536 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13552 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13568 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13584 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13600 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13616 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13632 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 2 - button: 2 - buttons: 2 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13648 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13664 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13680 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13696 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13712 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 2 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13728 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13744 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13760 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13776 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13792 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13808 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 4 - button: 2 - buttons: 2 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13824 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13840 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13856 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13872 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13888 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13904 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 3 - button: 2 - buttons: 0 - x: 141; y: 71 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 13920 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13936 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13952 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13968 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 13984 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14000 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14016 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14032 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14048 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14064 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14080 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14096 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14112 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14128 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14144 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14160 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14176 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 141; y: 70 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 148; y: 68 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14192 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 152; y: 68 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 158; y: 68 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14208 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 164; y: 68 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14224 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 171; y: 66 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 187; y: 62 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 205; y: 60 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14240 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 223; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14256 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 239; y: 52 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 255; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14272 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 269; y: 40 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 285; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14288 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 299; y: 28 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 313; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14304 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 320; y: 18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 326; y: 15 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14320 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 340; y: 7 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 14336 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14352 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14368 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14384 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14400 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14416 - image: "mousearea-visual.15.png" - } - Frame { - msec: 14432 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14448 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14464 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14480 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14496 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14512 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14528 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14544 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14560 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14576 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14592 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14608 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14624 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14640 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14656 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14672 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14688 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14704 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14720 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14736 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14752 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14768 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14784 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14800 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14816 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14832 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14848 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14864 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14880 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14896 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14912 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } - Frame { - msec: 14928 - hash: "194ebac4ae7d95bf427f8161885a13e1" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.0.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.0.png deleted file mode 100644 index c249c21..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.1.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.1.png deleted file mode 100644 index a96bf1b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.10.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.10.png deleted file mode 100644 index 7420ca7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.11.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.11.png deleted file mode 100644 index 7420ca7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.12.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.12.png deleted file mode 100644 index 7420ca7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.13.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.13.png deleted file mode 100644 index 7420ca7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.13.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.14.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.14.png deleted file mode 100644 index 7420ca7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.14.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.15.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.15.png deleted file mode 100644 index e797cc9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.15.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.16.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.16.png deleted file mode 100644 index 7951309..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.16.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.17.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.17.png deleted file mode 100644 index 7951309..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.17.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.18.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.18.png deleted file mode 100644 index 7951309..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.18.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.19.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.19.png deleted file mode 100644 index 7951309..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.19.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.2.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.2.png deleted file mode 100644 index a96bf1b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.20.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.20.png deleted file mode 100644 index 7951309..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.20.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.21.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.21.png deleted file mode 100644 index 7951309..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.21.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.22.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.22.png deleted file mode 100644 index 7951309..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.22.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.3.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.3.png deleted file mode 100644 index a96bf1b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.4.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.4.png deleted file mode 100644 index 1fe365a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.5.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.5.png deleted file mode 100644 index 1fe365a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.6.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.6.png deleted file mode 100644 index 1fe365a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.7.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.7.png deleted file mode 100644 index 1fe365a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.8.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.8.png deleted file mode 100644 index 7420ca7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.9.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.9.png deleted file mode 100644 index 7420ca7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/mouseregion.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.0.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.0.png deleted file mode 100644 index 793fb0f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.1.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.1.png deleted file mode 100644 index 5935b45..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.2.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.2.png deleted file mode 100644 index a205266..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.3.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.3.png deleted file mode 100644 index 3d81ff2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.4.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.4.png deleted file mode 100644 index ee2076e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.5.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.5.png deleted file mode 100644 index 9017124..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.6.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.6.png deleted file mode 100644 index 216dd7e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.7.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.7.png deleted file mode 100644 index 27e8480..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.8.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.8.png deleted file mode 100644 index 6b911c5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.9.png b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.9.png deleted file mode 100644 index 01858a5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.qml deleted file mode 100644 index cec1558..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/data/nested.qml +++ /dev/null @@ -1,5039 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "nested.0.png" - } - Frame { - msec: 32 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 48 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 64 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 80 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 96 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 112 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 128 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 144 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 160 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 176 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 192 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 208 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 224 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 240 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 256 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 272 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 288 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 304 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 320 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 336 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 352 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 368 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 384 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 400 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 416 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 432 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 448 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 464 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 480 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 496 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 512 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 528 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 544 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 560 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 576 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 592 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 608 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 624 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 640 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 656 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 672 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 688 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 704 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 720 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 736 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 752 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 768 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 784 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 800 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 816 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 832 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 848 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Frame { - msec: 864 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 25; y: 62 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 880 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 26; y: 62 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 896 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 62 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 912 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 28; y: 62 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 29; y: 62 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 928 - hash: "2400cadaaa467cbfb0c7d2ace8137179" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 30; y: 62 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 944 - hash: "f5aa6257fd80c1e383bc2db84e41c354" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 35; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 960 - hash: "e96076794d3efc62a8fe2d2e543e97c7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 42; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 976 - image: "nested.1.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 992 - hash: "ab955f6c6b210b66b27e244dc2150860" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1008 - hash: "b655247e73b0b8357dc9d355ba6f49a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 79; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 83; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1024 - hash: "08b67b7e28990cac8c9bd354b7d87698" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1040 - hash: "69cecfb41899e13c0bc5acb6f9bc666d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1056 - hash: "8d1f0cd85fd3f2654f7c30a6d9ec2b99" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "f8ddda87cfcf5dc9d8c6e940fbd295f3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 133; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1088 - hash: "ab9d942c47a2cca5531f7b67df034161" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1104 - hash: "7ca5a03fdfac44c389315c3928631a2a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1120 - hash: "ade955ed9d85fbbe72cf18bbc541c8bf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1136 - hash: "6ad4afa3e3fcb578946fccbf4896761c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1152 - hash: "3ebe78e37c1c66d0b8fc86c8191e39de" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 165; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1168 - hash: "6450917cc89a553cf509265eaf318efb" - } - Frame { - msec: 1184 - hash: "6450917cc89a553cf509265eaf318efb" - } - Frame { - msec: 1200 - hash: "6450917cc89a553cf509265eaf318efb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1216 - hash: "6450917cc89a553cf509265eaf318efb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1232 - hash: "adfe54d5d28f7caf9ace117fd3573444" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1248 - hash: "f4963636cc4fbd8bfe6baf10540ed7e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1264 - hash: "1c2d2edb9214cc3857aa221330ee28ba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1280 - hash: "750226c90e6c6cd0b3bdd3c3dc8da18f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1296 - hash: "b6b5d177ab531460dc125afa82489a1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1312 - hash: "62d411a7b6c404393e4bfafab9c638a3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1328 - hash: "e355997b3decd4deb686fece59c33c7c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 86; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 76; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1344 - hash: "2ab73c8aac6a0e321686e97c9bb28f28" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1360 - hash: "55a887f9f45f71beb6b723191eb60a2f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1376 - hash: "b2d49e34362994739d14fb8231ff82d6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1392 - hash: "3964796876870035794b41501991b527" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1408 - hash: "e96076794d3efc62a8fe2d2e543e97c7" - } - Frame { - msec: 1424 - hash: "e96076794d3efc62a8fe2d2e543e97c7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1440 - hash: "7e524b3c43a987503ef102bdb9f11701" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 42; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1456 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1472 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1488 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1504 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1520 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1536 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1552 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 42; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1568 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1584 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1600 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1616 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1632 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1648 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1664 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1680 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1696 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1712 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1728 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1744 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1760 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1776 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1792 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1808 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1824 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1840 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1856 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1872 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1888 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1904 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1920 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Frame { - msec: 1936 - image: "nested.2.png" - } - Frame { - msec: 1952 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 38; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 39; y: 57 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1984 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 39; y: 59 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 39; y: 60 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2000 - hash: "2a7c13e97c21e298541bb5ab8169ff13" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 63 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 65 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2016 - hash: "9178754b825d60b2174ed9431ea80586" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 68 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 70 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2032 - hash: "89eff8fa9f8710d7cbc50b8d4b751148" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 86 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2048 - hash: "cdae8b46ecfc2b0c90264c120156cc46" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 91 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 93 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2064 - hash: "cf35919630eab647a28eb91d8a441704" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2080 - hash: "283256d50da8c855c50d5f8813d37afd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 107 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 109 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2096 - hash: "2560cd67d507bc24c1000187f645531c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 113 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2112 - hash: "6f6f7c299c4516c5231f5bfcd39b6db3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2128 - hash: "e7989524238996cf59f420f4edf8f982" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2144 - hash: "34d8d456848807e854bcb25ffbde37d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 127 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2160 - hash: "433bd3983804b07484d38af2723f519e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 132 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 134 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2176 - hash: "510e534a8a7b88041f7544e7e4992b8f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 137 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2192 - hash: "25f43c457a5bf2b70a66ce91685ad4dc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 142 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2208 - hash: "4119ab90627359420e25220618b76a69" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2224 - hash: "8a3cc888e96cf3e26e369723b442baf1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 147 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 150 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2240 - hash: "980552e8ff9d87ccb40127b06b0f846f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 151 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2256 - hash: "9ee23fc7cbca4467f984073d2af7cdf6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2272 - hash: "032d65792ac867c9b9acef05bd993c54" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2288 - hash: "be2f8d5a64034e75e23527c486e33029" - } - Frame { - msec: 2304 - hash: "be2f8d5a64034e75e23527c486e33029" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2320 - hash: "3f65505e4d1f8534c9123b3dea15d43e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 152 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2336 - hash: "e8b1799cf1926cb3b6cbf3adee80cffe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 149 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 147 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2352 - hash: "31155b14cc0d3d47bbef4e199fdfcb46" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 140 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2368 - hash: "b89745a9a60a7ebeb1de0a7f96ad2ac3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 128 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2384 - hash: "7e99fa1eba369d45f10778fe02356f09" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2400 - hash: "cd123f6b332f38f43abbf01469a41301" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2416 - hash: "353c0602dd2b670e19988117172855fc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 76; y: 81 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 78; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2432 - hash: "20df9d19fd2113fa8f8023d5b4328dc5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 70 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 82; y: 67 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2448 - hash: "10b34a758d5b3790dd36c9d95c47b157" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 84; y: 62 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 85; y: 60 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2464 - hash: "98a483e1eaa9145fd277fd85a9b0cf03" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 87; y: 57 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 88; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2480 - hash: "e92edd52ff1ee78456fa1947a46e6570" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 89; y: 53 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 52 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2496 - hash: "877384496d967f5f0ab1c817a2b316d6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 92; y: 51 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 93; y: 51 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2512 - hash: "15673570ffe9a391f9214601ac9dc86c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 94; y: 50 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 50 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2528 - hash: "4b7f0094b19a4495bf913d2994889497" - } - Frame { - msec: 2544 - hash: "4b7f0094b19a4495bf913d2994889497" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 49 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2560 - hash: "4b7f0094b19a4495bf913d2994889497" - } - Frame { - msec: 2576 - hash: "4b7f0094b19a4495bf913d2994889497" - } - Frame { - msec: 2592 - hash: "4b7f0094b19a4495bf913d2994889497" - } - Frame { - msec: 2608 - hash: "4b7f0094b19a4495bf913d2994889497" - } - Frame { - msec: 2624 - hash: "4b7f0094b19a4495bf913d2994889497" - } - Frame { - msec: 2640 - hash: "4b7f0094b19a4495bf913d2994889497" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 95; y: 49 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2656 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2672 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2688 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2704 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2720 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2736 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2752 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2768 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2784 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2800 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2816 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2832 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2848 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2864 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2880 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2896 - image: "nested.3.png" - } - Frame { - msec: 2912 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2928 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2944 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2960 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2976 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 2992 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3008 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3024 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3040 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3056 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3072 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3088 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3104 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3120 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3136 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3152 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3168 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3184 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3200 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3216 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3232 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 156; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3248 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Frame { - msec: 3264 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 73 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 73 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3280 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 73 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 73 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3296 - hash: "2994e98b8ea9a6883a7324e7e848345c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 73 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 73 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3312 - hash: "df6cf21e99177a436e356f818996070c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 73 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3328 - hash: "86f5e3fee147f47edd4a6d042aff0301" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 178; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 181; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3344 - hash: "589c1418a9179c868d904b1a5169a11b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3360 - hash: "3141ad77d193e145b749759070e1e6ef" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "5e34d4deeb6d80b336cacea39797e0ca" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3392 - hash: "b8795d844982bcf60a6713f91717648f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 75 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3408 - hash: "857c63b24057ee0186c5136eddb71cb1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 226; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3424 - hash: "49222ed0d1ebc8759d0a1dc65c3beec6" - } - Frame { - msec: 3440 - hash: "49222ed0d1ebc8759d0a1dc65c3beec6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 77 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 226; y: 77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3456 - hash: "751847708a468f4f3e64e7cb5ebd1351" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 225; y: 78 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3472 - hash: "4016f80a5219fcba6480645f71998d71" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 80 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3488 - hash: "beef05cd2a3d20bc66978fa4f0ac1d12" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 82 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 214; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3504 - hash: "e50a2661e93d34b55c8d2d39abc77e5a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 86 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3520 - hash: "7beccbc2f091350bb5d9de1e2443021d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 88 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3536 - hash: "1d39570bf07392f56b6dd24b0bf9e7bc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 90 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 91 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3552 - hash: "62565b3e5aad3979b408207bbf36e615" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 92 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3568 - hash: "d9c6004921847fef16bb8c2f5d6b3b7d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 92 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3584 - hash: "53da27301ad97ae52c65928615ec0cd7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 142; y: 92 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3600 - hash: "9772a776e84515984b4eec70dbd1c5a7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 125; y: 88 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 119; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3616 - hash: "9caa6583a716443c13e8fef3f2923d6e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3632 - hash: "f162a18b2d3f0d5f6f01fc373c016f68" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 98; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3648 - hash: "58976e8e31beddf881c7cfa3ede54c09" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 94; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 92; y: 83 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3664 - hash: "6625f7adb097bc170024083c42d74b4b" - } - Frame { - msec: 3680 - hash: "6625f7adb097bc170024083c42d74b4b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 92; y: 82 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3696 - hash: "1d63f09ca27e9d70c3c0ea923a6cfba4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 93; y: 82 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3712 - hash: "1d63f09ca27e9d70c3c0ea923a6cfba4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 94; y: 81 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 81 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3728 - hash: "a23c75fcaa0a28adb944bf192af65bff" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 98; y: 81 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 81 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3744 - hash: "2b90fe8937dcc39d1d6add305cf36043" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 81 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 81 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "7da82cfaf0f826ca9a41128278b6b09c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 81 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 81 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3776 - hash: "a3f69d13d38b336fda33a86899564996" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 129; y: 80 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3792 - hash: "dc562319e1d332ba34ac94bfc0c39c5e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 79 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3808 - hash: "756482bee292668f56d813847b0ccd53" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 141; y: 77 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 142; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3824 - hash: "06d250c4d18a70f8f7b1c10e22a1bc4c" - } - Frame { - msec: 3840 - hash: "06d250c4d18a70f8f7b1c10e22a1bc4c" - } - Frame { - msec: 3856 - image: "nested.4.png" - } - Frame { - msec: 3872 - hash: "06d250c4d18a70f8f7b1c10e22a1bc4c" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 142; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3888 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 3904 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 3920 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 3936 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 3952 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 3968 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 3984 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4000 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4016 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4032 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4048 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4064 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4080 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4096 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4112 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4128 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4144 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4160 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4176 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4192 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4208 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4224 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4240 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4256 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4272 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4288 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4304 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4320 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4336 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4352 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4368 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4384 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4400 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4416 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4432 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4448 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4464 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4480 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4496 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4512 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4528 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4544 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 16; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4560 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 4576 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 47 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4592 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 49 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 50 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4608 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 55 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 18; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4624 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 20; y: 61 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 20; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4640 - hash: "ff1f86b47e0d1db5db7d939df8349931" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 22; y: 70 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 73 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4656 - hash: "f13393a4556e9e73c33f2bb74d8f7794" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 26; y: 80 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 28; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4672 - hash: "8c9aa01516437184eb17d89348cca004" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 91 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4688 - hash: "8b6848cb722ff5ec02d957da1ee687e5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: 102 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 109 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4704 - hash: "552fde584d128f511788670031d79dd2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 112 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "55dc3a4242b46e602f823c0305e67ad2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4736 - hash: "603b9b2ed6ff4273c3ab1cbe32afb19e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 120 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 73; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4752 - hash: "157eda24ea8452a208aa7a6a22639c73" - } - Frame { - msec: 4768 - hash: "157eda24ea8452a208aa7a6a22639c73" - } - Frame { - msec: 4784 - hash: "c5005b83816c18b67448dfbccd0ab0b2" - } - Frame { - msec: 4800 - hash: "878512df863e5d60437b85fbd2a32eb1" - } - Frame { - msec: 4816 - image: "nested.5.png" - } - Frame { - msec: 4832 - hash: "02ab69b67b746ec0021295992a03ada1" - } - Frame { - msec: 4848 - hash: "c621382766d7bacab87055a73623a8ce" - } - Frame { - msec: 4864 - hash: "a8d1be78741d9afd88363bd19f1cbc6b" - } - Frame { - msec: 4880 - hash: "5a70275ff656766d73638d4dd4db4492" - } - Frame { - msec: 4896 - hash: "892ea0a00553524b79889d437eac9b6f" - } - Frame { - msec: 4912 - hash: "d818258bffc065430902ffa8f5668f86" - } - Frame { - msec: 4928 - hash: "6b844523522ace7545705ffb8ffe1da3" - } - Frame { - msec: 4944 - hash: "3906097bc49bad199b52c99dbf87f98f" - } - Frame { - msec: 4960 - hash: "a2bd859b5ca7f4fac8d62b1c9ab76aad" - } - Frame { - msec: 4976 - hash: "f374673e3511b1df8b50ff7ef6002b3a" - } - Frame { - msec: 4992 - hash: "c2eecfadd19418f469b1ab53a3ecae70" - } - Frame { - msec: 5008 - hash: "2b481965ece0f2e1795ef56aa5d6a752" - } - Frame { - msec: 5024 - hash: "c294f28000348365a2c37265132efdb5" - } - Frame { - msec: 5040 - hash: "c294f28000348365a2c37265132efdb5" - } - Frame { - msec: 5056 - hash: "4e9c18eab469b2da0cb92526d3d54501" - } - Frame { - msec: 5072 - hash: "4e9c18eab469b2da0cb92526d3d54501" - } - Frame { - msec: 5088 - hash: "4e9c18eab469b2da0cb92526d3d54501" - } - Frame { - msec: 5104 - hash: "4e9c18eab469b2da0cb92526d3d54501" - } - Frame { - msec: 5120 - hash: "3836449b99d88e2dea9a0eb9417faca5" - } - Frame { - msec: 5136 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5152 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5168 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5184 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5200 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5216 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5232 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5248 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5264 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5280 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5296 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5312 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5328 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5344 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5360 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5376 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5392 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5408 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5424 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5440 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5456 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5472 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5488 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5504 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5520 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5536 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5552 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5568 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5584 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5600 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5616 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Frame { - msec: 5632 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 20; y: 238 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 21; y: 238 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5648 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 22; y: 239 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 239 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5664 - hash: "42dc501eb5a34843ef0a8977ff029054" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 240 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 29; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5680 - hash: "b56d132ac881e27d308009fb9a9d2d50" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 241 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 36; y: 241 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5696 - hash: "6c65fca03ea127d554f15c80da76f21f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 42; y: 242 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5712 - hash: "e5d8939135d0e964609a09a437af58bc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 243 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5728 - hash: "ab60a45ac475ef8d1177d831a6572d1f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 243 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 75; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5744 - hash: "78b2e0c7dd8b8bcbd573dac79ff815e4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 79; y: 243 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 89; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5760 - hash: "ef9e89650d8e3d572285e2a2e2b09166" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 243 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - image: "nested.6.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 243 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5792 - hash: "b83136fa3769e30ea47097b489e8f1dc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 241 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 240 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5808 - hash: "fb892905b790a061ce5985c927db3cf5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 238 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 237 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5824 - hash: "bc4358e21d2d31942e776adfd32ef1c6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 235 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 184; y: 234 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "b42380a7fcf5e2fbfe4dddbe86ad7287" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 232 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 231 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "4b3c12beb43a77ebaf458804b03c7b52" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 231 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 230 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "a18be4d4ab28c0fd0c16696c4ecc03ef" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 230 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 229 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "c5f100bc4b14e958c7d9bbff84e0a934" - } - Frame { - msec: 5904 - hash: "c5f100bc4b14e958c7d9bbff84e0a934" - } - Frame { - msec: 5920 - hash: "c5f100bc4b14e958c7d9bbff84e0a934" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 229 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5936 - hash: "a18be4d4ab28c0fd0c16696c4ecc03ef" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 229 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 230 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5952 - hash: "a8b23e7dad1bdbaa3452335be0f07658" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 230 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 231 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5968 - hash: "4c1feb559a11912b06ed521bebba43d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 232 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 232 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "ffb97bcedf72e02616272c1cad5c38d7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 232 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 181; y: 231 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "99498ed9b4d519a2f842d407abdef90a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 230 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 229 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "1ca3f012adab899eba1dcb63d048345f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 228 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "8a81d49de887f314f67976a65f469169" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 227 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "b83136fa3769e30ea47097b489e8f1dc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 116; y: 227 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "12cdd297407257ae4bb13c87e24537fb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 227 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 99; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "a51ac0a1e9432671c88f7649c38d265d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 90; y: 227 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 86; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "4ba4f854659161c765395cdee35594f2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 77; y: 226 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "9907add9e28b4a8976f3727f99a4b6d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 224 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 60; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "c2cb865c4a766b9c08328b374e940f29" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "c97981263572ded23b328da45cf88012" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "f4bae51c866ba1158f44529208514d6f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 222 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 222 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "35b4f1f9bb343f2b22bd7cdad6f28249" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "84eba4cb400e5622463f5a1fa79be72b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6208 - hash: "d38e882728c7efc906befe69b416082a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6224 - hash: "e5d8939135d0e964609a09a437af58bc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6240 - hash: "6b6e06e8473d5703e217accd824b08d5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 42; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6256 - hash: "8e38bc5b00e33e24f931b181dc77d3c1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 39; y: 223 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 38; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "a173708b5380f42a2bdbf6ae69cdca20" - } - Frame { - msec: 6288 - hash: "a173708b5380f42a2bdbf6ae69cdca20" - } - Frame { - msec: 6304 - hash: "a173708b5380f42a2bdbf6ae69cdca20" - } - Frame { - msec: 6320 - hash: "a173708b5380f42a2bdbf6ae69cdca20" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 38; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6336 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6352 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6368 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6384 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6400 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6416 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6432 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6448 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6464 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6480 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6496 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6512 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6528 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6544 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6560 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6576 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6592 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6608 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6624 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6640 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6656 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6672 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6688 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6704 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6720 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6736 - image: "nested.7.png" - } - Frame { - msec: 6752 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6768 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6784 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6800 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6816 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6832 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6848 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6864 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6880 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6896 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6912 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6928 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6944 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6960 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6976 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 6992 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 7008 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 7024 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 7040 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 7056 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 7072 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 46; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7088 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 7104 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 226 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7120 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 228 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 231 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7136 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 233 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 238 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7152 - hash: "35dd0f784c356be0050936ff75b0cdf7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 240 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 245 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7168 - hash: "9ac066a700eae45edf9b2f1ba12f0324" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 248 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 255 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7184 - hash: "22a2a8bf257918820b0ab55ecb14b479" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 259 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 266 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7200 - hash: "eb98237e06cde8ed2f18040ce9197d16" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 272 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 276 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7216 - hash: "f0c7afe1bd25b9b573cbc69154c25862" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 282 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 285 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7232 - hash: "d6a681b6de867db47f889e6f1ec03dcf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 291 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 293 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7248 - hash: "0ee281281c7654567a1debae7a13abe0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 299 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 304 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7264 - hash: "9d5f1c8cb0953c14bdd49aa88d2b225f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 306 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 310 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7280 - hash: "ae1c2a3ed67c5c10fc9d19de4de7b7eb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 312 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 315 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7296 - hash: "8505f9d060fc17fef2e91eb2add206bb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 316 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 318 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7312 - hash: "c32a6d546a3e4f2ee5349a7dad4b30af" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 319 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 320 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7328 - hash: "222f6e8e8deab567f1e7d0aaf7035b60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 321 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 322 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7344 - hash: "f7011629f44015187849daad6a53cebf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 323 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 324 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7360 - hash: "56b00d9116a51c041483dd00db0aca90" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 325 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 326 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7376 - hash: "93232fbcafe8e279b37781f51dfb923a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 328 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 329 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7392 - hash: "9fcf62eaacfc3477a4550c31f03c4782" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 330 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 331 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7408 - hash: "dd669865fd36e42eec1d69860b29e7ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 331 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7424 - hash: "9247af334483b219ca9bbe98d8fc362e" - } - Frame { - msec: 7440 - hash: "9247af334483b219ca9bbe98d8fc362e" - } - Frame { - msec: 7456 - hash: "9247af334483b219ca9bbe98d8fc362e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 330 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "9247af334483b219ca9bbe98d8fc362e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 329 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 328 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7488 - hash: "69ef9255a29d65f26e5441594ea1bad9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 325 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 323 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7504 - hash: "055f73dd085d2f65a055ba4d9a8a7539" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 318 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 316 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "384da5b6a948a52d0519935a8e33f014" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 309 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 303 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7536 - hash: "1caa0049be4033db45f0d2debb25268f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 299 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 55; y: 299 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7552 - hash: "76b8d00b3a2a68fec277050a442c18ca" - } - Frame { - msec: 7568 - hash: "0ee281281c7654567a1debae7a13abe0" - } - Frame { - msec: 7584 - hash: "df1dbb027a8542aa6120cce7b69724a7" - } - Frame { - msec: 7600 - hash: "06a4d9b1d73362b3e29c6cf52fdb515c" - } - Frame { - msec: 7616 - hash: "876c0dc8a68a4c1253b7aed6316cb892" - } - Frame { - msec: 7632 - hash: "b46c74b1a2535099f0cdb8093bd49a4e" - } - Frame { - msec: 7648 - hash: "0ad09a7638aa6f2affe47db2a810196f" - } - Frame { - msec: 7664 - hash: "3710dde54d7e4a10a2c3ca2f891da7f5" - } - Frame { - msec: 7680 - hash: "8426a607c92fbfa508e81c620d90e919" - } - Frame { - msec: 7696 - image: "nested.8.png" - } - Frame { - msec: 7712 - hash: "1f38e34787c909d93d567f983a425257" - } - Frame { - msec: 7728 - hash: "7b09913793d4c79d948fdff1b72c7124" - } - Frame { - msec: 7744 - hash: "8a0d1484c073d8107b4bf9949edcdb18" - } - Frame { - msec: 7760 - hash: "4bad25465dfdcc41995216b0f6a5191b" - } - Frame { - msec: 7776 - hash: "6d39bbeb5f74273c1ed0231ac34fe094" - } - Frame { - msec: 7792 - hash: "8ccc2e33b8d6c67162326d229e9c17ab" - } - Frame { - msec: 7808 - hash: "3561eaa9124b96b2a0afa022bc0fe581" - } - Frame { - msec: 7824 - hash: "b87d739e49f0427d9da577ac5147fd21" - } - Frame { - msec: 7840 - hash: "7d0efbfceec35e591f9fae650288809b" - } - Frame { - msec: 7856 - hash: "7d0efbfceec35e591f9fae650288809b" - } - Frame { - msec: 7872 - hash: "ff5d2037d3cc7bb6930cabc3d53f0196" - } - Frame { - msec: 7888 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 7904 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 7920 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 7936 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 7952 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 7968 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 7984 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8000 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8016 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8032 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8048 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8064 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8080 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8096 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8112 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8128 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8144 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8160 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8176 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8192 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8208 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8224 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8240 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8256 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8272 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8288 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8304 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8320 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8336 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8352 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8368 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8384 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8400 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8416 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8432 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8448 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8464 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8480 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8496 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8512 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8528 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8544 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8560 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8576 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8592 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8608 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8624 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8640 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8656 - image: "nested.9.png" - } - Frame { - msec: 8672 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8688 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8704 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8720 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8736 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8752 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8768 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8784 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8800 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8816 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8832 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8848 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8864 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8880 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8896 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8912 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8928 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8944 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8960 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8976 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 8992 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 9008 - hash: "76624c57195c25b8abd4297e11c55980" - } - Frame { - msec: 9024 - hash: "76624c57195c25b8abd4297e11c55980" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml deleted file mode 100644 index 99c898e..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/drag.qml +++ /dev/null @@ -1,26 +0,0 @@ -import QtQuick 1.0 - -/* -this test shows a blue box being dragged around -- first roughly tracing the -borders of the window, then doing a rough 'x'-shape, then moving to around the middle. -*/ - -Rectangle{ - width:400 - height:440 - color: "white" - Rectangle{ - id: draggable - width:40; height:40; color: "lightsteelblue" - y:20 - MouseArea{ - anchors.fill: parent - drag.target: draggable - drag.axis: "XandYAxis" - drag.minimumX: 0 - drag.maximumX: 360 - drag.minimumY: 20 - drag.maximumY: 400 - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml deleted file mode 100644 index 70ea78c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-flickable.qml +++ /dev/null @@ -1,52 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - width: 400; height: 480 - color: "white" - - Flickable { - anchors.fill: parent - contentHeight: 100 - - Rectangle { - id: yellow - width: 400; height: 120 - color: "yellow" - MouseArea { - anchors.fill: parent - onPressedChanged: pressed ? yellow.color = "lightyellow": yellow.color = "yellow" - } - } - Rectangle { - id: blue - width: 400; height: 120 - y: 120 - color: "steelblue" - MouseArea { - anchors.fill: parent - onPressed: blue.color = "lightsteelblue" - onCanceled: blue.color = "steelblue" - } - } - Rectangle { - id: red - y: 240 - width: 400; height: 120 - color: "red" - MouseArea { - anchors.fill: parent - onEntered: { red.color = "darkred"; tooltip.opacity = 1 } - onCanceled: { red.color = "red"; tooltip.opacity = 0 } - } - Rectangle { - id: tooltip - x: 10; y: 20 - width: 100; height: 50 - color: "green" - opacity: 0 - } - } - - } - -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml deleted file mode 100644 index 540866f..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/mousearea-visual.qml +++ /dev/null @@ -1,135 +0,0 @@ -import QtQuick 1.0 - -/* -This test displays 6 red rects -- 4 in the top row, 2 in the bottom. - -Sequence: -1. the bottom-left rect turns blue, then green -2. the second rect in the top row turns blue -3. the third rect in the top row turns blue -4. the last rect in the top row quickly turns blue then back to red -5. the bottom-left rect turns blue, then green -*/ - -Rectangle { - id: root - width: 400 - height: 100 - - // Left click on me - Rectangle { - width: 98; height: 48 - color: "red" - MouseArea { - id: mr1 - anchors.fill: parent - enabled: false - onClicked: { parent.color = "blue"; root.error = "mr1 should ignore presses"; } - } - } - - // Left click, then right click - Rectangle { - x: 100 - width: 98; height: 48 - color: "red" - MouseArea { - id: mr2 - anchors.fill: parent - acceptedButtons: Qt.RightButton - onClicked: { - if (mouse.button == Qt.RightButton) { - parent.color = "blue"; - } else { - parent.color = "green"; - root.error = "mr1 should ignore presses"; - } - } - } - } - - // press and hold me - Rectangle { - x: 200 - width: 98; height: 48 - color: "red" - MouseArea { - id: mr3 - anchors.fill: parent - onPressAndHold: { - parent.color = "blue"; - } - } - } - - // click me - Rectangle { - x: 300 - width: 98; height: 48 - color: "red" - MouseArea { - id: mr4 - anchors.fill: parent - onPressed: { - parent.color = "blue"; - } - onReleased: { - parent.color = "red"; - } - } - } - - // move into and out of me - Rectangle { - x: 0 - y: 50 - width: 98; height: 48 - color: "red" - MouseArea { - id: mr5 - anchors.fill: parent - hoverEnabled: true - onEntered: { - parent.color = "blue"; - } - onExited: { - parent.color = "green"; - } - } - } - - // click, then double click me - Rectangle { - x: 100 - y: 50 - width: 98; height: 48 - color: "red" - MouseArea { - id: mr6 - anchors.fill: parent - onClicked: { - parent.color = "blue"; - } - onDoubleClicked: { - parent.color = "green"; - } - } - } - - // click, then double click me - nothing should happen - Rectangle { - x: 100 - y: 50 - width: 98; height: 48 - color: "red" - MouseArea { - id: mr7 - anchors.fill: parent - enabled: false - onClicked: { parent.color = "blue" } - onPressed: { parent.color = "yellow" } - onReleased: { parent.color = "cyan" } - onDoubleClicked: { parent.color = "green" } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/nested.qml b/tests/auto/declarative/qmlvisual/qdeclarativemousearea/nested.qml deleted file mode 100644 index b2d88d2..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativemousearea/nested.qml +++ /dev/null @@ -1,62 +0,0 @@ -import QtQuick 1.0 - -/* - Test nested MouseArea with different drag axes. -*/ - -Rectangle{ - width:400 - height:360 - color: "white" - Flickable { - anchors.fill: parent - contentWidth: 600 - contentHeight: 600 - Rectangle{ - id: draggable - width:200; height:200; color: "lightsteelblue" - opacity: ma1.drag.active ? 0.5 : 1.0 - y:20 - MouseArea{ - id: ma1 - objectName: "one" - anchors.fill: parent - drag.target: draggable - drag.axis: "XandYAxis" - drag.filterChildren: true - drag.minimumX: 0 - drag.maximumX: 200 - drag.minimumY: 20 - drag.maximumY: 220 - Rectangle{ - id: draggable_inner - width:40; height:40; color: "red" - y:20 - MouseArea{ - objectName: "two" - anchors.fill: parent - drag.target: draggable_inner - drag.axis: "XAxis" - drag.minimumX: 0 - drag.maximumX: 360 - } - } - } - } - Rectangle{ - id: draggable3 - width:40; height:40; color: "green" - opacity: ma3.drag.active ? 0.5 : 1.0 - y:210 - MouseArea{ - id: ma3 - objectName: "three" - anchors.fill: parent - drag.target: draggable3 - drag.axis: "XAxis" - drag.minimumX: 0 - drag.maximumX: 360 - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.0.png deleted file mode 100644 index 88924b1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.1.png deleted file mode 100644 index 024a17c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.2.png deleted file mode 100644 index 8860fc2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.3.png deleted file mode 100644 index 2ab8ee3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml deleted file mode 100644 index 2930e28..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml +++ /dev/null @@ -1,775 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "particles.0.png" - } - Frame { - msec: 32 - hash: "c7eb3936886726f584d1bd99133a199f" - } - Frame { - msec: 48 - hash: "f7f6eeab119435f0cccd55074b4941bf" - } - Frame { - msec: 64 - hash: "06f52743e61bf0212971652c500fe5d1" - } - Frame { - msec: 80 - hash: "1f9dd3a3a0524c60791362f560936f9b" - } - Frame { - msec: 96 - hash: "42538495fc9d63384a1709476c06d750" - } - Frame { - msec: 112 - hash: "4d1b53541ffe5cdfcf0e3aa2916b1bac" - } - Frame { - msec: 128 - hash: "6a3a683dbd2ad7c89f0788441303485e" - } - Frame { - msec: 144 - hash: "125a936660dae42969fab4144d166ac6" - } - Frame { - msec: 160 - hash: "87d008547326ff1bf2c4c2a9d9b99abc" - } - Frame { - msec: 176 - hash: "0df69d85b37d3ebf0e314a7e89701703" - } - Frame { - msec: 192 - hash: "7af12cac3bd33c903d6aa6fa8f89b498" - } - Frame { - msec: 208 - hash: "424c950111c492ded19df874b938067c" - } - Frame { - msec: 224 - hash: "bee69a0df1ca8ccc7d83a52f9de34f8c" - } - Frame { - msec: 240 - hash: "47da1538d818e22d836de57d5c6601ce" - } - Frame { - msec: 256 - hash: "fbfb0e177b19d6ef9433619f60dd9580" - } - Frame { - msec: 272 - hash: "23b4f8bb116e8db48db25ccccedba43a" - } - Frame { - msec: 288 - hash: "13f0847f1b86f880690692066cde21c7" - } - Frame { - msec: 304 - hash: "639ca4c978bea080139b219c75bf01d1" - } - Frame { - msec: 320 - hash: "19debcaa7bbde930eda2fd08ac1e9d8a" - } - Frame { - msec: 336 - hash: "1d733c5010604bff67138f1eb9881dcd" - } - Frame { - msec: 352 - hash: "b14435e41a3730baff06bb0800157081" - } - Frame { - msec: 368 - hash: "504b3548c38d50f15235594f3f3d7be5" - } - Frame { - msec: 384 - hash: "4e73ef73c949da579217c1d94139a75a" - } - Frame { - msec: 400 - hash: "5fced44782484b1962368b9c04bf5246" - } - Frame { - msec: 416 - hash: "6ab0cd5c14e1871a35d003574255c1db" - } - Frame { - msec: 432 - hash: "23f5c485fbd0acd607119e93277284db" - } - Frame { - msec: 448 - hash: "02ebd53ee0e6ca3605916b05d827989e" - } - Frame { - msec: 464 - hash: "99b1d1e72d7da88a7d5d5a7907e1b1f4" - } - Frame { - msec: 480 - hash: "b7de7d40263f2811ec51f28f8ff4929c" - } - Frame { - msec: 496 - hash: "e64059f850dd4c8642a9883a1c5356bf" - } - Frame { - msec: 512 - hash: "b0aefb8f8d4d970ba4b51d7f77b55cf1" - } - Frame { - msec: 528 - hash: "5ab4b1373c233b2342eb66cf9eccac8d" - } - Frame { - msec: 544 - hash: "b3726c296d5919a59c32201d857e92b4" - } - Frame { - msec: 560 - hash: "70e246371f9cf83b5913f2fc53f6b736" - } - Frame { - msec: 576 - hash: "871cd4b99b6d544d487424219e0caf92" - } - Frame { - msec: 592 - hash: "8c002ec15e88220bf12ebaa5a3390570" - } - Frame { - msec: 608 - hash: "21c994a5ad23938a9e873d04bbd4165e" - } - Frame { - msec: 624 - hash: "1f04a0ed31823cd0817f3e97a11e3a46" - } - Frame { - msec: 640 - hash: "f163eda68878ae0ed4cac7f941e24414" - } - Frame { - msec: 656 - hash: "560527d6c7fa64a4739f9c79f3eaab8f" - } - Frame { - msec: 672 - hash: "df7e7469ff685c4cd822232b1aa66029" - } - Frame { - msec: 688 - hash: "fa92bf73b0737d4ac8bbc16518cd9c2a" - } - Frame { - msec: 704 - hash: "bb2f2765ba20b727701352f11ed30417" - } - Frame { - msec: 720 - hash: "4c45617ce77a5869cdbfcfe851796422" - } - Frame { - msec: 736 - hash: "24aa2eabe8d2a4adc5a096dd201a3bc1" - } - Frame { - msec: 752 - hash: "2eb5de2524ad38e1dcd44d89b115e75a" - } - Frame { - msec: 768 - hash: "8b39e542908051b0ab8fbf3cd36f3be9" - } - Frame { - msec: 784 - hash: "a447e9d7c87c90633dcfc550fcf04ff6" - } - Frame { - msec: 800 - hash: "c3d1e7753b592bc0d0c3169e3cf08bb7" - } - Frame { - msec: 816 - hash: "fb20ccb3b36798835fbc1d529a7424ea" - } - Frame { - msec: 832 - hash: "ff253670ae78826250b9612cf2a2e1a4" - } - Frame { - msec: 848 - hash: "45fb7f71debd3b61062a4165c04c0637" - } - Frame { - msec: 864 - hash: "a1542b5bc5e65cdb3f8775cf21b54429" - } - Frame { - msec: 880 - hash: "a146b5b88875e4148658dd55e162d6f4" - } - Frame { - msec: 896 - hash: "94222050206925d4c9b38da03125cc0c" - } - Frame { - msec: 912 - hash: "71a63ace8450029b968723cfa684330c" - } - Frame { - msec: 928 - hash: "14e4d2af07146133c6a0e87391747c6a" - } - Frame { - msec: 944 - hash: "e380593e219531620dbca0a8131b4f13" - } - Frame { - msec: 960 - hash: "d52c30bc201afd3d1caf34efcddafdee" - } - Frame { - msec: 976 - image: "particles.1.png" - } - Frame { - msec: 992 - hash: "0d2871475891f96e1cc4150cbe725d46" - } - Frame { - msec: 1008 - hash: "b6d064a26c282ce4fd8cba48de0a0f7b" - } - Frame { - msec: 1024 - hash: "9ad67d9833d749b2b8158abb3076357b" - } - Frame { - msec: 1040 - hash: "ce86624a1e055fdb4711dd73be31dc42" - } - Frame { - msec: 1056 - hash: "a2c6fc81e1f02477f6ad084acaf12b0d" - } - Frame { - msec: 1072 - hash: "bab24924a5ac4cd45c1fa7b5e4ff3efe" - } - Frame { - msec: 1088 - hash: "8c8fd3b9cc257dab84df8e88a3e7a001" - } - Frame { - msec: 1104 - hash: "a3f9936dc4e3161d9db1fa39267cda4d" - } - Frame { - msec: 1120 - hash: "d6669c8a47077f665a93587ea3cafe6e" - } - Frame { - msec: 1136 - hash: "601dbd220a7f312d4343323ae99e21ee" - } - Frame { - msec: 1152 - hash: "722411ffc1d6740caed9bf1231bc54ba" - } - Frame { - msec: 1168 - hash: "cb3bd6f5ee770399e21a07e56dcf28ef" - } - Frame { - msec: 1184 - hash: "1819d6719e6b56b3e673dacf1865272e" - } - Frame { - msec: 1200 - hash: "6b6532937a3e37df28b3939cbadc4741" - } - Frame { - msec: 1216 - hash: "8a065d54600e9ae3c7958f7b71d8432d" - } - Frame { - msec: 1232 - hash: "2259806ac264b292f5701f34ffac5c35" - } - Frame { - msec: 1248 - hash: "e4b2a6440df9141616f89cbb6a6ba0aa" - } - Frame { - msec: 1264 - hash: "034b74fe5327909214bb5a6e3084edf2" - } - Frame { - msec: 1280 - hash: "976fd9bc54baefe8d71002a22706052a" - } - Frame { - msec: 1296 - hash: "45138388ebc6ec44a205934475907b25" - } - Frame { - msec: 1312 - hash: "01edec5ae6e33b49baee2abe2a59ad7d" - } - Frame { - msec: 1328 - hash: "9a89ff95df027e53827c5554a28e05a8" - } - Frame { - msec: 1344 - hash: "8d1cd8a1181b7320990b7348b424ce4b" - } - Frame { - msec: 1360 - hash: "2366d1ee0c0740f0d19fe2ce1acfe4c3" - } - Frame { - msec: 1376 - hash: "071988963ab2d1a53243e0f6837fecb0" - } - Frame { - msec: 1392 - hash: "20f1e8adef04cea6bcd1511ac47a7922" - } - Frame { - msec: 1408 - hash: "2241def30a3ef54ea82e5fa2b1ef5997" - } - Frame { - msec: 1424 - hash: "15365370ac6859f1bfc76e96e603c417" - } - Frame { - msec: 1440 - hash: "45edcbeb23c88f62982f9af9a4647f4c" - } - Frame { - msec: 1456 - hash: "b7a9c7c44e6f9ff5132d1ad3f6137dc8" - } - Frame { - msec: 1472 - hash: "8a55b85fdd63ac63c1a566a5c4d92a04" - } - Frame { - msec: 1488 - hash: "e1973b7d557dec08e6375feefb56db47" - } - Frame { - msec: 1504 - hash: "a321445212e561de4262228482b0edbe" - } - Frame { - msec: 1520 - hash: "a2c787a576e1f85561c08330b6801e98" - } - Frame { - msec: 1536 - hash: "ba84070f0081d4c7a08ebc3204d9aebf" - } - Frame { - msec: 1552 - hash: "4b82a6908ed0caf3cbfd9dc9211ec69a" - } - Frame { - msec: 1568 - hash: "a1dc7c4ad596fc005cf3077ee78406e1" - } - Frame { - msec: 1584 - hash: "53d76884202d4b9ce3874db796705b80" - } - Frame { - msec: 1600 - hash: "9f24c090531259f9d83ea97e842c4f14" - } - Frame { - msec: 1616 - hash: "541c81585a781bab82d4ee95b9f844ff" - } - Frame { - msec: 1632 - hash: "73e15141e6c6bfba4a2c820ba96e3f6e" - } - Frame { - msec: 1648 - hash: "0500129b602ab14925aa09a1d9bee3d0" - } - Frame { - msec: 1664 - hash: "2d45ba5e0e21430f468332c13ce3ee15" - } - Frame { - msec: 1680 - hash: "bafd11c210e683d79ac438c5612503bc" - } - Frame { - msec: 1696 - hash: "f968f49e6a0674877c55282e5543edab" - } - Frame { - msec: 1712 - hash: "705307529862a3825a0870b294058825" - } - Frame { - msec: 1728 - hash: "a008a501d1dc16a5ffaee325fdd90816" - } - Frame { - msec: 1744 - hash: "5091621481873738658f4d8543582c62" - } - Frame { - msec: 1760 - hash: "141216eeb31b5af4ec247bb930169a7f" - } - Frame { - msec: 1776 - hash: "bfb203e39ab0a9837fc5b9c9b49d9580" - } - Frame { - msec: 1792 - hash: "1f2704480af7dd2bb382d13450f34755" - } - Frame { - msec: 1808 - hash: "f3182da7f6202250a6cc2de3e43fcf87" - } - Frame { - msec: 1824 - hash: "6fa500f5ff387c5801186fb7eced96f4" - } - Frame { - msec: 1840 - hash: "1874d59911d70daf098cd053da69127b" - } - Frame { - msec: 1856 - hash: "52a7bcb9a18e8d4a24c2617124b7961b" - } - Frame { - msec: 1872 - hash: "f3a7dd26aa4177dbee02d52df664c751" - } - Frame { - msec: 1888 - hash: "5180db29e325f00c3940b6a7b8eb8a8e" - } - Frame { - msec: 1904 - hash: "eab16b6ef76e627eff492cdf5d5da9e2" - } - Frame { - msec: 1920 - hash: "57976a66963718e90c62535a936d9251" - } - Frame { - msec: 1936 - image: "particles.2.png" - } - Frame { - msec: 1952 - hash: "85ecf35d439bd4129f8780d8ee561dfb" - } - Frame { - msec: 1968 - hash: "785d712b57b3ec4cee6b9e2fcfa1b775" - } - Frame { - msec: 1984 - hash: "77906acfafec6ab595e8dad00373f953" - } - Frame { - msec: 2000 - hash: "33722e5c66ee6dfc87ca62a53590969e" - } - Frame { - msec: 2016 - hash: "7bd3d9e36789b3456c5e098d02341ce3" - } - Frame { - msec: 2032 - hash: "be4af661ca19ca607acf0d8949b58c26" - } - Frame { - msec: 2048 - hash: "e249df985887229664d3c61c7b01d2ef" - } - Frame { - msec: 2064 - hash: "541a01af440e81c7b20fa9df0e85f5f9" - } - Frame { - msec: 2080 - hash: "3579e5a3ab93b8c9998ef812f43ba158" - } - Frame { - msec: 2096 - hash: "c2902c8068a48788e5511d2987191181" - } - Frame { - msec: 2112 - hash: "3fc7d417d13cbccbff81c0630cf968f3" - } - Frame { - msec: 2128 - hash: "5507fabe77585c38b2929e2565cd8e9d" - } - Frame { - msec: 2144 - hash: "73f6a9a1602929b80ba28ac2c8095a95" - } - Frame { - msec: 2160 - hash: "3377ee6818f1fbf15cfe2916ef7328ed" - } - Frame { - msec: 2176 - hash: "4bea4237a5044b9ffbe9815b877a5b96" - } - Frame { - msec: 2192 - hash: "f25dadf7b916625f120d3b5fc1602d0d" - } - Frame { - msec: 2208 - hash: "ba095d86b7ecc9e2ca6c5d6567d6debf" - } - Frame { - msec: 2224 - hash: "296129caee6a9526aa2c6071fb07198c" - } - Frame { - msec: 2240 - hash: "42abe26548e9eb7a2c63aea7f349808c" - } - Frame { - msec: 2256 - hash: "2d187394342584568aa24353233f67f7" - } - Frame { - msec: 2272 - hash: "5c4047c8ca78103d443f9058f3ec3237" - } - Frame { - msec: 2288 - hash: "05af8a131ec98b5bc60669bfcdee9a16" - } - Frame { - msec: 2304 - hash: "b486a796a74962d6b5a4e928ff9e6a2d" - } - Frame { - msec: 2320 - hash: "8bfa5cc3edf294a728bae51014733230" - } - Frame { - msec: 2336 - hash: "fb5928a74d75f7eb23ed914e12ea2dba" - } - Frame { - msec: 2352 - hash: "16c83f70c3559e97c4a28df7e8b94d95" - } - Frame { - msec: 2368 - hash: "a7f926210d56dc368c99da12a27db42e" - } - Frame { - msec: 2384 - hash: "9f235f259af00126a3fc2417d399dee6" - } - Frame { - msec: 2400 - hash: "2397c99cc1697303bad9fbd029ee63a3" - } - Frame { - msec: 2416 - hash: "b83a021c82c203d6cf690edd5fd98c89" - } - Frame { - msec: 2432 - hash: "4e9e74f8b115b69b593f0233f9431258" - } - Frame { - msec: 2448 - hash: "2d8f24eea1e87691eb2292bd01756498" - } - Frame { - msec: 2464 - hash: "bad7ffbfe4feac5e7a13a70c8096ddab" - } - Frame { - msec: 2480 - hash: "6869d23bf601c67593f23402023f931d" - } - Frame { - msec: 2496 - hash: "6e4846623fe8b4a1c850729620cd7502" - } - Frame { - msec: 2512 - hash: "f679d87f206ca71de191f3991c13f4b0" - } - Frame { - msec: 2528 - hash: "7f503ceda23f0e4718f6216c3b4ddef7" - } - Frame { - msec: 2544 - hash: "69f01285109c21cbd32a0f17942734be" - } - Frame { - msec: 2560 - hash: "f2060324802c080703ff62c051c7cff2" - } - Frame { - msec: 2576 - hash: "45d01b58f0812596aff06a09c1167d83" - } - Frame { - msec: 2592 - hash: "688c9931abdaa7225da91cdf7f2beb48" - } - Frame { - msec: 2608 - hash: "d522505f28615cc17206ca6099dbd83e" - } - Frame { - msec: 2624 - hash: "ad86d8cee90c1458b64318f3edd94aee" - } - Frame { - msec: 2640 - hash: "6dda1a6359b421ef7c9ffa4ecd863341" - } - Frame { - msec: 2656 - hash: "dcc388cdf2b87e10b07e2f05ab6dce3c" - } - Frame { - msec: 2672 - hash: "a5d64264be7778929116c9407548c7f8" - } - Frame { - msec: 2688 - hash: "cc7ac18a25936825d42694a9022b73fa" - } - Frame { - msec: 2704 - hash: "4423af95764aadbaffe3c608fb3a376b" - } - Frame { - msec: 2720 - hash: "ad186cd5735531e2e6bfb2fc387dee2d" - } - Frame { - msec: 2736 - hash: "d0e7c8071350bac03cf06996b6f74a63" - } - Frame { - msec: 2752 - hash: "d012311c64fb35717155ebc88f9940d6" - } - Frame { - msec: 2768 - hash: "13111334420c479b6a3ddbde65e2d143" - } - Frame { - msec: 2784 - hash: "3a77939f35498ef91590cd57c534fb6a" - } - Frame { - msec: 2800 - hash: "89cbc568600c18c3d7163c3079a3f584" - } - Frame { - msec: 2816 - hash: "2a8db5a4cae5258578749a88fbf915ce" - } - Frame { - msec: 2832 - hash: "ddd9cef18ce748096869dae9c2e23de3" - } - Frame { - msec: 2848 - hash: "d9e213af096ce69f75863ed7c39b59f4" - } - Frame { - msec: 2864 - hash: "69e9bfa09b8f5a1e2d83b77a5c9bc374" - } - Frame { - msec: 2880 - hash: "ac6878edac61916bf424dcee2d7790e8" - } - Frame { - msec: 2896 - image: "particles.3.png" - } - Frame { - msec: 2912 - hash: "e60ed277794737b9f5d8c4a575f5b300" - } - Frame { - msec: 2928 - hash: "5c1a39fa9789064ff0d5ea1fd4c6d187" - } - Frame { - msec: 2944 - hash: "64c1593bf33b85593153ac9eeeb7793e" - } - Frame { - msec: 2960 - hash: "dab7df26ba23ed3e750fa6080916f177" - } - Frame { - msec: 2976 - hash: "5958428d5ab5a379f9bbcc0f86c20d1b" - } - Frame { - msec: 2992 - hash: "65929536b7b8b48958fab7bd1e3ccca5" - } - Frame { - msec: 3008 - hash: "cb157ba8c58bb7a8ec357e83e82ab441" - } - Frame { - msec: 3024 - hash: "bf36b7c52a3b3b2fb08524131bb4b9e2" - } - Frame { - msec: 3040 - hash: "0d2dbb3ba42cad9e8b5833c97dd0cdba" - } - Frame { - msec: 3056 - hash: "f918a9f5fa6808b545c715dffa2f4838" - } - Frame { - msec: 3072 - hash: "ec11344fb21ee06df6cface390d611d9" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml deleted file mode 100644 index 38506a0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml +++ /dev/null @@ -1,56 +0,0 @@ -import QtQuick 1.0 -import Qt.labs.particles 1.0 - -Rectangle { - property string skip: "May contain random numbers" - width: 640; height: 480; color: "black" - - Particles { id:particlesAneverEmitting - y:60; width: 260; height:30; source: "star.png"; - lifeSpan:1000; count: 50; angle:70; angleDeviation:36; - velocity:30; velocityDeviation:10; emissionRate: 0 - ParticleMotionWander { yvariance:5; xvariance:30; pace:100 } - } - Particles { id:particlesA //snowy particles from the top - y:0; width: 260; height:30; source: "star.png"; - lifeSpan:1000; count: 50; angle:70; angleDeviation:36; - velocity:30; velocityDeviation:10; emissionRate: 10 - ParticleMotionWander { yvariance:5; xvariance:30; pace:100 } - } - - Particles { id:particlesB //particle fountain bursting every second - y:280; x:180; width:1; height:1; lifeSpan:1000; source: "star.png" - count: 100; angle:270; angleDeviation:45; velocity:50; velocityDeviation:30; - emissionRate: 0 - ParticleMotionGravity { yattractor: 1000; xattractor:0; acceleration:25 } - } - - Timer { running: true; interval: 1000; repeat: true; onTriggered: particlesB.burst(200, 2000); } - - Column{ - x: 340; - Repeater{//emission variance test - model: 5 - delegate: Component{ - Item{ - width: 100; height: 100 - Rectangle{ - color: "blue" - width: 2; height: 2; - x: 49; y:49; - } - Particles{ - x: 50; y:50; width: 0; height: 0; - fadeInDuration: 0; fadeOutDuration: 0 - lifeSpan: 1000; lifeSpanDeviation:0; - source: "star.png" - count: -1; emissionRate: 120; - emissionVariance: index/2; - velocity: 250; velocityDeviation: 0; - angle: 0; angleDeviation: 0; - } - } - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/star.png b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/star.png deleted file mode 100644 index defbde5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/star.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.0.png deleted file mode 100644 index 1b87edb..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.1.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.1.png deleted file mode 100644 index 4fc12d6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.2.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.2.png deleted file mode 100644 index d761a0c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.3.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.3.png deleted file mode 100644 index e22464f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.4.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.4.png deleted file mode 100644 index 14f07be..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.5.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.5.png deleted file mode 100644 index ba1ad34..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml deleted file mode 100644 index 9eaff18..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml +++ /dev/null @@ -1,1855 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "test-pathview-2.0.png" - } - Frame { - msec: 32 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 48 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 64 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 80 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 96 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 112 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 128 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 144 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 160 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 176 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 192 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 208 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 224 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 240 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 256 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 272 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 288 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 304 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 320 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 336 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 352 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 368 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 384 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 400 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 416 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 432 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 448 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 464 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 480 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 496 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 512 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 528 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 544 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 560 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 576 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 592 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 608 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 624 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 640 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 656 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 672 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 688 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 260; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 704 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Frame { - msec: 720 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 261; y: 188 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 736 - hash: "cc72b488dcdfa7c251782cbcae7ab1d5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 262; y: 188 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 186 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 752 - hash: "ae9028c15de8ba4b02c733212d521c29" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 283; y: 183 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 768 - hash: "d61d21ab4d83b8578494720d9bfe6fa8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 302; y: 181 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 331; y: 181 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 784 - hash: "6a6c5551e3a5a08f5505eb0f61d9df36" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 384; y: 179 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 800 - hash: "c800609ffea814ba7cc2441790157245" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 432; y: 175 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 432; y: 175 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 816 - hash: "afcb452d41c6e895309bb921a1ad1d31" - } - Frame { - msec: 832 - hash: "02d8f91c33f62aaf366bcfd03d232269" - } - Frame { - msec: 848 - hash: "a1e475643d0871bb7d63f8cf2e0b780d" - } - Frame { - msec: 864 - hash: "ba429e0c1a7f1624973813ae8be6b090" - } - Frame { - msec: 880 - hash: "36c04a2bd58124877a332bb6a262a7e5" - } - Frame { - msec: 896 - hash: "e6ea836d68c54a8308e10f33d4eb8b98" - } - Frame { - msec: 912 - hash: "1910f67eb9180a866924fa8567afbdf5" - } - Frame { - msec: 928 - hash: "68c60f1bc67a1d1117be7ed305b61ae1" - } - Frame { - msec: 944 - hash: "b859b690c633a9fec87941e7c89f5d19" - } - Frame { - msec: 960 - hash: "ef0b66e789a8e88389e16bfa36b9f6e2" - } - Frame { - msec: 976 - image: "test-pathview-2.1.png" - } - Frame { - msec: 992 - hash: "2bcde5c7b2e1aac1439b379ed729f6e1" - } - Frame { - msec: 1008 - hash: "b7056d635c69b8e5bf98872f4c07ed43" - } - Frame { - msec: 1024 - hash: "68aa8bd6709e1b49cfefc4594c236c46" - } - Frame { - msec: 1040 - hash: "e615b8648d5449535b1f47ab770db423" - } - Frame { - msec: 1056 - hash: "877e6357cc9a183a0288aa1551e26179" - } - Frame { - msec: 1072 - hash: "d540453541aba394b0958cdc48f91d48" - } - Frame { - msec: 1088 - hash: "d15e299030bc08097c3b9b4bbaace558" - } - Frame { - msec: 1104 - hash: "b12b31d4959a697fcc8e54f1c846eef9" - } - Frame { - msec: 1120 - hash: "937c7e346463c58c909795fa382761d9" - } - Frame { - msec: 1136 - hash: "41975592e60f08a0296a8babe1da2df3" - } - Frame { - msec: 1152 - hash: "0a5eea8a11b15ee8583f187f336f56c7" - } - Frame { - msec: 1168 - hash: "5872891af6953f07a635698581695c58" - } - Frame { - msec: 1184 - hash: "157c92d133a39a2b1d20a551303d2f6f" - } - Frame { - msec: 1200 - hash: "213716cad9fa2179a17a512e8c03c8f5" - } - Frame { - msec: 1216 - hash: "0ec517c50e9e36fef4fb14318e298723" - } - Frame { - msec: 1232 - hash: "bab010fe0f5d3b57fd556a9b709c285e" - } - Frame { - msec: 1248 - hash: "d8de3485eb7fb1f3675a25d7f807d08e" - } - Frame { - msec: 1264 - hash: "c091e46064c8096568224ed7e4c8dc4f" - } - Frame { - msec: 1280 - hash: "c0a6ede96566533ab35384afa535530f" - } - Frame { - msec: 1296 - hash: "f61f5c7617700b9aad71206cfc9e402e" - } - Frame { - msec: 1312 - hash: "c70c106d128051c06da3acdf817f5ffb" - } - Frame { - msec: 1328 - hash: "624d7c7fb2f39225d51d1a548aa186ed" - } - Frame { - msec: 1344 - hash: "f052610f17a7484bf6cb2bd07aa91af6" - } - Frame { - msec: 1360 - hash: "ee9ac101215923305fa75ab4c99c8f36" - } - Frame { - msec: 1376 - hash: "7597f86b537fbd70260908c973f9db21" - } - Frame { - msec: 1392 - hash: "30cd60db9aa2df2adc7d01091c905cb4" - } - Frame { - msec: 1408 - hash: "a9012dc82230c791bda1a7e6b7741896" - } - Frame { - msec: 1424 - hash: "78774bdff6cef175dcb7a190e5f1bcab" - } - Frame { - msec: 1440 - hash: "b87f002bf6fb0684f0b3cf565507e066" - } - Frame { - msec: 1456 - hash: "b60916a57aec6ebbd8b69be7c8d66e19" - } - Frame { - msec: 1472 - hash: "a28e1538d18ccb7485d0306b9f7b18a6" - } - Frame { - msec: 1488 - hash: "d74aa07d0b66a5f2be42b9868d3cd8f2" - } - Frame { - msec: 1504 - hash: "ea4c8f35367ee6f7631aa6e6d8aead03" - } - Frame { - msec: 1520 - hash: "3ecf7faa733653ef20e4a26eb47d63d1" - } - Frame { - msec: 1536 - hash: "f17a6be2e183f4c87e31004458e5052c" - } - Frame { - msec: 1552 - hash: "5361d1f1100c4815dca1b49046b44593" - } - Frame { - msec: 1568 - hash: "5cd97dc8a237fa92373eb50de8a3bd7b" - } - Frame { - msec: 1584 - hash: "c957f5c58e0a9b315b51ac1012709493" - } - Frame { - msec: 1600 - hash: "7b3cd8f583e6045d2e923a34abfc3aeb" - } - Frame { - msec: 1616 - hash: "2146e67d469f1eb2071a1f04d8e9fc4e" - } - Frame { - msec: 1632 - hash: "26839de649101c7b3bc6d9b1131325e6" - } - Frame { - msec: 1648 - hash: "47472faf5e9bf4b4e514abe55f1e0b72" - } - Frame { - msec: 1664 - hash: "30bc1d78a0cbd29813ad9504b1f0864b" - } - Frame { - msec: 1680 - hash: "e255c047ce78f5677ccec8bd9737201a" - } - Frame { - msec: 1696 - hash: "bd4f08095a9c546a42c85e6df6eaf655" - } - Frame { - msec: 1712 - hash: "ca65869f48b169260c3756d846a12f36" - } - Frame { - msec: 1728 - hash: "1921889beb8e61c8b959d4affa814465" - } - Frame { - msec: 1744 - hash: "864a4d26e719dd9fc0e3ce5c28d7726a" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 275; y: 170 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 278; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1760 - hash: "cab96d2118b31d43e85dc902df2ed8ed" - } - Frame { - msec: 1776 - hash: "cab96d2118b31d43e85dc902df2ed8ed" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 279; y: 171 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 282; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1792 - hash: "d21c8af68b314800b86922493db6553e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 290; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1808 - hash: "a80c0f6f679ba5f1354f8e16677c1125" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 292; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1824 - hash: "d8729deb404f5b821264743943adb288" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 294; y: 171 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 297; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1840 - hash: "87d41239eb7e170fa7a1ed523a9af942" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 302; y: 170 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1856 - hash: "1c185649e08a54a6949409ed7ee5dc60" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 305; y: 170 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 308; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1872 - hash: "57d5b71d5ff16f986c7df8d8405822b6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 313; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1888 - hash: "6fd4123cfc8998cfc7716f3d928fb03f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 331; y: 165 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1904 - hash: "e1d6c01f6cd66a5bcdb08ca810a07282" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 340; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1920 - hash: "fd0e9cf835131ee6cc5ecf67c6724d73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 354; y: 163 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1936 - image: "test-pathview-2.2.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 361; y: 161 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 367; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1952 - hash: "69c17a9c18795b1d8ae63d36d76af626" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 371; y: 160 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 376; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "c7ca4762498af158a2f2da6f5ae560ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 383; y: 157 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1984 - hash: "d823492036431e23d8b6876baccec263" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 387; y: 157 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 391; y: 157 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2000 - hash: "11d77567aeff20d8f62f2e4100603de3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 394; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2016 - hash: "f87df2e12dfe2ebb5b093e21970885b4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 395; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2032 - hash: "1e743264f0a312bc0d0a023fbc6db832" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 396; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2048 - hash: "ba9d1850c5c43c9aec5660601ba21d2f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 398; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2064 - hash: "8eb1f2c8c02c2acf4262e05000045649" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 401; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2080 - hash: "419c09739f855c53be3427a71aa3faf9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 403; y: 155 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 406; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2096 - hash: "c55a189b05d87e8937d272f32bdc2481" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 408; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 409; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2112 - hash: "bb1515904f9b299402d1141445154430" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 411; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2128 - hash: "93363142c5a05c52c21e771b2bce71f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 413; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2144 - hash: "96f763c555b523d9b7ed7a0a159db368" - } - Frame { - msec: 2160 - hash: "96f763c555b523d9b7ed7a0a159db368" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 414; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2176 - hash: "20f9cf7787c8cfd4843289f5ab2012e7" - } - Frame { - msec: 2192 - hash: "20f9cf7787c8cfd4843289f5ab2012e7" - } - Frame { - msec: 2208 - hash: "20f9cf7787c8cfd4843289f5ab2012e7" - } - Frame { - msec: 2224 - hash: "20f9cf7787c8cfd4843289f5ab2012e7" - } - Frame { - msec: 2240 - hash: "20f9cf7787c8cfd4843289f5ab2012e7" - } - Frame { - msec: 2256 - hash: "20f9cf7787c8cfd4843289f5ab2012e7" - } - Frame { - msec: 2272 - hash: "20f9cf7787c8cfd4843289f5ab2012e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 412; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2288 - hash: "1241895174f4d8e4386c3957e3d2e292" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 409; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2304 - hash: "bb1515904f9b299402d1141445154430" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 401; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2320 - hash: "419c09739f855c53be3427a71aa3faf9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 399; y: 155 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 396; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2336 - hash: "ba9d1850c5c43c9aec5660601ba21d2f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 393; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2352 - hash: "a130b471b3903f3f1d77f2306da2b92e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 392; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2368 - hash: "11d77567aeff20d8f62f2e4100603de3" - } - Frame { - msec: 2384 - hash: "11d77567aeff20d8f62f2e4100603de3" - } - Frame { - msec: 2400 - hash: "11d77567aeff20d8f62f2e4100603de3" - } - Frame { - msec: 2416 - hash: "11d77567aeff20d8f62f2e4100603de3" - } - Frame { - msec: 2432 - hash: "11d77567aeff20d8f62f2e4100603de3" - } - Frame { - msec: 2448 - hash: "11d77567aeff20d8f62f2e4100603de3" - } - Frame { - msec: 2464 - hash: "11d77567aeff20d8f62f2e4100603de3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 391; y: 159 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 390; y: 159 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2480 - hash: "47e86b008567366f37ac043ed8802d53" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 377; y: 159 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2496 - hash: "92e1d5dbc85e777785cc68171a0a3fbf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 331; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2512 - hash: "2234e44042daf277bd5307635155117f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 294; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 249; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2528 - hash: "acefb43050e140d689f1d377f50f5c83" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 129; y: 141 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2544 - hash: "4bc43ae81aac757c872157ac9b41a2d9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 9; y: 133 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2560 - hash: "41421089f087c54ebcd9fa44e95bd96e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -48; y: 128 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -99; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2576 - hash: "db0f09393b5c9284142f9eb3cb5952ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -173; y: 129 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: -173; y: 129 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2592 - hash: "9491689e51ec46bec07fb8b280daef80" - } - Frame { - msec: 2608 - hash: "398e4a0ebc812b779b38c4541d33424c" - } - Frame { - msec: 2624 - hash: "6bf415b82e7cfa68b8321571ab619c3f" - } - Frame { - msec: 2640 - hash: "0d09a6a0cce6d22c14bc41b8465e8ba0" - } - Frame { - msec: 2656 - hash: "495d14df729eede7e560f2e841bae142" - } - Frame { - msec: 2672 - hash: "5329441c12424e5aa69ee0c5cff5926d" - } - Frame { - msec: 2688 - hash: "482ce41c4b918a71b803c5f521ea494e" - } - Frame { - msec: 2704 - hash: "aa8b21cdea3d0ae6a2e59a1b318da842" - } - Frame { - msec: 2720 - hash: "dd142875acafdc8591a29bcd9f871dab" - } - Frame { - msec: 2736 - hash: "222d638b8fb896563028f029e6fb3c49" - } - Frame { - msec: 2752 - hash: "20b8fc718d9329c9c8901fdfe14557a2" - } - Frame { - msec: 2768 - hash: "36217f04f3b1b70a9cf3fa4881b2def7" - } - Frame { - msec: 2784 - hash: "e3a4b357c00d3d49e4a7d90f6f57054c" - } - Frame { - msec: 2800 - hash: "44ad81d2ad0d502b003e148412871a41" - } - Frame { - msec: 2816 - hash: "7313fc37802c462ddd324a13c8fcdc9c" - } - Frame { - msec: 2832 - hash: "961e84cbb3591cebdb5b83c2aa83887c" - } - Frame { - msec: 2848 - hash: "70e3cd650472d0e95f4d6ca9e34a2ce1" - } - Frame { - msec: 2864 - hash: "19a7825cd8c0eaa6f313ec77fff9ec1b" - } - Frame { - msec: 2880 - hash: "943dfcee3f04c77fba2cec289a288c4b" - } - Frame { - msec: 2896 - image: "test-pathview-2.3.png" - } - Frame { - msec: 2912 - hash: "36be9a0d4376ece0b279a118a3fab364" - } - Frame { - msec: 2928 - hash: "92e9be6d36844bb475b861ba9c4bc3ff" - } - Frame { - msec: 2944 - hash: "08b9cce3b2071b328054af6bcb6755c7" - } - Frame { - msec: 2960 - hash: "b505d2f41a6db06d4ca03f5340800aa6" - } - Frame { - msec: 2976 - hash: "b17faafb59a9d182faf00495736a7fac" - } - Frame { - msec: 2992 - hash: "549eb98193f0e81aee716239f872a21c" - } - Frame { - msec: 3008 - hash: "8dd67df95fae14079ed5b83c421a5b6e" - } - Frame { - msec: 3024 - hash: "7b217f7c51087a07e8922b0286b2c1dc" - } - Frame { - msec: 3040 - hash: "e464b5121f3204c64cafe2f5e31cf497" - } - Frame { - msec: 3056 - hash: "7fc2018f8db17b65fd01b2ddfa44f66d" - } - Frame { - msec: 3072 - hash: "a5d1871511eac7224292b3552da466a8" - } - Frame { - msec: 3088 - hash: "2f0a55cf3cd30da77fbb73e749b729a3" - } - Frame { - msec: 3104 - hash: "9aab649b6664c179878d0ead438dd751" - } - Frame { - msec: 3120 - hash: "9506c95e1febf3d781e6b1dbbaf640d3" - } - Frame { - msec: 3136 - hash: "e73b4fd7cb6285df9a77d666f25ab245" - } - Frame { - msec: 3152 - hash: "adef134dc735305b673c6fa47a3d1a34" - } - Frame { - msec: 3168 - hash: "04fc6aac5f090960cd87eefb4273fb0f" - } - Frame { - msec: 3184 - hash: "294c842a71b5e4927146952ce865c8a2" - } - Frame { - msec: 3200 - hash: "ac6f7afb4a5e67e2edd8300e7dfdff13" - } - Frame { - msec: 3216 - hash: "036d247dd83e0fbfe4f65cbd79e9ab57" - } - Frame { - msec: 3232 - hash: "959270d536187e6b669263a57b260e78" - } - Frame { - msec: 3248 - hash: "ca457a1c503a980687926e31ac16995b" - } - Frame { - msec: 3264 - hash: "42a9b43e2c66a5ef32c8b6564235c623" - } - Frame { - msec: 3280 - hash: "b2a071734226b905f6c6f5652f645517" - } - Frame { - msec: 3296 - hash: "cf5c7868e399fadac1642f47a0b4dbd2" - } - Frame { - msec: 3312 - hash: "9c689254f44a6ced1c4962400613d4da" - } - Frame { - msec: 3328 - hash: "9cfe0627852cefe67fc0b44b31085b4a" - } - Frame { - msec: 3344 - hash: "de7ab5230efb63264f76fa1f1b61dcfa" - } - Frame { - msec: 3360 - hash: "5ad22cf9e1c9a02cfc570beaac55bee0" - } - Frame { - msec: 3376 - hash: "9e6210d9e6bfda4fe0695b75d03435e2" - } - Frame { - msec: 3392 - hash: "d3989a9fb7e99d16032fa1842364f2ed" - } - Frame { - msec: 3408 - hash: "f65c57211997139ae1473951333d7b35" - } - Frame { - msec: 3424 - hash: "16bb17f511519337be2e60d8b9f95149" - } - Frame { - msec: 3440 - hash: "819250fd9899a9457a9300f942f4d8bf" - } - Frame { - msec: 3456 - hash: "191115950915abcb338c3f4c17595840" - } - Frame { - msec: 3472 - hash: "14b553132a86e57577c416e6f6c53433" - } - Frame { - msec: 3488 - hash: "f7a95239db44b66698d29f0daae826f1" - } - Frame { - msec: 3504 - hash: "b5a6abb5294fb9b069ab8a075003cb61" - } - Frame { - msec: 3520 - hash: "391c1c43ce893aeefc42d164e6e8aaac" - } - Frame { - msec: 3536 - hash: "271addef36d51d904bc1d68f65b66de3" - } - Frame { - msec: 3552 - hash: "73a23e56edcd64ac6147aff27b785ebb" - } - Frame { - msec: 3568 - hash: "bd43145ae22086348cb5e68765a42ac1" - } - Frame { - msec: 3584 - hash: "e9de53c430f9de55146ac6606d55d427" - } - Frame { - msec: 3600 - hash: "6420fd46fd8068010d3caaa68eea457e" - } - Frame { - msec: 3616 - hash: "188499a79313d984ed1d710329b0237f" - } - Frame { - msec: 3632 - hash: "12da197320858ea4f8a1437b7ceac95a" - } - Frame { - msec: 3648 - hash: "a44936319089e2379de34edf58b453c1" - } - Frame { - msec: 3664 - hash: "c894ceaf318dd1afe29dcfe171aadf0f" - } - Frame { - msec: 3680 - hash: "deea3a520f3fe43bf92f05a25f791458" - } - Frame { - msec: 3696 - hash: "176381c4acfacecd0d203b7ad8fbd7d4" - } - Frame { - msec: 3712 - hash: "0c6eec50abcf4afc20311ffa1326d4e8" - } - Frame { - msec: 3728 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Frame { - msec: 3744 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Frame { - msec: 3760 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Frame { - msec: 3776 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Frame { - msec: 3792 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Frame { - msec: 3808 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Frame { - msec: 3824 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Frame { - msec: 3840 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Frame { - msec: 3856 - image: "test-pathview-2.4.png" - } - Frame { - msec: 3872 - hash: "21f2e0c3ba2142d1baae9406858f1cea" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 363; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3888 - hash: "e66b75e5644018aecd321e498de08ca1" - } - Frame { - msec: 3904 - hash: "e66b75e5644018aecd321e498de08ca1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 363; y: 157 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3920 - hash: "eb346d68bd5b51a31ee2f5d807970d96" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 361; y: 158 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 358; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3936 - hash: "ffd30479d99b19926072fa94cdec6195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 352; y: 159 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3952 - hash: "207efe4cbcebaedca1d2fc6726d46543" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 349; y: 160 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 342; y: 162 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3968 - hash: "f011a043293362d5affcbcdfe3c93131" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 327; y: 166 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3984 - hash: "934ed8956abae51fd19352f23ef9a16a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 320; y: 168 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 320; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4000 - hash: "0daf00b242485319f5c9050b9cdb6775" - } - Frame { - msec: 4016 - hash: "8111f56ae5cfcf1d6c934e134602a8dc" - } - Frame { - msec: 4032 - hash: "6f3f6c2ae3c36401d1d96a37bbd62c52" - } - Frame { - msec: 4048 - hash: "11cde9b9369addaa5ff140e3a0bbf9ac" - } - Frame { - msec: 4064 - hash: "fefd7d44805c330c606fcc23b691832e" - } - Frame { - msec: 4080 - hash: "b9eb8f8a78485deafc04a9bac39e5c31" - } - Frame { - msec: 4096 - hash: "f0be22ea55a6a9621718cb5e1b55e6f7" - } - Frame { - msec: 4112 - hash: "cb0d62b8c16406a0ff35feea3ff074b9" - } - Frame { - msec: 4128 - hash: "15bf986b1e4072ce48ef40651e11a93a" - } - Frame { - msec: 4144 - hash: "d29f81f0c8468ea045f1c21adca8c0e6" - } - Frame { - msec: 4160 - hash: "577f27fd6212bbb7394b64b0872d7e6e" - } - Frame { - msec: 4176 - hash: "f26c83a4ede9e04ceabf276fd2eeaa4d" - } - Frame { - msec: 4192 - hash: "34f449f3c29c4b0bb0972e8d3510452c" - } - Frame { - msec: 4208 - hash: "5cf950b9f0bb8c851a2865718bd3e6ec" - } - Frame { - msec: 4224 - hash: "202b5c9cd1717dfef0d1f667ca115571" - } - Frame { - msec: 4240 - hash: "5d703db8af0eeba0327177f79b0fd85b" - } - Frame { - msec: 4256 - hash: "69e4fdbaba2ad4983edcbaad0ccfa905" - } - Frame { - msec: 4272 - hash: "c91389bd9e9c7fce2a8e5ffca851cf89" - } - Frame { - msec: 4288 - hash: "5e2b94dda5af845a368032cc85e3167f" - } - Frame { - msec: 4304 - hash: "5946e2bd9a32130fed9612d6152b7ddd" - } - Frame { - msec: 4320 - hash: "74f13b9111005e610028ea252132c1fc" - } - Frame { - msec: 4336 - hash: "ba2a587b26fd3d92a368e3b63513e145" - } - Frame { - msec: 4352 - hash: "2047ecb0be3173846b7c09b7054bad07" - } - Frame { - msec: 4368 - hash: "db6993dfaad694f812130c112e9c78b6" - } - Frame { - msec: 4384 - hash: "aea54cad7368b8511412f4d9fd1e8b07" - } - Frame { - msec: 4400 - hash: "431d140c8e9a61f6c1fe7a044900b4b7" - } - Frame { - msec: 4416 - hash: "ed80bccd69ebd4326b01fdf46b56dd52" - } - Frame { - msec: 4432 - hash: "edd82b44bd2813f2bf20bbf8be4ad10d" - } - Frame { - msec: 4448 - hash: "527b3fb45d585f70ef2ef2e78d2fff05" - } - Frame { - msec: 4464 - hash: "00b68c12c6cef0b523eeef8c7556a26c" - } - Frame { - msec: 4480 - hash: "37c62b1c2c3d70220b1d7b28a57de0a5" - } - Frame { - msec: 4496 - hash: "e73843907eb7ee18c59b5fe98022f542" - } - Frame { - msec: 4512 - hash: "139d84bfdefd825a89ddd4150a72fa9f" - } - Frame { - msec: 4528 - hash: "779690a2e5291b7d64ceed193bf8e572" - } - Frame { - msec: 4544 - hash: "4ffd9beb48bd769d9e3b8ad3aedff08b" - } - Frame { - msec: 4560 - hash: "b1edf784de34b42bd74390836db976b9" - } - Frame { - msec: 4576 - hash: "78327706741822e6ba8b0b88be469422" - } - Frame { - msec: 4592 - hash: "32979d6f14c1aeca1f7ac0c5a330bbdc" - } - Frame { - msec: 4608 - hash: "8274a35f384478ca2f018c5d914d428d" - } - Frame { - msec: 4624 - hash: "70f4b77c65450eddfa61ebdf2dc75985" - } - Frame { - msec: 4640 - hash: "2f95623085afc48094f122c290566440" - } - Frame { - msec: 4656 - hash: "8f671bd7878b897593eb8ae0358c8a01" - } - Frame { - msec: 4672 - hash: "64cf5c749c85d0e42b6c99f31da955b8" - } - Frame { - msec: 4688 - hash: "22e3394e779e25cc0d6c05bd2c6159d5" - } - Frame { - msec: 4704 - hash: "42bc5633692228e48aa3ce3e3d8a7bbe" - } - Frame { - msec: 4720 - hash: "4dd05fce6984dbc6b6764b5e4189fd94" - } - Frame { - msec: 4736 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4752 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4768 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4784 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4800 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4816 - image: "test-pathview-2.5.png" - } - Frame { - msec: 4832 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4848 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4864 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4880 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4896 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4912 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4928 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4944 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4960 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4976 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 4992 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 5008 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 5024 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 5040 - hash: "ca7b9bc30c728268b338848230a5a859" - } - Frame { - msec: 5056 - hash: "d30be31c0f9d92aeba83ce345551005a" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.0.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.0.png deleted file mode 100644 index af0e781..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.1.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.1.png deleted file mode 100644 index d3e98dc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.2.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.2.png deleted file mode 100644 index 9c6c1c3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.3.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.3.png deleted file mode 100644 index fc1574a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.4.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.4.png deleted file mode 100644 index f76ae14..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.5.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.5.png deleted file mode 100644 index f6b8e83..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.6.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.6.png deleted file mode 100644 index be041d8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml deleted file mode 100644 index 32c2a15..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml +++ /dev/null @@ -1,2567 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "test-pathview.0.png" - } - Frame { - msec: 32 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 48 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 64 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 80 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 96 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 112 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 128 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 144 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 160 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 176 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 192 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 208 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 224 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 240 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 256 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 272 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 288 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 304 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 320 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 336 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 352 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 368 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 384 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 400 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 416 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 432 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 448 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 464 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 480 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 496 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 512 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 528 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Frame { - msec: 544 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 363; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 560 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 362; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 576 - hash: "b9fed927475786f6f7aefc554cfc1afe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 361; y: 159 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 357; y: 159 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 592 - hash: "683d9f54c75f5b1ed082edb0b4559bc8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 348; y: 157 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 330; y: 157 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 608 - hash: "02e5238c0764f370d0f463cc3f477df7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 286; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 624 - hash: "02239cd84ce630a89b94dbcf469d9a70" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 254; y: 163 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 640 - hash: "51c14d87d2cf89aaece5bd682008f67f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 240; y: 165 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 225; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 656 - hash: "db00a0d69efd43f69c83dafbf38a06a6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 672 - hash: "1bfd848a89a0477596b77903a173f728" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 171 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 171 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 153; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 688 - hash: "f66f04b42b0db33b852a82030d647886" - } - Frame { - msec: 704 - hash: "e1573c6fd92f0fc4e267a37f417d0bc0" - } - Frame { - msec: 720 - hash: "017044987c781ad8bb4cd8242f9091ed" - } - Frame { - msec: 736 - hash: "cd952ffa63dbcb772b666ce755c9a2f1" - } - Frame { - msec: 752 - hash: "2a31778e3ab7c676ae82278948cef12a" - } - Frame { - msec: 768 - hash: "cb9e1ef51c8367e0b8c71cfdb70906fa" - } - Frame { - msec: 784 - hash: "05ccb24a2025df31188b413c8d837232" - } - Frame { - msec: 800 - hash: "df31f9dba1a762397c0364d7e83052ef" - } - Frame { - msec: 816 - hash: "6eec07606ef320072ea23ceedb3f6b29" - } - Frame { - msec: 832 - hash: "e3502cb53c6e17373de3b718a8212f4d" - } - Frame { - msec: 848 - hash: "c684dc3153314fe3a73fa0dd09f27695" - } - Frame { - msec: 864 - hash: "f1d5e911a68f9922f29bb6ae14234da9" - } - Frame { - msec: 880 - hash: "aa9c3122e3c2a7ed450a0afffbcf4e6a" - } - Frame { - msec: 896 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 912 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 928 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 944 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 960 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 976 - image: "test-pathview.1.png" - } - Frame { - msec: 992 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1008 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1024 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1040 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1056 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1072 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1088 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1104 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1120 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1136 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1152 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Frame { - msec: 1168 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 378; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1184 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 376; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1200 - hash: "1535dea92038cf87395a616841fd9bf6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 374; y: 161 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 373; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1216 - hash: "aa9c3122e3c2a7ed450a0afffbcf4e6a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 367; y: 160 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 353; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1232 - hash: "b889647c08af7db2e6582d9927cb1cf7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 328; y: 157 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 303; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1248 - hash: "1cea77e58dbf1c9f321eab2f01f37be0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 280; y: 153 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 253; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1264 - hash: "b38c46d537e6e622c8a0ecae76dbe506" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 230; y: 151 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1280 - hash: "6261f2f16bdd89142cfbf1de4ce64a32" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 153 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 193; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1296 - hash: "d4f8d57bae3d5bc888a4bbe2812b3fdf" - } - Frame { - msec: 1312 - hash: "11717eaf13ac83760984afa47bbd52f7" - } - Frame { - msec: 1328 - hash: "b20e244f27dae505568fcba25cccb5d8" - } - Frame { - msec: 1344 - hash: "f31d264a002718787ea55a6312c7f9f2" - } - Frame { - msec: 1360 - hash: "514d400cdc9c356a0de3c04649d885dc" - } - Frame { - msec: 1376 - hash: "64fc0f18174f5e8002cf79a908cc08df" - } - Frame { - msec: 1392 - hash: "ab04af0d0f0f0d4538ec58841306cea7" - } - Frame { - msec: 1408 - hash: "5cbc813c467b453c3e8de177aaede5b6" - } - Frame { - msec: 1424 - hash: "47e431bf01575c44f7c1fa3e20409866" - } - Frame { - msec: 1440 - hash: "d17b62a0b52b4a5220b29b55f764abc6" - } - Frame { - msec: 1456 - hash: "9bd0d8dfbee424bd0ccf72703a7c51c2" - } - Frame { - msec: 1472 - hash: "8ef880c18ecd8adb66e7e0a2dceb61fc" - } - Frame { - msec: 1488 - hash: "fcc1bc7f35342f595448ca2870478b50" - } - Frame { - msec: 1504 - hash: "24421668a7814c3db8b7d1e50d2e9137" - } - Frame { - msec: 1520 - hash: "b2a6acf1fed92069fd2779b1fa236c95" - } - Frame { - msec: 1536 - hash: "7128a442b6bb06038477d46ac3da5021" - } - Frame { - msec: 1552 - hash: "6a0ab3ccc3749b9a2b9a5b5851b0cf70" - } - Frame { - msec: 1568 - hash: "18f6cdad215c55ea8335d06110715aa8" - } - Frame { - msec: 1584 - hash: "137420f4b1f51440c3aefd18dbdad71d" - } - Frame { - msec: 1600 - hash: "a4a436b32e96fe5f9c3309bd1cabe65a" - } - Frame { - msec: 1616 - hash: "cb801c9d2b7f04a0413898ea74c61f80" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 339; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 334; y: 152 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1632 - hash: "2e74cc22a4e5b20cc231bc08e15e662a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 245; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1648 - hash: "27be226c985bb0143d1dca3e4be4b10a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 150 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 139; y: 150 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1664 - hash: "9384d46806b2a8091b6d16f7636d6ae4" - } - Frame { - msec: 1680 - hash: "38e396c6fa5754d0070e4fd17ab2dc8b" - } - Frame { - msec: 1696 - hash: "dc1facc91b6935983bbcd2eada452d4d" - } - Frame { - msec: 1712 - hash: "6bb08cc431a3ecca1a553ea10669bb0c" - } - Frame { - msec: 1728 - hash: "1330640d4ca9ac69dd089cea34b7f61d" - } - Frame { - msec: 1744 - hash: "95370207a55b56c41923937b40d5fe6b" - } - Frame { - msec: 1760 - hash: "ba1a6b8e55d7c5d73b371c8821f8caa2" - } - Frame { - msec: 1776 - hash: "ec19910e0f7b3e218d5a1992a7d00c4a" - } - Frame { - msec: 1792 - hash: "7ca87adb6f69c5530be9da6df6b1d9a9" - } - Frame { - msec: 1808 - hash: "05109c3dfac7f65fe00e81d1a145f048" - } - Frame { - msec: 1824 - hash: "3da4fe69c1d6904a36d95bcd43f52195" - } - Frame { - msec: 1840 - hash: "3cdb89ceb3ee66349b8a19301cc58e3d" - } - Frame { - msec: 1856 - hash: "98088442867a0f1ec90144c531c9c5fb" - } - Frame { - msec: 1872 - hash: "22d87a7d6409e2ce659a869dce57eef8" - } - Frame { - msec: 1888 - hash: "c1466f188c724c889017db70e2d60153" - } - Frame { - msec: 1904 - hash: "e5392d308078449277be8d2f57561551" - } - Frame { - msec: 1920 - hash: "f0dcfd9b22f385fedfde964774480f85" - } - Frame { - msec: 1936 - image: "test-pathview.2.png" - } - Frame { - msec: 1952 - hash: "8d6a232f303e48c9366dbf265cedf958" - } - Frame { - msec: 1968 - hash: "c6bc2031a4c59eb7a5b34e663252e91c" - } - Frame { - msec: 1984 - hash: "bf8be42cdcdcfd205c8cb7e937ff5d0d" - } - Frame { - msec: 2000 - hash: "ac57c578e7e2cbb57e982d6da5fb7268" - } - Frame { - msec: 2016 - hash: "db40e242fabf119f0e7187eeb96a34a5" - } - Frame { - msec: 2032 - hash: "9a2c8dd1883824415f5825a2a5cf3d09" - } - Frame { - msec: 2048 - hash: "78e31d9b30619ee5774d3cf10b5af762" - } - Frame { - msec: 2064 - hash: "67a28c2188aecfc5dcccedd257789dbc" - } - Frame { - msec: 2080 - hash: "4355f220c8a87ad981088fb23bb15f11" - } - Frame { - msec: 2096 - hash: "6a2f7dde022d4044e8772b8fcc28b02e" - } - Frame { - msec: 2112 - hash: "ba13b0b4790aec7084b5553fe0b0d72b" - } - Frame { - msec: 2128 - hash: "662402cd180eb325c174b6935a9d3f0a" - } - Frame { - msec: 2144 - hash: "8eb192c9d01fe205ddcba2d5cadab65f" - } - Frame { - msec: 2160 - hash: "bcc69f859b3bff759e0c732c7adc23f0" - } - Frame { - msec: 2176 - hash: "bc0ee50215b6b31422ee423f7955770c" - } - Frame { - msec: 2192 - hash: "955212dc28a6f8fe59c658401284d3a3" - } - Frame { - msec: 2208 - hash: "0ce5216f041f657a96ae4693319bfad3" - } - Frame { - msec: 2224 - hash: "0370a09ab78439e9df487ea55853ef98" - } - Frame { - msec: 2240 - hash: "23190380ddcc4e3afce2164a4743d179" - } - Frame { - msec: 2256 - hash: "40ca7c3d24883a8d3457de934b247280" - } - Frame { - msec: 2272 - hash: "299ed19fa4d213e0e9dd127e8799d5fc" - } - Frame { - msec: 2288 - hash: "e39a067860fa7dcb4efba87aee58cc77" - } - Frame { - msec: 2304 - hash: "a709045723c4a9a2e85295fcc360eea9" - } - Frame { - msec: 2320 - hash: "44ecad3423a36882755fad6fb79bc2c8" - } - Frame { - msec: 2336 - hash: "b3eaadeb9d3b008fcf21c58158e8b028" - } - Frame { - msec: 2352 - hash: "110b000fa3e122560480d466fe231b21" - } - Frame { - msec: 2368 - hash: "51f7c896d79c900a2b54a8c756228200" - } - Frame { - msec: 2384 - hash: "28c18081813c801c6793873ec23e6c0c" - } - Frame { - msec: 2400 - hash: "65c1f85d2086f5e6d95d9b99a84281a5" - } - Frame { - msec: 2416 - hash: "752cb6969fa8b76abf4bb229edb2c21f" - } - Frame { - msec: 2432 - hash: "f00ea591d697546b5afe4420b702db49" - } - Frame { - msec: 2448 - hash: "d510db233f025b026f896b760848cc07" - } - Frame { - msec: 2464 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2480 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2496 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2512 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2528 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2544 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2560 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2576 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2592 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2608 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 72; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2624 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2640 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Frame { - msec: 2656 - hash: "e5c8d361abcbc15df0b0b82728cb5b84" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 121 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 74; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2672 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 79; y: 123 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 129 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2688 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2704 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 158 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 239; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2720 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 280; y: 178 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 313; y: 185 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2736 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 344; y: 191 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 344; y: 191 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2752 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2768 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2784 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2800 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2816 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2832 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2848 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2864 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2880 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2896 - image: "test-pathview.3.png" - } - Frame { - msec: 2912 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2928 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2944 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2960 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2976 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 2992 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3008 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3024 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3040 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3056 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3072 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3088 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 152; y: 143 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3104 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3120 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3136 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3152 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3168 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3184 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Frame { - msec: 3200 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3216 - hash: "f728208b0fc2f230313c86378cf7f419" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 146 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3232 - hash: "7d43010a9951054df82571936a04cc50" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 147 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3248 - hash: "ab1980970c82238d2c37d61db4fc5153" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 148 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3264 - hash: "dc7f5231d844b36e1429f1072080a60c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 150 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 150 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3280 - hash: "161410fe9eb458c717cfbb9ef0626535" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 150 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3296 - hash: "91a884de3e19dc6ca7fcde32492b3ff1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 152 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3312 - hash: "ab2d88a4cd58d0064c32660272ff1dbd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 153 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3328 - hash: "ed299cd4ef2364ab1d7b702e2b0a7233" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 195; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3344 - hash: "4346ad16720e853154bfc1a22d9e7f55" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 197; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3360 - hash: "1347a26241ed98d4913e1cb6cda58286" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 155 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 202; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "2efe07858c0c4de7fd3e339d7a24d5f5" - } - Frame { - msec: 3392 - hash: "3edbe6755710ce148341faeb6980707a" - } - Frame { - msec: 3408 - hash: "fb7b31720b9de8d820ce29d9861482dd" - } - Frame { - msec: 3424 - hash: "4bb82c8b498b41e0785bea6b2c52b5e6" - } - Frame { - msec: 3440 - hash: "207003ce6908f9707e9193a6c82a40c0" - } - Frame { - msec: 3456 - hash: "04f3c7a5cb270405446cbb85da8c1c16" - } - Frame { - msec: 3472 - hash: "1fdaaa68c4ed484536c207a0eacf6e72" - } - Frame { - msec: 3488 - hash: "d1223c8254f9e7e37c4e09628f38bce2" - } - Frame { - msec: 3504 - hash: "3b0dce0a781799bd24073a6dc9717f68" - } - Frame { - msec: 3520 - hash: "1f6fc9f37a02e54418d90307f06c5b6f" - } - Frame { - msec: 3536 - hash: "a1116c06874af67ff54d69009f78d4da" - } - Frame { - msec: 3552 - hash: "4717c402fc7ad0d3f44b9944672d2746" - } - Frame { - msec: 3568 - hash: "7a180273295e9a30f5e26cdb080b87f2" - } - Frame { - msec: 3584 - hash: "8d8c117ca102cb93e752904fe3aee7bc" - } - Frame { - msec: 3600 - hash: "3cee427f42e8ccd33e9fccd903ae6f1d" - } - Frame { - msec: 3616 - hash: "bbd5f2b95325fde3b8759f2ef713c6bd" - } - Frame { - msec: 3632 - hash: "25779cf68847c0a132ea4aed6a5ef4d3" - } - Frame { - msec: 3648 - hash: "5a424e7e66d87d278483c43070920d56" - } - Frame { - msec: 3664 - hash: "ae28bc20e20e022e1ac9bc2ddac0e134" - } - Frame { - msec: 3680 - hash: "9f3c20980b481806ce7c1b33c177a049" - } - Frame { - msec: 3696 - hash: "5fb403dc08f95fb0651dcd33d32ef6c0" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 117; y: 142 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 142 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3712 - hash: "c6422e39ed268dd67846e55908bc6f21" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 143 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3728 - hash: "913269856c18d4f478eed1aa1d5ae293" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 119; y: 143 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 143 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3744 - hash: "2c6a32e167bef4c3de0ca97e5764f31b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 121; y: 144 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "88386cf4d982c5ca4e3fbd3519d9bd9c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 123; y: 144 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3776 - hash: "8c30751e1d1e443b5ad217151e8e8fc8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 144 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 129; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3792 - hash: "b09c45ea79cd818bac6fe35e4167d4bd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3808 - hash: "e621e9486e10332d937417a0b6be6be7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 147 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3824 - hash: "f4a805fc5c12cc3b2a22ef01050bf3aa" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 147; y: 150 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3840 - hash: "aa7805e4d806c4c56ded804145c44464" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3856 - image: "test-pathview.4.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 155 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3872 - hash: "f6495f86ae29c7a996b3302300e98f75" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 184; y: 157 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3888 - hash: "0dda191a66162db6365c663979b0990d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 160 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3904 - hash: "72a57fe4fc34a19040890a9e2a11dae5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 162 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 231; y: 162 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3920 - hash: "3a303646ea0fd126ee00c847efa48d0c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 241; y: 162 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 251; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3936 - hash: "8d33b6fa9d6525902e5611cf8ed2fa1f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 276; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3952 - hash: "d73a8eba0c43f214946052481f3db98f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 288; y: 167 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 301; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3968 - hash: "c2f101636963ff5c61be2ad83c6b7ceb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 312; y: 169 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 324; y: 171 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 324; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3984 - hash: "54630f489303c7ec2e94b4c941bd310f" - } - Frame { - msec: 4000 - hash: "357106c752b13bcca047d55a3c7cd486" - } - Frame { - msec: 4016 - hash: "3cc1355449b8ec7209537fedb0af43b1" - } - Frame { - msec: 4032 - hash: "7da9e4197cb9be292e561790af1caa27" - } - Frame { - msec: 4048 - hash: "2f4e6b57c6a4fa1689e585214f35702a" - } - Frame { - msec: 4064 - hash: "76edfedd2b9edcc5770dcce87b022427" - } - Frame { - msec: 4080 - hash: "68165bd37b4cb1609d686a361ae54e06" - } - Frame { - msec: 4096 - hash: "436e81734e23502ef8604145d5892c41" - } - Frame { - msec: 4112 - hash: "93f005a5a6a989db3e1702fa4f11f6ee" - } - Frame { - msec: 4128 - hash: "7d00d2a606d92cb8c0726c14cba0f989" - } - Frame { - msec: 4144 - hash: "32ebb24cee3ba65f9242708538203553" - } - Frame { - msec: 4160 - hash: "948429b8ded1f688cd7e27e0f056f40c" - } - Frame { - msec: 4176 - hash: "c6fc2e8519a31bc18eb924ca98cd24be" - } - Frame { - msec: 4192 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4208 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4224 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4240 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4256 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4272 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4288 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4304 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4320 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4336 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4352 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4368 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4384 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 4400 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 112; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4416 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 128 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4432 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 128 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4448 - hash: "96815da788d9968a173e7005d3ca8bff" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 116; y: 130 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 119; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4464 - hash: "6949c70729c3e43bc59cc12d4bb82d8f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 134 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 138 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4480 - hash: "26ce66ebfa6eec9eab4d987ef4ec5d5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 147; y: 144 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4496 - hash: "46e206837a34ba4d418c4e1098b49fd8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 157 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4512 - hash: "ac7451dcd3f1359ca2850bd986c22994" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 269; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4528 - hash: "f9179ba9c011bc1492daf0d22f7e85e0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 319; y: 176 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4544 - hash: "8db5ba9548ecad76b889d9024f59b5cf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 361; y: 180 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4560 - hash: "30375b9f69ca4ac1b67ff208fd18817f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 406; y: 185 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4576 - hash: "3ba2bd45231cdea3bd9f868c9d35f91e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 428; y: 187 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 428; y: 187 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4592 - hash: "50646478058ada031f29b5df661e734e" - } - Frame { - msec: 4608 - hash: "ab6f2fb209650dbf83710f3299db8907" - } - Frame { - msec: 4624 - hash: "dbec24d44d19b834e9a4936c960c4295" - } - Frame { - msec: 4640 - hash: "09c41872193e4a6eab37b35ef4e90465" - } - Frame { - msec: 4656 - hash: "1778dc99de59e28a730a1439a7576abb" - } - Frame { - msec: 4672 - hash: "6dbbdb5b4e6c6870b5dd62b1b94f9dd3" - } - Frame { - msec: 4688 - hash: "3b5cf826c12339c0c635ae1ffcd431e7" - } - Frame { - msec: 4704 - hash: "6d6068c26eea67214fd3529ab84ab5b5" - } - Frame { - msec: 4720 - hash: "54cbc4842acb46254746984936656c5b" - } - Frame { - msec: 4736 - hash: "10707bae5274ad29ac3e4aea320a30bf" - } - Frame { - msec: 4752 - hash: "ad288c8afc21a87077bae47cbaed1a46" - } - Frame { - msec: 4768 - hash: "bc1c391b0d7a56276b7c082aa2882e47" - } - Frame { - msec: 4784 - hash: "c62341687ca048da1551eb708c7e8a19" - } - Frame { - msec: 4800 - hash: "1a4e3bb688d6fcfe937f53f8179b21e0" - } - Frame { - msec: 4816 - image: "test-pathview.5.png" - } - Frame { - msec: 4832 - hash: "0646877fe2f6935ca4b34495abed5919" - } - Frame { - msec: 4848 - hash: "46899d9c0a188671d9b7ec01c827ad03" - } - Frame { - msec: 4864 - hash: "85cd8aa6dfa28c5d2e10f1ff83644d8f" - } - Frame { - msec: 4880 - hash: "323711ddd10147f51d903f524195b9fe" - } - Frame { - msec: 4896 - hash: "ba6b46ac25a4f111c926522fc47d7367" - } - Frame { - msec: 4912 - hash: "5dab5804d66b6aa8e4f73246c3b19557" - } - Frame { - msec: 4928 - hash: "2cac21d8e33bc01431a6aedabba3ce18" - } - Frame { - msec: 4944 - hash: "e1edf4268e206a40543d1a6caa4d0b43" - } - Frame { - msec: 4960 - hash: "4989e920c0d173e68c3de730a5f4f877" - } - Frame { - msec: 4976 - hash: "9840b722350840b56b096fda3a70f8e8" - } - Frame { - msec: 4992 - hash: "261b7a66300ff2a9b761dd70d02ed490" - } - Frame { - msec: 5008 - hash: "7b6ffb01c050c31bfb433077c8336ed9" - } - Frame { - msec: 5024 - hash: "f8a20f8fe943b498dae9ba8fed113496" - } - Frame { - msec: 5040 - hash: "e66b0f50bae2d0bba73f415af2c8dba1" - } - Frame { - msec: 5056 - hash: "c82bb5035ff84c955f34f1189dcdbda4" - } - Frame { - msec: 5072 - hash: "8fce2628032b2a1f16373e721671ab8c" - } - Frame { - msec: 5088 - hash: "e260e978d88301448eb56145e0fdfd07" - } - Frame { - msec: 5104 - hash: "7c5d5bfdabf8b7f1d01fb1761ec976b3" - } - Frame { - msec: 5120 - hash: "eeb8f15a4cbecf4013f48015ebb1840d" - } - Frame { - msec: 5136 - hash: "fb7bbed845f6fd5648c73431b0e4f65a" - } - Frame { - msec: 5152 - hash: "6e944ef5057031fc6a56ea27036c953a" - } - Frame { - msec: 5168 - hash: "0f96b7d876cb893081606ff93f7cf5c7" - } - Frame { - msec: 5184 - hash: "5904e4105e1108427a2826f24f82b293" - } - Frame { - msec: 5200 - hash: "79a79fd11348a5a250d132a151446711" - } - Frame { - msec: 5216 - hash: "edfed341f047b923aea434a3c31c8c27" - } - Frame { - msec: 5232 - hash: "06e8e9e202b395dc3b230b1b7a982bf8" - } - Frame { - msec: 5248 - hash: "d2ba2520683cdb64d366ab44a54b4668" - } - Frame { - msec: 5264 - hash: "94b1e8a018f17f761de164a8acf4d68a" - } - Frame { - msec: 5280 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5296 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5312 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5328 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5344 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5360 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5376 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5392 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5408 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5424 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5440 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5456 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5472 - hash: "8abb0aa8951612338c3bb87c7a0d2509" - } - Frame { - msec: 5488 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5504 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5520 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5536 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5552 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5568 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5584 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5600 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5616 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5632 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5648 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5664 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5680 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5696 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5712 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5728 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5744 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5760 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5776 - image: "test-pathview.6.png" - } - Frame { - msec: 5792 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5808 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5824 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5840 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5856 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5872 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5888 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5904 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5920 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5936 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5952 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5968 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 5984 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6000 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6016 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6032 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6048 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6064 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6080 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6096 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6112 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6128 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6144 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6160 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6176 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6192 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6208 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6224 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6240 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6256 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } - Frame { - msec: 6272 - hash: "a29d4b3fa16829823e63bf83e7b62aff" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml deleted file mode 100644 index 3171203..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview-2.qml +++ /dev/null @@ -1,70 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - width: 580; height: 220 - //Same as test-pathview, but with pathItemCount < model.count - - ListModel { - id: rssModel - ListElement { lColor: "red" } - ListElement { lColor: "green" } - ListElement { lColor: "yellow" } - ListElement { lColor: "blue" } - ListElement { lColor: "purple" } - ListElement { lColor: "gray" } - ListElement { lColor: "brown" } - ListElement { lColor: "thistle" } - } - - Component { - id: photoDelegate - Rectangle { - id: wrapper - width: 65; height: 65; color: lColor - scale: wrapper.PathView.scale - - MouseArea { anchors.fill: parent } - - transform: Rotation { - id: itemRotation; origin.x: wrapper.width/2; origin.y: wrapper.height/2 - axis.y: 1; axis.z: 0; angle: wrapper.PathView.angle - } - } - } - - PathView { - id: photoPathView; model: rssModel; delegate: photoDelegate - anchors.fill: parent; z: 1 - anchors.topMargin:40 - pathItemCount: 6 - path: Path { - startX: -50; startY: 40; - - PathAttribute { name: "scale"; value: 0.5 } - PathAttribute { name: "angle"; value: -45 } - - PathCubic { - x: 300; y: 140 - control1X: 90; control1Y: 30 - control2X: 140; control2Y: 150 - } - - PathAttribute { name: "scale"; value: 1.2 } - PathAttribute { name: "angle"; value: 0 } - - PathCubic { - x: 600; y: 30 - control2X: 440; control2Y: 30 - control1X: 420; control1Y: 150 - } - - PathAttribute { name: "scale"; value: 0.5 } - PathAttribute { name: "angle"; value: 45 } - } - } - - Column { - Rectangle { width: 20; height: 20; color: "red"; opacity: photoPathView.moving ? 1 : 0 } - Rectangle { width: 20; height: 20; color: "blue"; opacity: photoPathView.flicking ? 1 : 0 } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml deleted file mode 100644 index 08499e7..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml +++ /dev/null @@ -1,70 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - width: 580; height: 220 - - ListModel { - id: rssModel - ListElement { lColor: "red" } - ListElement { lColor: "green" } - ListElement { lColor: "yellow" } - ListElement { lColor: "blue" } - ListElement { lColor: "purple" } - ListElement { lColor: "gray" } - ListElement { lColor: "brown" } - ListElement { lColor: "thistle" } - } - - Component { - id: photoDelegate - Rectangle { - id: wrapper - width: 65; height: 65; color: lColor - scale: wrapper.PathView.scale - - MouseArea { anchors.fill: parent } - - transform: Rotation { - id: itemRotation; origin.x: wrapper.width/2; origin.y: wrapper.height/2 - axis.y: 1; axis.z: 0; angle: wrapper.PathView.angle - } - } - } - - PathView { - id: photoPathView; model: rssModel; delegate: photoDelegate - anchors.fill: parent; z: 1 - anchors.topMargin:40 - highlightMoveDuration: 200 - flickDeceleration: 200 - path: Path { - startX: -50; startY: 40; - - PathAttribute { name: "scale"; value: 0.5 } - PathAttribute { name: "angle"; value: -45 } - - PathCubic { - x: 300; y: 140 - control1X: 90; control1Y: 30 - control2X: 140; control2Y: 150 - } - - PathAttribute { name: "scale"; value: 1.2 } - PathAttribute { name: "angle"; value: 0 } - - PathCubic { - x: 600; y: 30 - control2X: 440; control2Y: 30 - control1X: 420; control1Y: 150 - } - - PathAttribute { name: "scale"; value: 0.5 } - PathAttribute { name: "angle"; value: 45 } - } - } - - Column { - Rectangle { width: 20; height: 20; color: "red"; opacity: photoPathView.moving ? 1 : 0 } - Rectangle { width: 20; height: 20; color: "blue"; opacity: photoPathView.flicking ? 1 : 0 } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.0.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.0.png deleted file mode 100644 index c472254..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.1.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.1.png deleted file mode 100644 index 58a293b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.2.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.2.png deleted file mode 100644 index 65a03a1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.3.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.3.png deleted file mode 100644 index d736eca..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.4.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.4.png deleted file mode 100644 index d7386b3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.5.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.5.png deleted file mode 100644 index 3500c07..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.6.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.6.png deleted file mode 100644 index 7c27234..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml deleted file mode 100644 index a7c7b33..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml +++ /dev/null @@ -1,1603 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "dynamic.0.png" - } - Frame { - msec: 32 - hash: "0e4c352da978cc130894d1f4ce0a0eb4" - } - Frame { - msec: 48 - hash: "a2e959463144623ba36524f4d4ba1c50" - } - Frame { - msec: 64 - hash: "db8f96a79852b468bf793ac0a88f662b" - } - Frame { - msec: 80 - hash: "d2bf766a1271d31fb2771efa3b60dc92" - } - Frame { - msec: 96 - hash: "c99a42391eb5f41c8a09ae5376438998" - } - Frame { - msec: 112 - hash: "88a11ce1a21c28c8fe83cce52ac81c87" - } - Frame { - msec: 128 - hash: "ebfeb134db6e2ce0226f61c685614644" - } - Frame { - msec: 144 - hash: "39983ecac9b5a7bbf486c5549a806bf3" - } - Frame { - msec: 160 - hash: "8216e55fe99f2cabec9859793dc3b57e" - } - Frame { - msec: 176 - hash: "e0ba0455c1142fbc17e9dae54ddde345" - } - Frame { - msec: 192 - hash: "a06714fb98a25430d3c5e133af5d4c8b" - } - Frame { - msec: 208 - hash: "c87a55800b77a6880ba5859c83a4f9d0" - } - Frame { - msec: 224 - hash: "3c055c7bfca6687f139bf60823f8148f" - } - Frame { - msec: 240 - hash: "756dbaf1c06e1ab82ff5be4290795d66" - } - Frame { - msec: 256 - hash: "f9ad4f26264b7b29294998085b8ed36a" - } - Frame { - msec: 272 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 288 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 304 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 320 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 336 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 352 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 368 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 384 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 400 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 416 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 432 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 448 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 464 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 480 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 496 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 512 - hash: "f636a172aec19c2fb586021837095b11" - } - Frame { - msec: 528 - hash: "f0260c84eae73c072d7a01226cb5bfeb" - } - Frame { - msec: 544 - hash: "f65bbbeadff6cd71e397c6183ccd6036" - } - Frame { - msec: 560 - hash: "9efe8a2c0ffed561658b6d9987d88d80" - } - Frame { - msec: 576 - hash: "4b93c2cbce50887122533b239678419e" - } - Frame { - msec: 592 - hash: "e3f955bf3f71e905073e43507624f11c" - } - Frame { - msec: 608 - hash: "1700198250ef7efba094ba37ec9bde23" - } - Frame { - msec: 624 - hash: "f2e150d7c2fe91ec2754e1fb9a88c6ec" - } - Frame { - msec: 640 - hash: "ab5c2939088861810771db378cb73362" - } - Frame { - msec: 656 - hash: "d2459ace336f1366951e0c7ae5b8ad9e" - } - Frame { - msec: 672 - hash: "7099bf087bb89c3b8846e24126f49b83" - } - Frame { - msec: 688 - hash: "65df13d3e38fb739a646746cb401db8e" - } - Frame { - msec: 704 - hash: "71479564df994d8db2fc01302e6261c5" - } - Frame { - msec: 720 - hash: "ceb4091d33a136aecc470d5572c0bdae" - } - Frame { - msec: 736 - hash: "0078ad79eee838839aca53fedda51310" - } - Frame { - msec: 752 - hash: "7d5385582e19594afa40154cc61ef54d" - } - Frame { - msec: 768 - hash: "372fc45db91d4507a5c3baec9efb9224" - } - Frame { - msec: 784 - hash: "400f21d4028c09d351609a73510dcde0" - } - Frame { - msec: 800 - hash: "5a3965480d6703fdfcec241deae14db7" - } - Frame { - msec: 816 - hash: "4ef441bb3f8ab9da1c3eb0d0f7c33c00" - } - Frame { - msec: 832 - hash: "7526f27a13471bcee2e8e8fe24384bdb" - } - Frame { - msec: 848 - hash: "69afb4d4af4479ac5b2d5bd39b8a968b" - } - Frame { - msec: 864 - hash: "c523ae0a884cb56fe1f72744ccfe7d1e" - } - Frame { - msec: 880 - hash: "6974ea16d8c13a032283fa9df314fb87" - } - Frame { - msec: 896 - hash: "1635eb85aedbad17fde10da173d612ab" - } - Frame { - msec: 912 - hash: "9be18310fd7cf548edbc976e4a470228" - } - Frame { - msec: 928 - hash: "5b8574aa9fa9b93fae64c5b180075090" - } - Frame { - msec: 944 - hash: "285eba0de99a1e1c9c43049b469dad9e" - } - Frame { - msec: 960 - hash: "eb824394813a847c9e7e532b74b17c8a" - } - Frame { - msec: 976 - image: "dynamic.1.png" - } - Frame { - msec: 992 - hash: "984a2cf360a1bf2e598d329991107c66" - } - Frame { - msec: 1008 - hash: "5c70be0eeee3f88981021334668360c8" - } - Frame { - msec: 1024 - hash: "6f361a3be917e677ed41212382569fea" - } - Frame { - msec: 1040 - hash: "ab9035768e6e9f81af8158ea0c42863f" - } - Frame { - msec: 1056 - hash: "58f3d5fb29352a6788bc9e13a1cb7603" - } - Frame { - msec: 1072 - hash: "7f1a415a6fc970244b024305b10ce91e" - } - Frame { - msec: 1088 - hash: "213d79d582aa8f4f736f5bbbfc7d1926" - } - Frame { - msec: 1104 - hash: "391c2c6005de6800064763fbf88b4dda" - } - Frame { - msec: 1120 - hash: "641dd4b888edc40c8d7df0ab89ad400d" - } - Frame { - msec: 1136 - hash: "7fde8a9ee9cdc10b045431301b7e15bc" - } - Frame { - msec: 1152 - hash: "15066ed9165a83cafbd4f15435ed5689" - } - Frame { - msec: 1168 - hash: "19b685a164648283774167a31b1dff43" - } - Frame { - msec: 1184 - hash: "837e73ba982c119c3a940cdcdbfdf440" - } - Frame { - msec: 1200 - hash: "c8af92bf004e392f1dc8d1e61746f286" - } - Frame { - msec: 1216 - hash: "a357285710ea7d94fbc0f181b5e226dc" - } - Frame { - msec: 1232 - hash: "657e15bee0eed2686fcaffad86343677" - } - Frame { - msec: 1248 - hash: "994c039fed74a9bae706efe7261cc42d" - } - Frame { - msec: 1264 - hash: "135ea105bdefd24e49dfb58ad61fbb05" - } - Frame { - msec: 1280 - hash: "7ac7945f810cf9647b0f72db78076415" - } - Frame { - msec: 1296 - hash: "c41434915014b4122d5d396fa74127ee" - } - Frame { - msec: 1312 - hash: "944f79f98cd54a89b1e833199536e894" - } - Frame { - msec: 1328 - hash: "c11291d032471d347e5f51a5865a52c7" - } - Frame { - msec: 1344 - hash: "92cca77635d5e1a843b8957ecb092373" - } - Frame { - msec: 1360 - hash: "dcb56a485e1fe925ecef6224e55ba5b6" - } - Frame { - msec: 1376 - hash: "b8edb8a9b8d4596a8da50fa262929d58" - } - Frame { - msec: 1392 - hash: "3eb2b0644f2d6a1b4ebd7516c12330ce" - } - Frame { - msec: 1408 - hash: "21acefe69cf2c544102fccdccbbbccd5" - } - Frame { - msec: 1424 - hash: "831593033242f154f89d68f1aa4b6bd3" - } - Frame { - msec: 1440 - hash: "8f23b9a029fcafe05d1369cc39ec703e" - } - Frame { - msec: 1456 - hash: "6c00a41d0250313a26527f7a39e9f7f3" - } - Frame { - msec: 1472 - hash: "395a67b9e40ac34d17969a10f607e8b6" - } - Frame { - msec: 1488 - hash: "ac1392862993cecbc0f7839b4e2c5ca2" - } - Frame { - msec: 1504 - hash: "f477222fb643462eeb16813f0b49a93f" - } - Frame { - msec: 1520 - hash: "3064b5af87e3738ee89cbfa408059b89" - } - Frame { - msec: 1536 - hash: "ac33fc35a69fa9f8d875bdcd53cc0f75" - } - Frame { - msec: 1552 - hash: "cbaaed4b19f9aecdcba8d58546d63d4d" - } - Frame { - msec: 1568 - hash: "d2f75520a698dd21702b11efab5e3024" - } - Frame { - msec: 1584 - hash: "d7560c4cc6ed89fda71e18d6c6c16ef4" - } - Frame { - msec: 1600 - hash: "147faf9f698d64be191bed1abe09a592" - } - Frame { - msec: 1616 - hash: "49026a5a6e677b0f0950ed5e5bebb108" - } - Frame { - msec: 1632 - hash: "8ef3bc4d3f1965eb6e6407eb26de532f" - } - Frame { - msec: 1648 - hash: "86fc1e6fd5f230983d9b0b125d2827ef" - } - Frame { - msec: 1664 - hash: "dde134ab5ae1b7c1f59d58534c16dd03" - } - Frame { - msec: 1680 - hash: "53c13b4ff1241d1faa0a94a0730489f7" - } - Frame { - msec: 1696 - hash: "a46d8748063674d2739e44c7f18e941a" - } - Frame { - msec: 1712 - hash: "b3ec96287e5df1fe058b7672731e6db9" - } - Frame { - msec: 1728 - hash: "2e671d9f4266ef19f8632c5efe3897a7" - } - Frame { - msec: 1744 - hash: "a0d17185b04ec84d85fe6349ea9f6b5c" - } - Frame { - msec: 1760 - hash: "4ad02b737bc2ec05f935529914b8b694" - } - Frame { - msec: 1776 - hash: "4c0a7a445520155b5ce590d9566ddde7" - } - Frame { - msec: 1792 - hash: "e4108a09f8d944577d96d4697fa32216" - } - Frame { - msec: 1808 - hash: "8ee31240c836bfd6f18a9d2aac5cb084" - } - Frame { - msec: 1824 - hash: "e58b69388d4b30fa96bfb3ecd7ec4fe6" - } - Frame { - msec: 1840 - hash: "e0fb7420fbdde291be7955476fef7c06" - } - Frame { - msec: 1856 - hash: "d19f92d707cc95007cb77555f2bef31b" - } - Frame { - msec: 1872 - hash: "b1af9c47935dda17e533ac9a4078c66c" - } - Frame { - msec: 1888 - hash: "5fd8ee80a9388ca1ff99fe35a3973eff" - } - Frame { - msec: 1904 - hash: "fac7ddc309b6ae477e8da1d87c56a5f1" - } - Frame { - msec: 1920 - hash: "fbcd446ced1a00cfb0b177c7de5d6e60" - } - Frame { - msec: 1936 - image: "dynamic.2.png" - } - Frame { - msec: 1952 - hash: "6d2827458ac8012bb9468ed453e61331" - } - Frame { - msec: 1968 - hash: "2184f41e9b49f9a58e58dc6843a7741a" - } - Frame { - msec: 1984 - hash: "7bfe1cad3611ccb4c55da75546853b25" - } - Frame { - msec: 2000 - hash: "0c1164b69806cd0281b7aa131d8018eb" - } - Frame { - msec: 2016 - hash: "bb531046028c870de76f0a6cfaf23c31" - } - Frame { - msec: 2032 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2048 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2064 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2080 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2096 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2112 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2128 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2144 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2160 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2176 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2192 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2208 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2224 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2240 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2256 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2272 - hash: "56b9c59557c852242fc02921716b4c29" - } - Frame { - msec: 2288 - hash: "940a8ee9cc80ec237c2a0b3c0284de80" - } - Frame { - msec: 2304 - hash: "39860a23099f80ab2a0c979b77c1e41b" - } - Frame { - msec: 2320 - hash: "acc2194a277d69177063d06a5c096bc8" - } - Frame { - msec: 2336 - hash: "31cde88c34bcf8540ebf27a0f03d3010" - } - Frame { - msec: 2352 - hash: "203ffd5a6efda14f8d8685a3c294f9de" - } - Frame { - msec: 2368 - hash: "e9dfff40745663c4938b5d0baa28b5f1" - } - Frame { - msec: 2384 - hash: "1d906fdca4cfd51f371d2203770d2cda" - } - Frame { - msec: 2400 - hash: "2fb9d6175f7350b57350e6ab3707918c" - } - Frame { - msec: 2416 - hash: "dbe072fc17ee6bc497efb60354ed3758" - } - Frame { - msec: 2432 - hash: "27dd91387bbfcb381a3d73e4108f6f82" - } - Frame { - msec: 2448 - hash: "8a3e06d17e657aa659c1185ff761c227" - } - Frame { - msec: 2464 - hash: "dd476416c45830b4ad8d02b650af7530" - } - Frame { - msec: 2480 - hash: "7fea8ab086376c3f644e24545f3e5382" - } - Frame { - msec: 2496 - hash: "e4e8a1838730f3389a5d6630247cc02e" - } - Frame { - msec: 2512 - hash: "11cd1b8b7b14913036429c7acc688590" - } - Frame { - msec: 2528 - hash: "0ff657aa16a82a86f750c0d56a297fc3" - } - Frame { - msec: 2544 - hash: "e6cf7e1d446652270865857a801f4bc3" - } - Frame { - msec: 2560 - hash: "db9021619dd192122857dffd2b25b18d" - } - Frame { - msec: 2576 - hash: "77772d2e14b85df151085500e45020c2" - } - Frame { - msec: 2592 - hash: "a49744a9c4c6c1f2392184d13907f404" - } - Frame { - msec: 2608 - hash: "2701f2dd7196402e228475ce739fbe5b" - } - Frame { - msec: 2624 - hash: "71030d54a9a9cf234731d8bfd4985442" - } - Frame { - msec: 2640 - hash: "c5b6c4bc0b68aff9d589bbc4781c6f4d" - } - Frame { - msec: 2656 - hash: "3ef8d76256628e782b56b3c6e7d3f7d8" - } - Frame { - msec: 2672 - hash: "85b0582aa0aaeb72201f2b3284f8fe02" - } - Frame { - msec: 2688 - hash: "26828739f7a1ed5b7c7823c1cac73b12" - } - Frame { - msec: 2704 - hash: "73b85e718117b919b6e3bed087330475" - } - Frame { - msec: 2720 - hash: "726deda1001db3f57939a1842c90331d" - } - Frame { - msec: 2736 - hash: "980266e772178b550abb6e24e2a6d659" - } - Frame { - msec: 2752 - hash: "b15bd1cef519d7112edf0f8e97c507ce" - } - Frame { - msec: 2768 - hash: "1df1a43aed86aedd425846a87c7b5df3" - } - Frame { - msec: 2784 - hash: "26cbc843753b51f37a5a84f3b9c7cf56" - } - Frame { - msec: 2800 - hash: "8c3ad31d69f44dc1dbb3bec0476a0cac" - } - Frame { - msec: 2816 - hash: "9c4243132637e722abee587ae76218c3" - } - Frame { - msec: 2832 - hash: "fd99e719c7a6da7c3c309c6a56aeb127" - } - Frame { - msec: 2848 - hash: "4855b585340b25e9cf98c55a9e661a32" - } - Frame { - msec: 2864 - hash: "d400eb6473515193409d5fe928c17b3b" - } - Frame { - msec: 2880 - hash: "d2cabdc2e1b5219242e3768c256cf20a" - } - Frame { - msec: 2896 - image: "dynamic.3.png" - } - Frame { - msec: 2912 - hash: "f22d7ebcfecf8ed0aedc10eaf3975a06" - } - Frame { - msec: 2928 - hash: "71fa22835d65dfd5ded2e3f925a2006f" - } - Frame { - msec: 2944 - hash: "1fa97a0e9cd3601e830810a397678470" - } - Frame { - msec: 2960 - hash: "3fdb2cf62768af6e89b5fcca4a0fbdcc" - } - Frame { - msec: 2976 - hash: "24fa2ed5c9c42eb1013c790c394dccb2" - } - Frame { - msec: 2992 - hash: "c0b8c6b8d925fac2d5349bab8094ea3a" - } - Frame { - msec: 3008 - hash: "246539b2c38f54cc46ccced49a0964b1" - } - Frame { - msec: 3024 - hash: "dc27d0928673409db160c25c523b5543" - } - Frame { - msec: 3040 - hash: "f6c5694157409606a21455e4ce875e74" - } - Frame { - msec: 3056 - hash: "3060d75d6ee0d6022d7692aeee90aff2" - } - Frame { - msec: 3072 - hash: "0a9bc75adf171200f44892d265f10206" - } - Frame { - msec: 3088 - hash: "30681d928e035188fa25983076b00a24" - } - Frame { - msec: 3104 - hash: "fd007bee6889d3dc8203bf59ff564ba2" - } - Frame { - msec: 3120 - hash: "559b7f479ae2a2a70288ddde6a18b33e" - } - Frame { - msec: 3136 - hash: "75d7ce28879ec23f1af3eec3afd94f60" - } - Frame { - msec: 3152 - hash: "f0006440cd257667547b243f69dfdc65" - } - Frame { - msec: 3168 - hash: "9c332ab37fc90bf81cea9eee353352d5" - } - Frame { - msec: 3184 - hash: "c1313a45a5d85d17b0d82c1b7cb8d4b9" - } - Frame { - msec: 3200 - hash: "de50c0522865995d1931f2149494c43c" - } - Frame { - msec: 3216 - hash: "2a946bfe7a75a519064dc40b27b8b843" - } - Frame { - msec: 3232 - hash: "3adb068d2540371cbcd7603a87515716" - } - Frame { - msec: 3248 - hash: "11f396595eb3940371a2f8cf497d8184" - } - Frame { - msec: 3264 - hash: "0c08d7cb54e14120e9f063ed97224e3d" - } - Frame { - msec: 3280 - hash: "df9164673edc8c4922696f8999c8d53c" - } - Frame { - msec: 3296 - hash: "b0fa87c11b235dab2a4361d1c1162866" - } - Frame { - msec: 3312 - hash: "746807f46bb1a14890bf7b23ae538a6e" - } - Frame { - msec: 3328 - hash: "e856cf08ebebba22e04bcaad1ba75309" - } - Frame { - msec: 3344 - hash: "edf1ae03a0c60f157f2eb4312226ce3e" - } - Frame { - msec: 3360 - hash: "0c9356e38d0a2b5cbf73b5dd9c76e80d" - } - Frame { - msec: 3376 - hash: "eb0fca481da55aeebb0c2ed08e7b2dd0" - } - Frame { - msec: 3392 - hash: "b0c91c68b7c69f3c1124326d8776881c" - } - Frame { - msec: 3408 - hash: "09c76b1c7758e086c1a99198643d29cc" - } - Frame { - msec: 3424 - hash: "294429db9fae8d1a08f34b774ad82124" - } - Frame { - msec: 3440 - hash: "460fbaffccf1cf78b19ab58ed374cec2" - } - Frame { - msec: 3456 - hash: "91517b862c3a5c89d8bbc0575b506d3c" - } - Frame { - msec: 3472 - hash: "4a22f6736a64093790e49a65f3a74923" - } - Frame { - msec: 3488 - hash: "8ec21c12a499919a46d44b927837db46" - } - Frame { - msec: 3504 - hash: "51551a03b495bbd979d2dfbabb33f852" - } - Frame { - msec: 3520 - hash: "700ad73013037cbf10694e712212a799" - } - Frame { - msec: 3536 - hash: "bd305b17ba9542ae01a2934bb5c2784f" - } - Frame { - msec: 3552 - hash: "91cf99daf3ff442ea43274ba9ce4bceb" - } - Frame { - msec: 3568 - hash: "7d33d2f8684f1947e01e6144e84ba1f6" - } - Frame { - msec: 3584 - hash: "e23e50737d3b70132a0abc91f6900952" - } - Frame { - msec: 3600 - hash: "4a31ea946579b1a09364d0197aed9943" - } - Frame { - msec: 3616 - hash: "d3abb24ef7dea1b32180a34acd1901a0" - } - Frame { - msec: 3632 - hash: "19b413d918888038c26109528c8b96da" - } - Frame { - msec: 3648 - hash: "d1a19db5ce841914b6599dd257dc4a6d" - } - Frame { - msec: 3664 - hash: "24e29dd07133ac8c8d51dd6aac07e5ce" - } - Frame { - msec: 3680 - hash: "db7ae9587b8fcd766e23ffdd8e92cac2" - } - Frame { - msec: 3696 - hash: "0314577dd3497f2cc70e503058ff0c1d" - } - Frame { - msec: 3712 - hash: "ae0dbd41a6e1b7bc87184a059a2b2e61" - } - Frame { - msec: 3728 - hash: "43c446b3cb9854e35dd21e7da7aa986f" - } - Frame { - msec: 3744 - hash: "675e049ffabad0179f9e94332e457b97" - } - Frame { - msec: 3760 - hash: "ef272f944e95e2c08a856066d2d082c2" - } - Frame { - msec: 3776 - hash: "2d34ec460d21fdeb5daddf9245f8c5cf" - } - Frame { - msec: 3792 - hash: "e94a08e34a7cbd406937c1ffddcbb185" - } - Frame { - msec: 3808 - hash: "22523265a7cbbcfc2182ac1521c8dca8" - } - Frame { - msec: 3824 - hash: "e5f95a7f0d9cd2a4ca54a9e5a6783c8a" - } - Frame { - msec: 3840 - hash: "da7c216b89e1b8f261d2979be8cc61a7" - } - Frame { - msec: 3856 - image: "dynamic.4.png" - } - Frame { - msec: 3872 - hash: "08b3de4eea6ecbe85ab7b104e0571815" - } - Frame { - msec: 3888 - hash: "66b5d695c3fdf6c5fa08241c39c1bff9" - } - Frame { - msec: 3904 - hash: "25f2403ff19575e94010980e02015d64" - } - Frame { - msec: 3920 - hash: "5d8d901818a21965cb54b477592b65a5" - } - Frame { - msec: 3936 - hash: "4cbe77985c9dea4c37f08135ac0e8882" - } - Frame { - msec: 3952 - hash: "8e4dcb566347ecf31c2c7c9262f3c71d" - } - Frame { - msec: 3968 - hash: "71b810ad39750acd84d06526e6ec0767" - } - Frame { - msec: 3984 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 4000 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 4016 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 4032 - hash: "e0aab4701e9039386c6f3f3ae7c86265" - } - Frame { - msec: 4048 - hash: "957cd332444c819fecc4c58149cc6782" - } - Frame { - msec: 4064 - hash: "c7395c37477b4c39bb22d5cb6f0649fe" - } - Frame { - msec: 4080 - hash: "992f62d1cc929e3d92008bf2581c4b4b" - } - Frame { - msec: 4096 - hash: "d8f079d91944796401b86296788a2250" - } - Frame { - msec: 4112 - hash: "7df19eeae14a578760613075e611c9a6" - } - Frame { - msec: 4128 - hash: "998f8f07b857d0c4b740be8a323c6e9a" - } - Frame { - msec: 4144 - hash: "9419aae1cfd8592031dbe26223700ed0" - } - Frame { - msec: 4160 - hash: "fc9d9216599cf59e16f4344cf43c27f5" - } - Frame { - msec: 4176 - hash: "e43d779e9edbde4f6e47bf13653464f8" - } - Frame { - msec: 4192 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 4208 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 4224 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 4240 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 4256 - hash: "377a5cd9be5f70975fe74d4de1bf2e70" - } - Frame { - msec: 4272 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 4288 - hash: "afb15151f2bd529817c4a1053dab6e9e" - } - Frame { - msec: 4304 - hash: "113af4013655488c3389abfcfdd25c8a" - } - Frame { - msec: 4320 - hash: "fe92ba0e4552bbfd26858c30ff2dbe78" - } - Frame { - msec: 4336 - hash: "374ca32f24189773ba181d375107a1bd" - } - Frame { - msec: 4352 - hash: "8de169d6ec0a3ecb13b39f93b2ccabbd" - } - Frame { - msec: 4368 - hash: "53c65f25dc0b915d500ef091a45c1b2b" - } - Frame { - msec: 4384 - hash: "846a5983865f87f5058eca31f056d021" - } - Frame { - msec: 4400 - hash: "7243fe48f5cbf172b67ea8658d489a31" - } - Frame { - msec: 4416 - hash: "4fbcfc907361ccbe5ec5d945cb49065e" - } - Frame { - msec: 4432 - hash: "e450930da4d7838a2539a73bb3e8b9e3" - } - Frame { - msec: 4448 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 4464 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 4480 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 4496 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 4512 - hash: "377a5cd9be5f70975fe74d4de1bf2e70" - } - Frame { - msec: 4528 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 4544 - hash: "bb73c7d58cfca18e8dc8c256ceaa6dba" - } - Frame { - msec: 4560 - hash: "ab2f94beae7447d2c25808e0ff2d3397" - } - Frame { - msec: 4576 - hash: "0e731803c864f753809daa22ff9f76c7" - } - Frame { - msec: 4592 - hash: "48874688b1eb19d67bdf91653f4ce74e" - } - Frame { - msec: 4608 - hash: "3aac3fc7526ad990fcd4a7a4eb162a10" - } - Frame { - msec: 4624 - hash: "72b92331f80f37480ac208b4cce4fdb2" - } - Frame { - msec: 4640 - hash: "4cc992953df7636b9b1b063f87ae36fa" - } - Frame { - msec: 4656 - hash: "012078bb87950fdb960e2679a47c4bf6" - } - Frame { - msec: 4672 - hash: "4fbcfc907361ccbe5ec5d945cb49065e" - } - Frame { - msec: 4688 - hash: "e450930da4d7838a2539a73bb3e8b9e3" - } - Frame { - msec: 4704 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 4720 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 4736 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 4752 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 4768 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 4784 - hash: "f1cd43dfe4d2846c7f3a8a6af19174d0" - } - Frame { - msec: 4800 - hash: "0eedf77ea428a6ff55507c241588b0a5" - } - Frame { - msec: 4816 - image: "dynamic.5.png" - } - Frame { - msec: 4832 - hash: "18625884760a6ecb9b37c609afea0a29" - } - Frame { - msec: 4848 - hash: "2504012907c89b8578b804811bc27d8e" - } - Frame { - msec: 4864 - hash: "559e27ede74f57b25ce889df1c211f4f" - } - Frame { - msec: 4880 - hash: "7f788af35c7190d04bdc06cbf921c83d" - } - Frame { - msec: 4896 - hash: "012078bb87950fdb960e2679a47c4bf6" - } - Frame { - msec: 4912 - hash: "4fbcfc907361ccbe5ec5d945cb49065e" - } - Frame { - msec: 4928 - hash: "e450930da4d7838a2539a73bb3e8b9e3" - } - Frame { - msec: 4944 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 4960 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 4976 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 4992 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 5008 - hash: "377a5cd9be5f70975fe74d4de1bf2e70" - } - Frame { - msec: 5024 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 5040 - hash: "a0bdd440290cc09c86d65b2f74079b97" - } - Frame { - msec: 5056 - hash: "b0f7c2289283b78016394b900fa3dfcb" - } - Frame { - msec: 5072 - hash: "e39fe4762a948bbc412e9b7160f2e439" - } - Frame { - msec: 5088 - hash: "30ae9eaa6b96a00a83faf349d450be3b" - } - Frame { - msec: 5104 - hash: "21178cc44036162ca6f03dd876b38d14" - } - Frame { - msec: 5120 - hash: "cea64ba789fda0f8bdd4ef64321e1c23" - } - Frame { - msec: 5136 - hash: "7f788af35c7190d04bdc06cbf921c83d" - } - Frame { - msec: 5152 - hash: "012078bb87950fdb960e2679a47c4bf6" - } - Frame { - msec: 5168 - hash: "4fbcfc907361ccbe5ec5d945cb49065e" - } - Frame { - msec: 5184 - hash: "e450930da4d7838a2539a73bb3e8b9e3" - } - Frame { - msec: 5200 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 5216 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 5232 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 5248 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 5264 - hash: "377a5cd9be5f70975fe74d4de1bf2e70" - } - Frame { - msec: 5280 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 5296 - hash: "29f1b978ff683024c0be776cc13ad9d4" - } - Frame { - msec: 5312 - hash: "c9660cbe54cb6ada5b6598990d6fb434" - } - Frame { - msec: 5328 - hash: "592fe8fec20701536706623fda7c86d6" - } - Frame { - msec: 5344 - hash: "1ef2067c92e3621fb0e5080f379b551f" - } - Frame { - msec: 5360 - hash: "16e8dbd8061e0a2433300b6ef0396f8a" - } - Frame { - msec: 5376 - hash: "3ed37ab35b06f483b984014266bf59ea" - } - Frame { - msec: 5392 - hash: "7f788af35c7190d04bdc06cbf921c83d" - } - Frame { - msec: 5408 - hash: "012078bb87950fdb960e2679a47c4bf6" - } - Frame { - msec: 5424 - hash: "4fbcfc907361ccbe5ec5d945cb49065e" - } - Frame { - msec: 5440 - hash: "e450930da4d7838a2539a73bb3e8b9e3" - } - Frame { - msec: 5456 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 5472 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 5488 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 5504 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 5520 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 5536 - hash: "231774644c0b105596b37cec696ca287" - } - Frame { - msec: 5552 - hash: "4230f38c6e85a37e809840f46c060e39" - } - Frame { - msec: 5568 - hash: "385e9542036e82f8ca3c390493777c1c" - } - Frame { - msec: 5584 - hash: "814ab09f3c07c6288f774618282d76e2" - } - Frame { - msec: 5600 - hash: "b5d69dff8c1b995749e39e578ea67de4" - } - Frame { - msec: 5616 - hash: "3ed37ab35b06f483b984014266bf59ea" - } - Frame { - msec: 5632 - hash: "7f788af35c7190d04bdc06cbf921c83d" - } - Frame { - msec: 5648 - hash: "012078bb87950fdb960e2679a47c4bf6" - } - Frame { - msec: 5664 - hash: "4fbcfc907361ccbe5ec5d945cb49065e" - } - Frame { - msec: 5680 - hash: "e450930da4d7838a2539a73bb3e8b9e3" - } - Frame { - msec: 5696 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 5712 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 5728 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 5744 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 5760 - hash: "377a5cd9be5f70975fe74d4de1bf2e70" - } - Frame { - msec: 5776 - image: "dynamic.6.png" - } - Frame { - msec: 5792 - hash: "b364b0db3d8ded941705179153a0a0d9" - } - Frame { - msec: 5808 - hash: "398a0dc7a138f36dea27dfad528324e4" - } - Frame { - msec: 5824 - hash: "f2bd86fe4532cf41fba7f70d7ee1b36f" - } - Frame { - msec: 5840 - hash: "b905dbc82ff13dee50249268b80067b2" - } - Frame { - msec: 5856 - hash: "02aa690ffbecf879f7f98fecace8e0b6" - } - Frame { - msec: 5872 - hash: "3ed37ab35b06f483b984014266bf59ea" - } - Frame { - msec: 5888 - hash: "7f788af35c7190d04bdc06cbf921c83d" - } - Frame { - msec: 5904 - hash: "012078bb87950fdb960e2679a47c4bf6" - } - Frame { - msec: 5920 - hash: "4fbcfc907361ccbe5ec5d945cb49065e" - } - Frame { - msec: 5936 - hash: "e450930da4d7838a2539a73bb3e8b9e3" - } - Frame { - msec: 5952 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 5968 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 5984 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 6000 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 6016 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 6032 - hash: "2268d0cb4b9a906339c310df870e0f2a" - } - Frame { - msec: 6048 - hash: "d54aa3080e0d7d68cb30efdb2fbb3ff2" - } - Frame { - msec: 6064 - hash: "a53fba1a850cf0f3d1f8d6bc22ae2141" - } - Frame { - msec: 6080 - hash: "64e241917730f914f3866d3bd3f6dc7f" - } - Frame { - msec: 6096 - hash: "02aa690ffbecf879f7f98fecace8e0b6" - } - Frame { - msec: 6112 - hash: "3ed37ab35b06f483b984014266bf59ea" - } - Frame { - msec: 6128 - hash: "7f788af35c7190d04bdc06cbf921c83d" - } - Frame { - msec: 6144 - hash: "012078bb87950fdb960e2679a47c4bf6" - } - Frame { - msec: 6160 - hash: "4fbcfc907361ccbe5ec5d945cb49065e" - } - Frame { - msec: 6176 - hash: "e450930da4d7838a2539a73bb3e8b9e3" - } - Frame { - msec: 6192 - hash: "d482896bddc89c4739674877be15972c" - } - Frame { - msec: 6208 - hash: "9cf23658545ac1d744c6c549a86b561d" - } - Frame { - msec: 6224 - hash: "79eee90dbf4ba9992dca0e9e4ef02350" - } - Frame { - msec: 6240 - hash: "cfc32ce2407a6d8a84fe99393c5d5d9e" - } - Frame { - msec: 6256 - hash: "377a5cd9be5f70975fe74d4de1bf2e70" - } - Frame { - msec: 6272 - hash: "af880ae1f0eb620a416cea66216f2509" - } - Frame { - msec: 6288 - hash: "a114b81c8856296087a26129724f9115" - } - Frame { - msec: 6304 - hash: "f989d9099072c32c619061b9cced2a85" - } - Frame { - msec: 6320 - hash: "774663163bef719b9656fbd78316c720" - } - Frame { - msec: 6336 - hash: "36461d046d6df8b1f85997bc4090d537" - } - Frame { - msec: 6352 - hash: "02aa690ffbecf879f7f98fecace8e0b6" - } - Frame { - msec: 6368 - hash: "3ed37ab35b06f483b984014266bf59ea" - } - Frame { - msec: 6384 - hash: "7f788af35c7190d04bdc06cbf921c83d" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.0.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.0.png deleted file mode 100644 index 0efb20a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml deleted file mode 100644 index 365c25f..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml +++ /dev/null @@ -1,135 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "usingRepeater.0.png" - } - Frame { - msec: 32 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 48 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 64 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 80 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 96 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 112 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 128 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 144 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 160 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 176 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 192 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 208 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 224 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 240 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 256 - hash: "e76f50af76d6ee5925b183f9e2316b78" - } - Frame { - msec: 272 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 288 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 304 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 320 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 336 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 352 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 368 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 384 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 400 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 416 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 432 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 448 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 464 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 480 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 496 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } - Frame { - msec: 512 - hash: "c98a904eb5da750f4cabf787e253b2ec" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml deleted file mode 100644 index a1bb78f..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml +++ /dev/null @@ -1,71 +0,0 @@ -import QtQuick 1.0 - -Item { - width: 120; height: 60; - property int step: 0 - property int tickTime: 250; - function tick() - { - step++; - if(step == 1){ - //row1.destroy(); //Not dynamically created, so is this valid? - }else if(step == 2){ - r2a.destroy(); - }else if(step == 3){ - r2b.destroy(); - }else if(step == 4){ - r2c.destroy(); - }else if(step == 5){ - r3a.parent = row2; - }else if(step == 6){ - r3b.parent = row2; - }else if(step == 7){ - r3c.parent = row2; - }else if(step == 8){ - //row3.destroy();//empty now, so should have no effect//May be invalid, but was deleting the reparent items at one point - }else{ - repeater.model++; - } - } - - //Tests base positioner functionality, so don't need them all. - Column{ - move: Transition{NumberAnimation{properties:"y"; duration: tickTime}} - Row{ - id: row1 - height: childrenRect.height - Rectangle{id: r1a; width:20; height:20; color: "red"} - Rectangle{id: r1b; width:20; height:20; color: "green"} - Rectangle{id: r1c; width:20; height:20; color: "blue"} - } - Row{ - id: row2 - height: childrenRect.height - move: Transition{NumberAnimation{properties:"x"; duration: tickTime}} - add: Transition{NumberAnimation{properties:"x"; duration: tickTime}} - Repeater{ - id: repeater - model: 0; - delegate: Component{ Rectangle { color: "yellow"; x:20; width:20; height:20;}} - } - Rectangle{id: r2a; width:20; height:20; color: "red"} - Rectangle{id: r2b; width:20; height:20; color: "green"} - Rectangle{id: r2c; width:20; height:20; color: "blue"} - } - Row{ - move: Transition{NumberAnimation{properties:"x"; duration: tickTime}} - id: row3 - height: childrenRect.height - Rectangle{id: r3a; width:20; height:20; color: "red"} - Rectangle{id: r3b; width:20; height:20; color: "green"} - Rectangle{id: r3c; width:20; height:20; color: "blue"} - } - } - Timer{ - interval: tickTime; - running: true; - repeat: true; - onTriggered: tick(); - } -} - diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml deleted file mode 100644 index c236b6a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml +++ /dev/null @@ -1,16 +0,0 @@ -import QtQuick 1.0 - -Item{ - width: 40; height: 320 - Column{ - Rectangle{color:"Red"; width:40; height:40;} - Repeater{ - id: rep - model: 3 - delegate: Component{Rectangle{color:"Green"; width:40; height:40; radius: 20;}} - } - Rectangle{color:"Blue"; width:40; height:40;} - } - Timer{ interval: 250; running: true; onTriggered: rep.model=6;} - Timer{ interval: 500; running: true; onTriggered: Qt.quit();} -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.0.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.0.png deleted file mode 100644 index dd38019..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.1.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.1.png deleted file mode 100644 index d749080..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.2.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.2.png deleted file mode 100644 index 57a3ae0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.3.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.3.png deleted file mode 100644 index 3a75ec4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.qml deleted file mode 100644 index 14280a0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/smoothedfollow.qml +++ /dev/null @@ -1,795 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "smoothedfollow.0.png" - } - Frame { - msec: 32 - hash: "1d0005639ad631a4f88fb2372b955741" - } - Frame { - msec: 48 - hash: "b303c2fb08eb8158c322719d072deb06" - } - Frame { - msec: 64 - hash: "4b3d7a5b9b5f1a335e81e3aafce2a244" - } - Frame { - msec: 80 - hash: "33d144e82787ac28f9012105645f5eb8" - } - Frame { - msec: 96 - hash: "b6e16400c1364241da2fc12810780b9b" - } - Frame { - msec: 112 - hash: "e32e552a0ac9e517df2826d82ed3e483" - } - Frame { - msec: 128 - hash: "855e317677189a8aa97909ac5c7a831c" - } - Frame { - msec: 144 - hash: "cddb47ce0a793dc74c6cbc2b3fb138d0" - } - Frame { - msec: 160 - hash: "21932fa377c6c9652eb22bbae4bf7d23" - } - Frame { - msec: 176 - hash: "95adc0bfe18070001d531a36785af2a2" - } - Frame { - msec: 192 - hash: "b3c39dc57a658b1ff7c24194a4214696" - } - Frame { - msec: 208 - hash: "d145d38d45f824f3dd2f43eddf38d310" - } - Frame { - msec: 224 - hash: "dee8ad57b625965d3045089d5f6e80aa" - } - Frame { - msec: 240 - hash: "94263216e2b0ab77980b3cc0b42350a6" - } - Frame { - msec: 256 - hash: "a9ea122b9b67428f9d28368ffb862c37" - } - Frame { - msec: 272 - hash: "d1101c25521fd2308ccbe5ec318d9922" - } - Frame { - msec: 288 - hash: "e854bb4accb78052ec3df32a80d29a94" - } - Frame { - msec: 304 - hash: "10898f94cc74a888fc57f76897a56b2a" - } - Frame { - msec: 320 - hash: "65668c114d62e3e901953c9aca9fe276" - } - Frame { - msec: 336 - hash: "a67cd21b3c451134961d5890b05cff49" - } - Frame { - msec: 352 - hash: "40fbf54e37f46dce2aeda74ed6815e42" - } - Frame { - msec: 368 - hash: "dc86af89de1edce0986c6e1a56bd0e21" - } - Frame { - msec: 384 - hash: "b9700d510fe9b936d60a0ef22b1a4d23" - } - Frame { - msec: 400 - hash: "620edf9a854b1f32911b4af69be95076" - } - Frame { - msec: 416 - hash: "28d9670eb3dea66506affaf8b8672c52" - } - Frame { - msec: 432 - hash: "9deaf655b9e71dc835377526c5ae7d96" - } - Frame { - msec: 448 - hash: "a19709d7bf37fd126f15da386527d0f8" - } - Frame { - msec: 464 - hash: "32dbd7c98038abf3775a2c788a687b27" - } - Frame { - msec: 480 - hash: "d1a22b8e8cbd429dc0e8bc22bfce5d4b" - } - Frame { - msec: 496 - hash: "04a48f9f304a614535821f1278950789" - } - Frame { - msec: 512 - hash: "ba26b58e109d5b63e972e4acd7229162" - } - Frame { - msec: 528 - hash: "b92d3329f744c7de158a472b8b542437" - } - Frame { - msec: 544 - hash: "c44139265be3def1cc73ea7198a64537" - } - Frame { - msec: 560 - hash: "6f211c82a64c7e0ef2e7700359ac226e" - } - Frame { - msec: 576 - hash: "1690781b90e6e4ad264db76943d3b6d2" - } - Frame { - msec: 592 - hash: "2ab7e97b7426843f2488121fdda87b48" - } - Frame { - msec: 608 - hash: "91fe6ed4d44d69e9ce79aa3636faf0cb" - } - Frame { - msec: 624 - hash: "9b4638d2eb6ecc0b50c30e74dc4b098e" - } - Frame { - msec: 640 - hash: "0e18542d1b5b887eaf22f936adb38bd0" - } - Frame { - msec: 656 - hash: "f4a123a8811654d033c3613a80a8f3f7" - } - Frame { - msec: 672 - hash: "14edd1cf660429e95c55ae81ce57d05d" - } - Frame { - msec: 688 - hash: "1114235b75e814b80b70ce4109a0b6f3" - } - Frame { - msec: 704 - hash: "8ed2a94fab38d951325bbf79597134c6" - } - Frame { - msec: 720 - hash: "315a34cfe26778d86cadceea78fd15f6" - } - Frame { - msec: 736 - hash: "4a95ae04f498f93bf19ab2bc45c0be21" - } - Frame { - msec: 752 - hash: "d241f7cfdfd241facb0b7f7a3d328d01" - } - Frame { - msec: 768 - hash: "fae3040a9e0b2f9c76cc26bda47e04e9" - } - Frame { - msec: 784 - hash: "a444297639db23413810b2df5c47ed9c" - } - Frame { - msec: 800 - hash: "8084ee95169c3176af563fc4cc033332" - } - Frame { - msec: 816 - hash: "8f6ac972fb537f496a69f7bde0e8bc22" - } - Frame { - msec: 832 - hash: "b7e632bc5c8a0a0c5d2b752e581ff5db" - } - Frame { - msec: 848 - hash: "341c29c41dc1d938dcf5d94d20ff9160" - } - Frame { - msec: 864 - hash: "2c7eb6f2974c6520bc2fbbb65c118124" - } - Frame { - msec: 880 - hash: "8dd08316d3d4b17bd3d656dff2b69019" - } - Frame { - msec: 896 - hash: "5c2a7456afbb094671e693df0a5fa37d" - } - Frame { - msec: 912 - hash: "d169ce70699b020f62bc33160b74887b" - } - Frame { - msec: 928 - hash: "e67ef3cd8dbcef11cf156b32eb0aae67" - } - Frame { - msec: 944 - hash: "16d0d8676f754f0e85a3b425a4401c26" - } - Frame { - msec: 960 - hash: "7681c0a07803c3eadedf05b60acca9be" - } - Frame { - msec: 976 - image: "smoothedfollow.1.png" - } - Frame { - msec: 992 - hash: "5f87209dc76264d5c259092ccfd0663a" - } - Frame { - msec: 1008 - hash: "c647b4725e7f1ce05b5b7bd067d54bff" - } - Frame { - msec: 1024 - hash: "d43d241fa85cadc042ae510fa441d01d" - } - Frame { - msec: 1040 - hash: "87a4b4fb8981b1ddb765236cd74a9084" - } - Frame { - msec: 1056 - hash: "607fb5055cc0d5b6e8a1a37134a9686c" - } - Frame { - msec: 1072 - hash: "9ed861affdaf4de535ff65b26e1fa8ee" - } - Frame { - msec: 1088 - hash: "cdfbf1d934a46b85c9d7a07e25eb3fee" - } - Frame { - msec: 1104 - hash: "94cc78c6be827b3f3b3d74d72af5a4db" - } - Frame { - msec: 1120 - hash: "50cd154de9141528f0417c0e0f0090a9" - } - Frame { - msec: 1136 - hash: "86e4a163ad5d7d9bee8f513a814fcac2" - } - Frame { - msec: 1152 - hash: "61b927a9a58264b827ab00c30cddb4c1" - } - Frame { - msec: 1168 - hash: "e50d30e42cb035e52cf88664182b7ac1" - } - Frame { - msec: 1184 - hash: "33a45c3ab72e3e582ef0e4a759064050" - } - Frame { - msec: 1200 - hash: "323be0228c50a87f380c9b4e5af0c6c0" - } - Frame { - msec: 1216 - hash: "d82e3de64104096e0cce7bc23d1f3f96" - } - Frame { - msec: 1232 - hash: "e8872b9d98dff227cb3eb8765cbfa5f5" - } - Frame { - msec: 1248 - hash: "23ee9e4d9d5388c900072df7fb063164" - } - Frame { - msec: 1264 - hash: "e23cb4cdcc53a364004a55144ea1af8a" - } - Frame { - msec: 1280 - hash: "816ee1ba2a5fe2db4ee09cecb8d56c34" - } - Frame { - msec: 1296 - hash: "d0f01509412d1e4aa192db8aa6dbc50d" - } - Frame { - msec: 1312 - hash: "ba37ba506ce63c6cda06f23a73c928d9" - } - Frame { - msec: 1328 - hash: "194a5a791ee5008f585cf215e5cabc26" - } - Frame { - msec: 1344 - hash: "09c9466b27e57cf936653fdd91e885a8" - } - Frame { - msec: 1360 - hash: "ee8ef68a1d5cde45431ac233d1cbe191" - } - Frame { - msec: 1376 - hash: "45f3bede3b5ae8cde9d385746740760e" - } - Frame { - msec: 1392 - hash: "10ae672c18a84fec45513850797220b5" - } - Frame { - msec: 1408 - hash: "6d72fb8d4d1f7499b38e4969ae26409b" - } - Frame { - msec: 1424 - hash: "7c6bf427b0f7aac8c869a0dd83277ca0" - } - Frame { - msec: 1440 - hash: "1289b04711ef38d4e37161f1385bf4d2" - } - Frame { - msec: 1456 - hash: "2414780f52880801eea13dc9efba1cb2" - } - Frame { - msec: 1472 - hash: "37efbf23005659b4f2b29f224c929502" - } - Frame { - msec: 1488 - hash: "e70091696edf26a8dc8dc51d4932fd86" - } - Frame { - msec: 1504 - hash: "21e8d0b6eee7bc71ae7ccd05d9bb9280" - } - Frame { - msec: 1520 - hash: "321553e3e415cf7695d46a90050f8265" - } - Frame { - msec: 1536 - hash: "235f975c8b382caee2004a8bf9533385" - } - Frame { - msec: 1552 - hash: "abeeb9ff4c51f2b4ba5c9fee98e72926" - } - Frame { - msec: 1568 - hash: "d2de1c552fdf4675baccab402100aabb" - } - Frame { - msec: 1584 - hash: "26d2ac9f31c9181222edda09a4452b5f" - } - Frame { - msec: 1600 - hash: "8c1ac1872a6720185ec670150e344683" - } - Frame { - msec: 1616 - hash: "3b792cf960fc8dd6b424ce4c9f2aa0a1" - } - Frame { - msec: 1632 - hash: "4f0e2dad54e5be44c0345732deae067d" - } - Frame { - msec: 1648 - hash: "17f21faa9293cfd4ef63fcee9d07f264" - } - Frame { - msec: 1664 - hash: "0ea885db3c4c5facb96306f1fbf6bc43" - } - Frame { - msec: 1680 - hash: "a68e7bb730b29b4c3b5468fd7b3d1d4f" - } - Frame { - msec: 1696 - hash: "719de171d8413f691e4ece4bcb00896c" - } - Frame { - msec: 1712 - hash: "ee9f5c2bfda6718a23fdd6c8f3f2e765" - } - Frame { - msec: 1728 - hash: "0f01834bbcfe690e5ee2d5897e5ea225" - } - Frame { - msec: 1744 - hash: "68af59f35ff14d9ff12a2a05f22cca69" - } - Frame { - msec: 1760 - hash: "50c9141aae689a8f09acf4d914075299" - } - Frame { - msec: 1776 - hash: "beb9e30c9b4f0d351c1387c69ea99208" - } - Frame { - msec: 1792 - hash: "2079cd433d9d29ad330e0782853712c7" - } - Frame { - msec: 1808 - hash: "de18d8be8fc1414cc19d446c659d1bcd" - } - Frame { - msec: 1824 - hash: "031807325492a899da9a91a9512487dd" - } - Frame { - msec: 1840 - hash: "4fdd8f3b01b4b61d269001604144bb7c" - } - Frame { - msec: 1856 - hash: "1172ec8a63f431f457b9a398b3d03571" - } - Frame { - msec: 1872 - hash: "4741a14556e9d32c2b180cca9009c63a" - } - Frame { - msec: 1888 - hash: "ec2c6d187a97037b5c1edea65d4b17cc" - } - Frame { - msec: 1904 - hash: "ea7d445310c28aa3e07735f1c7db4a28" - } - Frame { - msec: 1920 - hash: "3424b2d983a8962d9abb232c3d7c7814" - } - Frame { - msec: 1936 - image: "smoothedfollow.2.png" - } - Frame { - msec: 1952 - hash: "c362edcbe4e4460aa18599c05e993312" - } - Frame { - msec: 1968 - hash: "1a1291338c205ef2d315a43cca1caae2" - } - Frame { - msec: 1984 - hash: "ff6f0f47955d069a65cf9d19b7a061ff" - } - Frame { - msec: 2000 - hash: "3a6b787bbfe0510fdc8693a4827043e5" - } - Frame { - msec: 2016 - hash: "8198a6eec71a6da13b77397f3ead05a3" - } - Frame { - msec: 2032 - hash: "4c0fcb8d2105f104f6e1db0d58077c01" - } - Frame { - msec: 2048 - hash: "d9146739fa248ddcb6b4308d125825e7" - } - Frame { - msec: 2064 - hash: "5bda4f61879d0e9c714f2c138a91f4fd" - } - Frame { - msec: 2080 - hash: "30c0f8016506edb6875fd4cfa16cfa0f" - } - Frame { - msec: 2096 - hash: "bc04c5ae627073fcc467b86bea097630" - } - Frame { - msec: 2112 - hash: "7fcc2f6a7c620202a55618e66ed3c5f9" - } - Frame { - msec: 2128 - hash: "36f0855b78bbbf08ddf28f7a5775aea8" - } - Frame { - msec: 2144 - hash: "4acd7d6bceab6c8ba4508f9edddab6e7" - } - Frame { - msec: 2160 - hash: "2074776f5bd921148a50fad1004c00ea" - } - Frame { - msec: 2176 - hash: "0d79e1f38609320586831d93d87532a9" - } - Frame { - msec: 2192 - hash: "0402d99770dd23cbfc051eb576a29b57" - } - Frame { - msec: 2208 - hash: "456ba4fbe1ff68e1c9e22c9182c98ac6" - } - Frame { - msec: 2224 - hash: "de41559e07d9e58a68e26cf4daab879f" - } - Frame { - msec: 2240 - hash: "ad5087eae86c1b2afe5dbbcf8d098b18" - } - Frame { - msec: 2256 - hash: "117dc7b2e560a6959ef82dc461580620" - } - Frame { - msec: 2272 - hash: "4ce30665d1e63f728018cddfda1e3249" - } - Frame { - msec: 2288 - hash: "c1e66d2c554b81631aff66e695e05ee0" - } - Frame { - msec: 2304 - hash: "293b4c3a8ba18d9000f1a0c35ba3dbed" - } - Frame { - msec: 2320 - hash: "eefcc0eb3e4847dbf7edc52979c19cfb" - } - Frame { - msec: 2336 - hash: "1e25f0a629cffa99c3c962c5ce72cba3" - } - Frame { - msec: 2352 - hash: "e86a378941f876143cf13ef8c161d155" - } - Frame { - msec: 2368 - hash: "7063d2895353e4e2659e0911f8959a92" - } - Frame { - msec: 2384 - hash: "d26161aad10ec6d446dbae65bcc73926" - } - Frame { - msec: 2400 - hash: "3322df938aa5d2ffa32e445ad1f8b1a2" - } - Frame { - msec: 2416 - hash: "4ce384ace0527cb637865426a42d382f" - } - Frame { - msec: 2432 - hash: "5f49f970488f457681a9a59e82a1650e" - } - Frame { - msec: 2448 - hash: "d5494958d0c8f4307506c0b27f4a350c" - } - Frame { - msec: 2464 - hash: "cebee9854c54f2badef1cfa6b12adc88" - } - Frame { - msec: 2480 - hash: "9824242313879d9494b561a0a3a7fdc2" - } - Frame { - msec: 2496 - hash: "a14019028da0d3bf08782bf8285a188c" - } - Frame { - msec: 2512 - hash: "f241eb27a0460182d08c6e4e1ebbc25b" - } - Frame { - msec: 2528 - hash: "3b243c79d097f89e5a3f8ece97321026" - } - Frame { - msec: 2544 - hash: "95755ce577ab0b8ede949851ce842d9d" - } - Frame { - msec: 2560 - hash: "0cd40a2a4b9d0b7dbba8dff247db178f" - } - Frame { - msec: 2576 - hash: "b964995f06ab287a98569baab365c475" - } - Frame { - msec: 2592 - hash: "a28aca3ba953c52ac00fea0c84a6aba9" - } - Frame { - msec: 2608 - hash: "d45d2eaeab472eaa1bd9460f4464c62b" - } - Frame { - msec: 2624 - hash: "0872615e2d8d2ec1192ec6e60aff01c7" - } - Frame { - msec: 2640 - hash: "8724c4128b869be51053deafd68e4e47" - } - Frame { - msec: 2656 - hash: "8c8e0a8fed148120b2b79d3c6b886651" - } - Frame { - msec: 2672 - hash: "35357a5689398f6f594ae45743555107" - } - Frame { - msec: 2688 - hash: "848a069b9e8334482e118ba0df14dc1c" - } - Frame { - msec: 2704 - hash: "26cb86bd54616c69966d949424d4d41f" - } - Frame { - msec: 2720 - hash: "437669b1efa8b33ee469547527ccb4d9" - } - Frame { - msec: 2736 - hash: "ff040bafe5c484d7b516008f17411ad2" - } - Frame { - msec: 2752 - hash: "fdab8b8cf64a2b15ab07691ca2ad115f" - } - Frame { - msec: 2768 - hash: "e3867ffaf98270f6efe77d816a8254cb" - } - Frame { - msec: 2784 - hash: "cbad5ba7c09567166f063955b45aa647" - } - Frame { - msec: 2800 - hash: "336049bb4ff2e945483648feabe997c2" - } - Frame { - msec: 2816 - hash: "45e65f29cc932090a3bfc2292c4e5e72" - } - Frame { - msec: 2832 - hash: "d617d33fe22196f88844a7adc5305413" - } - Frame { - msec: 2848 - hash: "fb32358f314d9cd6ac6646888f402b46" - } - Frame { - msec: 2864 - hash: "2897322c869a0bd7a851ff779c8591bf" - } - Frame { - msec: 2880 - hash: "c41d71d62727f0fc26dc790f09c67168" - } - Frame { - msec: 2896 - image: "smoothedfollow.3.png" - } - Frame { - msec: 2912 - hash: "b5c2182ce797d91175d9f7493a77aae8" - } - Frame { - msec: 2928 - hash: "4436d56d8dba299619be367cf57dc41d" - } - Frame { - msec: 2944 - hash: "fe2d68f672a78568da1a281be13eda36" - } - Frame { - msec: 2960 - hash: "90731590c28f254a213f83f83b988608" - } - Frame { - msec: 2976 - hash: "e276149e000e768a5b2704fde77bff2b" - } - Frame { - msec: 2992 - hash: "616b2d32f6b0f047a252f0b698408d87" - } - Frame { - msec: 3008 - hash: "ebd003e7712060ec45d7be9bebb9ab8f" - } - Frame { - msec: 3024 - hash: "d97b14eb1fe9556b283b5d7b35f30fcc" - } - Frame { - msec: 3040 - hash: "a926b60b28442c4318fb3c2c5474540c" - } - Frame { - msec: 3056 - hash: "7908c0356da3bc27d2513c843a0d4feb" - } - Frame { - msec: 3072 - hash: "48644d6fb0dbd280b806c991b3b72417" - } - Frame { - msec: 3088 - hash: "4efbb4954b2d2c26f3e32f9f1bba6b41" - } - Frame { - msec: 3104 - hash: "d9c5e5ca5d6c1189740706673abab943" - } - Frame { - msec: 3120 - hash: "d0acc9b7ee97220e551df16e0c3d1f53" - } - Frame { - msec: 3136 - hash: "2610d1de5d32e74ab8fd238cd721ef2e" - } - Frame { - msec: 3152 - hash: "b8d1e724d5cb172ab5d7475d2f7a6ee6" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml deleted file mode 100644 index c154aa0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedfollow.qml +++ /dev/null @@ -1,128 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - width: 400; height: 360; color: "gray" - - Rectangle { - id: rect - width: 25; height: 10; y: 15; color: "black" - SequentialAnimation on x { - loops: Animation.Infinite - NumberAnimation { from: 25; to: 350; duration: 1000 } - NumberAnimation { from: 350; to: 25; duration: 1000 } - } - } - - Rectangle { - width: 25; height: 10; x: rect.x; y: 30; color: "red" - Behavior on x { SmoothedAnimation { velocity: 200 } } - } - - Rectangle { - width: 25; height: 10; x: rect.x; y: 45; color: "yellow" - Behavior on x { SmoothedAnimation { velocity: 150; reversingMode: SmoothedAnimation.Immediate } } - } - - Rectangle { - width: 25; height: 10; x: rect.x; y: 60; color: "green" - Behavior on x { SmoothedAnimation { velocity: 100; reversingMode: SmoothedAnimation.Sync } } - } - - Rectangle { - width: 25; height: 10; x: rect.x; y: 75; color: "purple" - Behavior on x { SmoothedAnimation { velocity: 100; maximumEasingTime: 100 } } - } - - Rectangle { - width: 25; height: 10; x: rect.x; y: 90; color: "blue" - Behavior on x { SmoothedAnimation { velocity: -1; duration: 300 } } - } - - //rect2 has jerky movement, but the rects following it should be smooth - Rectangle { - id: rect2 - property int dir: 1 - width: 25; height: 10; x:25; y: 120; color: "black" - function advance(){ - if(x >= 350) - dir = -1; - if(x <= 25) - dir = 1; - x += 65.0 * dir; - } - } - Timer{ - interval: 200 - running: true - repeat: true - onTriggered: rect2.advance(); - } - - Rectangle { - width: 25; height: 10; x: rect2.x; y: 135; color: "red" - Behavior on x { SmoothedAnimation { velocity: 200 } } - } - - Rectangle { - width: 25; height: 10; x: rect2.x; y: 150; color: "yellow" - Behavior on x { SmoothedAnimation { velocity: 150; reversingMode: SmoothedAnimation.Immediate } } - } - - Rectangle { - width: 25; height: 10; x: rect2.x; y: 165; color: "green" - Behavior on x { SmoothedAnimation { velocity: 100; reversingMode: SmoothedAnimation.Sync } } - } - - Rectangle { - width: 25; height: 10; x: rect2.x; y: 180; color: "purple" - Behavior on x { SmoothedAnimation { velocity: 100; maximumEasingTime: 100 } } - } - - Rectangle { - width: 25; height: 10; x: rect2.x; y: 195; color: "blue" - Behavior on x { SmoothedAnimation { velocity: -1; duration: 300 } } - } - - //rect3 just jumps , but the rects following it should be smooth - Rectangle { - id: rect3 - width: 25; height: 10; x:25; y: 240; color: "black" - function advance(){ - if(x == 25) - x = 350; - else - x = 25; - } - } - Timer{ - interval: 1000 - running: true - repeat: true - onTriggered: rect3.advance(); - } - - Rectangle { - width: 25; height: 10; x: rect3.x; y: 255; color: "red" - Behavior on x { SmoothedAnimation { velocity: 200 } } - } - - Rectangle { - width: 25; height: 10; x: rect3.x; y: 270; color: "yellow" - Behavior on x { SmoothedAnimation { velocity: 150; reversingMode: SmoothedAnimation.Immediate } } - } - - Rectangle { - width: 25; height: 10; x: rect3.x; y: 285; color: "green" - Behavior on x { SmoothedAnimation { velocity: 100; reversingMode: SmoothedAnimation.Sync } } - } - - Rectangle { - width: 25; height: 10; x: rect3.x; y: 300; color: "purple" - Behavior on x { SmoothedAnimation { velocity: 100; maximumEasingTime: 100 } } - } - - Rectangle { - width: 25; height: 10; x: rect3.x; y: 315; color: "blue" - Behavior on x { SmoothedAnimation { velocity: -1; duration: 300 } } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/clock.qml deleted file mode 100644 index 0e4e642..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/clock.qml +++ /dev/null @@ -1,64 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: clock - color: "gray" - width: 200; height: 200 - - property variant hours: 10 - property variant minutes: 28 - property variant seconds: 0 - - Timer { - interval: 1000; running: true; repeat: true; triggeredOnStart: true - onTriggered: seconds++ - } - - Image { id: background; source: "content/clock.png" } - - Image { - x: 92.5; y: 27 - source: "content/hour.png" - transform: Rotation { - id: hourRotation - origin.x: 7.5; origin.y: 73 - angle: (clock.hours * 30) + (clock.minutes * 0.5) - - Behavior on angle { - SpringAnimation { spring: 2; damping: 0.2; modulus: 360 } - } - } - } - - Image { - x: 93.5; y: 17 - source: "content/minute.png" - transform: Rotation { - id: minuteRotation - origin.x: 6.5; origin.y: 83 - angle: clock.minutes * 6 - - Behavior on angle { - SpringAnimation { spring: 2; damping: 0.2; modulus: 360 } - } - } - } - - Image { - x: 97.5; y: 20 - source: "content/second.png" - transform: Rotation { - id: secondRotation - origin.x: 2.5; origin.y: 80 - angle: clock.seconds * 6 - - Behavior on angle { - SpringAnimation { spring: 5; damping: 0.25; modulus: 360 } - } - } - } - - Image { - anchors.centerIn: background; source: "content/center.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/background.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/background.png deleted file mode 100644 index a885950..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/background.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/center.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/center.png deleted file mode 100755 index 7fbd802..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/center.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/clock.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/clock.png deleted file mode 100755 index 462edac..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/clock.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/hour.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/hour.png deleted file mode 100755 index f8061a1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/hour.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/minute.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/minute.png deleted file mode 100755 index 1297ec7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/minute.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/second.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/second.png deleted file mode 100755 index 4aa9fb5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/second.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.0.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.0.png deleted file mode 100644 index 8714f58..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.1.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.1.png deleted file mode 100644 index 05e4a98..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.2.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.2.png deleted file mode 100644 index 29df073..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.3.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.3.png deleted file mode 100644 index b38486e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.4.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.4.png deleted file mode 100644 index 4de915b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.5.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.5.png deleted file mode 100644 index 61a4684..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.6.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.6.png deleted file mode 100644 index 4ce5e30..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.7.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.7.png deleted file mode 100644 index 2376b13..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.qml deleted file mode 100644 index 893355b..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-MAC/follow.qml +++ /dev/null @@ -1,1763 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "follow.0.png" - } - Frame { - msec: 32 - hash: "e94ba580322887dbbbf9cb6309e39c23" - } - Frame { - msec: 48 - hash: "787a59cda2c0b27d8959026e6d1b9427" - } - Frame { - msec: 64 - hash: "9ca724d4b31aa16015b5cbb50eea0c3a" - } - Frame { - msec: 80 - hash: "8a2c62a0190da1b7c1bade243baea6b8" - } - Frame { - msec: 96 - hash: "e129bebca7ad348c3134569d8eee4efc" - } - Frame { - msec: 112 - hash: "fd6387415e1c02fe6d17d9c3aa1d1ed8" - } - Frame { - msec: 128 - hash: "a82a4042fdca7c30facd2c4740c455f7" - } - Frame { - msec: 144 - hash: "62195722eb3acbfbad137ec71fd50bfe" - } - Frame { - msec: 160 - hash: "449819cdc880d59650732b5447ec6237" - } - Frame { - msec: 176 - hash: "552a838ebcacc0e08fa93b64a2433831" - } - Frame { - msec: 192 - hash: "3984992606d54f05eb31dd0974af2183" - } - Frame { - msec: 208 - hash: "3fd7225bbb0215ca8b6397580f2352a5" - } - Frame { - msec: 224 - hash: "0fd8f26f40a9049de1cf2a9493d579d1" - } - Frame { - msec: 240 - hash: "d08f0c57f071dc42e79fc5e0e3c32eeb" - } - Frame { - msec: 256 - hash: "084c2db330ee82cd032df248ecc9629d" - } - Frame { - msec: 272 - hash: "98da0d7f280d7fc4579c970c9a173b51" - } - Frame { - msec: 288 - hash: "4c819c54ced1b6ef0574417a7e11f2e7" - } - Frame { - msec: 304 - hash: "3dc5f7b412cb176c3b23d37cda3ef87c" - } - Frame { - msec: 320 - hash: "c368a01b43d94205c03f9c750c37f330" - } - Frame { - msec: 336 - hash: "8842bd0c8b17cac4fc9df84835999174" - } - Frame { - msec: 352 - hash: "26829e9c7ca44dfcb0c03852f4158a18" - } - Frame { - msec: 368 - hash: "ecffdb0888f1721e27b163e1f29a1950" - } - Frame { - msec: 384 - hash: "eaead96f2683c464a12df8aadba20691" - } - Frame { - msec: 400 - hash: "1e931963925bd208dce1ec9011372a3b" - } - Frame { - msec: 416 - hash: "1c3fd049001c1e883f21d0d1e0e32cba" - } - Frame { - msec: 432 - hash: "e8c3422ca637750ac52565594737d092" - } - Frame { - msec: 448 - hash: "b1c36322cf89e15a80af7c43f2aebca1" - } - Frame { - msec: 464 - hash: "f676c3171495f7bb2cb1812cfebaa17a" - } - Frame { - msec: 480 - hash: "255119e2efa99c8e31fee611aaaa5137" - } - Frame { - msec: 496 - hash: "e0bd32e3d44cfc2351db105f4595f18a" - } - Frame { - msec: 512 - hash: "b7f23b8f3769f929b42491efda7ebe19" - } - Frame { - msec: 528 - hash: "718cee11d869a8a8c5191cc0c09f2d30" - } - Frame { - msec: 544 - hash: "fbdbf92f8c5f507605ff50abc594682b" - } - Frame { - msec: 560 - hash: "c07fdc69c72b40d3c8dd1cc499008888" - } - Frame { - msec: 576 - hash: "38e17ecd537dc0f51211ad672a2ebb21" - } - Frame { - msec: 592 - hash: "2cbdc8728ef779c62f9938672986658a" - } - Frame { - msec: 608 - hash: "7fb66509d5d1df34861e9c70f9a579f0" - } - Frame { - msec: 624 - hash: "410b89392e859058718a08b79ec3d8fa" - } - Frame { - msec: 640 - hash: "9bd90f80700217d08dafed93b81ee9cf" - } - Frame { - msec: 656 - hash: "6d83671504a4274887b4e0d9bd2b24e7" - } - Frame { - msec: 672 - hash: "51ff7bd3fd4a776af33fce7b935b145c" - } - Frame { - msec: 688 - hash: "20f27392368b63b248bcd455cf3c9106" - } - Frame { - msec: 704 - hash: "1a5ab296bd55aa215c9b04a7ff6c73a1" - } - Frame { - msec: 720 - hash: "020fd7b14e8662fc006b0c39adca7c6a" - } - Frame { - msec: 736 - hash: "2619120bdb25a153963bdf05c4a16d44" - } - Frame { - msec: 752 - hash: "fd321314031efeb9ce71146764289d9f" - } - Frame { - msec: 768 - hash: "378a71f09445dfff284db919787cbf87" - } - Frame { - msec: 784 - hash: "d59eefe82ab8a00c903141dd9ea767ef" - } - Frame { - msec: 800 - hash: "0a65004d69a4567f2a5c7e84dab3a905" - } - Frame { - msec: 816 - hash: "92a4631716a51ff484ca14d9cfe05b2e" - } - Frame { - msec: 832 - hash: "87203f627cf410cad56d6ba38a140efa" - } - Frame { - msec: 848 - hash: "054cc085998cc059a6b7b4a7300dd36b" - } - Frame { - msec: 864 - hash: "af3fefeb908a0485c723d36f61eff0a4" - } - Frame { - msec: 880 - hash: "3f905d1e1ea79858b5a9bbfeab4eb255" - } - Frame { - msec: 896 - hash: "f935f1fc5f26a201098d894fca9a4d1f" - } - Frame { - msec: 912 - hash: "42b003dbb531da514716b9c32bdd3614" - } - Frame { - msec: 928 - hash: "a82fed83ee4efee7896b639c7691b13a" - } - Frame { - msec: 944 - hash: "31ad8cbf875233ea495330b0d3d4d2dd" - } - Frame { - msec: 960 - hash: "00586f2f1d49fa81f90f7b06614311b4" - } - Frame { - msec: 976 - image: "follow.1.png" - } - Frame { - msec: 992 - hash: "5d71ff48b865ad4266eb8292f981b04e" - } - Frame { - msec: 1008 - hash: "df599d934d131c92b209284277009efb" - } - Frame { - msec: 1024 - hash: "5aaf33d11eb70ffdfe89246c637caed7" - } - Frame { - msec: 1040 - hash: "9648cf623a66ded145c4fd23a42917b3" - } - Frame { - msec: 1056 - hash: "9d33c2cc44ceac5a527ddcf809a51df6" - } - Frame { - msec: 1072 - hash: "6d0ad2e0d012e53a03e246e6d5e49e13" - } - Frame { - msec: 1088 - hash: "d33fa68796e38b19f44571d11c1bcd33" - } - Frame { - msec: 1104 - hash: "636680f49bbf30b0fac31a6c581f18dd" - } - Frame { - msec: 1120 - hash: "66801dbc39301e6b46b244fe502e0340" - } - Frame { - msec: 1136 - hash: "f8fa6a033483279e78636f26493b10ac" - } - Frame { - msec: 1152 - hash: "11b46611550173df42986dee4339d907" - } - Frame { - msec: 1168 - hash: "5c9afdb519006079ee8d28b2b60d0b76" - } - Frame { - msec: 1184 - hash: "9a55c38b2cd8abf25fbe448c7ef80971" - } - Frame { - msec: 1200 - hash: "27ebdf1424e892b35c93ec009d942407" - } - Frame { - msec: 1216 - hash: "2d9e3f0ae56f7337012b51c4dd173108" - } - Frame { - msec: 1232 - hash: "e6f89ca892131d68ff1f4ca95c95d807" - } - Frame { - msec: 1248 - hash: "f75791f1b12a217d37acb09bdb114cc5" - } - Frame { - msec: 1264 - hash: "94c5ab1460fb1b0f957a9718b45bca36" - } - Frame { - msec: 1280 - hash: "e246c8a0ec3d01ea20258b24a5673fe1" - } - Frame { - msec: 1296 - hash: "529de7735e73409dff266d8c1275215c" - } - Frame { - msec: 1312 - hash: "330400763a670580570cb62241ebec62" - } - Frame { - msec: 1328 - hash: "ae444d1de9c509fc6f74136ca90f927a" - } - Frame { - msec: 1344 - hash: "c43631ca8ee90ea5dc7664be5bc45429" - } - Frame { - msec: 1360 - hash: "b366ac4a5b66c331a7667e9df0fc4eda" - } - Frame { - msec: 1376 - hash: "1c7f4c47a9c57a34787cc9703e99bff1" - } - Frame { - msec: 1392 - hash: "5555535609d512e8d34549b6624f74b8" - } - Frame { - msec: 1408 - hash: "be59df714541923494b59f31f57e310e" - } - Frame { - msec: 1424 - hash: "63e434f053032e54298f6e61c8d4da7d" - } - Frame { - msec: 1440 - hash: "b0bb838637eceb6f8993ebc5b887afed" - } - Frame { - msec: 1456 - hash: "fc39f33add4ebcaf578558ecd4aea281" - } - Frame { - msec: 1472 - hash: "3f36faa7cc1e5898d4d5890c47633ff3" - } - Frame { - msec: 1488 - hash: "4b328002b4461869b1f7de48e7291902" - } - Frame { - msec: 1504 - hash: "26252c63924d2abcaebea2c7caf1d7aa" - } - Frame { - msec: 1520 - hash: "a9a6023484ae439be86b2c2ff59dc40b" - } - Frame { - msec: 1536 - hash: "620dab11bd4aab84cc0d949c48dd9a5d" - } - Frame { - msec: 1552 - hash: "3b45ef80ee3e6fbbd3533bfa0d666e2f" - } - Frame { - msec: 1568 - hash: "b33306abcb6a8402e491b7216495c778" - } - Frame { - msec: 1584 - hash: "3cc52e8649a02e87785f1dc63f5c1efd" - } - Frame { - msec: 1600 - hash: "fe21141f48da685213ed9d7641b2e7a0" - } - Frame { - msec: 1616 - hash: "205aac4e822e20bd32f637256250f3c8" - } - Frame { - msec: 1632 - hash: "124df0948f36aaf6151556d301f4b930" - } - Frame { - msec: 1648 - hash: "c1701edd5eaf143fd1dbdc4a5324b48a" - } - Frame { - msec: 1664 - hash: "117402df55367c918a3835958f4ab1d6" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 195; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "73e3b86a1da28490cae4b03fdceefe19" - } - Frame { - msec: 1696 - hash: "172e329fb47d6db0180242990a84fe3b" - } - Frame { - msec: 1712 - hash: "82cf704cdfd406bab22689bc888ddc8d" - } - Frame { - msec: 1728 - hash: "4c288f198a06d1b2815d34c3c8f97051" - } - Frame { - msec: 1744 - hash: "6404d81456bb95a6b1c1ae55a181e40e" - } - Frame { - msec: 1760 - hash: "6c11b9f079936ea08d11aa1172bfd954" - } - Frame { - msec: 1776 - hash: "95388037c1f79a9dab951031f1d7c307" - } - Frame { - msec: 1792 - hash: "c4ee57d9bffbb5f0ff173db48eadf2e3" - } - Frame { - msec: 1808 - hash: "703ac9672a9c55cf08e6381ef76ac13c" - } - Frame { - msec: 1824 - hash: "ea7726d2a2923290398262c8f70d511e" - } - Frame { - msec: 1840 - hash: "9897c12603326a30c62381015c9adae3" - } - Frame { - msec: 1856 - hash: "a52aa37b10a05382f1b136896b7e00e8" - } - Frame { - msec: 1872 - hash: "a5acc1a45c95a67725e5e15084b7be18" - } - Frame { - msec: 1888 - hash: "c9fac8b5a4110493958d49b073ea96ed" - } - Frame { - msec: 1904 - hash: "6fca3a5c6d1cfbf1b905aca25b7785c5" - } - Frame { - msec: 1920 - hash: "a40e5e2744d1d84c8b9a45525801a745" - } - Frame { - msec: 1936 - image: "follow.2.png" - } - Frame { - msec: 1952 - hash: "b2f980ab19d44ee98ab3e82a19adfe2d" - } - Frame { - msec: 1968 - hash: "e01732623930aebefd76ab62c81dc722" - } - Frame { - msec: 1984 - hash: "3a59c6851bc89eb31100092b1ceddbd9" - } - Frame { - msec: 2000 - hash: "2949de19eacb9f35816aa7ba69614f2c" - } - Frame { - msec: 2016 - hash: "f2c4c1f4429cbb6bd10f2318b2cb6904" - } - Frame { - msec: 2032 - hash: "2c48af64162e7e028cd536dba03eab71" - } - Frame { - msec: 2048 - hash: "7fe13b8f9253f720b6591b396cfba2d1" - } - Frame { - msec: 2064 - hash: "559947a03e650575a764801366cc504b" - } - Frame { - msec: 2080 - hash: "a8d09f6c862fd5ec2dcf34f06d1ef744" - } - Frame { - msec: 2096 - hash: "e3bb4b62209631ff84134f2243bfdb42" - } - Frame { - msec: 2112 - hash: "a1956a9d1939bc154ea0c88d596948cc" - } - Frame { - msec: 2128 - hash: "c98a375727860da1e827d4dd74af8f63" - } - Frame { - msec: 2144 - hash: "df4edcbb2ef5348341ff55c808609b6c" - } - Frame { - msec: 2160 - hash: "6287564be85b7cbadc6bb6f0232bc837" - } - Frame { - msec: 2176 - hash: "9826fdb48f7ea770fa5f198ec49d7cb7" - } - Frame { - msec: 2192 - hash: "56f82641a5591df9bb929cc0d32eb95d" - } - Frame { - msec: 2208 - hash: "526c55e555fb2e58796561efa3568c50" - } - Frame { - msec: 2224 - hash: "6b4b74613421c1841a17c369cb316754" - } - Frame { - msec: 2240 - hash: "37f785c30947d5eec113dcf6af649abf" - } - Frame { - msec: 2256 - hash: "5ff2c975dd9e261c764537c836627c4d" - } - Frame { - msec: 2272 - hash: "efe554981583749c3d09988bce7fed02" - } - Frame { - msec: 2288 - hash: "0f7204b4afb0ea5d58e49650e8027c0c" - } - Frame { - msec: 2304 - hash: "817291f91f4b309710ad3aed53a7d47a" - } - Frame { - msec: 2320 - hash: "c15c9cd03089090cf8a777c1f0d88de7" - } - Frame { - msec: 2336 - hash: "05f45cb8d0856dcc81091351615e35d6" - } - Frame { - msec: 2352 - hash: "99785a16fed6d6409b4b47ec55afb56b" - } - Frame { - msec: 2368 - hash: "39032cb4432ee9536af500673fccf526" - } - Frame { - msec: 2384 - hash: "9057653e3cd6042831037d3590e7595b" - } - Frame { - msec: 2400 - hash: "76c772eb2ab8f117c260c9c96bc99e1d" - } - Frame { - msec: 2416 - hash: "b6474665b8f8bcdd76d1a38efecad889" - } - Frame { - msec: 2432 - hash: "106c2d2efafad0181e3ded3a6805f2c6" - } - Frame { - msec: 2448 - hash: "5275fa4ffef6c1909f9d03bb1e7b9cae" - } - Frame { - msec: 2464 - hash: "0c1043c0087d60000dc7259d4ac03618" - } - Frame { - msec: 2480 - hash: "645748569b4f5cb9b206b0808bb7d23d" - } - Frame { - msec: 2496 - hash: "dd95dfa80e1b3ff511e7c75efd0d87ce" - } - Frame { - msec: 2512 - hash: "86b3dd03b04d7610837cdc67cad07e0a" - } - Frame { - msec: 2528 - hash: "8264f67ac92e4ebcfe4cc8e954f8c5d2" - } - Frame { - msec: 2544 - hash: "6bf52377d822b09eb28a1ec36d3a36a9" - } - Frame { - msec: 2560 - hash: "7ae1d65cdaf7fa71eb4ec318b37bb0aa" - } - Frame { - msec: 2576 - hash: "860f5ce9844c90cf9e6a6d383ff0972f" - } - Frame { - msec: 2592 - hash: "5502229c038dfc59d966f69ae6ed8957" - } - Frame { - msec: 2608 - hash: "21843c027bc1434ae60b3bb0fced2c54" - } - Frame { - msec: 2624 - hash: "962df45680949c3eb6c968f98cd76b20" - } - Frame { - msec: 2640 - hash: "f313c26fa76a0edce61244bdf92528e4" - } - Frame { - msec: 2656 - hash: "b7bbde239e98cbd66b1e51b54b747f51" - } - Frame { - msec: 2672 - hash: "62340707fbc832fcb805c8f80ab353d1" - } - Frame { - msec: 2688 - hash: "d008a3f7af1810ff70b68b38a4cd0f0d" - } - Frame { - msec: 2704 - hash: "e651dd628af24faf34d716beb392b052" - } - Frame { - msec: 2720 - hash: "a97733963c7a7616b25741545b07ffba" - } - Frame { - msec: 2736 - hash: "3e017cc1db720cf16521bd17308e4f44" - } - Frame { - msec: 2752 - hash: "13652ebaa610cca71486517e2eed21a5" - } - Frame { - msec: 2768 - hash: "09f0f500c6f7d11be39c31f9e589b38a" - } - Frame { - msec: 2784 - hash: "b87968cbc60ddc6a5f5699e830410eab" - } - Frame { - msec: 2800 - hash: "50e65b043d1f07a321a08ee4c25204f6" - } - Frame { - msec: 2816 - hash: "122d1ffa1510468e8c4067e0f511588f" - } - Frame { - msec: 2832 - hash: "585f6c25caaafb99a22a23d8a998d202" - } - Frame { - msec: 2848 - hash: "9b245a00ad576666c10f509d8a80a61e" - } - Frame { - msec: 2864 - hash: "9b245a00ad576666c10f509d8a80a61e" - } - Frame { - msec: 2880 - hash: "3c5d3d10bacc093afc6a9c0b5aa4cddc" - } - Frame { - msec: 2896 - image: "follow.3.png" - } - Frame { - msec: 2912 - hash: "31926d69c2309fdf13fbd7f0e9868c3d" - } - Frame { - msec: 2928 - hash: "eb3acacce5dd31b0e94b59b9e546ccae" - } - Frame { - msec: 2944 - hash: "9a51cff3276d75803a0a6e480f7ecb70" - } - Frame { - msec: 2960 - hash: "fbbd8b9d519993a699815d935bcd2b9f" - } - Frame { - msec: 2976 - hash: "0314190c6de73f9f374a4eaed0709645" - } - Frame { - msec: 2992 - hash: "8ca1a203bdb5446094eb948aeb0a333e" - } - Frame { - msec: 3008 - hash: "301e1b86ce38e11ad9d0d7aba0909985" - } - Frame { - msec: 3024 - hash: "922095867d0a91b73ab7a63df2041279" - } - Frame { - msec: 3040 - hash: "ba8275f3ba4633bf64a1f81f630c90f1" - } - Frame { - msec: 3056 - hash: "efe39545279a7bd015d2de75d2b9d8b1" - } - Frame { - msec: 3072 - hash: "78926c3c0c6fcf89b9291f9902710964" - } - Frame { - msec: 3088 - hash: "ea63dcb7f00d3ddede0d8be59ad9d6bc" - } - Frame { - msec: 3104 - hash: "286ad493301b713a49e378f123482a53" - } - Frame { - msec: 3120 - hash: "a4bbbb8bb88188d3e99996502e3eebd1" - } - Frame { - msec: 3136 - hash: "a6100e79f3dc5af594e86ab6cd8dfb76" - } - Frame { - msec: 3152 - hash: "d9e3f777dc89bcf1b7f712206db768e2" - } - Frame { - msec: 3168 - hash: "768045c600c0aa0b1e9e6f012733c600" - } - Frame { - msec: 3184 - hash: "d8b4caa641ddee786f7898359efe9d07" - } - Frame { - msec: 3200 - hash: "f7c3b76d5bb7c263ac9447eaad685158" - } - Frame { - msec: 3216 - hash: "f7f97db815d653ec29fa31b87f72af2a" - } - Frame { - msec: 3232 - hash: "18524623762487b60943312cd8bd4388" - } - Frame { - msec: 3248 - hash: "5823dee5dd56e9f7515601f9629ccbae" - } - Frame { - msec: 3264 - hash: "5823dee5dd56e9f7515601f9629ccbae" - } - Frame { - msec: 3280 - hash: "5823dee5dd56e9f7515601f9629ccbae" - } - Frame { - msec: 3296 - hash: "5823dee5dd56e9f7515601f9629ccbae" - } - Frame { - msec: 3312 - hash: "18524623762487b60943312cd8bd4388" - } - Frame { - msec: 3328 - hash: "430995770b655054aaeda383df8e27f7" - } - Frame { - msec: 3344 - hash: "16a3a00f2b89aed676f80d63c4933ec3" - } - Frame { - msec: 3360 - hash: "6c55aa62079ec546522edbf69c37b270" - } - Frame { - msec: 3376 - hash: "0d68ca3ccecdd831013950cc7405e46e" - } - Frame { - msec: 3392 - hash: "9da2511bc8b434218695fa74ed543439" - } - Frame { - msec: 3408 - hash: "05afdd0b99dab81a500cdc2b2f0786fe" - } - Frame { - msec: 3424 - hash: "e6f8882d146ae60bcc6ea47ff41a637b" - } - Frame { - msec: 3440 - hash: "154542ed0e88321294f382501819aefc" - } - Frame { - msec: 3456 - hash: "8f47b6980c387c5020145bf04645fd2d" - } - Frame { - msec: 3472 - hash: "b34b055c7602f1f4e1cde875b258120c" - } - Frame { - msec: 3488 - hash: "5a697f675575f05e297d4877604b9a47" - } - Frame { - msec: 3504 - hash: "729dff1d1b357d19fc81804ec8940d0e" - } - Frame { - msec: 3520 - hash: "c6f3fee46baa94a6139d2ee40254b160" - } - Frame { - msec: 3536 - hash: "af0e700bb8ae34834510830f8b44afdb" - } - Frame { - msec: 3552 - hash: "9c87bb54c2dfe58c2da9194dae6f7502" - } - Frame { - msec: 3568 - hash: "2132356a92c75d725f9feafb8201b142" - } - Frame { - msec: 3584 - hash: "50d855d2595eeae2bfd6aaa8c2fa0454" - } - Frame { - msec: 3600 - hash: "5fde3c62d6e53a9056e3586f9dcda59e" - } - Frame { - msec: 3616 - hash: "8f04460254a1e9fb949d5165894cd92a" - } - Frame { - msec: 3632 - hash: "2b514c5e3b20d30f9c7e71092c69f081" - } - Frame { - msec: 3648 - hash: "2c1ba6224037790e15f5c0f2864ace4d" - } - Frame { - msec: 3664 - hash: "0d5b8e7bd5f560888aacaf2b3c6827a8" - } - Frame { - msec: 3680 - hash: "ae25004530e7df134414018e4a34780e" - } - Frame { - msec: 3696 - hash: "1a8fd9eaf9a91f1b42924f8986fbed9a" - } - Frame { - msec: 3712 - hash: "2ea6de2025d40ed5beeff12a5b70ccc9" - } - Frame { - msec: 3728 - hash: "624e417718d3cac1e4b7e4ce258ce6ea" - } - Frame { - msec: 3744 - hash: "8b56d29391257c7be8966af6be26ea9f" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 195; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "5c0d977d8b446d9191bde57335cf1062" - } - Frame { - msec: 3776 - hash: "100be2b21d069e3a5dbb694a90da4d4f" - } - Frame { - msec: 3792 - hash: "caab03f6c81080dd8fdbedb4e94ae4a5" - } - Frame { - msec: 3808 - hash: "3328a4d06f2f80a7e9ccf2ff21522fca" - } - Frame { - msec: 3824 - hash: "a534e6cc28daf3eff6a9cf8379bd6375" - } - Frame { - msec: 3840 - hash: "6686f9c1a814c6a6b785b70f94937b68" - } - Frame { - msec: 3856 - image: "follow.4.png" - } - Frame { - msec: 3872 - hash: "d3f1c3593375ca5c022a1361a7ec70bd" - } - Frame { - msec: 3888 - hash: "67843e6192e2ecaa3820c37dc2f93106" - } - Frame { - msec: 3904 - hash: "19a022f678e5b8f4ebdff936162323dc" - } - Frame { - msec: 3920 - hash: "34e55ae70c9e156db339ae15642359c3" - } - Frame { - msec: 3936 - hash: "3784778c817f9d9bb73d990cfe12685a" - } - Frame { - msec: 3952 - hash: "0403fdf79e3ba339c7e3786db0c9c0f0" - } - Frame { - msec: 3968 - hash: "93e4a0d5645d1cfc916f1e8422655555" - } - Frame { - msec: 3984 - hash: "29080bfabb87160b7c51385fb36b474b" - } - Frame { - msec: 4000 - hash: "9da2d83edc9d35f00fb8a159e79de4d9" - } - Frame { - msec: 4016 - hash: "5505a42d4788f00cfc7499fbfda851ce" - } - Frame { - msec: 4032 - hash: "bdd3040ab16fa9ffdd2fbc66b06699f8" - } - Frame { - msec: 4048 - hash: "2a347e30a20c693a9440caa60ade0a0f" - } - Frame { - msec: 4064 - hash: "0307f1857c091a639d47f112ce1a2f5a" - } - Frame { - msec: 4080 - hash: "778d18e539bbd562ebe39283a6315df1" - } - Frame { - msec: 4096 - hash: "0369cf6c3d1f5db2e92ee1f7c5d3b8ed" - } - Frame { - msec: 4112 - hash: "9f7413587ab50f1abf776bf180ec2d6f" - } - Frame { - msec: 4128 - hash: "7d04a27236485808e571e8a39f23ea17" - } - Frame { - msec: 4144 - hash: "a1dff63b723473d5a4c9c59975a2fb81" - } - Frame { - msec: 4160 - hash: "9795ea70a3b9d3b7805221a58c19e5da" - } - Frame { - msec: 4176 - hash: "f1392c489e21107136eb8e0d1e8b427e" - } - Frame { - msec: 4192 - hash: "95c225ef07171a96335e99078195b06a" - } - Frame { - msec: 4208 - hash: "d46ef3e7f9cec06e8c18afc0d07be4f3" - } - Frame { - msec: 4224 - hash: "b017f5b51d423bb0fca0d6df3aaded8b" - } - Frame { - msec: 4240 - hash: "60584d085b0cd6fbc436773be678597e" - } - Frame { - msec: 4256 - hash: "117951465dfd5c386826b295560d2dec" - } - Frame { - msec: 4272 - hash: "1b70137da5f4e024593999e93121fe8b" - } - Frame { - msec: 4288 - hash: "bd50dffd41941fef127f39b55c4748e0" - } - Frame { - msec: 4304 - hash: "8eec34d8e1d2e22d11b85a671cd4d3aa" - } - Frame { - msec: 4320 - hash: "9e3c97cfad5002ef5f3fcc365aeb7bd0" - } - Frame { - msec: 4336 - hash: "28e1cf1ee033915ea2ee39c9ab00a73d" - } - Frame { - msec: 4352 - hash: "99101a156a553f441f00221f6facbf1f" - } - Frame { - msec: 4368 - hash: "419023e5d59d16c26b35bee7d3cea559" - } - Frame { - msec: 4384 - hash: "485d23519293975b04031fe4baa5c276" - } - Frame { - msec: 4400 - hash: "c8bc60735e0ede26dbaf228294853f9a" - } - Frame { - msec: 4416 - hash: "ada3680b807d59843e3adf6640704066" - } - Frame { - msec: 4432 - hash: "3e28f3adf9241512cd0d6918d81ffffb" - } - Frame { - msec: 4448 - hash: "8f339acc33cbc89ae1c62391ce021bb3" - } - Frame { - msec: 4464 - hash: "d303960c0853a90557d64a04b8283c94" - } - Frame { - msec: 4480 - hash: "f907dbdacf2cfa9fdf8f9c8dead5b4c4" - } - Frame { - msec: 4496 - hash: "30c6e6f283f4a3f538cdda9c2e92de8c" - } - Frame { - msec: 4512 - hash: "04d2ac55774b43107a43a7d33764199b" - } - Frame { - msec: 4528 - hash: "cddf3e111cbc59e721725daa1d8a0c31" - } - Frame { - msec: 4544 - hash: "15b1b63cd1695207ebf9f04387be0739" - } - Frame { - msec: 4560 - hash: "690769b9bbe86a3c5b1fbdee39615fbd" - } - Frame { - msec: 4576 - hash: "2bd640d8ddbf878d808f22656fef1ed9" - } - Frame { - msec: 4592 - hash: "a654f1e4519bf883d554276ebbe96323" - } - Frame { - msec: 4608 - hash: "68f0313cfc3f51a0bb9b47c5407c19b6" - } - Frame { - msec: 4624 - hash: "77f29806b084de4cabf7ab9bf1a93d5e" - } - Frame { - msec: 4640 - hash: "f9991189e3282d107b98fb0ae5f5ef00" - } - Frame { - msec: 4656 - hash: "0cd1f2f6e347d48feea1b26a4968dec7" - } - Frame { - msec: 4672 - hash: "e75a6f6a088e2289042572a161ffb0e9" - } - Frame { - msec: 4688 - hash: "5a541081444c0a71128223a4c4c3144c" - } - Frame { - msec: 4704 - hash: "6813d442cc610f346a5441ed0cd723e5" - } - Frame { - msec: 4720 - hash: "24ec539bc57899819915f833f26deacd" - } - Frame { - msec: 4736 - hash: "3a7ed1b4b533b817674aa141c420cd61" - } - Frame { - msec: 4752 - hash: "d0a643fae97bb152e97ca60e96299003" - } - Frame { - msec: 4768 - hash: "c84093931520f4661eff6645091a294b" - } - Frame { - msec: 4784 - hash: "81e7ceaece82505a4a16ead195a66162" - } - Frame { - msec: 4800 - hash: "315764d20b647f6ab1ba30239a69bf72" - } - Frame { - msec: 4816 - image: "follow.5.png" - } - Frame { - msec: 4832 - hash: "d1824ced8af34ad9edb36a58ae9aa7f5" - } - Frame { - msec: 4848 - hash: "167b9a49fbb94908e09e7e9c9147cd8b" - } - Frame { - msec: 4864 - hash: "442d5f0906840de526d59a80ada322c0" - } - Frame { - msec: 4880 - hash: "78206c4d4d23c7c1ba888b9062b09432" - } - Frame { - msec: 4896 - hash: "e898202cfebbff1952efc6e01254d855" - } - Frame { - msec: 4912 - hash: "ab31dc7bbad2b0552359866bb8d92f0c" - } - Frame { - msec: 4928 - hash: "f093304e88964376baf9721d53d4fb49" - } - Frame { - msec: 4944 - hash: "3ef76f3e1c44d13c3a469bd192ff7b5d" - } - Frame { - msec: 4960 - hash: "5d3b6d0d91f8cc5b89e39407bc3b5a15" - } - Frame { - msec: 4976 - hash: "3c73573f12f49b34e1d990a55ad913fa" - } - Frame { - msec: 4992 - hash: "d1bac071b01a1c6fddab90cdc435fad4" - } - Frame { - msec: 5008 - hash: "36a219aadec910f1dbef616c641e1d2b" - } - Frame { - msec: 5024 - hash: "5871fc67d361cc988551592ee21dfb23" - } - Frame { - msec: 5040 - hash: "6e65ee6c814b9a9da205c36925e663bf" - } - Frame { - msec: 5056 - hash: "290b20fa8e91d34000d7c2d81745f6d2" - } - Frame { - msec: 5072 - hash: "19e7405a9083a8143f7bb040f8837b29" - } - Frame { - msec: 5088 - hash: "c0a0fa2b4c1ceb6c70594994a1ac8713" - } - Frame { - msec: 5104 - hash: "c236224c16743fb606deb78bcb8afc8d" - } - Frame { - msec: 5120 - hash: "7d44db15eb300b4338ffc26e9bcfce20" - } - Frame { - msec: 5136 - hash: "067a79148a194c45c6f32d85316a1e11" - } - Frame { - msec: 5152 - hash: "9075c379044476994a87f0fdcce8e332" - } - Frame { - msec: 5168 - hash: "b2316988fbd51096a4f512e71fe7d0a2" - } - Frame { - msec: 5184 - hash: "280f70877d93af5f84e178aad6a102d8" - } - Frame { - msec: 5200 - hash: "3eef4ae7e43a8cf1cd9dd562237296f8" - } - Frame { - msec: 5216 - hash: "e3184f77ce3a47ca4dca6386f42d7fec" - } - Frame { - msec: 5232 - hash: "a2a5df66fe4808ea8d466cac84ba910c" - } - Frame { - msec: 5248 - hash: "9f8a0e54788112d6c30482e840504f35" - } - Frame { - msec: 5264 - hash: "ae69cf84798844f9f360c86790feaecd" - } - Frame { - msec: 5280 - hash: "0244526572acb6266db5b7eb9d29c6fc" - } - Frame { - msec: 5296 - hash: "8fb53d60b95ddb5aef27442934ea9983" - } - Frame { - msec: 5312 - hash: "930fcfde491b4f5681e3861764003895" - } - Frame { - msec: 5328 - hash: "bcdcd0a637112d113ebe11dc18823237" - } - Frame { - msec: 5344 - hash: "65a564d5a5afbc14c0cdad4d52753507" - } - Frame { - msec: 5360 - hash: "0c5056d438d2d54938f31ef5f996673a" - } - Frame { - msec: 5376 - hash: "11c157ad2236fc390ffbdf339366cbc1" - } - Frame { - msec: 5392 - hash: "6cb341b1f281a97a35c2e41bfd4c4d9d" - } - Frame { - msec: 5408 - hash: "553a945f7f19f70ddae4ebe88e52a79b" - } - Frame { - msec: 5424 - hash: "d10b42b4095a2474e66a5a322f72e936" - } - Frame { - msec: 5440 - hash: "0f943d61e8072d70eddee8aa1ba0de5a" - } - Frame { - msec: 5456 - hash: "3df18e237b666e78d57857739b759e6d" - } - Frame { - msec: 5472 - hash: "1ddc0bfdb2ca7b6dee63f1024e62f26e" - } - Frame { - msec: 5488 - hash: "aaa397714528f41238059e3a88833abc" - } - Frame { - msec: 5504 - hash: "c94bd69f925c782656afc5f9618180a6" - } - Frame { - msec: 5520 - hash: "824ff8c0e1ab43e3c0eaa79b7cc19b9c" - } - Frame { - msec: 5536 - hash: "6c440a0b2293811335bdbf2c4f25f47d" - } - Frame { - msec: 5552 - hash: "bfc7936cdf833d5b720ec9baca740112" - } - Frame { - msec: 5568 - hash: "375fa305dbae2872dc9b20e59381cc0c" - } - Frame { - msec: 5584 - hash: "fffd6173aa49e74164dc17a238bcd830" - } - Frame { - msec: 5600 - hash: "44d9007e00fab161fd393b653255d7f4" - } - Frame { - msec: 5616 - hash: "f669ee25c58b4fa20a01705d334f0065" - } - Frame { - msec: 5632 - hash: "2dbb7d57711b67d5d9e1b81f70e22d34" - } - Frame { - msec: 5648 - hash: "19351b91448265cb95c1670ee283c611" - } - Frame { - msec: 5664 - hash: "19351b91448265cb95c1670ee283c611" - } - Frame { - msec: 5680 - hash: "3a24b99d048348a21f4e4bd69393de89" - } - Frame { - msec: 5696 - hash: "35a6fe955a52950bbfa954a453e4008e" - } - Frame { - msec: 5712 - hash: "896f4ec28c976237b34fb2725a44460e" - } - Frame { - msec: 5728 - hash: "ed3008ea950ec84c57518e573ea36d15" - } - Frame { - msec: 5744 - hash: "3447c7be992759f772c1db2033eead99" - } - Frame { - msec: 5760 - hash: "b7133225daa03563d3f5b1dac5f56a23" - } - Frame { - msec: 5776 - image: "follow.6.png" - } - Frame { - msec: 5792 - hash: "adc55f2fcf312a90b025a75fa80aa079" - } - Frame { - msec: 5808 - hash: "3ac85cad400d2b8e4f33798f4f6b7b42" - } - Frame { - msec: 5824 - hash: "1c115efd84ccbe489d24c3c521c4a61c" - } - Frame { - msec: 5840 - hash: "39518f1bbc0c4aba6ff517bc3dc7c279" - } - Frame { - msec: 5856 - hash: "7bd28d32996f4de61c415d3217da16d0" - } - Frame { - msec: 5872 - hash: "f5d06e25d775bf8db07e95625a712733" - } - Frame { - msec: 5888 - hash: "4820ea6ea3be88af2f86111c547a19d7" - } - Frame { - msec: 5904 - hash: "fa6e681c368118b7f135a47ae8fc12ff" - } - Frame { - msec: 5920 - hash: "f6b30e618aeeb837d2b3eca270b0a060" - } - Frame { - msec: 5936 - hash: "ac8504bde8d3063a8bf02b9d4b69d755" - } - Frame { - msec: 5952 - hash: "9670537bb77caa8e23fda7bbfa96ca60" - } - Frame { - msec: 5968 - hash: "8cd292865ce5c1d240e9ddc93881a0ed" - } - Frame { - msec: 5984 - hash: "de112013e526203d151c46e6cfba9f92" - } - Frame { - msec: 6000 - hash: "cd61066e697de8c055aaa168791c2d8c" - } - Frame { - msec: 6016 - hash: "cd61066e697de8c055aaa168791c2d8c" - } - Frame { - msec: 6032 - hash: "e68b27ff14aac03c827fd43ac488d23e" - } - Frame { - msec: 6048 - hash: "e68b27ff14aac03c827fd43ac488d23e" - } - Frame { - msec: 6064 - hash: "1f61d857a8c26587fbda5895c603441a" - } - Frame { - msec: 6080 - hash: "1e0dffdd02e05ade1ae444427d4aa345" - } - Frame { - msec: 6096 - hash: "9a416ee7a1de9ac45ab2d609233c9520" - } - Frame { - msec: 6112 - hash: "dfa35bf1cd908011c3214a506bcbdcb8" - } - Frame { - msec: 6128 - hash: "bd502dc72dce4af3036f7af9ed7cf9e9" - } - Frame { - msec: 6144 - hash: "c77280527612408daa3037aab45da59d" - } - Frame { - msec: 6160 - hash: "a38ed1532a40210ad7da4c0d4d1a7195" - } - Frame { - msec: 6176 - hash: "8ac8a8df937da526bbffb9a3590d89ac" - } - Frame { - msec: 6192 - hash: "07527cb9a4494e11f4c9f99eb72598b9" - } - Frame { - msec: 6208 - hash: "655b0327ef0f8711810714ba50f2f8cc" - } - Frame { - msec: 6224 - hash: "549fd25292012a2be1f78118998ca892" - } - Frame { - msec: 6240 - hash: "7a382ae4e6a48826eaa2c83ee7a73fb2" - } - Frame { - msec: 6256 - hash: "5acd5f250c5b32d9006ed68dfecbfa1c" - } - Frame { - msec: 6272 - hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" - } - Frame { - msec: 6288 - hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" - } - Frame { - msec: 6304 - hash: "07e5f1277558bfe7638b00cf9d967baf" - } - Frame { - msec: 6320 - hash: "07e5f1277558bfe7638b00cf9d967baf" - } - Frame { - msec: 6336 - hash: "07e5f1277558bfe7638b00cf9d967baf" - } - Frame { - msec: 6352 - hash: "07e5f1277558bfe7638b00cf9d967baf" - } - Frame { - msec: 6368 - hash: "07e5f1277558bfe7638b00cf9d967baf" - } - Frame { - msec: 6384 - hash: "877aca1c64e588845329ca8a38222604" - } - Frame { - msec: 6400 - hash: "877aca1c64e588845329ca8a38222604" - } - Frame { - msec: 6416 - hash: "877aca1c64e588845329ca8a38222604" - } - Frame { - msec: 6432 - hash: "877aca1c64e588845329ca8a38222604" - } - Frame { - msec: 6448 - hash: "877aca1c64e588845329ca8a38222604" - } - Frame { - msec: 6464 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6480 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6496 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6512 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6528 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6544 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6560 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6576 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6592 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6608 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6624 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6640 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6656 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6672 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6688 - hash: "b0f28e923f93dcdcea8460ca9d8cd674" - } - Frame { - msec: 6704 - hash: "228920e994ebf71d542c71ce8263614e" - } - Frame { - msec: 6720 - hash: "228920e994ebf71d542c71ce8263614e" - } - Frame { - msec: 6736 - image: "follow.7.png" - } - Frame { - msec: 6752 - hash: "228920e994ebf71d542c71ce8263614e" - } - Frame { - msec: 6768 - hash: "228920e994ebf71d542c71ce8263614e" - } - Frame { - msec: 6784 - hash: "228920e994ebf71d542c71ce8263614e" - } - Frame { - msec: 6800 - hash: "228920e994ebf71d542c71ce8263614e" - } - Frame { - msec: 6816 - hash: "228920e994ebf71d542c71ce8263614e" - } - Frame { - msec: 6832 - hash: "07e5f1277558bfe7638b00cf9d967baf" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6848 - hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" - } - Frame { - msec: 6864 - hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" - } - Frame { - msec: 6880 - hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" - } - Frame { - msec: 6896 - hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" - } - Frame { - msec: 6912 - hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" - } - Frame { - msec: 6928 - hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.0.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.0.png deleted file mode 100644 index 6525dbb..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.1.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.1.png deleted file mode 100644 index 5b8d209..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.2.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.2.png deleted file mode 100644 index cf012ba..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.3.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.3.png deleted file mode 100644 index 57e77a4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.4.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.4.png deleted file mode 100644 index 24d26bd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.5.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.5.png deleted file mode 100644 index a540734..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.6.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.6.png deleted file mode 100644 index 17da643..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.7.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.7.png deleted file mode 100644 index e03cfe4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.qml deleted file mode 100644 index 98cd12c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data-X11/follow.qml +++ /dev/null @@ -1,1763 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "follow.0.png" - } - Frame { - msec: 32 - hash: "2ddcb50f5d285eb80a8136f0cf4cf85a" - } - Frame { - msec: 48 - hash: "519d93a844e05f8215139d91c9aef58b" - } - Frame { - msec: 64 - hash: "9f075a5547e4dc67cbe2ace2766395bb" - } - Frame { - msec: 80 - hash: "8fc48f74a51d45b4ea1fb7bd1d48002f" - } - Frame { - msec: 96 - hash: "a28fc4be5a5bb9ff36f796d9b071f02c" - } - Frame { - msec: 112 - hash: "ebc14c2905f3596ec451dd96409e6001" - } - Frame { - msec: 128 - hash: "4f270bdcff44006a56055edb1cda522a" - } - Frame { - msec: 144 - hash: "571f347e764bf38985768c85c2a13ba1" - } - Frame { - msec: 160 - hash: "b1aa23268167b7e2a1190288926f52c0" - } - Frame { - msec: 176 - hash: "06d548aef9a678edbf3ab4d3ce62a647" - } - Frame { - msec: 192 - hash: "daf6af0ae78f39566913c656450a66e5" - } - Frame { - msec: 208 - hash: "f101cd0c026ee0ed6ccef7a4aed302a0" - } - Frame { - msec: 224 - hash: "b3caa673f072c53d31d71109c9b33357" - } - Frame { - msec: 240 - hash: "8596f1d305d6b8f97b9feda9e69bdefe" - } - Frame { - msec: 256 - hash: "23c23df2c130aafb2092fe47a958a4cd" - } - Frame { - msec: 272 - hash: "66a4f2d8213264437a5f4d6cf10cd442" - } - Frame { - msec: 288 - hash: "6392490111813bad0a9467cc0c1746ed" - } - Frame { - msec: 304 - hash: "c115a47e0ecab63b881e2ec492d24e68" - } - Frame { - msec: 320 - hash: "c2a2b57e6f9ea2975c0846124d2dbc66" - } - Frame { - msec: 336 - hash: "8286c315dfda4241607b2de1154f869d" - } - Frame { - msec: 352 - hash: "3f0f7cae80357176892ff7628ec3153a" - } - Frame { - msec: 368 - hash: "d13bde4a5b5ed8202f92ae33913166c9" - } - Frame { - msec: 384 - hash: "b70cc32134b1b0d31a5e7f145af09495" - } - Frame { - msec: 400 - hash: "03ebc2ff317ac840f4508e8701d66955" - } - Frame { - msec: 416 - hash: "8dff08e72365e8e2fee8088c386dedca" - } - Frame { - msec: 432 - hash: "720f3bbaf3fa3e3a064747d5689e47a0" - } - Frame { - msec: 448 - hash: "350e3ebfcfef96969ef5b8d5944f7e62" - } - Frame { - msec: 464 - hash: "1e4e6e68b3a8eac0c5cd039164eec166" - } - Frame { - msec: 480 - hash: "62a10c4250ad025139a3f9e72109e8e1" - } - Frame { - msec: 496 - hash: "23cfd643adfc98f6a06c7e7b15dac954" - } - Frame { - msec: 512 - hash: "3a78930d5b86b886723fad85e77dd075" - } - Frame { - msec: 528 - hash: "64dc878e2f527e80403c766e61fe14a6" - } - Frame { - msec: 544 - hash: "d79160989d2584044042271e79a88e69" - } - Frame { - msec: 560 - hash: "22cbaea4affc88433834c7d0dc1f1644" - } - Frame { - msec: 576 - hash: "77cb616902257e1f239a0e6bfaabb33c" - } - Frame { - msec: 592 - hash: "a2fe73dced03b23c4acb9aae9b774b41" - } - Frame { - msec: 608 - hash: "230e21d3a9ed0e185593677233af1275" - } - Frame { - msec: 624 - hash: "4e10ecffac4e06d624855d3f8917f76c" - } - Frame { - msec: 640 - hash: "84f49d56baace4a02e50d3eafaea04ec" - } - Frame { - msec: 656 - hash: "e3cd0b334551a9f91723eb2c876d335a" - } - Frame { - msec: 672 - hash: "259330f3ec390c9926d9c2ddc2d77319" - } - Frame { - msec: 688 - hash: "cc659623bfa385d282d608684d7cdc2b" - } - Frame { - msec: 704 - hash: "47ed75d077143a6bfa0e10158550c542" - } - Frame { - msec: 720 - hash: "0de93bbd9f9ee63e97968089321003e1" - } - Frame { - msec: 736 - hash: "b33d867d4399879256a01344ce0b81f2" - } - Frame { - msec: 752 - hash: "97c31fce937d11f62bebc6169b464a42" - } - Frame { - msec: 768 - hash: "ea4166b8a4001bca3f27af30f251267f" - } - Frame { - msec: 784 - hash: "b56d270b7893565f8d7ed2a0bfe10d60" - } - Frame { - msec: 800 - hash: "88a42559fe22b45cff379258dd40ced9" - } - Frame { - msec: 816 - hash: "4ee1a711cb8d26087e1b75a3166ca5f0" - } - Frame { - msec: 832 - hash: "9b88a00d041092e79b4a08bccbaca0e1" - } - Frame { - msec: 848 - hash: "afea397b3d740dc42f0313624fc10efd" - } - Frame { - msec: 864 - hash: "39fd8e4cefbd9fed283d62a7aecded22" - } - Frame { - msec: 880 - hash: "916b783d2379ac054c749e7b6eae7ddf" - } - Frame { - msec: 896 - hash: "fccd44740ff7ffb0f2adccf00a7588bd" - } - Frame { - msec: 912 - hash: "c064f20703a13543e8273d251fd645fe" - } - Frame { - msec: 928 - hash: "1b9b0755101841e3d1cbe208d81575d5" - } - Frame { - msec: 944 - hash: "1eb5e4a301b565012bc8f6af8e879eb9" - } - Frame { - msec: 960 - hash: "032db65eb5c405e433f88df3975c322b" - } - Frame { - msec: 976 - image: "follow.1.png" - } - Frame { - msec: 992 - hash: "fdb67e11d7cc767b2389a8bbef752c7e" - } - Frame { - msec: 1008 - hash: "ed89cb161336c61b13e3514fdf816023" - } - Frame { - msec: 1024 - hash: "331b873c5367e0aaa62af85cb54a6a96" - } - Frame { - msec: 1040 - hash: "cde4503f02f0c3732e310a7d0418cd1e" - } - Frame { - msec: 1056 - hash: "f8c028c591fc1495d5bec8763da6f011" - } - Frame { - msec: 1072 - hash: "9dc68483218335afe41aa3cd052a98b5" - } - Frame { - msec: 1088 - hash: "31105c455418a3284700cf9c88571507" - } - Frame { - msec: 1104 - hash: "72724947167a1ac600aaa1d7f331f7ec" - } - Frame { - msec: 1120 - hash: "a4a1243326de6b9e93948fcb22fecac4" - } - Frame { - msec: 1136 - hash: "c3e26e62f12dd658f21a0330fefb0533" - } - Frame { - msec: 1152 - hash: "15d85b4a9ad761a911bbaa3e0c4b2b61" - } - Frame { - msec: 1168 - hash: "bce1400b437cc43b8ff57b1a5fbc9551" - } - Frame { - msec: 1184 - hash: "5d05848afcd8f697c1b3762f00a759f6" - } - Frame { - msec: 1200 - hash: "6c83f68ea72cd54793149f4c9e759d44" - } - Frame { - msec: 1216 - hash: "5206b93666e51cee3e25a7a85e27b5b8" - } - Frame { - msec: 1232 - hash: "a3ef5c76efece4455e5ad12bcc8bd8f5" - } - Frame { - msec: 1248 - hash: "c36c6ee7b6c8074f5dc1af7446fad1ad" - } - Frame { - msec: 1264 - hash: "bb0887f1f10548bb53f0dc1ffeec25ee" - } - Frame { - msec: 1280 - hash: "ebffe547a7c3528e5deddc590510506d" - } - Frame { - msec: 1296 - hash: "18962faef1a1a1207a3c6783116154a2" - } - Frame { - msec: 1312 - hash: "8aaa876e4a6c4de04e557f35ddd4fb61" - } - Frame { - msec: 1328 - hash: "c66123bb4e01ce267629f5b50d147db1" - } - Frame { - msec: 1344 - hash: "334e5acf84d90e70ca3085b9d5e057a7" - } - Frame { - msec: 1360 - hash: "9bb49ddcc775307c3c1159908323e010" - } - Frame { - msec: 1376 - hash: "1b3cfb8b6b6c39a34ea86a66ea1cc6b1" - } - Frame { - msec: 1392 - hash: "d2a68c6eb2b05390ab1049137f96f227" - } - Frame { - msec: 1408 - hash: "91e254fd2376ba35a283b18b947ca1a8" - } - Frame { - msec: 1424 - hash: "fe94e2e8b4978390e9e8cbfe77dfc241" - } - Frame { - msec: 1440 - hash: "e3d32b73c5c50e7aa59f4e4725de170e" - } - Frame { - msec: 1456 - hash: "a73b90254d7da5557cc3941db0017a65" - } - Frame { - msec: 1472 - hash: "9aa49cce5d63f8dd6409995ac6d91d63" - } - Frame { - msec: 1488 - hash: "0ba674df46accec28a3c1b81e656adc7" - } - Frame { - msec: 1504 - hash: "025a45417b8c75d47b5dac6c5ef913e9" - } - Frame { - msec: 1520 - hash: "742527b97c7f580b0b7ff9d6aa105d31" - } - Frame { - msec: 1536 - hash: "965ec8315d45894e704fcc5a3efc8c55" - } - Frame { - msec: 1552 - hash: "6abdd59e6bd2c31124eab254418a5322" - } - Frame { - msec: 1568 - hash: "9f6d06b176c55fa292e7f0ef4b5cd1cb" - } - Frame { - msec: 1584 - hash: "05eba8c6e02c0d4af49e59b3346c9e68" - } - Frame { - msec: 1600 - hash: "3c4215f6253aba836516cd51368bc471" - } - Frame { - msec: 1616 - hash: "c6339a290007c0106cb18ecef5b7392b" - } - Frame { - msec: 1632 - hash: "39a4bcd2ce84035f9db70f196ca00971" - } - Frame { - msec: 1648 - hash: "b75a4be472583c3b893fc894ebe7d4d8" - } - Frame { - msec: 1664 - hash: "d1efebbe748c43b3c1241753612e100d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 195; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "f6f3ad64fb71ffb68a5ea0375cc94bae" - } - Frame { - msec: 1696 - hash: "778ecbafb5d235edde1683cabe3c3cfe" - } - Frame { - msec: 1712 - hash: "5a41b9196fe4a97e6ba2400806299bd8" - } - Frame { - msec: 1728 - hash: "1c8ddbc5910e35be389a1cb34fab9dec" - } - Frame { - msec: 1744 - hash: "5e8b236c00087a067d366afde67184f3" - } - Frame { - msec: 1760 - hash: "b7308837c5d7950dc81abec1340b4582" - } - Frame { - msec: 1776 - hash: "bbe9f0b030efa716f34a05f0af929c66" - } - Frame { - msec: 1792 - hash: "cd393fc19a30d896bfe62aa0000308f8" - } - Frame { - msec: 1808 - hash: "c390f5b1bcff54de203490d8f2616fcd" - } - Frame { - msec: 1824 - hash: "b5da2ea467c334dd13c75b811b94efb1" - } - Frame { - msec: 1840 - hash: "49887c9312c3a4dfc2d9719f47c83a15" - } - Frame { - msec: 1856 - hash: "7f077703e49f154d01c12a44f53469c5" - } - Frame { - msec: 1872 - hash: "7be4130ed767f0e0bf41c3bebf050cac" - } - Frame { - msec: 1888 - hash: "cc1590486c172000557b76c6eadb51e0" - } - Frame { - msec: 1904 - hash: "7ccd05236d9c1f8af0e9645404326122" - } - Frame { - msec: 1920 - hash: "2da165bf7e868b53b85bb630649ddc3e" - } - Frame { - msec: 1936 - image: "follow.2.png" - } - Frame { - msec: 1952 - hash: "2b6a24b6ceeaa956527c872af70fb5f9" - } - Frame { - msec: 1968 - hash: "8c882de21f4ed0fb68433c19b114c3f8" - } - Frame { - msec: 1984 - hash: "f75226c58726a687079d0d24e865ee6f" - } - Frame { - msec: 2000 - hash: "2fa9b69fe85b4e1361ba260545c10e06" - } - Frame { - msec: 2016 - hash: "6d513bc03f2798fbce1a0790969da6b5" - } - Frame { - msec: 2032 - hash: "7e359e605483493e9a865f6eb912c394" - } - Frame { - msec: 2048 - hash: "497c7c82c24408dcaff5ec981d3d4f35" - } - Frame { - msec: 2064 - hash: "8738b024cf75ef970ffe20166e85141c" - } - Frame { - msec: 2080 - hash: "014b805eb1ecf2ea1cd61727bfd1ca08" - } - Frame { - msec: 2096 - hash: "a81cde60979300f397054ea017382114" - } - Frame { - msec: 2112 - hash: "c46183b5224e762335eea98d9da65465" - } - Frame { - msec: 2128 - hash: "11afbb88994f298a1fed6575fae3d7fd" - } - Frame { - msec: 2144 - hash: "0195fa503143561d9ae3ffe68739ca3f" - } - Frame { - msec: 2160 - hash: "6d298df37d2116eb9a62b58853cb3344" - } - Frame { - msec: 2176 - hash: "1660865f00ea9adf94c8e56c7a8a73b2" - } - Frame { - msec: 2192 - hash: "9835b5527b84e8e8a8fea2bdf9653a99" - } - Frame { - msec: 2208 - hash: "ec1158b83daa9e98437abc9ce90b70f0" - } - Frame { - msec: 2224 - hash: "11ce5e37747e05ff5f5071b13324ce9e" - } - Frame { - msec: 2240 - hash: "6d7d427d5a15a31fd395f26c94ea455e" - } - Frame { - msec: 2256 - hash: "828949e0fbdb7c79719fb533febb5b35" - } - Frame { - msec: 2272 - hash: "7ef7f73ef6a59c9210cfa37df3894cb1" - } - Frame { - msec: 2288 - hash: "e74bec397b32ba2934ffdde23a3d60c6" - } - Frame { - msec: 2304 - hash: "09c2ca9c22e9b77bc166b4567b29bca7" - } - Frame { - msec: 2320 - hash: "44d87983f33c4e03f4be70b406bb9bd9" - } - Frame { - msec: 2336 - hash: "92844b36c2f30e618f04bfbc5cfbcad6" - } - Frame { - msec: 2352 - hash: "0245f39a8966c4addb3f8dbcee93cd3f" - } - Frame { - msec: 2368 - hash: "eb1e81cfa29295d4b1522c69d4501f51" - } - Frame { - msec: 2384 - hash: "2af9c3bea11b25c0f6c2b780d533a968" - } - Frame { - msec: 2400 - hash: "5062e9ab29c4a7a9657a4d29249ca822" - } - Frame { - msec: 2416 - hash: "d7652ddc85d3be3bb3a2fc268ae9bc29" - } - Frame { - msec: 2432 - hash: "7c924bf2ad6167db439723679b373a3a" - } - Frame { - msec: 2448 - hash: "a93b61dd26a2ca72100b747ac3ed81b6" - } - Frame { - msec: 2464 - hash: "5fedc849d3d21e0acf0ab4a4815a1285" - } - Frame { - msec: 2480 - hash: "4313d2458f4bede8d3b02ac60135e728" - } - Frame { - msec: 2496 - hash: "0f09e81d89262b569c56a9c876f3898d" - } - Frame { - msec: 2512 - hash: "ea932789ded14fc5c8bae565b67d004c" - } - Frame { - msec: 2528 - hash: "fd1f7b9b51f1284fee4d777ef83bba3f" - } - Frame { - msec: 2544 - hash: "e98b884a1ec8ce4b4dc20749b85b571e" - } - Frame { - msec: 2560 - hash: "d144072bb87bb88750b9df9cd92f7a4b" - } - Frame { - msec: 2576 - hash: "9d8ad80d3367292d7e89d67cf49862b8" - } - Frame { - msec: 2592 - hash: "c09b89e71e862da15d2b9edb0e00aa7b" - } - Frame { - msec: 2608 - hash: "551277add3f8f09951d9c8f55ccd40f7" - } - Frame { - msec: 2624 - hash: "1d0be0e7108516869374a9b985fd7543" - } - Frame { - msec: 2640 - hash: "12e7cfb6c4a26af54c4b35182294a7b7" - } - Frame { - msec: 2656 - hash: "a666a5a59d5854973668798eb8d508ba" - } - Frame { - msec: 2672 - hash: "420d2e21461dc45f134b7dfa11d04d25" - } - Frame { - msec: 2688 - hash: "95f848874899fb58a81c62b5921cf857" - } - Frame { - msec: 2704 - hash: "fa3ea7a0f90ca549cc9a857f0647b061" - } - Frame { - msec: 2720 - hash: "cbc5338de6157cd5dad511b246f5093b" - } - Frame { - msec: 2736 - hash: "e26b43c83197abab3746830bbfacc0f4" - } - Frame { - msec: 2752 - hash: "5225e854ff2763e562dee2810331d560" - } - Frame { - msec: 2768 - hash: "a1d114ea67233ac4c6351e18e3afa64e" - } - Frame { - msec: 2784 - hash: "bc9f12af2d0816bb84fd5040ed29bdad" - } - Frame { - msec: 2800 - hash: "d9337da38caa4ad3385249602a830df3" - } - Frame { - msec: 2816 - hash: "6ce20e0c89181b0f11e609b248da71d7" - } - Frame { - msec: 2832 - hash: "bbc8337950a78c7bfa48aab2635120a8" - } - Frame { - msec: 2848 - hash: "0e28ade7f52f3c27e1dbdd6e98be8c7d" - } - Frame { - msec: 2864 - hash: "0e28ade7f52f3c27e1dbdd6e98be8c7d" - } - Frame { - msec: 2880 - hash: "b496af17513d60d4028bd7402fbfba93" - } - Frame { - msec: 2896 - image: "follow.3.png" - } - Frame { - msec: 2912 - hash: "29aa7ce0fb1aa350753d3ec6da05bdf9" - } - Frame { - msec: 2928 - hash: "fde474797d8105d9d004a7020e010fa4" - } - Frame { - msec: 2944 - hash: "5a553d9a4bd2ef5d86f5eb37a863d28f" - } - Frame { - msec: 2960 - hash: "2dcbf6c84abd49529f0b5d85bfb74808" - } - Frame { - msec: 2976 - hash: "e96ec3b7d37bbf4c9ca297ad5afde31c" - } - Frame { - msec: 2992 - hash: "9d824068affe32c143226b0b530206fc" - } - Frame { - msec: 3008 - hash: "3e85f0ace68cffed47f4c9b00145f0f0" - } - Frame { - msec: 3024 - hash: "540b8e1e2bee7d2ba5e29fd3b1086cd1" - } - Frame { - msec: 3040 - hash: "0786585d11934c5e4a7e965eaac9a152" - } - Frame { - msec: 3056 - hash: "8271705df2ca697f4343007a7810d4ac" - } - Frame { - msec: 3072 - hash: "b98e1cd20ab2e4239f35d04df5e5175a" - } - Frame { - msec: 3088 - hash: "ab1a7eaa5c5d919ee76cba405d0dd4cd" - } - Frame { - msec: 3104 - hash: "52682386448379a395dc6c541224b7d4" - } - Frame { - msec: 3120 - hash: "31dffcb9da94dfc085ab8c561404c248" - } - Frame { - msec: 3136 - hash: "f3703eed8ebf9ece776ebe51e4c60ae6" - } - Frame { - msec: 3152 - hash: "1126b90345bb42691cd17f37ecec6bdb" - } - Frame { - msec: 3168 - hash: "7a63ab96d1c8d4992c03a6f59bba4e7e" - } - Frame { - msec: 3184 - hash: "91f4a00c9a7ea6164b334aa4b90da862" - } - Frame { - msec: 3200 - hash: "485471140f6a5336837377612e7a85bf" - } - Frame { - msec: 3216 - hash: "96881b4021aff05020e0a9342fbae75d" - } - Frame { - msec: 3232 - hash: "9891326646c3da4ff250aab69c862f96" - } - Frame { - msec: 3248 - hash: "f00f36bbb5a828824c596ee6f85bec2f" - } - Frame { - msec: 3264 - hash: "f00f36bbb5a828824c596ee6f85bec2f" - } - Frame { - msec: 3280 - hash: "f00f36bbb5a828824c596ee6f85bec2f" - } - Frame { - msec: 3296 - hash: "f00f36bbb5a828824c596ee6f85bec2f" - } - Frame { - msec: 3312 - hash: "9891326646c3da4ff250aab69c862f96" - } - Frame { - msec: 3328 - hash: "c766238db55f4704c2f29a6be6ee6907" - } - Frame { - msec: 3344 - hash: "0254665427dcbd1c155bc954cc7aa7cd" - } - Frame { - msec: 3360 - hash: "33ae1012816b997ef5c61c03ccfcc590" - } - Frame { - msec: 3376 - hash: "4c7857bbbcb9aa812fc2503af2b395cf" - } - Frame { - msec: 3392 - hash: "3a570e4af992d35e55923cea23c3c11b" - } - Frame { - msec: 3408 - hash: "533ef554538005512ce37c73c6def722" - } - Frame { - msec: 3424 - hash: "f863fa215d0642708bfa82780c766dc4" - } - Frame { - msec: 3440 - hash: "fcca3ec34521c4b9087a102ba1e47293" - } - Frame { - msec: 3456 - hash: "47d67cd74cb96b12801842b288a8b9ff" - } - Frame { - msec: 3472 - hash: "34c5ea76f297ec68cba70521caa468e4" - } - Frame { - msec: 3488 - hash: "7be247cc7a4032ff0478fca1a2aace8a" - } - Frame { - msec: 3504 - hash: "3ade2a1a48edef15f522b9fc016e137e" - } - Frame { - msec: 3520 - hash: "8b37b9d123504931d82bb06f6981bade" - } - Frame { - msec: 3536 - hash: "5eb39825003f405f353f629e236b3395" - } - Frame { - msec: 3552 - hash: "c4550722260c4a30ab1176c7e5cb62bf" - } - Frame { - msec: 3568 - hash: "bd33e3ecd4b59cd659588c0298b61095" - } - Frame { - msec: 3584 - hash: "4b3a62bff0019df7412aa2e1c07c0a23" - } - Frame { - msec: 3600 - hash: "a9b98adcc3350febbb89dbf725b81436" - } - Frame { - msec: 3616 - hash: "66eb8c84e75141d1575caf7d3cbc1ceb" - } - Frame { - msec: 3632 - hash: "238f2b1dc5bf5b65e827c860f9ee76b5" - } - Frame { - msec: 3648 - hash: "6d1fed0697370b2a2163c369fe559739" - } - Frame { - msec: 3664 - hash: "04ea478c785586d900bbe3472371bbc7" - } - Frame { - msec: 3680 - hash: "ba429e711c9363eebfb20e641fa44c84" - } - Frame { - msec: 3696 - hash: "0129dfba166ffcbaa15087467c864068" - } - Frame { - msec: 3712 - hash: "3fb340c874eee94e8baa1453b37c3fb5" - } - Frame { - msec: 3728 - hash: "068c51d99c458f3edefe3371f46de260" - } - Frame { - msec: 3744 - hash: "dd1e04ed3d610c2712158d73ee2c5b9d" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 195; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "840154afb9e7e0c859c66667bb6944b6" - } - Frame { - msec: 3776 - hash: "239c2e33800e386b468a95341d0e23f4" - } - Frame { - msec: 3792 - hash: "0a00515f2d297362862c1a5cf6519845" - } - Frame { - msec: 3808 - hash: "f855df3495e44291aed8f085163c804b" - } - Frame { - msec: 3824 - hash: "b4eb31e48c65550bb78d175b48e0e9fb" - } - Frame { - msec: 3840 - hash: "70243664f9db83614e5972fc18ee81a1" - } - Frame { - msec: 3856 - image: "follow.4.png" - } - Frame { - msec: 3872 - hash: "c48ce2a4cf28ab706b9c097bddc74c27" - } - Frame { - msec: 3888 - hash: "754a957e0df02839dd2fe33fefb7a721" - } - Frame { - msec: 3904 - hash: "ec3ebe7b941af9bf2163634d7f15e8aa" - } - Frame { - msec: 3920 - hash: "a76423ff2184cd9dac47abf7ae52ce5a" - } - Frame { - msec: 3936 - hash: "559bec54f51c36c6e90004ca5e77c23c" - } - Frame { - msec: 3952 - hash: "dc6fdd6a867a675afcb58f7052605614" - } - Frame { - msec: 3968 - hash: "b2fb0dbbec01490243f37fe5f80ab6c7" - } - Frame { - msec: 3984 - hash: "2bc1df7a913b1948ee7bb77eeaa55aa2" - } - Frame { - msec: 4000 - hash: "82c6430d85c6a94c4b55a9529d2bc78f" - } - Frame { - msec: 4016 - hash: "463e70dc9a9bdabdc158199bdcd7d2fa" - } - Frame { - msec: 4032 - hash: "c1e9553327f060b70caa713bf3015342" - } - Frame { - msec: 4048 - hash: "42f7f505d4e5ef316240e4f287a039bf" - } - Frame { - msec: 4064 - hash: "200500f600ffe43c5ad4d057bcfc0831" - } - Frame { - msec: 4080 - hash: "22e78edb813f7830776b2603b0aaae5c" - } - Frame { - msec: 4096 - hash: "32ebf3490832fd0693b1b922b4501251" - } - Frame { - msec: 4112 - hash: "1be622caa5ef94f87e2ec8297b6e1caa" - } - Frame { - msec: 4128 - hash: "d1480529e0cb94c51c412109663e5fab" - } - Frame { - msec: 4144 - hash: "e55e627d6d13b647f35233f18f0cbe89" - } - Frame { - msec: 4160 - hash: "87d7b349cd2898de7686e5f1a14f6338" - } - Frame { - msec: 4176 - hash: "2ac974836ee5e6092b55fcda20d7c35d" - } - Frame { - msec: 4192 - hash: "53867256c1dac4de2f02af1ae000b49f" - } - Frame { - msec: 4208 - hash: "08623509e9e5089fdaa1af2bf9a77eb1" - } - Frame { - msec: 4224 - hash: "e4692f42c12593ee865048aef00cbeb2" - } - Frame { - msec: 4240 - hash: "981ad6459e3e7483bb323ab4bc514630" - } - Frame { - msec: 4256 - hash: "79e8adfcdc9d6dae0d2b6a69e8e322fa" - } - Frame { - msec: 4272 - hash: "58f967a607972faa9daa13402eeb9912" - } - Frame { - msec: 4288 - hash: "1fd5b002b049132565b6a963fb7b3bb6" - } - Frame { - msec: 4304 - hash: "a16c96598f47404ec5f4ef55e87a1e70" - } - Frame { - msec: 4320 - hash: "3c632899804812c93c7edd3e3f3d2bac" - } - Frame { - msec: 4336 - hash: "af0eb810e0273f9bacb082d9f90612df" - } - Frame { - msec: 4352 - hash: "728d7ac4a5410482c7d86d03c2d8a996" - } - Frame { - msec: 4368 - hash: "416e76064f2be71a03eddddf61a33cb0" - } - Frame { - msec: 4384 - hash: "c41f20b4ac9a7b34eefd066f77ea351a" - } - Frame { - msec: 4400 - hash: "821d51db415a210b09ebdf8d861aadf2" - } - Frame { - msec: 4416 - hash: "9394266815a52f1779858bb088d557dc" - } - Frame { - msec: 4432 - hash: "cc475d1589665414e5aef051ec237ef4" - } - Frame { - msec: 4448 - hash: "a95f3b8128faa7820f36391fa9bd579f" - } - Frame { - msec: 4464 - hash: "d52687293a11891c364de52525039203" - } - Frame { - msec: 4480 - hash: "5333dc4f65b2f1e066edcd23f7621bd7" - } - Frame { - msec: 4496 - hash: "797bb5e27b2fe2b733a54402433901b4" - } - Frame { - msec: 4512 - hash: "84c610cdff7f8b04a34977216e37847d" - } - Frame { - msec: 4528 - hash: "0317f0406a566b2851c8bda62900e40c" - } - Frame { - msec: 4544 - hash: "6538ecd7abd35234c5cc5c2a17249fc1" - } - Frame { - msec: 4560 - hash: "f9019150a132eb5f5cfafcd5337aff7a" - } - Frame { - msec: 4576 - hash: "0f0136fffbc65c02cee249ece4c8c0ef" - } - Frame { - msec: 4592 - hash: "0027e0d236b8b33a451a0cc35e81b4ce" - } - Frame { - msec: 4608 - hash: "ac2f86b2d4f29f223fb78440d67ccd31" - } - Frame { - msec: 4624 - hash: "a6eb112a10c849e337f816ee408f22a6" - } - Frame { - msec: 4640 - hash: "dafbb01f2615a2513310478ebe484a05" - } - Frame { - msec: 4656 - hash: "17c400c4c29652dc278980ab578b75b3" - } - Frame { - msec: 4672 - hash: "48696c02a2a4839b893a4c0b431b78a3" - } - Frame { - msec: 4688 - hash: "04e05c7e722e53299d24cd0f1b7d17ee" - } - Frame { - msec: 4704 - hash: "55d158f13ffc7ccde5ee368656d2830b" - } - Frame { - msec: 4720 - hash: "fa478e1575acedae023322a520171a5b" - } - Frame { - msec: 4736 - hash: "e2147ddd6e19fde80bb76da24011400c" - } - Frame { - msec: 4752 - hash: "44ee0144db4c55aa90d2a931d83a895e" - } - Frame { - msec: 4768 - hash: "552e87bbce4ad48006c899052a2c8cad" - } - Frame { - msec: 4784 - hash: "3b6efe225303566f751c3f884ac8c069" - } - Frame { - msec: 4800 - hash: "3a7175916d1dc103506061607b910550" - } - Frame { - msec: 4816 - image: "follow.5.png" - } - Frame { - msec: 4832 - hash: "b2e5d5c14b02a13bca62673f87e85627" - } - Frame { - msec: 4848 - hash: "bd89a911d6fb13e4e841f8ee5b8b42af" - } - Frame { - msec: 4864 - hash: "89795784185e83d0299e656f2eec73c8" - } - Frame { - msec: 4880 - hash: "5b6d6fe78f341bdf0eb4bedfe3d975d0" - } - Frame { - msec: 4896 - hash: "e246bc451ee48e16ef6dee20d6256e9c" - } - Frame { - msec: 4912 - hash: "8c1bc37b1b268743aa314247ea949ef5" - } - Frame { - msec: 4928 - hash: "04f34203c34dc87efc708bfb232663df" - } - Frame { - msec: 4944 - hash: "d37a48545e81970d16951e3388f0ff8c" - } - Frame { - msec: 4960 - hash: "9411e846c9f59cc915288efb59d4c9de" - } - Frame { - msec: 4976 - hash: "6ee179741ac74837708afb55943f15bd" - } - Frame { - msec: 4992 - hash: "f626fc3166bd5b01171271ae9bfa9b22" - } - Frame { - msec: 5008 - hash: "e22898b2c0c566bbf531223234f98327" - } - Frame { - msec: 5024 - hash: "1343d90c5eae70713cd49110fe61237b" - } - Frame { - msec: 5040 - hash: "493d9322da6d01979a3f1a120c265f8c" - } - Frame { - msec: 5056 - hash: "defccc76caf3a7c7c67e8abf5ccc2def" - } - Frame { - msec: 5072 - hash: "fe3cad9227fcfa7ba2238465078f2ac7" - } - Frame { - msec: 5088 - hash: "66ebfeee3a63323c7d8b949db9aafd7e" - } - Frame { - msec: 5104 - hash: "805820b382d005894f9a615004b97b0d" - } - Frame { - msec: 5120 - hash: "eee1620f47bb071de8a9c788d1fd258e" - } - Frame { - msec: 5136 - hash: "f5a7d9a81fcfc8cfb9e7cc8ead0f1ff8" - } - Frame { - msec: 5152 - hash: "249903ee123090b27019350f120c8b79" - } - Frame { - msec: 5168 - hash: "019793a363c905809af32bf34ef52ec0" - } - Frame { - msec: 5184 - hash: "4f5ad5a3ebb6eca73dd7567199d07b08" - } - Frame { - msec: 5200 - hash: "fdc1b42d50c7a5c45458498788ff0abd" - } - Frame { - msec: 5216 - hash: "cc091469598cad28d0a00690f1acb412" - } - Frame { - msec: 5232 - hash: "5c8757e1f8f34a31d8b3717b64b84c07" - } - Frame { - msec: 5248 - hash: "5da75559f60eac1b9f518ed55a174e5b" - } - Frame { - msec: 5264 - hash: "1214c08daec4dcfb27690fdc18f2ac28" - } - Frame { - msec: 5280 - hash: "87d92c1ba694d0cf187d8616b0f622f0" - } - Frame { - msec: 5296 - hash: "d4af63638fe69b6c4f087a935351057e" - } - Frame { - msec: 5312 - hash: "0573c41f34c2c117cada987e4ee813a5" - } - Frame { - msec: 5328 - hash: "f179ef4b7bf0f915e25ffd8168a9126f" - } - Frame { - msec: 5344 - hash: "1618bf7c94e7898392eb5ffbf44b8aff" - } - Frame { - msec: 5360 - hash: "5af24b902e3729d544f70c77e189b8a7" - } - Frame { - msec: 5376 - hash: "4e5789404e58113cc2d8aa737a03ab58" - } - Frame { - msec: 5392 - hash: "e4bf91a249e47597e959bbaf25f0724d" - } - Frame { - msec: 5408 - hash: "39a3e3d6269522ed57a0e37319ab94d5" - } - Frame { - msec: 5424 - hash: "f2e2e47922e7e058e14537a0455cd77f" - } - Frame { - msec: 5440 - hash: "64abb3f2c9e05fd1dd7490d11c74f06a" - } - Frame { - msec: 5456 - hash: "a9bf45c29536ca34c42aa916747b485b" - } - Frame { - msec: 5472 - hash: "da21839b6635e5c4e0a589d163e62752" - } - Frame { - msec: 5488 - hash: "f31e49258bcbb2a144daa320e4567df1" - } - Frame { - msec: 5504 - hash: "f96c5b39f94bf2ac1e3f4de96767d720" - } - Frame { - msec: 5520 - hash: "281b90d1056803093cc37f30465f0e73" - } - Frame { - msec: 5536 - hash: "d63a2424e1947328957ad8f5f0bec043" - } - Frame { - msec: 5552 - hash: "bd510a0de7df02b1b5741824b6f90944" - } - Frame { - msec: 5568 - hash: "47dc4e5ff91cb84c89dd0fc0459f75f2" - } - Frame { - msec: 5584 - hash: "4bc46b5e116dd30e1db4d4bb650ed6ed" - } - Frame { - msec: 5600 - hash: "c6964b89f1962f120028057d1c588694" - } - Frame { - msec: 5616 - hash: "39a77544a1c88b68cb63da9a8910a35e" - } - Frame { - msec: 5632 - hash: "bd8ac21d7a507a8e195437ccac254ecc" - } - Frame { - msec: 5648 - hash: "7b39b2667a8f8efae20ec8696e35dbc4" - } - Frame { - msec: 5664 - hash: "7b39b2667a8f8efae20ec8696e35dbc4" - } - Frame { - msec: 5680 - hash: "8628f4f24670d17965fec40a02e0196f" - } - Frame { - msec: 5696 - hash: "515903d9896a853cb18cc7b7c45c1cce" - } - Frame { - msec: 5712 - hash: "b7a3f70bedcb3f90a2e294b447e05f70" - } - Frame { - msec: 5728 - hash: "8e8b104ef82b1e219021aa38276f8b45" - } - Frame { - msec: 5744 - hash: "70abe79da860bebd2d17a8c7abb20b4e" - } - Frame { - msec: 5760 - hash: "d99af176fb6cf9d9cbcf7cf4286a165c" - } - Frame { - msec: 5776 - image: "follow.6.png" - } - Frame { - msec: 5792 - hash: "67809c7daad6716d0a664c52de9906ce" - } - Frame { - msec: 5808 - hash: "29a27fd59b7316ce305803482686ea58" - } - Frame { - msec: 5824 - hash: "25b9ca40d1d6208d026e5c965923f8fb" - } - Frame { - msec: 5840 - hash: "126b1542415aea11dbb35492be4f66aa" - } - Frame { - msec: 5856 - hash: "26ca7034536e0e690236797df740f19a" - } - Frame { - msec: 5872 - hash: "fec9db60af63a4712b0da037cf1d89cd" - } - Frame { - msec: 5888 - hash: "d9b7e2729c75ca0c0f33b542525c4880" - } - Frame { - msec: 5904 - hash: "89149d16b893ea432b6d0fb05ead48cb" - } - Frame { - msec: 5920 - hash: "8e389d2ca706277ce06e1da557e2e6c1" - } - Frame { - msec: 5936 - hash: "fc5c74473410da1ddd451c5901572172" - } - Frame { - msec: 5952 - hash: "54514970eadff9362d31499a737e4c95" - } - Frame { - msec: 5968 - hash: "d5953bc29532ec49c20ee552c8756ba1" - } - Frame { - msec: 5984 - hash: "5f03be3ed5824e6a6f8f371ce6a47997" - } - Frame { - msec: 6000 - hash: "0431e2ec4765167d0099c59df400f3fd" - } - Frame { - msec: 6016 - hash: "0431e2ec4765167d0099c59df400f3fd" - } - Frame { - msec: 6032 - hash: "403e1f235770f2b7c8b1b2e86aea69a5" - } - Frame { - msec: 6048 - hash: "403e1f235770f2b7c8b1b2e86aea69a5" - } - Frame { - msec: 6064 - hash: "32ff9f959598972f5a264418587dca1f" - } - Frame { - msec: 6080 - hash: "b4c7c07e52a684f7ce21e47a4d66356a" - } - Frame { - msec: 6096 - hash: "e0f214bed2c3a31f473952929b8f3ea9" - } - Frame { - msec: 6112 - hash: "15328b8a205965f3f29fc63a6a8ac8ed" - } - Frame { - msec: 6128 - hash: "72c46ed63633e6879373f4783df25d8b" - } - Frame { - msec: 6144 - hash: "3f2570289df823446f85bbd8d620db4d" - } - Frame { - msec: 6160 - hash: "df9451c6634d72e6f794e962b3591086" - } - Frame { - msec: 6176 - hash: "773e10bbd133e64457e7ddbc73a10fc2" - } - Frame { - msec: 6192 - hash: "c79abb97eb86761b69053d77156dffd4" - } - Frame { - msec: 6208 - hash: "d927934b19ffd55ea7cea1916983351a" - } - Frame { - msec: 6224 - hash: "ae5058d935c1e44d103be66921b19e77" - } - Frame { - msec: 6240 - hash: "b6a1446b6be054d5785ba52ac23f8aa8" - } - Frame { - msec: 6256 - hash: "3dffbffded44249fdbe58aecd24ab97f" - } - Frame { - msec: 6272 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6288 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6304 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6320 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6336 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6352 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6368 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6384 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6400 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6416 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6432 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6448 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6464 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6480 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6496 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6512 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6528 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6544 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6560 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6576 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6592 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6608 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6624 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6640 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6656 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6672 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6688 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6704 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6720 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6736 - image: "follow.7.png" - } - Frame { - msec: 6752 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6768 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6784 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6800 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6816 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6832 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6848 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6864 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6880 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6896 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6912 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6928 - hash: "56445ab8554a23a786b70e4fd9f40451" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.0.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.0.png deleted file mode 100644 index a3bb3ac..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.1.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.1.png deleted file mode 100644 index f159b6b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.2.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.2.png deleted file mode 100644 index d24af1a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.qml deleted file mode 100644 index 2e8337e..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.qml +++ /dev/null @@ -1,615 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "clock.0.png" - } - Frame { - msec: 32 - hash: "cb33c89e5108c85e43b53489d1255862" - } - Frame { - msec: 48 - hash: "fcf631cb42237d2ce9e57ef5fef85f93" - } - Frame { - msec: 64 - hash: "a9f1e24d60588ff9b565b15847669438" - } - Frame { - msec: 80 - hash: "c5a07045cd24b835fdd0653db5b34f9f" - } - Frame { - msec: 96 - hash: "bce3e9bfa92f81f0c8746a4777ce1b3e" - } - Frame { - msec: 112 - hash: "6da93132be1be8b42aaf007306ce5990" - } - Frame { - msec: 128 - hash: "8695e73f009bd20f3f3aae4a6b8f0098" - } - Frame { - msec: 144 - hash: "172ece19e661999ce48053007a92f107" - } - Frame { - msec: 160 - hash: "6e02e658d8873dd678dc9cc7cc8035a0" - } - Frame { - msec: 176 - hash: "d8e9bad91fd91bce0310a24233ecb906" - } - Frame { - msec: 192 - hash: "9c23533f0a4d47ec192bed2e48f11c60" - } - Frame { - msec: 208 - hash: "9c23533f0a4d47ec192bed2e48f11c60" - } - Frame { - msec: 224 - hash: "be0ee20e9eb94b80171f66fa6f1c2441" - } - Frame { - msec: 240 - hash: "83b841f7ea7a5e92a21ec0d0130b4281" - } - Frame { - msec: 256 - hash: "3bbf822e403f4198fbfaa6973726947d" - } - Frame { - msec: 272 - hash: "172ece19e661999ce48053007a92f107" - } - Frame { - msec: 288 - hash: "602ca5ac2fc928b831d8e10de01f5bf7" - } - Frame { - msec: 304 - hash: "9f07659e63a5b3412ede3c8400678cc6" - } - Frame { - msec: 320 - hash: "6104f86706bd11cee6b5aeef495eacfa" - } - Frame { - msec: 336 - hash: "b564cfe8c73b3d51e07bbcf5320868f8" - } - Frame { - msec: 352 - hash: "b2136411eee23d64718a63269071499f" - } - Frame { - msec: 368 - hash: "7f610f3b80c2cf002c6565ac4b7a8325" - } - Frame { - msec: 384 - hash: "5480e79cc96fdaffecb2d9dec254c8d4" - } - Frame { - msec: 400 - hash: "50eea6c6f135c21ecf05fc83ad1ae9a8" - } - Frame { - msec: 416 - hash: "2d3634d621782194674da127abe66039" - } - Frame { - msec: 432 - hash: "285180aa632c9247c3b7aa26f5544da6" - } - Frame { - msec: 448 - hash: "8695e73f009bd20f3f3aae4a6b8f0098" - } - Frame { - msec: 464 - hash: "914dc6254f29a6cffc80e90a23b61130" - } - Frame { - msec: 480 - hash: "a564dc3a53b607ca7e9fc6920b65abc3" - } - Frame { - msec: 496 - hash: "6104f86706bd11cee6b5aeef495eacfa" - } - Frame { - msec: 512 - hash: "6f34176630c5d9d421a1a31cb3b97a28" - } - Frame { - msec: 528 - hash: "62199c5663263fee08ba5ce560c7429d" - } - Frame { - msec: 544 - hash: "1110cb0281044eb0679e9dc373a7d063" - } - Frame { - msec: 560 - hash: "0ec354101faf6603c9ca56fe82dc8ac3" - } - Frame { - msec: 576 - hash: "0ec354101faf6603c9ca56fe82dc8ac3" - } - Frame { - msec: 592 - hash: "1110cb0281044eb0679e9dc373a7d063" - } - Frame { - msec: 608 - hash: "1110cb0281044eb0679e9dc373a7d063" - } - Frame { - msec: 624 - hash: "62199c5663263fee08ba5ce560c7429d" - } - Frame { - msec: 640 - hash: "1716d50c65b4319845fdc7ea1ceafe4d" - } - Frame { - msec: 656 - hash: "d087befa8f95f70e33604748230d5dd5" - } - Frame { - msec: 672 - hash: "7ae892fbab85d76e713ab70ca13d3f1f" - } - Frame { - msec: 688 - hash: "fb069bfb88b35f9f15273e04a62a9534" - } - Frame { - msec: 704 - hash: "41c69834e756bafc051ff65e149f8994" - } - Frame { - msec: 720 - hash: "f0c13b542b9ee9b0c9f4ef800900db16" - } - Frame { - msec: 736 - hash: "f0c13b542b9ee9b0c9f4ef800900db16" - } - Frame { - msec: 752 - hash: "f0c13b542b9ee9b0c9f4ef800900db16" - } - Frame { - msec: 768 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 784 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 800 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 816 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 832 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 848 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 864 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 880 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 896 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 912 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 928 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 944 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 960 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 976 - image: "clock.1.png" - } - Frame { - msec: 992 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 1008 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 1024 - hash: "2ff4e8f394a62892adb348271435205c" - } - Frame { - msec: 1040 - hash: "0ec9e1163fe8284ab27aa55f94bf3b14" - } - Frame { - msec: 1056 - hash: "9b6efbb358b1c7928e005620a60ab4a9" - } - Frame { - msec: 1072 - hash: "5be6fe791a3bb6f72a6c6a3d1e2fa86e" - } - Frame { - msec: 1088 - hash: "41fefdc45bd52600f7f108d4163d484b" - } - Frame { - msec: 1104 - hash: "45828a5bef6c4ad4d274c0ea46f72e44" - } - Frame { - msec: 1120 - hash: "17f0925ae38ee4c523713592d6b9f541" - } - Frame { - msec: 1136 - hash: "ed3acc723c29321751702903b57a557a" - } - Frame { - msec: 1152 - hash: "ded71422852eec4464f54e9c1b01b28a" - } - Frame { - msec: 1168 - hash: "0318d105aa5f7d3bebb0d24a85065f90" - } - Frame { - msec: 1184 - hash: "9abe4cb4e8ff6ffafd993b10ac55aad9" - } - Frame { - msec: 1200 - hash: "b92dba35b477ce11822277ba64582232" - } - Frame { - msec: 1216 - hash: "3a9a6106e1f12ffbc81ae9d4b30376fe" - } - Frame { - msec: 1232 - hash: "4647b6e6c95e3339094c7e2641458137" - } - Frame { - msec: 1248 - hash: "0977f3ed3ab6426423f7a7bfb0bd1726" - } - Frame { - msec: 1264 - hash: "930002bcd6986af36678d23c3dc17330" - } - Frame { - msec: 1280 - hash: "ded71422852eec4464f54e9c1b01b28a" - } - Frame { - msec: 1296 - hash: "16164138479aed4db7fd9a1c785556cb" - } - Frame { - msec: 1312 - hash: "0b884e6a8a1c93d62fcee037f9ad8745" - } - Frame { - msec: 1328 - hash: "dd1323c721a0ede74910c16df4b47074" - } - Frame { - msec: 1344 - hash: "ed3acc723c29321751702903b57a557a" - } - Frame { - msec: 1360 - hash: "e8c528178425f7c6089ed6d094e734fb" - } - Frame { - msec: 1376 - hash: "f2954641b11004bc4d29a217791e3833" - } - Frame { - msec: 1392 - hash: "5d4d4086c4aebf04eb5b0045cf9a36a8" - } - Frame { - msec: 1408 - hash: "f2954641b11004bc4d29a217791e3833" - } - Frame { - msec: 1424 - hash: "c2e47da0e709c9ddeee01ae29d3ad059" - } - Frame { - msec: 1440 - hash: "e539f0142b3f6c2f7de084ddedbe979e" - } - Frame { - msec: 1456 - hash: "ed3acc723c29321751702903b57a557a" - } - Frame { - msec: 1472 - hash: "ae191ede94be250b60744d81179c5054" - } - Frame { - msec: 1488 - hash: "f985b1ab4feae3bd7066e15bdd026c1a" - } - Frame { - msec: 1504 - hash: "dd1323c721a0ede74910c16df4b47074" - } - Frame { - msec: 1520 - hash: "c99c541e424ebe82f1cceea204f3ffdc" - } - Frame { - msec: 1536 - hash: "dcdeb76d6e4c676e736ec9fcf68f993b" - } - Frame { - msec: 1552 - hash: "599bfdb42d46a31bf8639e7b1c89526b" - } - Frame { - msec: 1568 - hash: "bef384984df19143de0c290a6621146d" - } - Frame { - msec: 1584 - hash: "bef384984df19143de0c290a6621146d" - } - Frame { - msec: 1600 - hash: "04192a5408bc1aff5431b4ea0be94b27" - } - Frame { - msec: 1616 - hash: "8da64659fb7f532eac43a67accd319ee" - } - Frame { - msec: 1632 - hash: "dcdeb76d6e4c676e736ec9fcf68f993b" - } - Frame { - msec: 1648 - hash: "fba3a7729e46d8e78d203188ef29d829" - } - Frame { - msec: 1664 - hash: "c99c541e424ebe82f1cceea204f3ffdc" - } - Frame { - msec: 1680 - hash: "c99c541e424ebe82f1cceea204f3ffdc" - } - Frame { - msec: 1696 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1712 - hash: "7f62ba22b5567d4ea96725a6215ff98a" - } - Frame { - msec: 1728 - hash: "a21cc4fa347929fd816ad36f4b33efab" - } - Frame { - msec: 1744 - hash: "a21cc4fa347929fd816ad36f4b33efab" - } - Frame { - msec: 1760 - hash: "a21cc4fa347929fd816ad36f4b33efab" - } - Frame { - msec: 1776 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1792 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1808 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1824 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1840 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1856 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1872 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1888 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1904 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1920 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1936 - image: "clock.2.png" - } - Frame { - msec: 1952 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1968 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 1984 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 2000 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 2016 - hash: "a3e6173e6d82d2cb52149588b32851e4" - } - Frame { - msec: 2032 - hash: "dba66886121f802a4a49ee1e220279db" - } - Frame { - msec: 2048 - hash: "b43648a05b6900bd0402bb56c98692df" - } - Frame { - msec: 2064 - hash: "8213e39455c952a589a90eea0040edfe" - } - Frame { - msec: 2080 - hash: "0d72dcbb2de67c84c0cf802e1de2b32b" - } - Frame { - msec: 2096 - hash: "db5b4994b46f3e0de86149af8b99abb6" - } - Frame { - msec: 2112 - hash: "440f7414e3db5339f2180bf1fcdc1c55" - } - Frame { - msec: 2128 - hash: "f757740304369ac45bb88657f79f304e" - } - Frame { - msec: 2144 - hash: "4521da9bcf198f78f7270cca959adfe4" - } - Frame { - msec: 2160 - hash: "92d602d139aedf31180f12349a1edcad" - } - Frame { - msec: 2176 - hash: "4092500cb913f0c9ae49d61e53553371" - } - Frame { - msec: 2192 - hash: "dee122e2c46b398c48a7ef1619683a6f" - } - Frame { - msec: 2208 - hash: "1817fa481e8648dd092e29403b0f887e" - } - Frame { - msec: 2224 - hash: "93a69d88553709c0f164b11d8d765805" - } - Frame { - msec: 2240 - hash: "92d602d139aedf31180f12349a1edcad" - } - Frame { - msec: 2256 - hash: "4ff6679a9615ca8bd5dd63c296cca3d5" - } - Frame { - msec: 2272 - hash: "4521da9bcf198f78f7270cca959adfe4" - } - Frame { - msec: 2288 - hash: "127b93b536f6266965941af5888a63dd" - } - Frame { - msec: 2304 - hash: "1a3e36e44069a8bf29b73acfd8340044" - } - Frame { - msec: 2320 - hash: "1065e18d2b41af8b0b5c4f5ae2a30d4d" - } - Frame { - msec: 2336 - hash: "37144e92ba8c7edd2ef87ecb6525ed5f" - } - Frame { - msec: 2352 - hash: "d6445d8270ddbf5fcd196b3d71393da4" - } - Frame { - msec: 2368 - hash: "b55cc8bdf97531912fa1df1f379e623c" - } - Frame { - msec: 2384 - hash: "fdb86be92fa17fd4e773e5fd65f249a3" - } - Frame { - msec: 2400 - hash: "b55cc8bdf97531912fa1df1f379e623c" - } - Frame { - msec: 2416 - hash: "eb0de8259f7a6be756102f79b5220f56" - } - Frame { - msec: 2432 - hash: "5afbb87fe77112b86282252a2ffe3821" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.0.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.0.png deleted file mode 100644 index 6525dbb..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.1.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.1.png deleted file mode 100644 index 5b8d209..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.2.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.2.png deleted file mode 100644 index cf012ba..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.3.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.3.png deleted file mode 100644 index 57e77a4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.4.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.4.png deleted file mode 100644 index 24d26bd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.5.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.5.png deleted file mode 100644 index a540734..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.6.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.6.png deleted file mode 100644 index 17da643..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.7.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.7.png deleted file mode 100644 index e03cfe4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.qml deleted file mode 100644 index 2cbd278..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.qml +++ /dev/null @@ -1,1763 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "follow.0.png" - } - Frame { - msec: 32 - hash: "2ddcb50f5d285eb80a8136f0cf4cf85a" - } - Frame { - msec: 48 - hash: "519d93a844e05f8215139d91c9aef58b" - } - Frame { - msec: 64 - hash: "9f075a5547e4dc67cbe2ace2766395bb" - } - Frame { - msec: 80 - hash: "8fc48f74a51d45b4ea1fb7bd1d48002f" - } - Frame { - msec: 96 - hash: "a28fc4be5a5bb9ff36f796d9b071f02c" - } - Frame { - msec: 112 - hash: "ebc14c2905f3596ec451dd96409e6001" - } - Frame { - msec: 128 - hash: "4f270bdcff44006a56055edb1cda522a" - } - Frame { - msec: 144 - hash: "571f347e764bf38985768c85c2a13ba1" - } - Frame { - msec: 160 - hash: "b1aa23268167b7e2a1190288926f52c0" - } - Frame { - msec: 176 - hash: "06d548aef9a678edbf3ab4d3ce62a647" - } - Frame { - msec: 192 - hash: "daf6af0ae78f39566913c656450a66e5" - } - Frame { - msec: 208 - hash: "f101cd0c026ee0ed6ccef7a4aed302a0" - } - Frame { - msec: 224 - hash: "b3caa673f072c53d31d71109c9b33357" - } - Frame { - msec: 240 - hash: "8596f1d305d6b8f97b9feda9e69bdefe" - } - Frame { - msec: 256 - hash: "23c23df2c130aafb2092fe47a958a4cd" - } - Frame { - msec: 272 - hash: "66a4f2d8213264437a5f4d6cf10cd442" - } - Frame { - msec: 288 - hash: "6392490111813bad0a9467cc0c1746ed" - } - Frame { - msec: 304 - hash: "c115a47e0ecab63b881e2ec492d24e68" - } - Frame { - msec: 320 - hash: "c2a2b57e6f9ea2975c0846124d2dbc66" - } - Frame { - msec: 336 - hash: "8286c315dfda4241607b2de1154f869d" - } - Frame { - msec: 352 - hash: "3f0f7cae80357176892ff7628ec3153a" - } - Frame { - msec: 368 - hash: "d13bde4a5b5ed8202f92ae33913166c9" - } - Frame { - msec: 384 - hash: "b70cc32134b1b0d31a5e7f145af09495" - } - Frame { - msec: 400 - hash: "03ebc2ff317ac840f4508e8701d66955" - } - Frame { - msec: 416 - hash: "8dff08e72365e8e2fee8088c386dedca" - } - Frame { - msec: 432 - hash: "720f3bbaf3fa3e3a064747d5689e47a0" - } - Frame { - msec: 448 - hash: "350e3ebfcfef96969ef5b8d5944f7e62" - } - Frame { - msec: 464 - hash: "1e4e6e68b3a8eac0c5cd039164eec166" - } - Frame { - msec: 480 - hash: "62a10c4250ad025139a3f9e72109e8e1" - } - Frame { - msec: 496 - hash: "23cfd643adfc98f6a06c7e7b15dac954" - } - Frame { - msec: 512 - hash: "3a78930d5b86b886723fad85e77dd075" - } - Frame { - msec: 528 - hash: "64dc878e2f527e80403c766e61fe14a6" - } - Frame { - msec: 544 - hash: "d79160989d2584044042271e79a88e69" - } - Frame { - msec: 560 - hash: "22cbaea4affc88433834c7d0dc1f1644" - } - Frame { - msec: 576 - hash: "77cb616902257e1f239a0e6bfaabb33c" - } - Frame { - msec: 592 - hash: "a2fe73dced03b23c4acb9aae9b774b41" - } - Frame { - msec: 608 - hash: "230e21d3a9ed0e185593677233af1275" - } - Frame { - msec: 624 - hash: "4e10ecffac4e06d624855d3f8917f76c" - } - Frame { - msec: 640 - hash: "84f49d56baace4a02e50d3eafaea04ec" - } - Frame { - msec: 656 - hash: "e3cd0b334551a9f91723eb2c876d335a" - } - Frame { - msec: 672 - hash: "259330f3ec390c9926d9c2ddc2d77319" - } - Frame { - msec: 688 - hash: "cc659623bfa385d282d608684d7cdc2b" - } - Frame { - msec: 704 - hash: "47ed75d077143a6bfa0e10158550c542" - } - Frame { - msec: 720 - hash: "0de93bbd9f9ee63e97968089321003e1" - } - Frame { - msec: 736 - hash: "b33d867d4399879256a01344ce0b81f2" - } - Frame { - msec: 752 - hash: "97c31fce937d11f62bebc6169b464a42" - } - Frame { - msec: 768 - hash: "ea4166b8a4001bca3f27af30f251267f" - } - Frame { - msec: 784 - hash: "b56d270b7893565f8d7ed2a0bfe10d60" - } - Frame { - msec: 800 - hash: "88a42559fe22b45cff379258dd40ced9" - } - Frame { - msec: 816 - hash: "4ee1a711cb8d26087e1b75a3166ca5f0" - } - Frame { - msec: 832 - hash: "9b88a00d041092e79b4a08bccbaca0e1" - } - Frame { - msec: 848 - hash: "afea397b3d740dc42f0313624fc10efd" - } - Frame { - msec: 864 - hash: "39fd8e4cefbd9fed283d62a7aecded22" - } - Frame { - msec: 880 - hash: "916b783d2379ac054c749e7b6eae7ddf" - } - Frame { - msec: 896 - hash: "fccd44740ff7ffb0f2adccf00a7588bd" - } - Frame { - msec: 912 - hash: "c064f20703a13543e8273d251fd645fe" - } - Frame { - msec: 928 - hash: "1b9b0755101841e3d1cbe208d81575d5" - } - Frame { - msec: 944 - hash: "1eb5e4a301b565012bc8f6af8e879eb9" - } - Frame { - msec: 960 - hash: "032db65eb5c405e433f88df3975c322b" - } - Frame { - msec: 976 - image: "follow.1.png" - } - Frame { - msec: 992 - hash: "fdb67e11d7cc767b2389a8bbef752c7e" - } - Frame { - msec: 1008 - hash: "ed89cb161336c61b13e3514fdf816023" - } - Frame { - msec: 1024 - hash: "331b873c5367e0aaa62af85cb54a6a96" - } - Frame { - msec: 1040 - hash: "cde4503f02f0c3732e310a7d0418cd1e" - } - Frame { - msec: 1056 - hash: "f8c028c591fc1495d5bec8763da6f011" - } - Frame { - msec: 1072 - hash: "9dc68483218335afe41aa3cd052a98b5" - } - Frame { - msec: 1088 - hash: "31105c455418a3284700cf9c88571507" - } - Frame { - msec: 1104 - hash: "72724947167a1ac600aaa1d7f331f7ec" - } - Frame { - msec: 1120 - hash: "a4a1243326de6b9e93948fcb22fecac4" - } - Frame { - msec: 1136 - hash: "c3e26e62f12dd658f21a0330fefb0533" - } - Frame { - msec: 1152 - hash: "15d85b4a9ad761a911bbaa3e0c4b2b61" - } - Frame { - msec: 1168 - hash: "bce1400b437cc43b8ff57b1a5fbc9551" - } - Frame { - msec: 1184 - hash: "5d05848afcd8f697c1b3762f00a759f6" - } - Frame { - msec: 1200 - hash: "6c83f68ea72cd54793149f4c9e759d44" - } - Frame { - msec: 1216 - hash: "5206b93666e51cee3e25a7a85e27b5b8" - } - Frame { - msec: 1232 - hash: "a3ef5c76efece4455e5ad12bcc8bd8f5" - } - Frame { - msec: 1248 - hash: "c36c6ee7b6c8074f5dc1af7446fad1ad" - } - Frame { - msec: 1264 - hash: "bb0887f1f10548bb53f0dc1ffeec25ee" - } - Frame { - msec: 1280 - hash: "ebffe547a7c3528e5deddc590510506d" - } - Frame { - msec: 1296 - hash: "18962faef1a1a1207a3c6783116154a2" - } - Frame { - msec: 1312 - hash: "8aaa876e4a6c4de04e557f35ddd4fb61" - } - Frame { - msec: 1328 - hash: "c66123bb4e01ce267629f5b50d147db1" - } - Frame { - msec: 1344 - hash: "334e5acf84d90e70ca3085b9d5e057a7" - } - Frame { - msec: 1360 - hash: "9bb49ddcc775307c3c1159908323e010" - } - Frame { - msec: 1376 - hash: "1b3cfb8b6b6c39a34ea86a66ea1cc6b1" - } - Frame { - msec: 1392 - hash: "d2a68c6eb2b05390ab1049137f96f227" - } - Frame { - msec: 1408 - hash: "91e254fd2376ba35a283b18b947ca1a8" - } - Frame { - msec: 1424 - hash: "fe94e2e8b4978390e9e8cbfe77dfc241" - } - Frame { - msec: 1440 - hash: "e3d32b73c5c50e7aa59f4e4725de170e" - } - Frame { - msec: 1456 - hash: "a73b90254d7da5557cc3941db0017a65" - } - Frame { - msec: 1472 - hash: "9aa49cce5d63f8dd6409995ac6d91d63" - } - Frame { - msec: 1488 - hash: "0ba674df46accec28a3c1b81e656adc7" - } - Frame { - msec: 1504 - hash: "025a45417b8c75d47b5dac6c5ef913e9" - } - Frame { - msec: 1520 - hash: "742527b97c7f580b0b7ff9d6aa105d31" - } - Frame { - msec: 1536 - hash: "965ec8315d45894e704fcc5a3efc8c55" - } - Frame { - msec: 1552 - hash: "6abdd59e6bd2c31124eab254418a5322" - } - Frame { - msec: 1568 - hash: "9f6d06b176c55fa292e7f0ef4b5cd1cb" - } - Frame { - msec: 1584 - hash: "05eba8c6e02c0d4af49e59b3346c9e68" - } - Frame { - msec: 1600 - hash: "3c4215f6253aba836516cd51368bc471" - } - Frame { - msec: 1616 - hash: "c6339a290007c0106cb18ecef5b7392b" - } - Frame { - msec: 1632 - hash: "39a4bcd2ce84035f9db70f196ca00971" - } - Frame { - msec: 1648 - hash: "b75a4be472583c3b893fc894ebe7d4d8" - } - Frame { - msec: 1664 - hash: "d1efebbe748c43b3c1241753612e100d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 195; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "f6f3ad64fb71ffb68a5ea0375cc94bae" - } - Frame { - msec: 1696 - hash: "778ecbafb5d235edde1683cabe3c3cfe" - } - Frame { - msec: 1712 - hash: "5a41b9196fe4a97e6ba2400806299bd8" - } - Frame { - msec: 1728 - hash: "1c8ddbc5910e35be389a1cb34fab9dec" - } - Frame { - msec: 1744 - hash: "5e8b236c00087a067d366afde67184f3" - } - Frame { - msec: 1760 - hash: "72fe42361833054cd9388bb98ac9b150" - } - Frame { - msec: 1776 - hash: "bbe9f0b030efa716f34a05f0af929c66" - } - Frame { - msec: 1792 - hash: "cd393fc19a30d896bfe62aa0000308f8" - } - Frame { - msec: 1808 - hash: "c390f5b1bcff54de203490d8f2616fcd" - } - Frame { - msec: 1824 - hash: "b5da2ea467c334dd13c75b811b94efb1" - } - Frame { - msec: 1840 - hash: "49887c9312c3a4dfc2d9719f47c83a15" - } - Frame { - msec: 1856 - hash: "7f077703e49f154d01c12a44f53469c5" - } - Frame { - msec: 1872 - hash: "7be4130ed767f0e0bf41c3bebf050cac" - } - Frame { - msec: 1888 - hash: "cc1590486c172000557b76c6eadb51e0" - } - Frame { - msec: 1904 - hash: "7ccd05236d9c1f8af0e9645404326122" - } - Frame { - msec: 1920 - hash: "2da165bf7e868b53b85bb630649ddc3e" - } - Frame { - msec: 1936 - image: "follow.2.png" - } - Frame { - msec: 1952 - hash: "2b6a24b6ceeaa956527c872af70fb5f9" - } - Frame { - msec: 1968 - hash: "8c882de21f4ed0fb68433c19b114c3f8" - } - Frame { - msec: 1984 - hash: "f75226c58726a687079d0d24e865ee6f" - } - Frame { - msec: 2000 - hash: "2fa9b69fe85b4e1361ba260545c10e06" - } - Frame { - msec: 2016 - hash: "6d513bc03f2798fbce1a0790969da6b5" - } - Frame { - msec: 2032 - hash: "7e359e605483493e9a865f6eb912c394" - } - Frame { - msec: 2048 - hash: "497c7c82c24408dcaff5ec981d3d4f35" - } - Frame { - msec: 2064 - hash: "8738b024cf75ef970ffe20166e85141c" - } - Frame { - msec: 2080 - hash: "014b805eb1ecf2ea1cd61727bfd1ca08" - } - Frame { - msec: 2096 - hash: "a81cde60979300f397054ea017382114" - } - Frame { - msec: 2112 - hash: "c46183b5224e762335eea98d9da65465" - } - Frame { - msec: 2128 - hash: "11afbb88994f298a1fed6575fae3d7fd" - } - Frame { - msec: 2144 - hash: "0195fa503143561d9ae3ffe68739ca3f" - } - Frame { - msec: 2160 - hash: "6d298df37d2116eb9a62b58853cb3344" - } - Frame { - msec: 2176 - hash: "1660865f00ea9adf94c8e56c7a8a73b2" - } - Frame { - msec: 2192 - hash: "9835b5527b84e8e8a8fea2bdf9653a99" - } - Frame { - msec: 2208 - hash: "ec1158b83daa9e98437abc9ce90b70f0" - } - Frame { - msec: 2224 - hash: "11ce5e37747e05ff5f5071b13324ce9e" - } - Frame { - msec: 2240 - hash: "6d7d427d5a15a31fd395f26c94ea455e" - } - Frame { - msec: 2256 - hash: "828949e0fbdb7c79719fb533febb5b35" - } - Frame { - msec: 2272 - hash: "7ef7f73ef6a59c9210cfa37df3894cb1" - } - Frame { - msec: 2288 - hash: "e74bec397b32ba2934ffdde23a3d60c6" - } - Frame { - msec: 2304 - hash: "09c2ca9c22e9b77bc166b4567b29bca7" - } - Frame { - msec: 2320 - hash: "44d87983f33c4e03f4be70b406bb9bd9" - } - Frame { - msec: 2336 - hash: "92844b36c2f30e618f04bfbc5cfbcad6" - } - Frame { - msec: 2352 - hash: "0245f39a8966c4addb3f8dbcee93cd3f" - } - Frame { - msec: 2368 - hash: "eb1e81cfa29295d4b1522c69d4501f51" - } - Frame { - msec: 2384 - hash: "2af9c3bea11b25c0f6c2b780d533a968" - } - Frame { - msec: 2400 - hash: "5062e9ab29c4a7a9657a4d29249ca822" - } - Frame { - msec: 2416 - hash: "d7652ddc85d3be3bb3a2fc268ae9bc29" - } - Frame { - msec: 2432 - hash: "7c924bf2ad6167db439723679b373a3a" - } - Frame { - msec: 2448 - hash: "a93b61dd26a2ca72100b747ac3ed81b6" - } - Frame { - msec: 2464 - hash: "5fedc849d3d21e0acf0ab4a4815a1285" - } - Frame { - msec: 2480 - hash: "4313d2458f4bede8d3b02ac60135e728" - } - Frame { - msec: 2496 - hash: "0f09e81d89262b569c56a9c876f3898d" - } - Frame { - msec: 2512 - hash: "ea932789ded14fc5c8bae565b67d004c" - } - Frame { - msec: 2528 - hash: "fd1f7b9b51f1284fee4d777ef83bba3f" - } - Frame { - msec: 2544 - hash: "e98b884a1ec8ce4b4dc20749b85b571e" - } - Frame { - msec: 2560 - hash: "d144072bb87bb88750b9df9cd92f7a4b" - } - Frame { - msec: 2576 - hash: "9d8ad80d3367292d7e89d67cf49862b8" - } - Frame { - msec: 2592 - hash: "c09b89e71e862da15d2b9edb0e00aa7b" - } - Frame { - msec: 2608 - hash: "551277add3f8f09951d9c8f55ccd40f7" - } - Frame { - msec: 2624 - hash: "1d0be0e7108516869374a9b985fd7543" - } - Frame { - msec: 2640 - hash: "12e7cfb6c4a26af54c4b35182294a7b7" - } - Frame { - msec: 2656 - hash: "a666a5a59d5854973668798eb8d508ba" - } - Frame { - msec: 2672 - hash: "420d2e21461dc45f134b7dfa11d04d25" - } - Frame { - msec: 2688 - hash: "95f848874899fb58a81c62b5921cf857" - } - Frame { - msec: 2704 - hash: "fa3ea7a0f90ca549cc9a857f0647b061" - } - Frame { - msec: 2720 - hash: "cbc5338de6157cd5dad511b246f5093b" - } - Frame { - msec: 2736 - hash: "e26b43c83197abab3746830bbfacc0f4" - } - Frame { - msec: 2752 - hash: "5225e854ff2763e562dee2810331d560" - } - Frame { - msec: 2768 - hash: "a1d114ea67233ac4c6351e18e3afa64e" - } - Frame { - msec: 2784 - hash: "bc9f12af2d0816bb84fd5040ed29bdad" - } - Frame { - msec: 2800 - hash: "d9337da38caa4ad3385249602a830df3" - } - Frame { - msec: 2816 - hash: "6ce20e0c89181b0f11e609b248da71d7" - } - Frame { - msec: 2832 - hash: "bbc8337950a78c7bfa48aab2635120a8" - } - Frame { - msec: 2848 - hash: "0e28ade7f52f3c27e1dbdd6e98be8c7d" - } - Frame { - msec: 2864 - hash: "0e28ade7f52f3c27e1dbdd6e98be8c7d" - } - Frame { - msec: 2880 - hash: "b496af17513d60d4028bd7402fbfba93" - } - Frame { - msec: 2896 - image: "follow.3.png" - } - Frame { - msec: 2912 - hash: "29aa7ce0fb1aa350753d3ec6da05bdf9" - } - Frame { - msec: 2928 - hash: "fde474797d8105d9d004a7020e010fa4" - } - Frame { - msec: 2944 - hash: "5a553d9a4bd2ef5d86f5eb37a863d28f" - } - Frame { - msec: 2960 - hash: "2dcbf6c84abd49529f0b5d85bfb74808" - } - Frame { - msec: 2976 - hash: "e96ec3b7d37bbf4c9ca297ad5afde31c" - } - Frame { - msec: 2992 - hash: "9d824068affe32c143226b0b530206fc" - } - Frame { - msec: 3008 - hash: "3e85f0ace68cffed47f4c9b00145f0f0" - } - Frame { - msec: 3024 - hash: "540b8e1e2bee7d2ba5e29fd3b1086cd1" - } - Frame { - msec: 3040 - hash: "0786585d11934c5e4a7e965eaac9a152" - } - Frame { - msec: 3056 - hash: "8271705df2ca697f4343007a7810d4ac" - } - Frame { - msec: 3072 - hash: "b98e1cd20ab2e4239f35d04df5e5175a" - } - Frame { - msec: 3088 - hash: "ab1a7eaa5c5d919ee76cba405d0dd4cd" - } - Frame { - msec: 3104 - hash: "52682386448379a395dc6c541224b7d4" - } - Frame { - msec: 3120 - hash: "31dffcb9da94dfc085ab8c561404c248" - } - Frame { - msec: 3136 - hash: "f3703eed8ebf9ece776ebe51e4c60ae6" - } - Frame { - msec: 3152 - hash: "1126b90345bb42691cd17f37ecec6bdb" - } - Frame { - msec: 3168 - hash: "7a63ab96d1c8d4992c03a6f59bba4e7e" - } - Frame { - msec: 3184 - hash: "91f4a00c9a7ea6164b334aa4b90da862" - } - Frame { - msec: 3200 - hash: "485471140f6a5336837377612e7a85bf" - } - Frame { - msec: 3216 - hash: "96881b4021aff05020e0a9342fbae75d" - } - Frame { - msec: 3232 - hash: "9891326646c3da4ff250aab69c862f96" - } - Frame { - msec: 3248 - hash: "f00f36bbb5a828824c596ee6f85bec2f" - } - Frame { - msec: 3264 - hash: "f00f36bbb5a828824c596ee6f85bec2f" - } - Frame { - msec: 3280 - hash: "f00f36bbb5a828824c596ee6f85bec2f" - } - Frame { - msec: 3296 - hash: "f00f36bbb5a828824c596ee6f85bec2f" - } - Frame { - msec: 3312 - hash: "9891326646c3da4ff250aab69c862f96" - } - Frame { - msec: 3328 - hash: "c766238db55f4704c2f29a6be6ee6907" - } - Frame { - msec: 3344 - hash: "0254665427dcbd1c155bc954cc7aa7cd" - } - Frame { - msec: 3360 - hash: "33ae1012816b997ef5c61c03ccfcc590" - } - Frame { - msec: 3376 - hash: "4c7857bbbcb9aa812fc2503af2b395cf" - } - Frame { - msec: 3392 - hash: "3a570e4af992d35e55923cea23c3c11b" - } - Frame { - msec: 3408 - hash: "533ef554538005512ce37c73c6def722" - } - Frame { - msec: 3424 - hash: "f863fa215d0642708bfa82780c766dc4" - } - Frame { - msec: 3440 - hash: "fcca3ec34521c4b9087a102ba1e47293" - } - Frame { - msec: 3456 - hash: "47d67cd74cb96b12801842b288a8b9ff" - } - Frame { - msec: 3472 - hash: "34c5ea76f297ec68cba70521caa468e4" - } - Frame { - msec: 3488 - hash: "7be247cc7a4032ff0478fca1a2aace8a" - } - Frame { - msec: 3504 - hash: "3ade2a1a48edef15f522b9fc016e137e" - } - Frame { - msec: 3520 - hash: "8b37b9d123504931d82bb06f6981bade" - } - Frame { - msec: 3536 - hash: "5eb39825003f405f353f629e236b3395" - } - Frame { - msec: 3552 - hash: "c4550722260c4a30ab1176c7e5cb62bf" - } - Frame { - msec: 3568 - hash: "bd33e3ecd4b59cd659588c0298b61095" - } - Frame { - msec: 3584 - hash: "4b3a62bff0019df7412aa2e1c07c0a23" - } - Frame { - msec: 3600 - hash: "a9b98adcc3350febbb89dbf725b81436" - } - Frame { - msec: 3616 - hash: "66eb8c84e75141d1575caf7d3cbc1ceb" - } - Frame { - msec: 3632 - hash: "238f2b1dc5bf5b65e827c860f9ee76b5" - } - Frame { - msec: 3648 - hash: "6d1fed0697370b2a2163c369fe559739" - } - Frame { - msec: 3664 - hash: "04ea478c785586d900bbe3472371bbc7" - } - Frame { - msec: 3680 - hash: "ba429e711c9363eebfb20e641fa44c84" - } - Frame { - msec: 3696 - hash: "0129dfba166ffcbaa15087467c864068" - } - Frame { - msec: 3712 - hash: "3fb340c874eee94e8baa1453b37c3fb5" - } - Frame { - msec: 3728 - hash: "068c51d99c458f3edefe3371f46de260" - } - Frame { - msec: 3744 - hash: "dd1e04ed3d610c2712158d73ee2c5b9d" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 195; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "840154afb9e7e0c859c66667bb6944b6" - } - Frame { - msec: 3776 - hash: "239c2e33800e386b468a95341d0e23f4" - } - Frame { - msec: 3792 - hash: "0a00515f2d297362862c1a5cf6519845" - } - Frame { - msec: 3808 - hash: "f855df3495e44291aed8f085163c804b" - } - Frame { - msec: 3824 - hash: "b4eb31e48c65550bb78d175b48e0e9fb" - } - Frame { - msec: 3840 - hash: "70243664f9db83614e5972fc18ee81a1" - } - Frame { - msec: 3856 - image: "follow.4.png" - } - Frame { - msec: 3872 - hash: "c48ce2a4cf28ab706b9c097bddc74c27" - } - Frame { - msec: 3888 - hash: "754a957e0df02839dd2fe33fefb7a721" - } - Frame { - msec: 3904 - hash: "ec3ebe7b941af9bf2163634d7f15e8aa" - } - Frame { - msec: 3920 - hash: "a76423ff2184cd9dac47abf7ae52ce5a" - } - Frame { - msec: 3936 - hash: "559bec54f51c36c6e90004ca5e77c23c" - } - Frame { - msec: 3952 - hash: "dc6fdd6a867a675afcb58f7052605614" - } - Frame { - msec: 3968 - hash: "b2fb0dbbec01490243f37fe5f80ab6c7" - } - Frame { - msec: 3984 - hash: "2bc1df7a913b1948ee7bb77eeaa55aa2" - } - Frame { - msec: 4000 - hash: "82c6430d85c6a94c4b55a9529d2bc78f" - } - Frame { - msec: 4016 - hash: "463e70dc9a9bdabdc158199bdcd7d2fa" - } - Frame { - msec: 4032 - hash: "c1e9553327f060b70caa713bf3015342" - } - Frame { - msec: 4048 - hash: "42f7f505d4e5ef316240e4f287a039bf" - } - Frame { - msec: 4064 - hash: "200500f600ffe43c5ad4d057bcfc0831" - } - Frame { - msec: 4080 - hash: "22e78edb813f7830776b2603b0aaae5c" - } - Frame { - msec: 4096 - hash: "32ebf3490832fd0693b1b922b4501251" - } - Frame { - msec: 4112 - hash: "1be622caa5ef94f87e2ec8297b6e1caa" - } - Frame { - msec: 4128 - hash: "d1480529e0cb94c51c412109663e5fab" - } - Frame { - msec: 4144 - hash: "e55e627d6d13b647f35233f18f0cbe89" - } - Frame { - msec: 4160 - hash: "87d7b349cd2898de7686e5f1a14f6338" - } - Frame { - msec: 4176 - hash: "2ac974836ee5e6092b55fcda20d7c35d" - } - Frame { - msec: 4192 - hash: "53867256c1dac4de2f02af1ae000b49f" - } - Frame { - msec: 4208 - hash: "08623509e9e5089fdaa1af2bf9a77eb1" - } - Frame { - msec: 4224 - hash: "e4692f42c12593ee865048aef00cbeb2" - } - Frame { - msec: 4240 - hash: "981ad6459e3e7483bb323ab4bc514630" - } - Frame { - msec: 4256 - hash: "79e8adfcdc9d6dae0d2b6a69e8e322fa" - } - Frame { - msec: 4272 - hash: "58f967a607972faa9daa13402eeb9912" - } - Frame { - msec: 4288 - hash: "1fd5b002b049132565b6a963fb7b3bb6" - } - Frame { - msec: 4304 - hash: "a16c96598f47404ec5f4ef55e87a1e70" - } - Frame { - msec: 4320 - hash: "3c632899804812c93c7edd3e3f3d2bac" - } - Frame { - msec: 4336 - hash: "af0eb810e0273f9bacb082d9f90612df" - } - Frame { - msec: 4352 - hash: "728d7ac4a5410482c7d86d03c2d8a996" - } - Frame { - msec: 4368 - hash: "416e76064f2be71a03eddddf61a33cb0" - } - Frame { - msec: 4384 - hash: "c41f20b4ac9a7b34eefd066f77ea351a" - } - Frame { - msec: 4400 - hash: "821d51db415a210b09ebdf8d861aadf2" - } - Frame { - msec: 4416 - hash: "9394266815a52f1779858bb088d557dc" - } - Frame { - msec: 4432 - hash: "cc475d1589665414e5aef051ec237ef4" - } - Frame { - msec: 4448 - hash: "a95f3b8128faa7820f36391fa9bd579f" - } - Frame { - msec: 4464 - hash: "d52687293a11891c364de52525039203" - } - Frame { - msec: 4480 - hash: "5333dc4f65b2f1e066edcd23f7621bd7" - } - Frame { - msec: 4496 - hash: "797bb5e27b2fe2b733a54402433901b4" - } - Frame { - msec: 4512 - hash: "84c610cdff7f8b04a34977216e37847d" - } - Frame { - msec: 4528 - hash: "0317f0406a566b2851c8bda62900e40c" - } - Frame { - msec: 4544 - hash: "6538ecd7abd35234c5cc5c2a17249fc1" - } - Frame { - msec: 4560 - hash: "f9019150a132eb5f5cfafcd5337aff7a" - } - Frame { - msec: 4576 - hash: "0f0136fffbc65c02cee249ece4c8c0ef" - } - Frame { - msec: 4592 - hash: "0027e0d236b8b33a451a0cc35e81b4ce" - } - Frame { - msec: 4608 - hash: "ac2f86b2d4f29f223fb78440d67ccd31" - } - Frame { - msec: 4624 - hash: "a6eb112a10c849e337f816ee408f22a6" - } - Frame { - msec: 4640 - hash: "dafbb01f2615a2513310478ebe484a05" - } - Frame { - msec: 4656 - hash: "17c400c4c29652dc278980ab578b75b3" - } - Frame { - msec: 4672 - hash: "48696c02a2a4839b893a4c0b431b78a3" - } - Frame { - msec: 4688 - hash: "04e05c7e722e53299d24cd0f1b7d17ee" - } - Frame { - msec: 4704 - hash: "55d158f13ffc7ccde5ee368656d2830b" - } - Frame { - msec: 4720 - hash: "fa478e1575acedae023322a520171a5b" - } - Frame { - msec: 4736 - hash: "e2147ddd6e19fde80bb76da24011400c" - } - Frame { - msec: 4752 - hash: "44ee0144db4c55aa90d2a931d83a895e" - } - Frame { - msec: 4768 - hash: "552e87bbce4ad48006c899052a2c8cad" - } - Frame { - msec: 4784 - hash: "3b6efe225303566f751c3f884ac8c069" - } - Frame { - msec: 4800 - hash: "3a7175916d1dc103506061607b910550" - } - Frame { - msec: 4816 - image: "follow.5.png" - } - Frame { - msec: 4832 - hash: "b2e5d5c14b02a13bca62673f87e85627" - } - Frame { - msec: 4848 - hash: "bd89a911d6fb13e4e841f8ee5b8b42af" - } - Frame { - msec: 4864 - hash: "89795784185e83d0299e656f2eec73c8" - } - Frame { - msec: 4880 - hash: "5b6d6fe78f341bdf0eb4bedfe3d975d0" - } - Frame { - msec: 4896 - hash: "e246bc451ee48e16ef6dee20d6256e9c" - } - Frame { - msec: 4912 - hash: "8c1bc37b1b268743aa314247ea949ef5" - } - Frame { - msec: 4928 - hash: "04f34203c34dc87efc708bfb232663df" - } - Frame { - msec: 4944 - hash: "d37a48545e81970d16951e3388f0ff8c" - } - Frame { - msec: 4960 - hash: "9411e846c9f59cc915288efb59d4c9de" - } - Frame { - msec: 4976 - hash: "6ee179741ac74837708afb55943f15bd" - } - Frame { - msec: 4992 - hash: "f626fc3166bd5b01171271ae9bfa9b22" - } - Frame { - msec: 5008 - hash: "e22898b2c0c566bbf531223234f98327" - } - Frame { - msec: 5024 - hash: "1343d90c5eae70713cd49110fe61237b" - } - Frame { - msec: 5040 - hash: "493d9322da6d01979a3f1a120c265f8c" - } - Frame { - msec: 5056 - hash: "defccc76caf3a7c7c67e8abf5ccc2def" - } - Frame { - msec: 5072 - hash: "fe3cad9227fcfa7ba2238465078f2ac7" - } - Frame { - msec: 5088 - hash: "66ebfeee3a63323c7d8b949db9aafd7e" - } - Frame { - msec: 5104 - hash: "805820b382d005894f9a615004b97b0d" - } - Frame { - msec: 5120 - hash: "eee1620f47bb071de8a9c788d1fd258e" - } - Frame { - msec: 5136 - hash: "f5a7d9a81fcfc8cfb9e7cc8ead0f1ff8" - } - Frame { - msec: 5152 - hash: "249903ee123090b27019350f120c8b79" - } - Frame { - msec: 5168 - hash: "019793a363c905809af32bf34ef52ec0" - } - Frame { - msec: 5184 - hash: "4f5ad5a3ebb6eca73dd7567199d07b08" - } - Frame { - msec: 5200 - hash: "fdc1b42d50c7a5c45458498788ff0abd" - } - Frame { - msec: 5216 - hash: "cc091469598cad28d0a00690f1acb412" - } - Frame { - msec: 5232 - hash: "5c8757e1f8f34a31d8b3717b64b84c07" - } - Frame { - msec: 5248 - hash: "5da75559f60eac1b9f518ed55a174e5b" - } - Frame { - msec: 5264 - hash: "1214c08daec4dcfb27690fdc18f2ac28" - } - Frame { - msec: 5280 - hash: "87d92c1ba694d0cf187d8616b0f622f0" - } - Frame { - msec: 5296 - hash: "d4af63638fe69b6c4f087a935351057e" - } - Frame { - msec: 5312 - hash: "0573c41f34c2c117cada987e4ee813a5" - } - Frame { - msec: 5328 - hash: "f179ef4b7bf0f915e25ffd8168a9126f" - } - Frame { - msec: 5344 - hash: "1618bf7c94e7898392eb5ffbf44b8aff" - } - Frame { - msec: 5360 - hash: "5af24b902e3729d544f70c77e189b8a7" - } - Frame { - msec: 5376 - hash: "4e5789404e58113cc2d8aa737a03ab58" - } - Frame { - msec: 5392 - hash: "e4bf91a249e47597e959bbaf25f0724d" - } - Frame { - msec: 5408 - hash: "39a3e3d6269522ed57a0e37319ab94d5" - } - Frame { - msec: 5424 - hash: "f2e2e47922e7e058e14537a0455cd77f" - } - Frame { - msec: 5440 - hash: "64abb3f2c9e05fd1dd7490d11c74f06a" - } - Frame { - msec: 5456 - hash: "a9bf45c29536ca34c42aa916747b485b" - } - Frame { - msec: 5472 - hash: "da21839b6635e5c4e0a589d163e62752" - } - Frame { - msec: 5488 - hash: "f31e49258bcbb2a144daa320e4567df1" - } - Frame { - msec: 5504 - hash: "f96c5b39f94bf2ac1e3f4de96767d720" - } - Frame { - msec: 5520 - hash: "281b90d1056803093cc37f30465f0e73" - } - Frame { - msec: 5536 - hash: "d63a2424e1947328957ad8f5f0bec043" - } - Frame { - msec: 5552 - hash: "bd510a0de7df02b1b5741824b6f90944" - } - Frame { - msec: 5568 - hash: "47dc4e5ff91cb84c89dd0fc0459f75f2" - } - Frame { - msec: 5584 - hash: "4bc46b5e116dd30e1db4d4bb650ed6ed" - } - Frame { - msec: 5600 - hash: "c6964b89f1962f120028057d1c588694" - } - Frame { - msec: 5616 - hash: "39a77544a1c88b68cb63da9a8910a35e" - } - Frame { - msec: 5632 - hash: "bd8ac21d7a507a8e195437ccac254ecc" - } - Frame { - msec: 5648 - hash: "7b39b2667a8f8efae20ec8696e35dbc4" - } - Frame { - msec: 5664 - hash: "7b39b2667a8f8efae20ec8696e35dbc4" - } - Frame { - msec: 5680 - hash: "8628f4f24670d17965fec40a02e0196f" - } - Frame { - msec: 5696 - hash: "515903d9896a853cb18cc7b7c45c1cce" - } - Frame { - msec: 5712 - hash: "b7a3f70bedcb3f90a2e294b447e05f70" - } - Frame { - msec: 5728 - hash: "8e8b104ef82b1e219021aa38276f8b45" - } - Frame { - msec: 5744 - hash: "70abe79da860bebd2d17a8c7abb20b4e" - } - Frame { - msec: 5760 - hash: "d99af176fb6cf9d9cbcf7cf4286a165c" - } - Frame { - msec: 5776 - image: "follow.6.png" - } - Frame { - msec: 5792 - hash: "67809c7daad6716d0a664c52de9906ce" - } - Frame { - msec: 5808 - hash: "29a27fd59b7316ce305803482686ea58" - } - Frame { - msec: 5824 - hash: "25b9ca40d1d6208d026e5c965923f8fb" - } - Frame { - msec: 5840 - hash: "126b1542415aea11dbb35492be4f66aa" - } - Frame { - msec: 5856 - hash: "26ca7034536e0e690236797df740f19a" - } - Frame { - msec: 5872 - hash: "fec9db60af63a4712b0da037cf1d89cd" - } - Frame { - msec: 5888 - hash: "d9b7e2729c75ca0c0f33b542525c4880" - } - Frame { - msec: 5904 - hash: "89149d16b893ea432b6d0fb05ead48cb" - } - Frame { - msec: 5920 - hash: "8e389d2ca706277ce06e1da557e2e6c1" - } - Frame { - msec: 5936 - hash: "fc5c74473410da1ddd451c5901572172" - } - Frame { - msec: 5952 - hash: "54514970eadff9362d31499a737e4c95" - } - Frame { - msec: 5968 - hash: "d5953bc29532ec49c20ee552c8756ba1" - } - Frame { - msec: 5984 - hash: "5f03be3ed5824e6a6f8f371ce6a47997" - } - Frame { - msec: 6000 - hash: "0431e2ec4765167d0099c59df400f3fd" - } - Frame { - msec: 6016 - hash: "0431e2ec4765167d0099c59df400f3fd" - } - Frame { - msec: 6032 - hash: "403e1f235770f2b7c8b1b2e86aea69a5" - } - Frame { - msec: 6048 - hash: "403e1f235770f2b7c8b1b2e86aea69a5" - } - Frame { - msec: 6064 - hash: "32ff9f959598972f5a264418587dca1f" - } - Frame { - msec: 6080 - hash: "b4c7c07e52a684f7ce21e47a4d66356a" - } - Frame { - msec: 6096 - hash: "e0f214bed2c3a31f473952929b8f3ea9" - } - Frame { - msec: 6112 - hash: "15328b8a205965f3f29fc63a6a8ac8ed" - } - Frame { - msec: 6128 - hash: "72c46ed63633e6879373f4783df25d8b" - } - Frame { - msec: 6144 - hash: "ae73e0adbdaacc648c2e97840cef4194" - } - Frame { - msec: 6160 - hash: "df9451c6634d72e6f794e962b3591086" - } - Frame { - msec: 6176 - hash: "773e10bbd133e64457e7ddbc73a10fc2" - } - Frame { - msec: 6192 - hash: "c79abb97eb86761b69053d77156dffd4" - } - Frame { - msec: 6208 - hash: "d927934b19ffd55ea7cea1916983351a" - } - Frame { - msec: 6224 - hash: "ae5058d935c1e44d103be66921b19e77" - } - Frame { - msec: 6240 - hash: "b6a1446b6be054d5785ba52ac23f8aa8" - } - Frame { - msec: 6256 - hash: "3dffbffded44249fdbe58aecd24ab97f" - } - Frame { - msec: 6272 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6288 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6304 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6320 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6336 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6352 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6368 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Frame { - msec: 6384 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6400 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6416 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6432 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6448 - hash: "cb2b0ddbc7b8485fbf32a537e5a98d0e" - } - Frame { - msec: 6464 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6480 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6496 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6512 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6528 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6544 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6560 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6576 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6592 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6608 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6624 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6640 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6656 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6672 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6688 - hash: "fa87436d5e51122022a005d815f97c32" - } - Frame { - msec: 6704 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6720 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6736 - image: "follow.7.png" - } - Frame { - msec: 6752 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6768 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6784 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6800 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6816 - hash: "da52e87ccd157c0330c07e480b8b0c06" - } - Frame { - msec: 6832 - hash: "257ce16f529b99f28beb2e57625f52ee" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6848 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6864 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6880 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6896 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6912 - hash: "56445ab8554a23a786b70e4fd9f40451" - } - Frame { - msec: 6928 - hash: "56445ab8554a23a786b70e4fd9f40451" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/follow.qml deleted file mode 100644 index 0097449..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/follow.qml +++ /dev/null @@ -1,79 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "#ffffff" - width: 320; height: 240 - - Rectangle { - id: rect - color: "#00ff00" - y: 200; width: 60; height: 20 - SequentialAnimation on y { - loops: Animation.Infinite - NumberAnimation { - to: 20; duration: 500 - easing.type: "InOutQuad" - } - NumberAnimation { - to: 200; duration: 2000 - easing.type: "OutBounce" - } - PauseAnimation { duration: 1000 } - } - } - - // Velocity - Rectangle { - color: "#ff0000" - x: rect.width; width: rect.width; height: 20 - y: rect.y - Behavior on y { SpringAnimation { velocity: 200 } } - } - - // Spring - Rectangle { - color: "#ff0000" - x: rect.width * 2; width: rect.width/2; height: 20 - y: rect.y - Behavior on y { SpringAnimation { spring: 1.0; damping: 0.2 } } - } - Rectangle { - color: "#880000" - x: rect.width * 2.5; width: rect.width/2; height: 20 - y: rect.y - Behavior on y { SpringAnimation { spring: 1.0; damping: 0.2; mass: 3.0 } } // "heavier" object - } - - // Follow mouse - MouseArea { - id: mouseRegion - anchors.fill: parent - Rectangle { - id: ball - property int targetX: mouseRegion.mouseX - 10 - property int targetY: mouseRegion.mouseY - 10 - - x: targetX - y: targetY - width: 20; height: 20 - radius: 10 - color: "#0000ff" - - Behavior on x { SpringAnimation { spring: 1.0; damping: 0.05; epsilon: 0.25 } } - Behavior on y { SpringAnimation { spring: 1.0; damping: 0.05; epsilon: 0.25 } } - - states: [ - State { - name: "following" - when: ball.x != ball.targetX || ball.y != ball.targetY - PropertyChanges { target: ball; color: "#ff0000" } - } - ] - transitions: [ - Transition { - ColorAnimation { duration: 200 } - } - ] - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/justify.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/justify.0.png deleted file mode 100644 index 74c6934..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/justify.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/justify.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/justify.qml deleted file mode 100644 index e4dbeb1..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/justify.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "justify.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/multilineAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/multilineAlign.0.png deleted file mode 100644 index 1b808ef..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/multilineAlign.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/multilineAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/multilineAlign.qml deleted file mode 100644 index 5485174..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-MAC/multilineAlign.qml +++ /dev/null @@ -1,247 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "multilineAlign.0.png" - } - Frame { - msec: 32 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 48 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 64 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 80 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 96 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 112 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 128 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 144 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 160 - hash: "3fc7ab44f913d350f7aef342b958e56d" - } - Frame { - msec: 176 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 192 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 208 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 224 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 240 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 256 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 272 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 288 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 304 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 320 - hash: "a495a8a95c8aa82ac437c2f2970bd42d" - } - Frame { - msec: 336 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 352 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 368 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 384 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 400 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 416 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 432 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 448 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 464 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 480 - hash: "e2d2a6e60537b9a434d0029ef5ff26dc" - } - Frame { - msec: 496 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 512 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 528 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 544 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 560 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 576 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 592 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 608 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 624 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 640 - hash: "00cba961e67c2124ace75dddb657cd6c" - } - Frame { - msec: 656 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 672 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 688 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 704 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 720 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 736 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 752 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 768 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 784 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 800 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 816 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 832 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 848 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 864 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 880 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 896 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 912 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 928 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 944 - hash: "31d518de83e195def2d957b7d86b98e5" - } - Frame { - msec: 960 - hash: "31d518de83e195def2d957b7d86b98e5" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.0.png deleted file mode 100644 index 666d272..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.qml deleted file mode 100644 index 75e6859..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.qml +++ /dev/null @@ -1,247 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "multilineAlign.0.png" - } - Frame { - msec: 32 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 48 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 64 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 80 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 96 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 112 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 128 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 144 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 160 - hash: "377fd9e347a2e6e0930d1422ce744c5c" - } - Frame { - msec: 176 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 192 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 208 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 224 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 240 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 256 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 272 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 288 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 304 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 320 - hash: "36106ba13106d262c02c67e82bba1443" - } - Frame { - msec: 336 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 352 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 368 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 384 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 400 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 416 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 432 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 448 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 464 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 480 - hash: "509d31a486ae2f83055b52ec12f33e76" - } - Frame { - msec: 496 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 512 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 528 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 544 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 560 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 576 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 592 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 608 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 624 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 640 - hash: "09b9249750ba637ef659cbc7b9a6055f" - } - Frame { - msec: 656 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 672 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 688 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 704 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 720 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 736 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 752 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 768 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 784 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 800 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 816 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 832 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 848 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 864 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 880 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 896 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 912 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 928 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 944 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } - Frame { - msec: 960 - hash: "1ac7017fcf7c9775b66ed1fb78930a45" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.0.png deleted file mode 100644 index e6b2b3c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.qml deleted file mode 100644 index 1b43aa3..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.qml +++ /dev/null @@ -1,247 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 32 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 48 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 64 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 80 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 96 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 112 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 128 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 144 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 160 - hash: "1ec47db85ba34bf1900445a2ab87b5e3" - } - Frame { - msec: 176 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 192 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 208 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 224 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 240 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 256 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 272 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 288 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 304 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 320 - hash: "1fc2a63fa95e277bed60abfdecc7c82f" - } - Frame { - msec: 336 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 352 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 368 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 384 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 400 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 416 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 432 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 448 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 464 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 480 - hash: "3a4e863d83f5d475e0c8c5121905bd87" - } - Frame { - msec: 496 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 512 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 528 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 544 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 560 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 576 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 592 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 608 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 624 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 640 - hash: "8887c8f40667f65a814d74b6edcfb81c" - } - Frame { - msec: 656 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 672 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 688 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 704 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 720 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 736 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 752 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 768 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 784 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 800 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 816 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 832 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 848 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 864 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 880 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 896 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 912 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 928 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 944 - hash: "436000b48f688120d96919227d9e67b4" - } - Frame { - msec: 960 - image: "multilineAlign.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/justify.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/justify.qml deleted file mode 100644 index c3a7aaa..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/justify.qml +++ /dev/null @@ -1,22 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: 450 - height: 250 - - TestText { - anchors.fill: parent - anchors { leftMargin: 10; rightMargin: 10; topMargin:10; bottomMargin: 10 } - wrapMode: Text.Wrap - horizontalAlignment: Text.AlignJustify - - text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin a aliquet massa. Integer id velit a nibh imperdiet sagittis. Cras fringilla enim non nulla porta bibendum. Integer risus urna, hendrerit non interdum ut, dapibus id velit. Nullam fermentum viverra pellentesque. In molestie scelerisque lorem molestie ultrices. Curabitur dolor arcu, tristique in sodales in, varius sed diam. Quisque magna velit, tincidunt sed ullamcorper sit amet, ornare adipiscing ligula. In hac habitasse platea dictumst. Ut tincidunt urna vel mauris fermentum ornare quis a ligula. Suspendisse cursus volutpat sapien eget cursus." - - Rectangle { - anchors.fill: parent - color: "transparent" - border.color: "red" - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/multilineAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/multilineAlign.qml deleted file mode 100644 index a427719..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/multilineAlign.qml +++ /dev/null @@ -1,25 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -/*Tests both the alignments of multiline text, and that - it can deal with changing them properly -*/ -Item{ - width: 100 - height: 80 - property int stage: 0 - onStageChanged: if(stage == 6) Qt.quit(); - TestText{ - text: "I am the very model of a modern major general." - anchors.fill: parent; - wrapMode: Text.WordWrap - horizontalAlignment: (stage<1 ? Text.AlignRight : (stage<3 ? Text.AlignHCenter : Text.AlignLeft)) - verticalAlignment: (stage<2 ? Text.AlignBottom : (stage<4 ? Text.AlignVCenter : Text.AlignTop)) - } - Timer{ - interval: 160 - running: true - repeat: true - onTriggered: stage += 1 - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-MAC/parentanchor.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-MAC/parentanchor.0.png deleted file mode 100644 index 1fd0213..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-MAC/parentanchor.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-MAC/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-MAC/parentanchor.qml deleted file mode 100644 index c5a5a76..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-MAC/parentanchor.qml +++ /dev/null @@ -1,131 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "parentanchor.0.png" - } - Frame { - msec: 32 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 48 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 64 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 80 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 96 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 112 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 128 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 144 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 160 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 176 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 192 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 208 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 224 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 240 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 256 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 272 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 288 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 304 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 320 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 336 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 352 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 368 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 384 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 400 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 416 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 432 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 448 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 464 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 480 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } - Frame { - msec: 496 - hash: "f45eda9414f7db5ed1f97a8275459abd" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.0.png deleted file mode 100644 index 823199c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml deleted file mode 100644 index 4bf0697..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml +++ /dev/null @@ -1,131 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "parentanchor.0.png" - } - Frame { - msec: 32 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 48 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 64 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 80 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 96 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 112 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 128 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 144 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 160 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 176 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 192 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 208 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 224 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 240 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 256 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 272 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 288 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 304 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 320 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 336 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 352 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 368 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 384 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 400 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 416 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 432 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 448 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 464 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 480 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } - Frame { - msec: 496 - hash: "7e082fa05e000cc20fcda7cb61d98edd" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml deleted file mode 100644 index 880609b..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data/parentanchor.qml +++ /dev/null @@ -1,131 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 32 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 48 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 64 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 80 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 96 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 112 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 128 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 144 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 160 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 176 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 192 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 208 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 224 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 240 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 256 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 272 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 288 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 304 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 320 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 336 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 352 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 368 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 384 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 400 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 416 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 432 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 448 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 464 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 480 - hash: "3e022a120a2dbe688d53657508de36cf" - } - Frame { - msec: 496 - hash: "3e022a120a2dbe688d53657508de36cf" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml deleted file mode 100644 index 618a65f..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml +++ /dev/null @@ -1,15 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - id: s; width: 600; height: 100; - property string text: "The quick brown fox jumps over the lazy dog." - TestText { - text: s.text - anchors.verticalCenter: s.verticalCenter - } - TestText { - text: s.text - anchors.baseline: s.verticalCenter - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/QTBUG-14469.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/QTBUG-14469.qml deleted file mode 100644 index aca7c2d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/QTBUG-14469.qml +++ /dev/null @@ -1,23 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -/* The bug was that if text was set to "" or the size didn't increase, the text didn't repaint - ended up only repainting for 1, 10, 11, 12. - Test passes if it goes from "" to 13 back to "" with all numbers being painted (and the text disappearing at 0) - */ - -Item{ - width: 80 - height: 80 - property int val: 0 - Text{ - id: txt; - text: val == 0 ? "" : val - } - Timer{ - interval: 100 - running: true - repeat: true; - onTriggered: {val = (val + 1) % 14;} - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.0.png deleted file mode 100644 index 4d6bf55..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.1.png deleted file mode 100644 index a75da16..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.qml deleted file mode 100644 index 002e1c8..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-MAC/QTBUG-14469.qml +++ /dev/null @@ -1,475 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "QTBUG-14469.0.png" - } - Frame { - msec: 32 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 48 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 64 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 80 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 96 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 112 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 128 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 144 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 160 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 176 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 192 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 208 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 224 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 240 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 256 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 272 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 288 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 304 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 320 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 336 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 352 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 368 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 384 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 400 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 416 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 432 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 448 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 464 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 480 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 496 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 512 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 528 - hash: "067dfe70eca44e2157b723858897c90e" - } - Frame { - msec: 544 - hash: "067dfe70eca44e2157b723858897c90e" - } - Frame { - msec: 560 - hash: "067dfe70eca44e2157b723858897c90e" - } - Frame { - msec: 576 - hash: "067dfe70eca44e2157b723858897c90e" - } - Frame { - msec: 592 - hash: "067dfe70eca44e2157b723858897c90e" - } - Frame { - msec: 608 - hash: "067dfe70eca44e2157b723858897c90e" - } - Frame { - msec: 624 - hash: "b1ac0015f173bf5789daa5d45d04dadd" - } - Frame { - msec: 640 - hash: "b1ac0015f173bf5789daa5d45d04dadd" - } - Frame { - msec: 656 - hash: "b1ac0015f173bf5789daa5d45d04dadd" - } - Frame { - msec: 672 - hash: "b1ac0015f173bf5789daa5d45d04dadd" - } - Frame { - msec: 688 - hash: "b1ac0015f173bf5789daa5d45d04dadd" - } - Frame { - msec: 704 - hash: "b1ac0015f173bf5789daa5d45d04dadd" - } - Frame { - msec: 720 - hash: "431cb09ccdcfab7c3ff7d498aa1f0816" - } - Frame { - msec: 736 - hash: "431cb09ccdcfab7c3ff7d498aa1f0816" - } - Frame { - msec: 752 - hash: "431cb09ccdcfab7c3ff7d498aa1f0816" - } - Frame { - msec: 768 - hash: "431cb09ccdcfab7c3ff7d498aa1f0816" - } - Frame { - msec: 784 - hash: "431cb09ccdcfab7c3ff7d498aa1f0816" - } - Frame { - msec: 800 - hash: "431cb09ccdcfab7c3ff7d498aa1f0816" - } - Frame { - msec: 816 - hash: "533b23f29fe5f9dc85a6ca390c6dd023" - } - Frame { - msec: 832 - hash: "533b23f29fe5f9dc85a6ca390c6dd023" - } - Frame { - msec: 848 - hash: "533b23f29fe5f9dc85a6ca390c6dd023" - } - Frame { - msec: 864 - hash: "533b23f29fe5f9dc85a6ca390c6dd023" - } - Frame { - msec: 880 - hash: "533b23f29fe5f9dc85a6ca390c6dd023" - } - Frame { - msec: 896 - hash: "533b23f29fe5f9dc85a6ca390c6dd023" - } - Frame { - msec: 912 - hash: "533b23f29fe5f9dc85a6ca390c6dd023" - } - Frame { - msec: 928 - hash: "cd397908009ddf16ec3101efb0d7468e" - } - Frame { - msec: 944 - hash: "cd397908009ddf16ec3101efb0d7468e" - } - Frame { - msec: 960 - hash: "cd397908009ddf16ec3101efb0d7468e" - } - Frame { - msec: 976 - image: "QTBUG-14469.1.png" - } - Frame { - msec: 992 - hash: "cd397908009ddf16ec3101efb0d7468e" - } - Frame { - msec: 1008 - hash: "cd397908009ddf16ec3101efb0d7468e" - } - Frame { - msec: 1024 - hash: "a1eebf1a97314851b5154802f05abe8d" - } - Frame { - msec: 1040 - hash: "a1eebf1a97314851b5154802f05abe8d" - } - Frame { - msec: 1056 - hash: "a1eebf1a97314851b5154802f05abe8d" - } - Frame { - msec: 1072 - hash: "a1eebf1a97314851b5154802f05abe8d" - } - Frame { - msec: 1088 - hash: "a1eebf1a97314851b5154802f05abe8d" - } - Frame { - msec: 1104 - hash: "a1eebf1a97314851b5154802f05abe8d" - } - Frame { - msec: 1120 - hash: "71d91d85b9c555eb9b39dac79b35dd46" - } - Frame { - msec: 1136 - hash: "71d91d85b9c555eb9b39dac79b35dd46" - } - Frame { - msec: 1152 - hash: "71d91d85b9c555eb9b39dac79b35dd46" - } - Frame { - msec: 1168 - hash: "71d91d85b9c555eb9b39dac79b35dd46" - } - Frame { - msec: 1184 - hash: "71d91d85b9c555eb9b39dac79b35dd46" - } - Frame { - msec: 1200 - hash: "71d91d85b9c555eb9b39dac79b35dd46" - } - Frame { - msec: 1216 - hash: "b1da2d1f4aad2a197a80788607bd867d" - } - Frame { - msec: 1232 - hash: "b1da2d1f4aad2a197a80788607bd867d" - } - Frame { - msec: 1248 - hash: "b1da2d1f4aad2a197a80788607bd867d" - } - Frame { - msec: 1264 - hash: "b1da2d1f4aad2a197a80788607bd867d" - } - Frame { - msec: 1280 - hash: "b1da2d1f4aad2a197a80788607bd867d" - } - Frame { - msec: 1296 - hash: "b1da2d1f4aad2a197a80788607bd867d" - } - Frame { - msec: 1312 - hash: "b1da2d1f4aad2a197a80788607bd867d" - } - Frame { - msec: 1328 - hash: "df14e9cfeba3850bae7cad111fdbc8df" - } - Frame { - msec: 1344 - hash: "df14e9cfeba3850bae7cad111fdbc8df" - } - Frame { - msec: 1360 - hash: "df14e9cfeba3850bae7cad111fdbc8df" - } - Frame { - msec: 1376 - hash: "df14e9cfeba3850bae7cad111fdbc8df" - } - Frame { - msec: 1392 - hash: "df14e9cfeba3850bae7cad111fdbc8df" - } - Frame { - msec: 1408 - hash: "df14e9cfeba3850bae7cad111fdbc8df" - } - Frame { - msec: 1424 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1440 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1456 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1472 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1488 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1504 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1520 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 1536 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 1552 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 1568 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 1584 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 1600 - hash: "cf74324c2a0c8f45c728d42390aac1e0" - } - Frame { - msec: 1616 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 1632 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 1648 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 1664 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 1680 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 1696 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 1712 - hash: "07c938ac9ff9f591e84fc553291c7c49" - } - Frame { - msec: 1728 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 1744 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 1760 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 1776 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 1792 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 1808 - hash: "7b585eb6226e6ce2de355f9730dba377" - } - Frame { - msec: 1824 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 1840 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 1856 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } - Frame { - msec: 1872 - hash: "a7817a7d902ab2fe2875183feb6513dd" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.0.png deleted file mode 100644 index ee3c744..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.qml deleted file mode 100644 index b770836..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.qml +++ /dev/null @@ -1,475 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "QTBUG-14469.0.png" - } - Frame { - msec: 32 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 48 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 64 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 80 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 96 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 112 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 128 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 144 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 160 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 176 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 192 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 208 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 224 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 240 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 256 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 272 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 288 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 304 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 320 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 336 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 352 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 368 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 384 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 400 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 416 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 432 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 448 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 464 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 480 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 496 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 512 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 528 - hash: "75f26b0bbb2663bcadcedce260ef848a" - } - Frame { - msec: 544 - hash: "75f26b0bbb2663bcadcedce260ef848a" - } - Frame { - msec: 560 - hash: "75f26b0bbb2663bcadcedce260ef848a" - } - Frame { - msec: 576 - hash: "75f26b0bbb2663bcadcedce260ef848a" - } - Frame { - msec: 592 - hash: "75f26b0bbb2663bcadcedce260ef848a" - } - Frame { - msec: 608 - hash: "75f26b0bbb2663bcadcedce260ef848a" - } - Frame { - msec: 624 - hash: "6a8c8c0b7727e5e3063d93de59c7f0a2" - } - Frame { - msec: 640 - hash: "6a8c8c0b7727e5e3063d93de59c7f0a2" - } - Frame { - msec: 656 - hash: "6a8c8c0b7727e5e3063d93de59c7f0a2" - } - Frame { - msec: 672 - hash: "6a8c8c0b7727e5e3063d93de59c7f0a2" - } - Frame { - msec: 688 - hash: "6a8c8c0b7727e5e3063d93de59c7f0a2" - } - Frame { - msec: 704 - hash: "6a8c8c0b7727e5e3063d93de59c7f0a2" - } - Frame { - msec: 720 - hash: "d5bb5dd464f38af1790e0109033eb8ad" - } - Frame { - msec: 736 - hash: "d5bb5dd464f38af1790e0109033eb8ad" - } - Frame { - msec: 752 - hash: "d5bb5dd464f38af1790e0109033eb8ad" - } - Frame { - msec: 768 - hash: "d5bb5dd464f38af1790e0109033eb8ad" - } - Frame { - msec: 784 - hash: "d5bb5dd464f38af1790e0109033eb8ad" - } - Frame { - msec: 800 - hash: "d5bb5dd464f38af1790e0109033eb8ad" - } - Frame { - msec: 816 - hash: "8535be394c177dbdcb0435e35680e776" - } - Frame { - msec: 832 - hash: "8535be394c177dbdcb0435e35680e776" - } - Frame { - msec: 848 - hash: "8535be394c177dbdcb0435e35680e776" - } - Frame { - msec: 864 - hash: "8535be394c177dbdcb0435e35680e776" - } - Frame { - msec: 880 - hash: "8535be394c177dbdcb0435e35680e776" - } - Frame { - msec: 896 - hash: "8535be394c177dbdcb0435e35680e776" - } - Frame { - msec: 912 - hash: "8535be394c177dbdcb0435e35680e776" - } - Frame { - msec: 928 - hash: "0ec4eba50495b474faf3feca4be64f7b" - } - Frame { - msec: 944 - hash: "0ec4eba50495b474faf3feca4be64f7b" - } - Frame { - msec: 960 - hash: "0ec4eba50495b474faf3feca4be64f7b" - } - Frame { - msec: 976 - image: "QTBUG-14469.1.png" - } - Frame { - msec: 992 - hash: "0ec4eba50495b474faf3feca4be64f7b" - } - Frame { - msec: 1008 - hash: "0ec4eba50495b474faf3feca4be64f7b" - } - Frame { - msec: 1024 - hash: "43993c686f4c10e91177297d8bb6eae9" - } - Frame { - msec: 1040 - hash: "43993c686f4c10e91177297d8bb6eae9" - } - Frame { - msec: 1056 - hash: "43993c686f4c10e91177297d8bb6eae9" - } - Frame { - msec: 1072 - hash: "43993c686f4c10e91177297d8bb6eae9" - } - Frame { - msec: 1088 - hash: "43993c686f4c10e91177297d8bb6eae9" - } - Frame { - msec: 1104 - hash: "43993c686f4c10e91177297d8bb6eae9" - } - Frame { - msec: 1120 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1136 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1152 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1168 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1184 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1200 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1216 - hash: "5f18ee7410e2d0b4d739abcec1b14bb4" - } - Frame { - msec: 1232 - hash: "5f18ee7410e2d0b4d739abcec1b14bb4" - } - Frame { - msec: 1248 - hash: "5f18ee7410e2d0b4d739abcec1b14bb4" - } - Frame { - msec: 1264 - hash: "5f18ee7410e2d0b4d739abcec1b14bb4" - } - Frame { - msec: 1280 - hash: "5f18ee7410e2d0b4d739abcec1b14bb4" - } - Frame { - msec: 1296 - hash: "5f18ee7410e2d0b4d739abcec1b14bb4" - } - Frame { - msec: 1312 - hash: "5f18ee7410e2d0b4d739abcec1b14bb4" - } - Frame { - msec: 1328 - hash: "34ebe59f64ebc72fc2bf22af4118ec1f" - } - Frame { - msec: 1344 - hash: "34ebe59f64ebc72fc2bf22af4118ec1f" - } - Frame { - msec: 1360 - hash: "34ebe59f64ebc72fc2bf22af4118ec1f" - } - Frame { - msec: 1376 - hash: "34ebe59f64ebc72fc2bf22af4118ec1f" - } - Frame { - msec: 1392 - hash: "34ebe59f64ebc72fc2bf22af4118ec1f" - } - Frame { - msec: 1408 - hash: "34ebe59f64ebc72fc2bf22af4118ec1f" - } - Frame { - msec: 1424 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1440 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1456 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1472 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1488 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1504 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1520 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1536 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1552 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1568 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1584 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1600 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1616 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 1632 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 1648 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 1664 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 1680 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 1696 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 1712 - hash: "834338b693368e154163f806f49d5ba3" - } - Frame { - msec: 1728 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 1744 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 1760 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 1776 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 1792 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 1808 - hash: "4b79bd737312a5aa026b73c07bfd840c" - } - Frame { - msec: 1824 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 1840 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 1856 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } - Frame { - msec: 1872 - hash: "daa67aed3e94e9e8823e8bed04aee960" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.0.png deleted file mode 100644 index b8cc1c7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.qml deleted file mode 100644 index 6201c72..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.qml +++ /dev/null @@ -1,475 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 32 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 48 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 64 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 80 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 96 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 112 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 128 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 144 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 160 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 176 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 192 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 208 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 224 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 240 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 256 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 272 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 288 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 304 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 320 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 336 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 352 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 368 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 384 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 400 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 416 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 432 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 448 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 464 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 480 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 496 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 512 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 528 - hash: "51cd7a5bc24cdb50832066cc04cae313" - } - Frame { - msec: 544 - hash: "51cd7a5bc24cdb50832066cc04cae313" - } - Frame { - msec: 560 - hash: "51cd7a5bc24cdb50832066cc04cae313" - } - Frame { - msec: 576 - hash: "51cd7a5bc24cdb50832066cc04cae313" - } - Frame { - msec: 592 - hash: "51cd7a5bc24cdb50832066cc04cae313" - } - Frame { - msec: 608 - hash: "51cd7a5bc24cdb50832066cc04cae313" - } - Frame { - msec: 624 - hash: "bac094de06155c73e4d2d9e2fd99b038" - } - Frame { - msec: 640 - hash: "bac094de06155c73e4d2d9e2fd99b038" - } - Frame { - msec: 656 - hash: "bac094de06155c73e4d2d9e2fd99b038" - } - Frame { - msec: 672 - hash: "bac094de06155c73e4d2d9e2fd99b038" - } - Frame { - msec: 688 - hash: "bac094de06155c73e4d2d9e2fd99b038" - } - Frame { - msec: 704 - hash: "bac094de06155c73e4d2d9e2fd99b038" - } - Frame { - msec: 720 - hash: "3159c438d2cb58e31b4b458ba417f794" - } - Frame { - msec: 736 - hash: "3159c438d2cb58e31b4b458ba417f794" - } - Frame { - msec: 752 - hash: "3159c438d2cb58e31b4b458ba417f794" - } - Frame { - msec: 768 - hash: "3159c438d2cb58e31b4b458ba417f794" - } - Frame { - msec: 784 - hash: "3159c438d2cb58e31b4b458ba417f794" - } - Frame { - msec: 800 - hash: "3159c438d2cb58e31b4b458ba417f794" - } - Frame { - msec: 816 - hash: "a4f9c320c8aa558c66dd25d132bb5834" - } - Frame { - msec: 832 - hash: "a4f9c320c8aa558c66dd25d132bb5834" - } - Frame { - msec: 848 - hash: "a4f9c320c8aa558c66dd25d132bb5834" - } - Frame { - msec: 864 - hash: "a4f9c320c8aa558c66dd25d132bb5834" - } - Frame { - msec: 880 - hash: "a4f9c320c8aa558c66dd25d132bb5834" - } - Frame { - msec: 896 - hash: "a4f9c320c8aa558c66dd25d132bb5834" - } - Frame { - msec: 912 - hash: "a4f9c320c8aa558c66dd25d132bb5834" - } - Frame { - msec: 928 - hash: "b1a283365bbffbc0ddaa4aa661e52add" - } - Frame { - msec: 944 - hash: "b1a283365bbffbc0ddaa4aa661e52add" - } - Frame { - msec: 960 - image: "QTBUG-14469.0.png" - } - Frame { - msec: 976 - hash: "b1a283365bbffbc0ddaa4aa661e52add" - } - Frame { - msec: 992 - hash: "b1a283365bbffbc0ddaa4aa661e52add" - } - Frame { - msec: 1008 - hash: "b1a283365bbffbc0ddaa4aa661e52add" - } - Frame { - msec: 1024 - hash: "57ba00590bed6fe1b0f8fc3e54b9637e" - } - Frame { - msec: 1040 - hash: "57ba00590bed6fe1b0f8fc3e54b9637e" - } - Frame { - msec: 1056 - hash: "57ba00590bed6fe1b0f8fc3e54b9637e" - } - Frame { - msec: 1072 - hash: "57ba00590bed6fe1b0f8fc3e54b9637e" - } - Frame { - msec: 1088 - hash: "57ba00590bed6fe1b0f8fc3e54b9637e" - } - Frame { - msec: 1104 - hash: "57ba00590bed6fe1b0f8fc3e54b9637e" - } - Frame { - msec: 1120 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1136 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1152 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1168 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1184 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1200 - hash: "e1b070e2bf36e5d8a34cabc0d52b2830" - } - Frame { - msec: 1216 - hash: "bc81044e90cc001fc351a1518ba4b41e" - } - Frame { - msec: 1232 - hash: "bc81044e90cc001fc351a1518ba4b41e" - } - Frame { - msec: 1248 - hash: "bc81044e90cc001fc351a1518ba4b41e" - } - Frame { - msec: 1264 - hash: "bc81044e90cc001fc351a1518ba4b41e" - } - Frame { - msec: 1280 - hash: "bc81044e90cc001fc351a1518ba4b41e" - } - Frame { - msec: 1296 - hash: "bc81044e90cc001fc351a1518ba4b41e" - } - Frame { - msec: 1312 - hash: "bc81044e90cc001fc351a1518ba4b41e" - } - Frame { - msec: 1328 - hash: "18386b56e44b1f3981b3aa8fe980410b" - } - Frame { - msec: 1344 - hash: "18386b56e44b1f3981b3aa8fe980410b" - } - Frame { - msec: 1360 - hash: "18386b56e44b1f3981b3aa8fe980410b" - } - Frame { - msec: 1376 - hash: "18386b56e44b1f3981b3aa8fe980410b" - } - Frame { - msec: 1392 - hash: "18386b56e44b1f3981b3aa8fe980410b" - } - Frame { - msec: 1408 - hash: "18386b56e44b1f3981b3aa8fe980410b" - } - Frame { - msec: 1424 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1440 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1456 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1472 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1488 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1504 - hash: "fab978e1e0ee5140d8131320ff2322e9" - } - Frame { - msec: 1520 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1536 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1552 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1568 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1584 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1600 - hash: "6971eb49a32b8f9e09c24ac1340728cb" - } - Frame { - msec: 1616 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 1632 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 1648 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 1664 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 1680 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 1696 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 1712 - hash: "449c6b632a3b85462fe3947a071ffa91" - } - Frame { - msec: 1728 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 1744 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 1760 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 1776 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 1792 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 1808 - hash: "9c804e5eec3b31acd55a510d301cc419" - } - Frame { - msec: 1824 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 1840 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 1856 - hash: "799c7a637b061686c1456c9c535594d3" - } - Frame { - msec: 1872 - hash: "799c7a637b061686c1456c9c535594d3" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.0.png deleted file mode 100644 index 7e84164..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.1.png deleted file mode 100644 index 7e84164..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.qml deleted file mode 100644 index d6d8c2a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-MAC/qtbug_14865.qml +++ /dev/null @@ -1,447 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "qtbug_14865.0.png" - } - Frame { - msec: 32 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 48 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 64 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 80 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 96 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 112 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 128 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 144 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 160 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 176 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 192 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 208 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 224 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 240 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 256 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 272 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 288 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 304 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 320 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 336 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 352 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 368 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 384 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 400 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 416 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 432 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 448 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 464 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 480 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 496 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 512 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 528 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 544 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 560 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 576 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 592 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 608 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 624 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 640 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 656 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 672 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 688 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 704 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 720 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 736 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 752 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 768 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 784 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 800 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 816 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 832 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 848 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 864 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 880 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 896 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 912 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 928 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 944 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 960 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 976 - image: "qtbug_14865.1.png" - } - Frame { - msec: 992 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 1008 - hash: "212d34fa7425fe24398c9de6d4f10422" - } - Frame { - msec: 1024 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1040 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1056 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1072 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1088 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1104 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1120 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1136 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1152 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1168 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1184 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1200 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1216 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1232 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1248 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1264 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1280 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1296 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1312 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1328 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1344 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1360 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1376 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1392 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1408 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1424 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1440 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1456 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1472 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1488 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1504 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1520 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1536 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1552 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1568 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1584 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1600 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1616 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1632 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1648 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1664 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1680 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1696 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1712 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1728 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1744 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } - Frame { - msec: 1760 - hash: "3ccd3d26158a50d8f0567bafd7a23e06" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.0.png deleted file mode 100644 index 6119f92..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.1.png deleted file mode 100644 index 6119f92..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.qml deleted file mode 100644 index 481c9aa..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/data-X11/qtbug_14865.qml +++ /dev/null @@ -1,447 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "qtbug_14865.0.png" - } - Frame { - msec: 32 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 48 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 64 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 80 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 96 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 112 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 128 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 144 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 160 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 176 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 192 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 208 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 224 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 240 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 256 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 272 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 288 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 304 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 320 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 336 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 352 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 368 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 384 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 400 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 416 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 432 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 448 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 464 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 480 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 496 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 512 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 528 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 544 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 560 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 576 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 592 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 608 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 624 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 640 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 656 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 672 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 688 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 704 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 720 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 736 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 752 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 768 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 784 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 800 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 816 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 832 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 848 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 864 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 880 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 896 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 912 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 928 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 944 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 960 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 976 - image: "qtbug_14865.1.png" - } - Frame { - msec: 992 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 1008 - hash: "bd09363ea401e07a38d216bf29806592" - } - Frame { - msec: 1024 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1040 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1056 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1072 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1088 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1104 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1120 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1136 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1152 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1168 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1184 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1200 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1216 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1232 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1248 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1264 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1280 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1296 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1312 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1328 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1344 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1360 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1376 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1392 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1408 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1424 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1440 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1456 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1472 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1488 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1504 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1520 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1536 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1552 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1568 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1584 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1600 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1616 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1632 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1648 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1664 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1680 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1696 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1712 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1728 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1744 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } - Frame { - msec: 1760 - hash: "a3e4ab9c6151c9acb4c9dd41c9c2c596" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/data/qtbug_14865.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/data/qtbug_14865.0.png deleted file mode 100644 index a4bae3a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/data/qtbug_14865.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/data/qtbug_14865.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/data/qtbug_14865.qml deleted file mode 100644 index a470a66..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/data/qtbug_14865.qml +++ /dev/null @@ -1,447 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 32 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 48 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 64 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 80 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 96 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 112 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 128 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 144 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 160 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 176 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 192 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 208 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 224 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 240 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 256 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 272 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 288 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 304 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 320 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 336 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 352 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 368 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 384 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 400 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 416 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 432 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 448 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 464 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 480 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 496 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 512 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 528 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 544 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 560 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 576 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 592 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 608 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 624 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 640 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 656 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 672 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 688 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 704 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 720 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 736 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 752 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 768 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 784 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 800 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 816 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 832 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 848 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 864 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 880 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 896 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 912 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 928 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 944 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 960 - image: "qtbug_14865.0.png" - } - Frame { - msec: 976 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 992 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 1008 - hash: "fd4d35de0a95388dd92ffbb82fbe0e8a" - } - Frame { - msec: 1024 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1040 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1056 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1072 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1088 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1104 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1120 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1136 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1152 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1168 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1184 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1200 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1216 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1232 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1248 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1264 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1280 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1296 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1312 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1328 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1344 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1360 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1376 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1392 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1408 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1424 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1440 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1456 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1472 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1488 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1504 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1520 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1536 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1552 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1568 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1584 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1600 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1616 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1632 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1648 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1664 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1680 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1696 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1712 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1728 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1744 - hash: "eee4600ac08b458ac7ac2320e225674c" - } - Frame { - msec: 1760 - hash: "eee4600ac08b458ac7ac2320e225674c" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.0.png deleted file mode 100644 index 749a9c5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.1.png deleted file mode 100644 index 749a9c5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml deleted file mode 100644 index fbb542e..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide.qml +++ /dev/null @@ -1,279 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "elide.0.png" - } - Frame { - msec: 32 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 48 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 64 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 80 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 96 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 112 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 128 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 144 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 160 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 176 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 192 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 208 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 224 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 240 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 256 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 272 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 288 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 304 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 320 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 336 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 352 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 368 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 384 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 400 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 416 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 432 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 448 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 464 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 480 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 496 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 512 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 528 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 544 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 560 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 576 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 592 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 608 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 624 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 640 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 656 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 672 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 688 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 704 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 720 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 736 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 752 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 768 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 784 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 800 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 816 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 832 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 848 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 864 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 880 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 896 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 912 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 928 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 944 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 960 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 976 - image: "elide.1.png" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 992 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 1008 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 1024 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 1040 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } - Frame { - msec: 1056 - hash: "4d49ec1a14a321ea9c0d506663df55c2" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.0.png deleted file mode 100644 index b84b8a9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.1.png deleted file mode 100644 index dbae0ce..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.2.png deleted file mode 100644 index bf56c80..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.3.png deleted file mode 100644 index c4f6e18..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.4.png deleted file mode 100644 index ea86925..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml deleted file mode 100644 index e780ea6..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/elide2.qml +++ /dev/null @@ -1,991 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "elide2.0.png" - } - Frame { - msec: 32 - hash: "1c45bbf4494aeb017d7ad53c5e29cbc0" - } - Frame { - msec: 48 - hash: "1c45bbf4494aeb017d7ad53c5e29cbc0" - } - Frame { - msec: 64 - hash: "1c45bbf4494aeb017d7ad53c5e29cbc0" - } - Frame { - msec: 80 - hash: "1c45bbf4494aeb017d7ad53c5e29cbc0" - } - Frame { - msec: 96 - hash: "1c45bbf4494aeb017d7ad53c5e29cbc0" - } - Frame { - msec: 112 - hash: "452d8e4da326413e4961f20a0d24d0f0" - } - Frame { - msec: 128 - hash: "452d8e4da326413e4961f20a0d24d0f0" - } - Frame { - msec: 144 - hash: "452d8e4da326413e4961f20a0d24d0f0" - } - Frame { - msec: 160 - hash: "452d8e4da326413e4961f20a0d24d0f0" - } - Frame { - msec: 176 - hash: "452d8e4da326413e4961f20a0d24d0f0" - } - Frame { - msec: 192 - hash: "8dc43f316fd36a877c773c10c23b5703" - } - Frame { - msec: 208 - hash: "8dc43f316fd36a877c773c10c23b5703" - } - Frame { - msec: 224 - hash: "8dc43f316fd36a877c773c10c23b5703" - } - Frame { - msec: 240 - hash: "8dc43f316fd36a877c773c10c23b5703" - } - Frame { - msec: 256 - hash: "b7e055ce8d510c5ec66e71fa5a78fddf" - } - Frame { - msec: 272 - hash: "b7e055ce8d510c5ec66e71fa5a78fddf" - } - Frame { - msec: 288 - hash: "b7e055ce8d510c5ec66e71fa5a78fddf" - } - Frame { - msec: 304 - hash: "b7e055ce8d510c5ec66e71fa5a78fddf" - } - Frame { - msec: 320 - hash: "e9b0abe5719027348cd267eb4823fc5f" - } - Frame { - msec: 336 - hash: "e9b0abe5719027348cd267eb4823fc5f" - } - Frame { - msec: 352 - hash: "e9b0abe5719027348cd267eb4823fc5f" - } - Frame { - msec: 368 - hash: "e9b0abe5719027348cd267eb4823fc5f" - } - Frame { - msec: 384 - hash: "e9b0abe5719027348cd267eb4823fc5f" - } - Frame { - msec: 400 - hash: "441102f2f69e9f4e10335c1746d47bd3" - } - Frame { - msec: 416 - hash: "441102f2f69e9f4e10335c1746d47bd3" - } - Frame { - msec: 432 - hash: "441102f2f69e9f4e10335c1746d47bd3" - } - Frame { - msec: 448 - hash: "441102f2f69e9f4e10335c1746d47bd3" - } - Frame { - msec: 464 - hash: "441102f2f69e9f4e10335c1746d47bd3" - } - Frame { - msec: 480 - hash: "95668288170720989adde2a0b41d5ee8" - } - Frame { - msec: 496 - hash: "95668288170720989adde2a0b41d5ee8" - } - Frame { - msec: 512 - hash: "95668288170720989adde2a0b41d5ee8" - } - Frame { - msec: 528 - hash: "95668288170720989adde2a0b41d5ee8" - } - Frame { - msec: 544 - hash: "16bba6b72993e474b4c302af3f682834" - } - Frame { - msec: 560 - hash: "16bba6b72993e474b4c302af3f682834" - } - Frame { - msec: 576 - hash: "16bba6b72993e474b4c302af3f682834" - } - Frame { - msec: 592 - hash: "16bba6b72993e474b4c302af3f682834" - } - Frame { - msec: 608 - hash: "86c4d8bd1b19116411b6a6e450547425" - } - Frame { - msec: 624 - hash: "86c4d8bd1b19116411b6a6e450547425" - } - Frame { - msec: 640 - hash: "86c4d8bd1b19116411b6a6e450547425" - } - Frame { - msec: 656 - hash: "86c4d8bd1b19116411b6a6e450547425" - } - Frame { - msec: 672 - hash: "86c4d8bd1b19116411b6a6e450547425" - } - Frame { - msec: 688 - hash: "d0d3cfa922ebca20c590ab7e59985268" - } - Frame { - msec: 704 - hash: "d0d3cfa922ebca20c590ab7e59985268" - } - Frame { - msec: 720 - hash: "d0d3cfa922ebca20c590ab7e59985268" - } - Frame { - msec: 736 - hash: "d0d3cfa922ebca20c590ab7e59985268" - } - Frame { - msec: 752 - hash: "d0d3cfa922ebca20c590ab7e59985268" - } - Frame { - msec: 768 - hash: "397d72a090171090f897283729b19bc8" - } - Frame { - msec: 784 - hash: "397d72a090171090f897283729b19bc8" - } - Frame { - msec: 800 - hash: "397d72a090171090f897283729b19bc8" - } - Frame { - msec: 816 - hash: "397d72a090171090f897283729b19bc8" - } - Frame { - msec: 832 - hash: "2b038e59289d2e3cef02245d2d128271" - } - Frame { - msec: 848 - hash: "2b038e59289d2e3cef02245d2d128271" - } - Frame { - msec: 864 - hash: "2b038e59289d2e3cef02245d2d128271" - } - Frame { - msec: 880 - hash: "2b038e59289d2e3cef02245d2d128271" - } - Frame { - msec: 896 - hash: "2b038e59289d2e3cef02245d2d128271" - } - Frame { - msec: 912 - hash: "5f64aa763acdd8f5d6cc249be36e226a" - } - Frame { - msec: 928 - hash: "5f64aa763acdd8f5d6cc249be36e226a" - } - Frame { - msec: 944 - hash: "5f64aa763acdd8f5d6cc249be36e226a" - } - Frame { - msec: 960 - hash: "5f64aa763acdd8f5d6cc249be36e226a" - } - Frame { - msec: 976 - image: "elide2.1.png" - } - Frame { - msec: 992 - hash: "4f8c81adc72fce17c7e54f4d45ec08e4" - } - Frame { - msec: 1008 - hash: "4f8c81adc72fce17c7e54f4d45ec08e4" - } - Frame { - msec: 1024 - hash: "4f8c81adc72fce17c7e54f4d45ec08e4" - } - Frame { - msec: 1040 - hash: "91a7a0c0f686975d0087ee0e066911eb" - } - Frame { - msec: 1056 - hash: "91a7a0c0f686975d0087ee0e066911eb" - } - Frame { - msec: 1072 - hash: "91a7a0c0f686975d0087ee0e066911eb" - } - Frame { - msec: 1088 - hash: "91a7a0c0f686975d0087ee0e066911eb" - } - Frame { - msec: 1104 - hash: "91a7a0c0f686975d0087ee0e066911eb" - } - Frame { - msec: 1120 - hash: "b19f6b8b4dc9d2a2d9aba82983e41889" - } - Frame { - msec: 1136 - hash: "b19f6b8b4dc9d2a2d9aba82983e41889" - } - Frame { - msec: 1152 - hash: "b19f6b8b4dc9d2a2d9aba82983e41889" - } - Frame { - msec: 1168 - hash: "b19f6b8b4dc9d2a2d9aba82983e41889" - } - Frame { - msec: 1184 - hash: "b19f6b8b4dc9d2a2d9aba82983e41889" - } - Frame { - msec: 1200 - hash: "456542b672303ddae500b96e9b66a558" - } - Frame { - msec: 1216 - hash: "456542b672303ddae500b96e9b66a558" - } - Frame { - msec: 1232 - hash: "456542b672303ddae500b96e9b66a558" - } - Frame { - msec: 1248 - hash: "456542b672303ddae500b96e9b66a558" - } - Frame { - msec: 1264 - hash: "8ec69f05d929c3b397dc721198ccacd4" - } - Frame { - msec: 1280 - hash: "8ec69f05d929c3b397dc721198ccacd4" - } - Frame { - msec: 1296 - hash: "8ec69f05d929c3b397dc721198ccacd4" - } - Frame { - msec: 1312 - hash: "8ec69f05d929c3b397dc721198ccacd4" - } - Frame { - msec: 1328 - hash: "2d63fd91f4b01f6b178c795838e78990" - } - Frame { - msec: 1344 - hash: "2d63fd91f4b01f6b178c795838e78990" - } - Frame { - msec: 1360 - hash: "2d63fd91f4b01f6b178c795838e78990" - } - Frame { - msec: 1376 - hash: "2d63fd91f4b01f6b178c795838e78990" - } - Frame { - msec: 1392 - hash: "2d63fd91f4b01f6b178c795838e78990" - } - Frame { - msec: 1408 - hash: "c7c1d2c288653b414fe534ff6fab3381" - } - Frame { - msec: 1424 - hash: "c7c1d2c288653b414fe534ff6fab3381" - } - Frame { - msec: 1440 - hash: "c7c1d2c288653b414fe534ff6fab3381" - } - Frame { - msec: 1456 - hash: "c7c1d2c288653b414fe534ff6fab3381" - } - Frame { - msec: 1472 - hash: "c7c1d2c288653b414fe534ff6fab3381" - } - Frame { - msec: 1488 - hash: "23188e926a855a7a06211783ee51d22a" - } - Frame { - msec: 1504 - hash: "23188e926a855a7a06211783ee51d22a" - } - Frame { - msec: 1520 - hash: "23188e926a855a7a06211783ee51d22a" - } - Frame { - msec: 1536 - hash: "23188e926a855a7a06211783ee51d22a" - } - Frame { - msec: 1552 - hash: "cfc64d8876d59e0d75f079c2e08cea5f" - } - Frame { - msec: 1568 - hash: "cfc64d8876d59e0d75f079c2e08cea5f" - } - Frame { - msec: 1584 - hash: "cfc64d8876d59e0d75f079c2e08cea5f" - } - Frame { - msec: 1600 - hash: "cfc64d8876d59e0d75f079c2e08cea5f" - } - Frame { - msec: 1616 - hash: "cfc64d8876d59e0d75f079c2e08cea5f" - } - Frame { - msec: 1632 - hash: "766c679eaec4bd28dc92cb3642d5be83" - } - Frame { - msec: 1648 - hash: "766c679eaec4bd28dc92cb3642d5be83" - } - Frame { - msec: 1664 - hash: "766c679eaec4bd28dc92cb3642d5be83" - } - Frame { - msec: 1680 - hash: "766c679eaec4bd28dc92cb3642d5be83" - } - Frame { - msec: 1696 - hash: "a86ba05a854fde208e6cf7849327d5d0" - } - Frame { - msec: 1712 - hash: "a86ba05a854fde208e6cf7849327d5d0" - } - Frame { - msec: 1728 - hash: "a86ba05a854fde208e6cf7849327d5d0" - } - Frame { - msec: 1744 - hash: "a86ba05a854fde208e6cf7849327d5d0" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1760 - hash: "a86ba05a854fde208e6cf7849327d5d0" - } - Frame { - msec: 1776 - hash: "23b60817be2a741cada2af663b0d7f54" - } - Frame { - msec: 1792 - hash: "23b60817be2a741cada2af663b0d7f54" - } - Frame { - msec: 1808 - hash: "23b60817be2a741cada2af663b0d7f54" - } - Frame { - msec: 1824 - hash: "23b60817be2a741cada2af663b0d7f54" - } - Frame { - msec: 1840 - hash: "c098c1c0d5239c59735a5c9450e9d531" - } - Frame { - msec: 1856 - hash: "c098c1c0d5239c59735a5c9450e9d531" - } - Frame { - msec: 1872 - hash: "c098c1c0d5239c59735a5c9450e9d531" - } - Frame { - msec: 1888 - hash: "c098c1c0d5239c59735a5c9450e9d531" - } - Frame { - msec: 1904 - hash: "c098c1c0d5239c59735a5c9450e9d531" - } - Frame { - msec: 1920 - hash: "09f6ee218d314d3a405ae43e32588c07" - } - Frame { - msec: 1936 - image: "elide2.2.png" - } - Frame { - msec: 1952 - hash: "09f6ee218d314d3a405ae43e32588c07" - } - Frame { - msec: 1968 - hash: "09f6ee218d314d3a405ae43e32588c07" - } - Frame { - msec: 1984 - hash: "6ee480e7d8b0abe295ae12a660119102" - } - Frame { - msec: 2000 - hash: "6ee480e7d8b0abe295ae12a660119102" - } - Frame { - msec: 2016 - hash: "6ee480e7d8b0abe295ae12a660119102" - } - Frame { - msec: 2032 - hash: "6ee480e7d8b0abe295ae12a660119102" - } - Frame { - msec: 2048 - hash: "6ee480e7d8b0abe295ae12a660119102" - } - Frame { - msec: 2064 - hash: "b43ca0ea75f4c17c09248f78170d3839" - } - Frame { - msec: 2080 - hash: "b43ca0ea75f4c17c09248f78170d3839" - } - Frame { - msec: 2096 - hash: "b43ca0ea75f4c17c09248f78170d3839" - } - Frame { - msec: 2112 - hash: "b43ca0ea75f4c17c09248f78170d3839" - } - Frame { - msec: 2128 - hash: "92e0ee1174ffcb710403bb831aeec353" - } - Frame { - msec: 2144 - hash: "92e0ee1174ffcb710403bb831aeec353" - } - Frame { - msec: 2160 - hash: "92e0ee1174ffcb710403bb831aeec353" - } - Frame { - msec: 2176 - hash: "92e0ee1174ffcb710403bb831aeec353" - } - Frame { - msec: 2192 - hash: "92e0ee1174ffcb710403bb831aeec353" - } - Frame { - msec: 2208 - hash: "bba79ad6f3630b7aa382541cc2d3a2cd" - } - Frame { - msec: 2224 - hash: "bba79ad6f3630b7aa382541cc2d3a2cd" - } - Frame { - msec: 2240 - hash: "bba79ad6f3630b7aa382541cc2d3a2cd" - } - Frame { - msec: 2256 - hash: "bba79ad6f3630b7aa382541cc2d3a2cd" - } - Frame { - msec: 2272 - hash: "7efeb1565125f25252ce3f03dadc3bea" - } - Frame { - msec: 2288 - hash: "7efeb1565125f25252ce3f03dadc3bea" - } - Frame { - msec: 2304 - hash: "7efeb1565125f25252ce3f03dadc3bea" - } - Frame { - msec: 2320 - hash: "7efeb1565125f25252ce3f03dadc3bea" - } - Frame { - msec: 2336 - hash: "7efeb1565125f25252ce3f03dadc3bea" - } - Frame { - msec: 2352 - hash: "9086d24dff90f8c9e4543c6b14c99bf6" - } - Frame { - msec: 2368 - hash: "9086d24dff90f8c9e4543c6b14c99bf6" - } - Frame { - msec: 2384 - hash: "9086d24dff90f8c9e4543c6b14c99bf6" - } - Frame { - msec: 2400 - hash: "9086d24dff90f8c9e4543c6b14c99bf6" - } - Frame { - msec: 2416 - hash: "9086d24dff90f8c9e4543c6b14c99bf6" - } - Frame { - msec: 2432 - hash: "15d8e99a0676e0a1588dfddc00ab0d16" - } - Frame { - msec: 2448 - hash: "15d8e99a0676e0a1588dfddc00ab0d16" - } - Frame { - msec: 2464 - hash: "15d8e99a0676e0a1588dfddc00ab0d16" - } - Frame { - msec: 2480 - hash: "15d8e99a0676e0a1588dfddc00ab0d16" - } - Frame { - msec: 2496 - hash: "ecc25b88c29dc9d6c70df6e36a91f95c" - } - Frame { - msec: 2512 - hash: "ecc25b88c29dc9d6c70df6e36a91f95c" - } - Frame { - msec: 2528 - hash: "ecc25b88c29dc9d6c70df6e36a91f95c" - } - Frame { - msec: 2544 - hash: "ecc25b88c29dc9d6c70df6e36a91f95c" - } - Frame { - msec: 2560 - hash: "905c81686d8d2ecdde513622c35c0ea6" - } - Frame { - msec: 2576 - hash: "905c81686d8d2ecdde513622c35c0ea6" - } - Frame { - msec: 2592 - hash: "905c81686d8d2ecdde513622c35c0ea6" - } - Frame { - msec: 2608 - hash: "905c81686d8d2ecdde513622c35c0ea6" - } - Frame { - msec: 2624 - hash: "905c81686d8d2ecdde513622c35c0ea6" - } - Frame { - msec: 2640 - hash: "537a2cf41a5e15220d2ca2218ac49a5a" - } - Frame { - msec: 2656 - hash: "537a2cf41a5e15220d2ca2218ac49a5a" - } - Frame { - msec: 2672 - hash: "537a2cf41a5e15220d2ca2218ac49a5a" - } - Frame { - msec: 2688 - hash: "537a2cf41a5e15220d2ca2218ac49a5a" - } - Frame { - msec: 2704 - hash: "53325ce7d011eeb72369463721f15e87" - } - Frame { - msec: 2720 - hash: "53325ce7d011eeb72369463721f15e87" - } - Frame { - msec: 2736 - hash: "53325ce7d011eeb72369463721f15e87" - } - Frame { - msec: 2752 - hash: "53325ce7d011eeb72369463721f15e87" - } - Frame { - msec: 2768 - hash: "53325ce7d011eeb72369463721f15e87" - } - Frame { - msec: 2784 - hash: "9ad2565cc95647a83d3ce3acc106485a" - } - Frame { - msec: 2800 - hash: "9ad2565cc95647a83d3ce3acc106485a" - } - Frame { - msec: 2816 - hash: "9ad2565cc95647a83d3ce3acc106485a" - } - Frame { - msec: 2832 - hash: "9ad2565cc95647a83d3ce3acc106485a" - } - Frame { - msec: 2848 - hash: "de7b66581e0743385a984f76c993b01b" - } - Frame { - msec: 2864 - hash: "de7b66581e0743385a984f76c993b01b" - } - Frame { - msec: 2880 - hash: "de7b66581e0743385a984f76c993b01b" - } - Frame { - msec: 2896 - image: "elide2.3.png" - } - Frame { - msec: 2912 - hash: "de7b66581e0743385a984f76c993b01b" - } - Frame { - msec: 2928 - hash: "f66852df1738e4fe29ac1f6938d814c2" - } - Frame { - msec: 2944 - hash: "f66852df1738e4fe29ac1f6938d814c2" - } - Frame { - msec: 2960 - hash: "f66852df1738e4fe29ac1f6938d814c2" - } - Frame { - msec: 2976 - hash: "f66852df1738e4fe29ac1f6938d814c2" - } - Frame { - msec: 2992 - hash: "cf6dde6c590879a9e905a0f559f089ca" - } - Frame { - msec: 3008 - hash: "cf6dde6c590879a9e905a0f559f089ca" - } - Frame { - msec: 3024 - hash: "cf6dde6c590879a9e905a0f559f089ca" - } - Frame { - msec: 3040 - hash: "cf6dde6c590879a9e905a0f559f089ca" - } - Frame { - msec: 3056 - hash: "cf6dde6c590879a9e905a0f559f089ca" - } - Frame { - msec: 3072 - hash: "bd63e4df280010ed9f67fc7976b86cb5" - } - Frame { - msec: 3088 - hash: "bd63e4df280010ed9f67fc7976b86cb5" - } - Frame { - msec: 3104 - hash: "bd63e4df280010ed9f67fc7976b86cb5" - } - Frame { - msec: 3120 - hash: "bd63e4df280010ed9f67fc7976b86cb5" - } - Frame { - msec: 3136 - hash: "bd63e4df280010ed9f67fc7976b86cb5" - } - Frame { - msec: 3152 - hash: "065d3d370faa58aed9899cae0f86f032" - } - Frame { - msec: 3168 - hash: "065d3d370faa58aed9899cae0f86f032" - } - Frame { - msec: 3184 - hash: "065d3d370faa58aed9899cae0f86f032" - } - Frame { - msec: 3200 - hash: "065d3d370faa58aed9899cae0f86f032" - } - Frame { - msec: 3216 - hash: "b5623d05c578a6f09bcfacd4d3163b09" - } - Frame { - msec: 3232 - hash: "b5623d05c578a6f09bcfacd4d3163b09" - } - Frame { - msec: 3248 - hash: "b5623d05c578a6f09bcfacd4d3163b09" - } - Frame { - msec: 3264 - hash: "b5623d05c578a6f09bcfacd4d3163b09" - } - Frame { - msec: 3280 - hash: "83c70529d05911ea26a5cbbab5aa20f2" - } - Frame { - msec: 3296 - hash: "83c70529d05911ea26a5cbbab5aa20f2" - } - Frame { - msec: 3312 - hash: "83c70529d05911ea26a5cbbab5aa20f2" - } - Frame { - msec: 3328 - hash: "83c70529d05911ea26a5cbbab5aa20f2" - } - Frame { - msec: 3344 - hash: "83c70529d05911ea26a5cbbab5aa20f2" - } - Frame { - msec: 3360 - hash: "17927c706da1bc222ba5462af66a9d2f" - } - Frame { - msec: 3376 - hash: "17927c706da1bc222ba5462af66a9d2f" - } - Frame { - msec: 3392 - hash: "17927c706da1bc222ba5462af66a9d2f" - } - Frame { - msec: 3408 - hash: "17927c706da1bc222ba5462af66a9d2f" - } - Frame { - msec: 3424 - hash: "17927c706da1bc222ba5462af66a9d2f" - } - Frame { - msec: 3440 - hash: "f49627ba8d3e257e0e94404da24d12dc" - } - Frame { - msec: 3456 - hash: "f49627ba8d3e257e0e94404da24d12dc" - } - Frame { - msec: 3472 - hash: "f49627ba8d3e257e0e94404da24d12dc" - } - Frame { - msec: 3488 - hash: "f49627ba8d3e257e0e94404da24d12dc" - } - Frame { - msec: 3504 - hash: "37a0c9dc20431c8398409d4522a0fdd3" - } - Frame { - msec: 3520 - hash: "37a0c9dc20431c8398409d4522a0fdd3" - } - Frame { - msec: 3536 - hash: "37a0c9dc20431c8398409d4522a0fdd3" - } - Frame { - msec: 3552 - hash: "37a0c9dc20431c8398409d4522a0fdd3" - } - Frame { - msec: 3568 - hash: "67bebfe9fb5ac745f40040ff8083e999" - } - Frame { - msec: 3584 - hash: "67bebfe9fb5ac745f40040ff8083e999" - } - Frame { - msec: 3600 - hash: "67bebfe9fb5ac745f40040ff8083e999" - } - Frame { - msec: 3616 - hash: "67bebfe9fb5ac745f40040ff8083e999" - } - Frame { - msec: 3632 - hash: "67bebfe9fb5ac745f40040ff8083e999" - } - Frame { - msec: 3648 - hash: "84f8b27b83b566c99e65ea39b29772c1" - } - Frame { - msec: 3664 - hash: "84f8b27b83b566c99e65ea39b29772c1" - } - Frame { - msec: 3680 - hash: "84f8b27b83b566c99e65ea39b29772c1" - } - Frame { - msec: 3696 - hash: "84f8b27b83b566c99e65ea39b29772c1" - } - Frame { - msec: 3712 - hash: "84f8b27b83b566c99e65ea39b29772c1" - } - Frame { - msec: 3728 - hash: "c6ba663536f19b9f291ef35b7a70e490" - } - Frame { - msec: 3744 - hash: "c6ba663536f19b9f291ef35b7a70e490" - } - Frame { - msec: 3760 - hash: "c6ba663536f19b9f291ef35b7a70e490" - } - Frame { - msec: 3776 - hash: "c6ba663536f19b9f291ef35b7a70e490" - } - Frame { - msec: 3792 - hash: "65f22784730aa27b2628d015a1cc4abe" - } - Frame { - msec: 3808 - hash: "65f22784730aa27b2628d015a1cc4abe" - } - Frame { - msec: 3824 - hash: "65f22784730aa27b2628d015a1cc4abe" - } - Frame { - msec: 3840 - hash: "65f22784730aa27b2628d015a1cc4abe" - } - Frame { - msec: 3856 - image: "elide2.4.png" - } - Frame { - msec: 3872 - hash: "b11a511d80de87329501b9c11aebbc58" - } - Frame { - msec: 3888 - hash: "b11a511d80de87329501b9c11aebbc58" - } - Frame { - msec: 3904 - hash: "b11a511d80de87329501b9c11aebbc58" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.0.png deleted file mode 100644 index 3861b4f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.1.png deleted file mode 100644 index ce166f1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml deleted file mode 100644 index 84778ac..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-MAC/multilength.qml +++ /dev/null @@ -1,303 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "multilength.0.png" - } - Frame { - msec: 32 - hash: "58d757783e6d57c5ac2596219dfd37be" - } - Frame { - msec: 48 - hash: "e76b3b98f447b706c59ba0c175e1829d" - } - Frame { - msec: 64 - hash: "f0dbb0b55d1d27bf7c0260db5b5782a2" - } - Frame { - msec: 80 - hash: "00845517336befd7ead0141312ea38ce" - } - Frame { - msec: 96 - hash: "99723ae092407e5291ed3a13f5a7be61" - } - Frame { - msec: 112 - hash: "2d531f1dd1545a4e2f8ca4c65338e0c3" - } - Frame { - msec: 128 - hash: "9f273323f48a70be279302b194203a36" - } - Frame { - msec: 144 - hash: "7de4bd5f82369953c2a4a990ddaf4339" - } - Frame { - msec: 160 - hash: "96c5f74c01723a15a57db161604bc245" - } - Frame { - msec: 176 - hash: "df2eac6300919044cfe2a2f591c3bd99" - } - Frame { - msec: 192 - hash: "a153904cdfa0be697a25bebc4ce1fbca" - } - Frame { - msec: 208 - hash: "de243731b92ac1cac05e194aed0acd1e" - } - Frame { - msec: 224 - hash: "f6ccc0f127bfc6212885c3c6470639ed" - } - Frame { - msec: 240 - hash: "a2d56227aebedb9590a1124e44fe8e84" - } - Frame { - msec: 256 - hash: "5f8c0a42a231580dcfff6a534e77bef8" - } - Frame { - msec: 272 - hash: "e631663ac692ab097cb28095b45e8563" - } - Frame { - msec: 288 - hash: "2a03f6ba3c67a9e9732cc1f5cdc42c23" - } - Frame { - msec: 304 - hash: "26b85080d624b232e5209aa082fc11b1" - } - Frame { - msec: 320 - hash: "1c027f4a0114bb9050a3a8d9de2b8a56" - } - Frame { - msec: 336 - hash: "788e6ad3cb5f6e120e40fd3dc6ac8483" - } - Frame { - msec: 352 - hash: "7e1b0fb71528dfa17a87950c0ff86111" - } - Frame { - msec: 368 - hash: "e1878e6e8ba14d8945e1f71ac8d42c1e" - } - Frame { - msec: 384 - hash: "556f42297eb1e57d6a8af0946651a75e" - } - Frame { - msec: 400 - hash: "73df08e7e3391b339cea9f5f082fd83a" - } - Frame { - msec: 416 - hash: "de3bd8a12c2a448738ce77036b97bda7" - } - Frame { - msec: 432 - hash: "0ab187aa7a478dbf005f35416a93c456" - } - Frame { - msec: 448 - hash: "e5baf64ccafa6a4d2bf74aacf52019c6" - } - Frame { - msec: 464 - hash: "0ed2ee4a773ade712ef207549006aa7b" - } - Frame { - msec: 480 - hash: "b23dd49bdfe8fb155e2055262e6a1478" - } - Frame { - msec: 496 - hash: "871f82636a03d6fa8cbfb580038bd0b7" - } - Frame { - msec: 512 - hash: "463cdc2cbde034d7d7a5061338b319c7" - } - Frame { - msec: 528 - hash: "22ff8e25136877fd6f5dce1b01e65c08" - } - Frame { - msec: 544 - hash: "97d4e49622d877e9e1e0102786e1ee55" - } - Frame { - msec: 560 - hash: "ebf5304185abe4bc33be44c3df09a93a" - } - Frame { - msec: 576 - hash: "307887d9973e807c52b2143cdfe438ad" - } - Frame { - msec: 592 - hash: "d89547539741f387fdd6aa80ef239fbd" - } - Frame { - msec: 608 - hash: "b818215b4cdd6e811057f1a0f5eb1a5a" - } - Frame { - msec: 624 - hash: "84f7e523c0f21236ff8aad1333470d11" - } - Frame { - msec: 640 - hash: "7f974663c7add6d10ebdd401794e087a" - } - Frame { - msec: 656 - hash: "4c824dc01e8fead2706608ca68293d11" - } - Frame { - msec: 672 - hash: "86b0f617eb3bfff944c3b670b3b51c71" - } - Frame { - msec: 688 - hash: "86c5660c22003099cc4121381c11de85" - } - Frame { - msec: 704 - hash: "3c2bd08ea17aaa920949239f06b255cf" - } - Frame { - msec: 720 - hash: "2380278cc065a3ac5355127d9873796c" - } - Frame { - msec: 736 - hash: "e5d8624e841476926b3e2a5ebca8c65f" - } - Frame { - msec: 752 - hash: "eab70f5005a6b39e3ead6e4452df1a54" - } - Frame { - msec: 768 - hash: "46acef023d154bad3f91e0267996421b" - } - Frame { - msec: 784 - hash: "26ba9f30a4bfd72c9b6dae2a25660ea9" - } - Frame { - msec: 800 - hash: "9fabdd5cf1190fb34bdc7834eba01cd3" - } - Frame { - msec: 816 - hash: "b1e7af47d4ee706374365fdd4b4d52be" - } - Frame { - msec: 832 - hash: "86fa2e142e75d9d2a074a5376992f139" - } - Frame { - msec: 848 - hash: "a3dea2bf8f84743d35070e82ec585c9a" - } - Frame { - msec: 864 - hash: "ab649fbbe0ca508812de9839d14b3f8c" - } - Frame { - msec: 880 - hash: "08f8a334e121d4edb0ca1617353bfebc" - } - Frame { - msec: 896 - hash: "bb7997c1e18b90cfaad4c3e4ec44356e" - } - Frame { - msec: 912 - hash: "31a7e5d71c28eebfcd29e9ea4950ad17" - } - Frame { - msec: 928 - hash: "2b759276e03c2884bff7ed863c032dfc" - } - Frame { - msec: 944 - hash: "aa0868f006097a435c46368ea9e3ba36" - } - Frame { - msec: 960 - hash: "6454753699c21589d2523a83da0aaa34" - } - Frame { - msec: 976 - image: "multilength.1.png" - } - Frame { - msec: 992 - hash: "ac26abff68fbc1cf89dc5efc4a714a04" - } - Frame { - msec: 1008 - hash: "d3f9dc8cb653d996fb57652f85abcbc1" - } - Frame { - msec: 1024 - hash: "002a94f067eef532f63b6ef916977c2c" - } - Frame { - msec: 1040 - hash: "f7935d01ee9b497034cc1d8f007a0fdf" - } - Frame { - msec: 1056 - hash: "4a1bfdcc85e5444c1bd836399e86ee05" - } - Frame { - msec: 1072 - hash: "1b86514f3c85a8438ef183cc4772e997" - } - Frame { - msec: 1088 - hash: "7bf4c1ca946288e9d1a7ad055d8cacaa" - } - Frame { - msec: 1104 - hash: "b3a00861967157786a80c80030d5495b" - } - Frame { - msec: 1120 - hash: "b9c6195d3336d7519cc72b16e75d00f6" - } - Frame { - msec: 1136 - hash: "6dba6d030a5ff6a92a57f0bdcf0fe781" - } - Frame { - msec: 1152 - hash: "cc97a2721f4339094819c8b7aec6d74c" - } - Frame { - msec: 1168 - hash: "190f67abce51f58fdd1591651633d67e" - } - Frame { - msec: 1184 - hash: "b255f75cfc4918663b8bd47c887cfb3c" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.0.png deleted file mode 100644 index f2e6117..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.1.png deleted file mode 100644 index f2e6117..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml deleted file mode 100644 index f306f5c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml +++ /dev/null @@ -1,279 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "elide.0.png" - } - Frame { - msec: 32 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 48 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 64 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 80 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 96 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 112 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 128 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 144 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 160 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 176 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 192 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 208 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 224 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 240 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 256 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 272 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 288 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 304 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 320 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 336 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 352 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 368 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 384 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 400 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 416 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 432 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 448 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 464 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 480 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 496 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 512 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 528 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 544 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 560 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 576 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 592 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 608 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 624 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 640 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 656 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 672 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 688 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 704 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 720 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 736 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 752 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 768 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 784 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 800 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 816 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 832 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 848 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 864 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 880 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 896 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 912 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 928 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 944 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 960 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 976 - image: "elide.1.png" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 992 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 1008 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 1024 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 1040 - hash: "a2003f5b238564e9b68b38db156431d2" - } - Frame { - msec: 1056 - hash: "a2003f5b238564e9b68b38db156431d2" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.0.png deleted file mode 100644 index 2f4c84a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.1.png deleted file mode 100644 index ae786a2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.2.png deleted file mode 100644 index 785093e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.3.png deleted file mode 100644 index 28f95c9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.4.png deleted file mode 100644 index 963c4ea..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.qml deleted file mode 100644 index 6e9057c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.qml +++ /dev/null @@ -1,991 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "elide2.0.png" - } - Frame { - msec: 32 - hash: "716f5d150bd8757952d7b4ba327fb8bd" - } - Frame { - msec: 48 - hash: "716f5d150bd8757952d7b4ba327fb8bd" - } - Frame { - msec: 64 - hash: "716f5d150bd8757952d7b4ba327fb8bd" - } - Frame { - msec: 80 - hash: "716f5d150bd8757952d7b4ba327fb8bd" - } - Frame { - msec: 96 - hash: "716f5d150bd8757952d7b4ba327fb8bd" - } - Frame { - msec: 112 - hash: "716f5d150bd8757952d7b4ba327fb8bd" - } - Frame { - msec: 128 - hash: "8ec55fba2017a56c641c7baca5345b8b" - } - Frame { - msec: 144 - hash: "8ec55fba2017a56c641c7baca5345b8b" - } - Frame { - msec: 160 - hash: "8ec55fba2017a56c641c7baca5345b8b" - } - Frame { - msec: 176 - hash: "8ec55fba2017a56c641c7baca5345b8b" - } - Frame { - msec: 192 - hash: "79dc1645a5486ddfa3d957f3bd4ffbda" - } - Frame { - msec: 208 - hash: "79dc1645a5486ddfa3d957f3bd4ffbda" - } - Frame { - msec: 224 - hash: "79dc1645a5486ddfa3d957f3bd4ffbda" - } - Frame { - msec: 240 - hash: "79dc1645a5486ddfa3d957f3bd4ffbda" - } - Frame { - msec: 256 - hash: "476eae8ca9f6698cf67e2d20c5c24b66" - } - Frame { - msec: 272 - hash: "476eae8ca9f6698cf67e2d20c5c24b66" - } - Frame { - msec: 288 - hash: "476eae8ca9f6698cf67e2d20c5c24b66" - } - Frame { - msec: 304 - hash: "476eae8ca9f6698cf67e2d20c5c24b66" - } - Frame { - msec: 320 - hash: "bef1a9585daf30f1739a190ffa2e4b46" - } - Frame { - msec: 336 - hash: "bef1a9585daf30f1739a190ffa2e4b46" - } - Frame { - msec: 352 - hash: "bef1a9585daf30f1739a190ffa2e4b46" - } - Frame { - msec: 368 - hash: "bef1a9585daf30f1739a190ffa2e4b46" - } - Frame { - msec: 384 - hash: "bef1a9585daf30f1739a190ffa2e4b46" - } - Frame { - msec: 400 - hash: "156dfc4e9fbc1af5e8c6c48ecd2afe8f" - } - Frame { - msec: 416 - hash: "156dfc4e9fbc1af5e8c6c48ecd2afe8f" - } - Frame { - msec: 432 - hash: "156dfc4e9fbc1af5e8c6c48ecd2afe8f" - } - Frame { - msec: 448 - hash: "156dfc4e9fbc1af5e8c6c48ecd2afe8f" - } - Frame { - msec: 464 - hash: "2fe675a360e61452c31dda42070c137f" - } - Frame { - msec: 480 - hash: "2fe675a360e61452c31dda42070c137f" - } - Frame { - msec: 496 - hash: "2fe675a360e61452c31dda42070c137f" - } - Frame { - msec: 512 - hash: "2fe675a360e61452c31dda42070c137f" - } - Frame { - msec: 528 - hash: "0f1bac7c35b9f5bdbce10fb577c9cf28" - } - Frame { - msec: 544 - hash: "0f1bac7c35b9f5bdbce10fb577c9cf28" - } - Frame { - msec: 560 - hash: "0f1bac7c35b9f5bdbce10fb577c9cf28" - } - Frame { - msec: 576 - hash: "0f1bac7c35b9f5bdbce10fb577c9cf28" - } - Frame { - msec: 592 - hash: "0f1bac7c35b9f5bdbce10fb577c9cf28" - } - Frame { - msec: 608 - hash: "c79f68e9481f91f6f6a6816a655efc24" - } - Frame { - msec: 624 - hash: "c79f68e9481f91f6f6a6816a655efc24" - } - Frame { - msec: 640 - hash: "c79f68e9481f91f6f6a6816a655efc24" - } - Frame { - msec: 656 - hash: "c79f68e9481f91f6f6a6816a655efc24" - } - Frame { - msec: 672 - hash: "9a189e9d9249fb04fd98c4e91aba1cb5" - } - Frame { - msec: 688 - hash: "9a189e9d9249fb04fd98c4e91aba1cb5" - } - Frame { - msec: 704 - hash: "9a189e9d9249fb04fd98c4e91aba1cb5" - } - Frame { - msec: 720 - hash: "9a189e9d9249fb04fd98c4e91aba1cb5" - } - Frame { - msec: 736 - hash: "9a189e9d9249fb04fd98c4e91aba1cb5" - } - Frame { - msec: 752 - hash: "42c1ac48858ab5901601dc5a950a398f" - } - Frame { - msec: 768 - hash: "42c1ac48858ab5901601dc5a950a398f" - } - Frame { - msec: 784 - hash: "42c1ac48858ab5901601dc5a950a398f" - } - Frame { - msec: 800 - hash: "42c1ac48858ab5901601dc5a950a398f" - } - Frame { - msec: 816 - hash: "f05bf4e3cc562c5a900fb389a7c093de" - } - Frame { - msec: 832 - hash: "f05bf4e3cc562c5a900fb389a7c093de" - } - Frame { - msec: 848 - hash: "f05bf4e3cc562c5a900fb389a7c093de" - } - Frame { - msec: 864 - hash: "f05bf4e3cc562c5a900fb389a7c093de" - } - Frame { - msec: 880 - hash: "1b5d1234aa02009ec447ac8fefc403bb" - } - Frame { - msec: 896 - hash: "1b5d1234aa02009ec447ac8fefc403bb" - } - Frame { - msec: 912 - hash: "1b5d1234aa02009ec447ac8fefc403bb" - } - Frame { - msec: 928 - hash: "1b5d1234aa02009ec447ac8fefc403bb" - } - Frame { - msec: 944 - hash: "1b5d1234aa02009ec447ac8fefc403bb" - } - Frame { - msec: 960 - hash: "ec7cfc539d7bde448c631da211de8f44" - } - Frame { - msec: 976 - image: "elide2.1.png" - } - Frame { - msec: 992 - hash: "ec7cfc539d7bde448c631da211de8f44" - } - Frame { - msec: 1008 - hash: "ec7cfc539d7bde448c631da211de8f44" - } - Frame { - msec: 1024 - hash: "646394dd534a32bc3a066e606cc485f3" - } - Frame { - msec: 1040 - hash: "646394dd534a32bc3a066e606cc485f3" - } - Frame { - msec: 1056 - hash: "646394dd534a32bc3a066e606cc485f3" - } - Frame { - msec: 1072 - hash: "646394dd534a32bc3a066e606cc485f3" - } - Frame { - msec: 1088 - hash: "6b66b968aaed1896e2e9fafe27bba50f" - } - Frame { - msec: 1104 - hash: "6b66b968aaed1896e2e9fafe27bba50f" - } - Frame { - msec: 1120 - hash: "6b66b968aaed1896e2e9fafe27bba50f" - } - Frame { - msec: 1136 - hash: "6b66b968aaed1896e2e9fafe27bba50f" - } - Frame { - msec: 1152 - hash: "6b66b968aaed1896e2e9fafe27bba50f" - } - Frame { - msec: 1168 - hash: "869f75182b9a4b452da1689a5921085f" - } - Frame { - msec: 1184 - hash: "869f75182b9a4b452da1689a5921085f" - } - Frame { - msec: 1200 - hash: "869f75182b9a4b452da1689a5921085f" - } - Frame { - msec: 1216 - hash: "869f75182b9a4b452da1689a5921085f" - } - Frame { - msec: 1232 - hash: "b2017890ac543b9224e85a44157d9fbb" - } - Frame { - msec: 1248 - hash: "b2017890ac543b9224e85a44157d9fbb" - } - Frame { - msec: 1264 - hash: "b2017890ac543b9224e85a44157d9fbb" - } - Frame { - msec: 1280 - hash: "b2017890ac543b9224e85a44157d9fbb" - } - Frame { - msec: 1296 - hash: "b2017890ac543b9224e85a44157d9fbb" - } - Frame { - msec: 1312 - hash: "acac3eb92619e01b3470511cef1a91c8" - } - Frame { - msec: 1328 - hash: "acac3eb92619e01b3470511cef1a91c8" - } - Frame { - msec: 1344 - hash: "acac3eb92619e01b3470511cef1a91c8" - } - Frame { - msec: 1360 - hash: "acac3eb92619e01b3470511cef1a91c8" - } - Frame { - msec: 1376 - hash: "7f6d45b22e5cb86a7fb45d3f9bcebfc1" - } - Frame { - msec: 1392 - hash: "7f6d45b22e5cb86a7fb45d3f9bcebfc1" - } - Frame { - msec: 1408 - hash: "7f6d45b22e5cb86a7fb45d3f9bcebfc1" - } - Frame { - msec: 1424 - hash: "7f6d45b22e5cb86a7fb45d3f9bcebfc1" - } - Frame { - msec: 1440 - hash: "481f661e2613242d253498e467c91105" - } - Frame { - msec: 1456 - hash: "481f661e2613242d253498e467c91105" - } - Frame { - msec: 1472 - hash: "481f661e2613242d253498e467c91105" - } - Frame { - msec: 1488 - hash: "481f661e2613242d253498e467c91105" - } - Frame { - msec: 1504 - hash: "481f661e2613242d253498e467c91105" - } - Frame { - msec: 1520 - hash: "4c342918351f0165ce63129afbd60074" - } - Frame { - msec: 1536 - hash: "4c342918351f0165ce63129afbd60074" - } - Frame { - msec: 1552 - hash: "4c342918351f0165ce63129afbd60074" - } - Frame { - msec: 1568 - hash: "4c342918351f0165ce63129afbd60074" - } - Frame { - msec: 1584 - hash: "4f21a25c75cfabbcbd7c485c7c479bfc" - } - Frame { - msec: 1600 - hash: "4f21a25c75cfabbcbd7c485c7c479bfc" - } - Frame { - msec: 1616 - hash: "4f21a25c75cfabbcbd7c485c7c479bfc" - } - Frame { - msec: 1632 - hash: "4f21a25c75cfabbcbd7c485c7c479bfc" - } - Frame { - msec: 1648 - hash: "b627f215fdb6f62e6cbf2ddbe14dc794" - } - Frame { - msec: 1664 - hash: "b627f215fdb6f62e6cbf2ddbe14dc794" - } - Frame { - msec: 1680 - hash: "b627f215fdb6f62e6cbf2ddbe14dc794" - } - Frame { - msec: 1696 - hash: "b627f215fdb6f62e6cbf2ddbe14dc794" - } - Frame { - msec: 1712 - hash: "b627f215fdb6f62e6cbf2ddbe14dc794" - } - Frame { - msec: 1728 - hash: "8c490b27882c58d34cbc941a0b10e6fe" - } - Frame { - msec: 1744 - hash: "8c490b27882c58d34cbc941a0b10e6fe" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1760 - hash: "8c490b27882c58d34cbc941a0b10e6fe" - } - Frame { - msec: 1776 - hash: "8c490b27882c58d34cbc941a0b10e6fe" - } - Frame { - msec: 1792 - hash: "739abcde4a980e05932aa079245136cd" - } - Frame { - msec: 1808 - hash: "739abcde4a980e05932aa079245136cd" - } - Frame { - msec: 1824 - hash: "739abcde4a980e05932aa079245136cd" - } - Frame { - msec: 1840 - hash: "739abcde4a980e05932aa079245136cd" - } - Frame { - msec: 1856 - hash: "739abcde4a980e05932aa079245136cd" - } - Frame { - msec: 1872 - hash: "af47b93ee81b0e4add42d9addad92219" - } - Frame { - msec: 1888 - hash: "af47b93ee81b0e4add42d9addad92219" - } - Frame { - msec: 1904 - hash: "af47b93ee81b0e4add42d9addad92219" - } - Frame { - msec: 1920 - hash: "af47b93ee81b0e4add42d9addad92219" - } - Frame { - msec: 1936 - image: "elide2.2.png" - } - Frame { - msec: 1952 - hash: "43d7bee700464080f7535d398d60af25" - } - Frame { - msec: 1968 - hash: "43d7bee700464080f7535d398d60af25" - } - Frame { - msec: 1984 - hash: "43d7bee700464080f7535d398d60af25" - } - Frame { - msec: 2000 - hash: "31bf9784a1e1b84cc0ed4a342284ce1a" - } - Frame { - msec: 2016 - hash: "31bf9784a1e1b84cc0ed4a342284ce1a" - } - Frame { - msec: 2032 - hash: "31bf9784a1e1b84cc0ed4a342284ce1a" - } - Frame { - msec: 2048 - hash: "31bf9784a1e1b84cc0ed4a342284ce1a" - } - Frame { - msec: 2064 - hash: "31bf9784a1e1b84cc0ed4a342284ce1a" - } - Frame { - msec: 2080 - hash: "59db6dabc6c6930b9561bc906f49cc3c" - } - Frame { - msec: 2096 - hash: "59db6dabc6c6930b9561bc906f49cc3c" - } - Frame { - msec: 2112 - hash: "59db6dabc6c6930b9561bc906f49cc3c" - } - Frame { - msec: 2128 - hash: "59db6dabc6c6930b9561bc906f49cc3c" - } - Frame { - msec: 2144 - hash: "9e9cd1f4b9ad0980d6601e52c3d21402" - } - Frame { - msec: 2160 - hash: "9e9cd1f4b9ad0980d6601e52c3d21402" - } - Frame { - msec: 2176 - hash: "9e9cd1f4b9ad0980d6601e52c3d21402" - } - Frame { - msec: 2192 - hash: "9e9cd1f4b9ad0980d6601e52c3d21402" - } - Frame { - msec: 2208 - hash: "f8e23813215634224d2fb00f3d1993c5" - } - Frame { - msec: 2224 - hash: "f8e23813215634224d2fb00f3d1993c5" - } - Frame { - msec: 2240 - hash: "f8e23813215634224d2fb00f3d1993c5" - } - Frame { - msec: 2256 - hash: "f8e23813215634224d2fb00f3d1993c5" - } - Frame { - msec: 2272 - hash: "f8e23813215634224d2fb00f3d1993c5" - } - Frame { - msec: 2288 - hash: "e867db62cb8ec10228ea7b2eceda3723" - } - Frame { - msec: 2304 - hash: "e867db62cb8ec10228ea7b2eceda3723" - } - Frame { - msec: 2320 - hash: "e867db62cb8ec10228ea7b2eceda3723" - } - Frame { - msec: 2336 - hash: "e867db62cb8ec10228ea7b2eceda3723" - } - Frame { - msec: 2352 - hash: "36da8cc7019fae8b1abc877961d3af41" - } - Frame { - msec: 2368 - hash: "36da8cc7019fae8b1abc877961d3af41" - } - Frame { - msec: 2384 - hash: "36da8cc7019fae8b1abc877961d3af41" - } - Frame { - msec: 2400 - hash: "36da8cc7019fae8b1abc877961d3af41" - } - Frame { - msec: 2416 - hash: "36da8cc7019fae8b1abc877961d3af41" - } - Frame { - msec: 2432 - hash: "ea907beaf860fa21684fc524e876346c" - } - Frame { - msec: 2448 - hash: "ea907beaf860fa21684fc524e876346c" - } - Frame { - msec: 2464 - hash: "ea907beaf860fa21684fc524e876346c" - } - Frame { - msec: 2480 - hash: "ea907beaf860fa21684fc524e876346c" - } - Frame { - msec: 2496 - hash: "2b3eb80e842df2fa2b6c217a2948af45" - } - Frame { - msec: 2512 - hash: "2b3eb80e842df2fa2b6c217a2948af45" - } - Frame { - msec: 2528 - hash: "2b3eb80e842df2fa2b6c217a2948af45" - } - Frame { - msec: 2544 - hash: "2b3eb80e842df2fa2b6c217a2948af45" - } - Frame { - msec: 2560 - hash: "05ffb4d0af3fea65151596ea5b9b43c5" - } - Frame { - msec: 2576 - hash: "05ffb4d0af3fea65151596ea5b9b43c5" - } - Frame { - msec: 2592 - hash: "05ffb4d0af3fea65151596ea5b9b43c5" - } - Frame { - msec: 2608 - hash: "05ffb4d0af3fea65151596ea5b9b43c5" - } - Frame { - msec: 2624 - hash: "05ffb4d0af3fea65151596ea5b9b43c5" - } - Frame { - msec: 2640 - hash: "612517436b6ef76f29b213944f742624" - } - Frame { - msec: 2656 - hash: "612517436b6ef76f29b213944f742624" - } - Frame { - msec: 2672 - hash: "612517436b6ef76f29b213944f742624" - } - Frame { - msec: 2688 - hash: "612517436b6ef76f29b213944f742624" - } - Frame { - msec: 2704 - hash: "a62c646572c94d55971445c0546e06fc" - } - Frame { - msec: 2720 - hash: "a62c646572c94d55971445c0546e06fc" - } - Frame { - msec: 2736 - hash: "a62c646572c94d55971445c0546e06fc" - } - Frame { - msec: 2752 - hash: "a62c646572c94d55971445c0546e06fc" - } - Frame { - msec: 2768 - hash: "91be655836fbf7f811a44ffa1e80b72a" - } - Frame { - msec: 2784 - hash: "91be655836fbf7f811a44ffa1e80b72a" - } - Frame { - msec: 2800 - hash: "91be655836fbf7f811a44ffa1e80b72a" - } - Frame { - msec: 2816 - hash: "91be655836fbf7f811a44ffa1e80b72a" - } - Frame { - msec: 2832 - hash: "91be655836fbf7f811a44ffa1e80b72a" - } - Frame { - msec: 2848 - hash: "4fdf23d15633bd9dbcc1767fca797ef6" - } - Frame { - msec: 2864 - hash: "4fdf23d15633bd9dbcc1767fca797ef6" - } - Frame { - msec: 2880 - hash: "4fdf23d15633bd9dbcc1767fca797ef6" - } - Frame { - msec: 2896 - image: "elide2.3.png" - } - Frame { - msec: 2912 - hash: "a81f41ab4e100d92f643ae188c1a5b8a" - } - Frame { - msec: 2928 - hash: "a81f41ab4e100d92f643ae188c1a5b8a" - } - Frame { - msec: 2944 - hash: "a81f41ab4e100d92f643ae188c1a5b8a" - } - Frame { - msec: 2960 - hash: "a81f41ab4e100d92f643ae188c1a5b8a" - } - Frame { - msec: 2976 - hash: "a81f41ab4e100d92f643ae188c1a5b8a" - } - Frame { - msec: 2992 - hash: "6785dbb1bd05081c5b5d890d4b4f28d5" - } - Frame { - msec: 3008 - hash: "6785dbb1bd05081c5b5d890d4b4f28d5" - } - Frame { - msec: 3024 - hash: "6785dbb1bd05081c5b5d890d4b4f28d5" - } - Frame { - msec: 3040 - hash: "6785dbb1bd05081c5b5d890d4b4f28d5" - } - Frame { - msec: 3056 - hash: "ca4fc26d93d4767ef7cdbac6b2e24cf5" - } - Frame { - msec: 3072 - hash: "ca4fc26d93d4767ef7cdbac6b2e24cf5" - } - Frame { - msec: 3088 - hash: "ca4fc26d93d4767ef7cdbac6b2e24cf5" - } - Frame { - msec: 3104 - hash: "ca4fc26d93d4767ef7cdbac6b2e24cf5" - } - Frame { - msec: 3120 - hash: "706fd39d5945f9f698e7fa6e26631b58" - } - Frame { - msec: 3136 - hash: "706fd39d5945f9f698e7fa6e26631b58" - } - Frame { - msec: 3152 - hash: "706fd39d5945f9f698e7fa6e26631b58" - } - Frame { - msec: 3168 - hash: "706fd39d5945f9f698e7fa6e26631b58" - } - Frame { - msec: 3184 - hash: "706fd39d5945f9f698e7fa6e26631b58" - } - Frame { - msec: 3200 - hash: "c4ed351cacc86b5ca2c8198be0a754e0" - } - Frame { - msec: 3216 - hash: "c4ed351cacc86b5ca2c8198be0a754e0" - } - Frame { - msec: 3232 - hash: "c4ed351cacc86b5ca2c8198be0a754e0" - } - Frame { - msec: 3248 - hash: "c4ed351cacc86b5ca2c8198be0a754e0" - } - Frame { - msec: 3264 - hash: "addbbaca2d29fbc8c7907d51a8e9cdce" - } - Frame { - msec: 3280 - hash: "addbbaca2d29fbc8c7907d51a8e9cdce" - } - Frame { - msec: 3296 - hash: "addbbaca2d29fbc8c7907d51a8e9cdce" - } - Frame { - msec: 3312 - hash: "addbbaca2d29fbc8c7907d51a8e9cdce" - } - Frame { - msec: 3328 - hash: "fcb6b78276df1a6c839d6f30f8fe6495" - } - Frame { - msec: 3344 - hash: "fcb6b78276df1a6c839d6f30f8fe6495" - } - Frame { - msec: 3360 - hash: "fcb6b78276df1a6c839d6f30f8fe6495" - } - Frame { - msec: 3376 - hash: "fcb6b78276df1a6c839d6f30f8fe6495" - } - Frame { - msec: 3392 - hash: "fcb6b78276df1a6c839d6f30f8fe6495" - } - Frame { - msec: 3408 - hash: "b066cbbb00a4bef4e730ea8131c2bbe5" - } - Frame { - msec: 3424 - hash: "b066cbbb00a4bef4e730ea8131c2bbe5" - } - Frame { - msec: 3440 - hash: "b066cbbb00a4bef4e730ea8131c2bbe5" - } - Frame { - msec: 3456 - hash: "b066cbbb00a4bef4e730ea8131c2bbe5" - } - Frame { - msec: 3472 - hash: "e6d801e738ed3265b0127b79da7e8ec5" - } - Frame { - msec: 3488 - hash: "e6d801e738ed3265b0127b79da7e8ec5" - } - Frame { - msec: 3504 - hash: "e6d801e738ed3265b0127b79da7e8ec5" - } - Frame { - msec: 3520 - hash: "e6d801e738ed3265b0127b79da7e8ec5" - } - Frame { - msec: 3536 - hash: "e6d801e738ed3265b0127b79da7e8ec5" - } - Frame { - msec: 3552 - hash: "5b9a527ce399d0467b29c8813bbc7e6a" - } - Frame { - msec: 3568 - hash: "5b9a527ce399d0467b29c8813bbc7e6a" - } - Frame { - msec: 3584 - hash: "5b9a527ce399d0467b29c8813bbc7e6a" - } - Frame { - msec: 3600 - hash: "5b9a527ce399d0467b29c8813bbc7e6a" - } - Frame { - msec: 3616 - hash: "e9dd6c70c22d7b100a07ee837add697b" - } - Frame { - msec: 3632 - hash: "e9dd6c70c22d7b100a07ee837add697b" - } - Frame { - msec: 3648 - hash: "e9dd6c70c22d7b100a07ee837add697b" - } - Frame { - msec: 3664 - hash: "e9dd6c70c22d7b100a07ee837add697b" - } - Frame { - msec: 3680 - hash: "92e553a6e8385ceba6804075e5ed6add" - } - Frame { - msec: 3696 - hash: "92e553a6e8385ceba6804075e5ed6add" - } - Frame { - msec: 3712 - hash: "92e553a6e8385ceba6804075e5ed6add" - } - Frame { - msec: 3728 - hash: "92e553a6e8385ceba6804075e5ed6add" - } - Frame { - msec: 3744 - hash: "92e553a6e8385ceba6804075e5ed6add" - } - Frame { - msec: 3760 - hash: "eafdc541e5bb2937cc472511758bd494" - } - Frame { - msec: 3776 - hash: "eafdc541e5bb2937cc472511758bd494" - } - Frame { - msec: 3792 - hash: "eafdc541e5bb2937cc472511758bd494" - } - Frame { - msec: 3808 - hash: "eafdc541e5bb2937cc472511758bd494" - } - Frame { - msec: 3824 - hash: "3d207efb5d563ec0a8640091710aa9fd" - } - Frame { - msec: 3840 - hash: "3d207efb5d563ec0a8640091710aa9fd" - } - Frame { - msec: 3856 - image: "elide2.4.png" - } - Frame { - msec: 3872 - hash: "3d207efb5d563ec0a8640091710aa9fd" - } - Frame { - msec: 3888 - hash: "d837a68f291b44c8ea4b92088ebccb2c" - } - Frame { - msec: 3904 - hash: "d837a68f291b44c8ea4b92088ebccb2c" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.0.png deleted file mode 100644 index f71c1ac..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.1.png deleted file mode 100644 index 93c16dc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.2.png deleted file mode 100644 index acec1ee..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.3.png deleted file mode 100644 index f380c08..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.4.png deleted file mode 100644 index 18142dd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.5.png deleted file mode 100644 index c7f59b8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml deleted file mode 100644 index 6e802f4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml +++ /dev/null @@ -1,1323 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "multilength.0.png" - } - Frame { - msec: 32 - hash: "fde26fa3d17fb92d676afe61ca6a2170" - } - Frame { - msec: 48 - hash: "54c7a0ea10fa212959dc4f7606c31f3c" - } - Frame { - msec: 64 - hash: "e73c4521144b2c810f15239e6d8fa468" - } - Frame { - msec: 80 - hash: "31a68bfd57846795db57bb30d1d60341" - } - Frame { - msec: 96 - hash: "55edcaeed37c1390eee2619d52a2eb03" - } - Frame { - msec: 112 - hash: "2c27d9c3dc215c68630495e255c1670e" - } - Frame { - msec: 128 - hash: "b27dd9260f6da3ab414076e83bf5a2bd" - } - Frame { - msec: 144 - hash: "bfcbba7e970af922ee87fbbe936eaa84" - } - Frame { - msec: 160 - hash: "75af84ff6f21648737cef4a215410cc6" - } - Frame { - msec: 176 - hash: "71fd1fe13a14632ff54ad7a87be68bca" - } - Frame { - msec: 192 - hash: "69f553a1893403dc6fc82d3c9c47f501" - } - Frame { - msec: 208 - hash: "9456b12d49cc2a1f9212dba98a83c8ab" - } - Frame { - msec: 224 - hash: "cfd826f91f6f880816d505c93a8f125a" - } - Frame { - msec: 240 - hash: "d8e3291525eff9f905102ed7654f986b" - } - Frame { - msec: 256 - hash: "044c1f37e37a68fbfbb9ddbc2da4300a" - } - Frame { - msec: 272 - hash: "d640cba5f14d9c065bec6f6c23f2831f" - } - Frame { - msec: 288 - hash: "9e15b68dace4b39b937dfea8777ae503" - } - Frame { - msec: 304 - hash: "7ea72711e3f8bdd1087181e127e093c7" - } - Frame { - msec: 320 - hash: "c45dae8eb1768c8aba2d92dea4f268a2" - } - Frame { - msec: 336 - hash: "181ebf6597be2d9e54c1d01a5ab54b46" - } - Frame { - msec: 352 - hash: "094b6cc486b60882836a9ba35411ae7d" - } - Frame { - msec: 368 - hash: "031f1bcb864b4507bf93caab88756317" - } - Frame { - msec: 384 - hash: "42b4d89a1026327f180ecc414dcd0ef0" - } - Frame { - msec: 400 - hash: "a99c5d1d434687e2f16e7054bcff8a69" - } - Frame { - msec: 416 - hash: "91cf18d3f8538ee8550f7e190911b072" - } - Frame { - msec: 432 - hash: "1c11a328d74bc7bf77da10f094db8d4a" - } - Frame { - msec: 448 - hash: "e4da6dc99c962e8f37dc8d99669616d0" - } - Frame { - msec: 464 - hash: "628d4c1455f58a304887050c0552499a" - } - Frame { - msec: 480 - hash: "dd17a403f45bcd1001cb08e7f4ae8443" - } - Frame { - msec: 496 - hash: "1ed042d0289fc6167143ddcd92f708f6" - } - Frame { - msec: 512 - hash: "b55abb6249925cf06439b3177310dcfc" - } - Frame { - msec: 528 - hash: "251c3346640a2aa7a9c18ca84ff2d5bb" - } - Frame { - msec: 544 - hash: "6f5e18d84c4107213599b57bf7284c4b" - } - Frame { - msec: 560 - hash: "2179c1d7d7acb3c2f6354b493cfe74e0" - } - Frame { - msec: 576 - hash: "bbc757e8f3c08f93ffcdd68b392c8cdb" - } - Frame { - msec: 592 - hash: "7eefd9c7291c1a23679efd42f2c29539" - } - Frame { - msec: 608 - hash: "fa375510d3850614aebceb2bc31ab4de" - } - Frame { - msec: 624 - hash: "f643c5ba39bb90f396f00c0a9df995c8" - } - Frame { - msec: 640 - hash: "c6b7792f780b00b1b07c0ce948dff13b" - } - Frame { - msec: 656 - hash: "d43d82ee9b0da8f237469c555b48bee8" - } - Frame { - msec: 672 - hash: "addaa9d2aa8f54d6a4e82dc7e029f19d" - } - Frame { - msec: 688 - hash: "b12af2fd05a1ccd4664c5093456bae01" - } - Frame { - msec: 704 - hash: "982d3505c51fc1bac026c744e2d1db11" - } - Frame { - msec: 720 - hash: "a67a0705ce893dcafdcfc3a7fe71f608" - } - Frame { - msec: 736 - hash: "6e00f746695ca67fb4c4462740b13c8f" - } - Frame { - msec: 752 - hash: "bc4235d556a1e18d591b9afd87b29826" - } - Frame { - msec: 768 - hash: "830ebf4b9214f1dc31975c83cf49d31e" - } - Frame { - msec: 784 - hash: "bac049ae3d6676db8bca99620c9f5bd3" - } - Frame { - msec: 800 - hash: "0f9623c23e4e45126078c3c93015d26c" - } - Frame { - msec: 816 - hash: "bedde76baa8905970ea5fa8da62355a6" - } - Frame { - msec: 832 - hash: "018b9b1444d921b8cfd823265556c8f6" - } - Frame { - msec: 848 - hash: "2be3e0693f54ffefd24e44f552d59e3f" - } - Frame { - msec: 864 - hash: "c8c99f68125df2a1f41f6b44fdcc0406" - } - Frame { - msec: 880 - hash: "3e18d6a24a1c6983f3f2ce984d22dbe4" - } - Frame { - msec: 896 - hash: "aa336c4e5ace2b33689ca280de2299db" - } - Frame { - msec: 912 - hash: "fd7245f879bbd72b6e72c563a588eea7" - } - Frame { - msec: 928 - hash: "e484656517fcb5763c0c8992b22efe91" - } - Frame { - msec: 944 - hash: "fbd58b050963fc7cdbd5ae89aa7a4a70" - } - Frame { - msec: 960 - hash: "b47ad6fb8b364e3c2764bf31e62f21e0" - } - Frame { - msec: 976 - image: "multilength.1.png" - } - Frame { - msec: 992 - hash: "ac1a6692030ed80cd34c082ac70ea06e" - } - Frame { - msec: 1008 - hash: "068a6b82a35d94e3db3eae772c7da56a" - } - Frame { - msec: 1024 - hash: "8252bb45e74bc09e1d5e6b3951fbb08e" - } - Frame { - msec: 1040 - hash: "a5d7ad9287238780cb45c61bb70d6cd4" - } - Frame { - msec: 1056 - hash: "e0307f3a1193af0df0cd52d7dac44db9" - } - Frame { - msec: 1072 - hash: "d649cf0c4a768dba1a0380b64bc7e48b" - } - Frame { - msec: 1088 - hash: "3fd512a0860c17abbb6ed71488cd7255" - } - Frame { - msec: 1104 - hash: "26032efe6efd1de4b5fae23ce4e28a0a" - } - Frame { - msec: 1120 - hash: "846652a87d93e397d1a84b187b7aafea" - } - Frame { - msec: 1136 - hash: "4dfdaa030da4c72a0e1a19bfd70b5856" - } - Frame { - msec: 1152 - hash: "365ad99db7302dfe078f4283af13f5ca" - } - Frame { - msec: 1168 - hash: "f378a096243bd2c6f7e33e0baf24716a" - } - Frame { - msec: 1184 - hash: "e972a84715d314e8814cb7fcab1ad379" - } - Frame { - msec: 1200 - hash: "8826dbafd12ba2a7437623c8967f2699" - } - Frame { - msec: 1216 - hash: "effa889b33b97f665a21d6562acc45fc" - } - Frame { - msec: 1232 - hash: "6ebb408651cf5fbb2fa8788e0ec544d6" - } - Frame { - msec: 1248 - hash: "c4f45fd05b7b4f00acf80f768e99af38" - } - Frame { - msec: 1264 - hash: "735a7c461f6b10cd967b03c173bfd81d" - } - Frame { - msec: 1280 - hash: "608cf5ebac88726ffe7e66d763d74e27" - } - Frame { - msec: 1296 - hash: "6322c5aebdf814bfc5bfaef8b6bb4d91" - } - Frame { - msec: 1312 - hash: "730b7cef2e0cf57a4721e77e6849b862" - } - Frame { - msec: 1328 - hash: "13879c0772938e39d820b6fc10e0f7e5" - } - Frame { - msec: 1344 - hash: "0710bf8a2beff02009d4bb02f2404b7b" - } - Frame { - msec: 1360 - hash: "2cd38c2cbf3d8b7eb3a50b9db4bb8f7f" - } - Frame { - msec: 1376 - hash: "4e988a74a3846171f86d4d69ce3407d9" - } - Frame { - msec: 1392 - hash: "82cc4b40fe1190de5a2cbbf3f11ac7b0" - } - Frame { - msec: 1408 - hash: "f15bd345b992b39167165a640ad45794" - } - Frame { - msec: 1424 - hash: "be5ca66da00327ecc9f5dde2aa3660d2" - } - Frame { - msec: 1440 - hash: "f97a1e863c36477d31a78342c7aa21b7" - } - Frame { - msec: 1456 - hash: "d137a2a6ae95aba3f7a2b2a0560718a5" - } - Frame { - msec: 1472 - hash: "e7529db7cf310e41eb0ac42ab86ae317" - } - Frame { - msec: 1488 - hash: "66914e90881a4a8751ba5391ac41a70b" - } - Frame { - msec: 1504 - hash: "249863a5ef1a14ca0eb4397d206dfc1e" - } - Frame { - msec: 1520 - hash: "26095384b724a5e704c7b627930f4e22" - } - Frame { - msec: 1536 - hash: "98281eed5ae9d9f933e47a8fba8709f1" - } - Frame { - msec: 1552 - hash: "d9b50c54255edb300e36af2648ef8f30" - } - Frame { - msec: 1568 - hash: "9bde860d92f5ec979fa5c274fd1c13a1" - } - Frame { - msec: 1584 - hash: "39c13a42f920f57d9f9fe85ebc4e68fa" - } - Frame { - msec: 1600 - hash: "e80bd130bad05078212089586d6c2731" - } - Frame { - msec: 1616 - hash: "753732b5309fd8dd7daa16761dd7dad0" - } - Frame { - msec: 1632 - hash: "2eb56a98f728b224f7db073c6ea3c3b9" - } - Frame { - msec: 1648 - hash: "21ab167d173e244ffb471faddf704e81" - } - Frame { - msec: 1664 - hash: "9964a0386ae349b909424f588d8decf5" - } - Frame { - msec: 1680 - hash: "cee42f46df4c879fa6fc378481ec728c" - } - Frame { - msec: 1696 - hash: "4779aeed276cbe4112484d189d1baf8b" - } - Frame { - msec: 1712 - hash: "d482cd14db734f5fed2eaec7d8c0c555" - } - Frame { - msec: 1728 - hash: "1f8b0681711c46afcf8af66df6d7caf8" - } - Frame { - msec: 1744 - hash: "44b0e6d69fcd2b7acb499dfdfced026b" - } - Frame { - msec: 1760 - hash: "b6e25c4a276917b7f7f9189e65d965a8" - } - Frame { - msec: 1776 - hash: "07e5da936f8d5c84606fcdc49fc6aca2" - } - Frame { - msec: 1792 - hash: "f27a54a8d37ec62f54e083f1ca65aada" - } - Frame { - msec: 1808 - hash: "074403259022efd08fcbd9d3a3052c79" - } - Frame { - msec: 1824 - hash: "a126762087c8f94beef81216b6010f0c" - } - Frame { - msec: 1840 - hash: "96b8c7cebbb9676ea4f028907de71bbf" - } - Frame { - msec: 1856 - hash: "e6f073522d0af8e504fdb7df971f5e0a" - } - Frame { - msec: 1872 - hash: "9223ed285f322fae3ba2b52afb408586" - } - Frame { - msec: 1888 - hash: "b24575dd4c0b0da0b99a03c46209ed3a" - } - Frame { - msec: 1904 - hash: "5c82bc860f64183e66aead451ee5b893" - } - Frame { - msec: 1920 - hash: "3172ab9c62b0870d6894b13720e54918" - } - Frame { - msec: 1936 - image: "multilength.2.png" - } - Frame { - msec: 1952 - hash: "5f8e85839f9ac82f46a17f871c3fffbc" - } - Frame { - msec: 1968 - hash: "245219fb6c4aa37d8cba7b5e1f74265f" - } - Frame { - msec: 1984 - hash: "b68cfc5366c4ed8d1e5950a1facf0d85" - } - Frame { - msec: 2000 - hash: "dd5c2d2470cc87d57d35ecc9ae8a3528" - } - Frame { - msec: 2016 - hash: "1a15d7f02b35d046305b40f9e6a6839d" - } - Frame { - msec: 2032 - hash: "d44c382ea28d429e6f8bbef9ae17338a" - } - Frame { - msec: 2048 - hash: "63598cb09d5ecbeb991c6db778c5c002" - } - Frame { - msec: 2064 - hash: "b3fcd0180ecd01e2ad0c0114b3dfbf78" - } - Frame { - msec: 2080 - hash: "8d441044f5f10da23708d7ddf0472989" - } - Frame { - msec: 2096 - hash: "6e87518a368c39d68521046773c2f922" - } - Frame { - msec: 2112 - hash: "59e377ccc851ee361e3874ad5ec18e55" - } - Frame { - msec: 2128 - hash: "57a9b0431c7db130bfe4d6603f98c1f5" - } - Frame { - msec: 2144 - hash: "526c93727c6321782a373ea6952a8784" - } - Frame { - msec: 2160 - hash: "fcd0a4605e27ecb0bac18686e7846b3b" - } - Frame { - msec: 2176 - hash: "d697892f9944c67b5aadd7ad641e3ee5" - } - Frame { - msec: 2192 - hash: "f46fd7e568d0995c518749ec0f5a0882" - } - Frame { - msec: 2208 - hash: "31cd2243fb23d4332c02e91f9956f648" - } - Frame { - msec: 2224 - hash: "3b29a9c0121ff127b69abba9c0b13c2c" - } - Frame { - msec: 2240 - hash: "ecd789e744ebb5dee7f25ebb089407bf" - } - Frame { - msec: 2256 - hash: "c99a6dfad8d750b7e67c1e3ef1021cbb" - } - Frame { - msec: 2272 - hash: "82d18b0c193f0ada9cae68e9f6ad5ff5" - } - Frame { - msec: 2288 - hash: "a09e8144b06db76f5849561d880f037e" - } - Frame { - msec: 2304 - hash: "3e6922ca54c809a32ed5ef72e19d7ff0" - } - Frame { - msec: 2320 - hash: "28e46da32bf34b3e1cd3d351e4c40317" - } - Frame { - msec: 2336 - hash: "297aeeaadc5f3268d95320bc3b33a429" - } - Frame { - msec: 2352 - hash: "31721528cdb17b03d3d6ca9f9a91370b" - } - Frame { - msec: 2368 - hash: "52fd1721330321daaea0b56122a72e5b" - } - Frame { - msec: 2384 - hash: "739c5179b9739021dbb522d01812388c" - } - Frame { - msec: 2400 - hash: "4ae07f58d3a514f5c08f314c5dd445c4" - } - Frame { - msec: 2416 - hash: "4305ea97d47bac3fb0eebf9181b3ce48" - } - Frame { - msec: 2432 - hash: "21c99059dba068bc145896217cc0883c" - } - Frame { - msec: 2448 - hash: "0a514ae5d36acc07c7809a7b4f21ed8e" - } - Frame { - msec: 2464 - hash: "550ce887f462ace686bc6a9021c5cb73" - } - Frame { - msec: 2480 - hash: "b65857dcfa0b1281dd5b9821a12dd8e8" - } - Frame { - msec: 2496 - hash: "5a6bb448a570e1a3eef142b8054f3717" - } - Frame { - msec: 2512 - hash: "b38e2f6b4063e1b8a40292017c5ed4ec" - } - Frame { - msec: 2528 - hash: "fa7545e6e3fc92d62af2f7651077da5b" - } - Frame { - msec: 2544 - hash: "ebf0c79720a5692b761b62c4ba360875" - } - Frame { - msec: 2560 - hash: "cb5356376d97308a4d102c9a53e93abe" - } - Frame { - msec: 2576 - hash: "879f434f4901bdcb166294336c60e26a" - } - Frame { - msec: 2592 - hash: "3ab575ac04bdd455346c0460aed413a0" - } - Frame { - msec: 2608 - hash: "8f08366cb474ca2a1988ebba9d65ecaa" - } - Frame { - msec: 2624 - hash: "2939cf0235f98aeaf48b3f28964cdddd" - } - Frame { - msec: 2640 - hash: "9cf4b339914e48f896dda17e08759472" - } - Frame { - msec: 2656 - hash: "3f5568ac7a4386f1d5072f1cda0c35b8" - } - Frame { - msec: 2672 - hash: "107edbf8181f79cd7847d0154b6eda11" - } - Frame { - msec: 2688 - hash: "9254497b95b89a7d40903edb04a3764a" - } - Frame { - msec: 2704 - hash: "7e7d25a2ee3fbfd67a3b8fecb9fe9202" - } - Frame { - msec: 2720 - hash: "03759f59bbd2be573acd6c03eb088edd" - } - Frame { - msec: 2736 - hash: "58689762be6c7d3d6de6f23580ec8886" - } - Frame { - msec: 2752 - hash: "0d4e315f9b079a30e6a4294a667f9ebc" - } - Frame { - msec: 2768 - hash: "3f3dfa1c8d160238dae2da79a6a569f3" - } - Frame { - msec: 2784 - hash: "b3cd7c3034e2a34c4ae9ed7f3144b2cc" - } - Frame { - msec: 2800 - hash: "c27d3a9057d1f15c6e0b2d427ac12ad2" - } - Frame { - msec: 2816 - hash: "9b25ab315d9bfc582e41c05e88812cbe" - } - Frame { - msec: 2832 - hash: "e75671bfb99741dcff476690ede42166" - } - Frame { - msec: 2848 - hash: "7dd3307fb41277ebcc4339cdb7747d7c" - } - Frame { - msec: 2864 - hash: "a148bce140f1637e27ae5f0207b75351" - } - Frame { - msec: 2880 - hash: "64e57a31c1baa16bcf47f2202fd6e2ed" - } - Frame { - msec: 2896 - image: "multilength.3.png" - } - Frame { - msec: 2912 - hash: "83381c54b1923356c403cad2ae2c3519" - } - Frame { - msec: 2928 - hash: "e110f28619c2ec7c1c8d479793b93e54" - } - Frame { - msec: 2944 - hash: "996a9a698f1a7c673eeef67501d7b81b" - } - Frame { - msec: 2960 - hash: "6cf2465c8b7c70343a26e981e6492212" - } - Frame { - msec: 2976 - hash: "3a9078adf3d4ca207c97b62ad525998f" - } - Frame { - msec: 2992 - hash: "0bf0d9a6a202119daa6a44f17d03b9ed" - } - Frame { - msec: 3008 - hash: "6dfadc21810c9176dad599a6f7f672b9" - } - Frame { - msec: 3024 - hash: "f1f866c6245bd6fd8141abfb8a040d46" - } - Frame { - msec: 3040 - hash: "84329287c7555bc6207039ea632632b2" - } - Frame { - msec: 3056 - hash: "da7e80527f58c93bce9267958ce4c5d7" - } - Frame { - msec: 3072 - hash: "cd8eea7543ebc42971b3f41ea21dd4ed" - } - Frame { - msec: 3088 - hash: "b9abb526dc3447370d847a5bca868b50" - } - Frame { - msec: 3104 - hash: "b8d63ac8331a9375ca06adacb56d12ea" - } - Frame { - msec: 3120 - hash: "20fcdd73a4cc2abebbc462c32fb9b2c8" - } - Frame { - msec: 3136 - hash: "3f656f80771828ee6696a2e0a0626ae4" - } - Frame { - msec: 3152 - hash: "0d99110edca4f8ec544d10d680d27092" - } - Frame { - msec: 3168 - hash: "48026f803bd17f56d13dd946fb359e3a" - } - Frame { - msec: 3184 - hash: "40759d794139327e2e66685c9fcb047b" - } - Frame { - msec: 3200 - hash: "419953a3f882008e82bd733e63e66ab6" - } - Frame { - msec: 3216 - hash: "ddcd288b0a825ef6899755fbad56f2dd" - } - Frame { - msec: 3232 - hash: "bc203d9f0f32efdd177353b9589bd127" - } - Frame { - msec: 3248 - hash: "a4ae6c449b53545a683cd33bc9274d59" - } - Frame { - msec: 3264 - hash: "59e7c218b5a1b857469972f966489a43" - } - Frame { - msec: 3280 - hash: "521fc5833ab0e3088200e1fea9a887b0" - } - Frame { - msec: 3296 - hash: "bd2386f85afb7516d147bff4c07e239f" - } - Frame { - msec: 3312 - hash: "5298fdee07ff2ff34121f064fed3db4e" - } - Frame { - msec: 3328 - hash: "311a8f163cebf7bafcb47c8e6db40ed1" - } - Frame { - msec: 3344 - hash: "ad6342bed57257a1616a74e19f2bb484" - } - Frame { - msec: 3360 - hash: "4eb186c5f4963dc72b3dbc3a9da4df65" - } - Frame { - msec: 3376 - hash: "58f1f128001dd1ce0d405595acbaab2a" - } - Frame { - msec: 3392 - hash: "ba4a39b66cac22fceba9c4ecfdbae363" - } - Frame { - msec: 3408 - hash: "bbfde54a4de637bc1c54248e2e342544" - } - Frame { - msec: 3424 - hash: "ddc3b4e87782e0472630e2f9f8a57099" - } - Frame { - msec: 3440 - hash: "1bf1212686520da772fc18ca7684a924" - } - Frame { - msec: 3456 - hash: "706ec5a3b48123d3b5113d55b71f7968" - } - Frame { - msec: 3472 - hash: "62b08db0c3c4f1313bcf4a1e7b90badb" - } - Frame { - msec: 3488 - hash: "ae8409fed9d8919b1af2b4d0eafce670" - } - Frame { - msec: 3504 - hash: "9f6ed6ada78e42f06f33514e363c736f" - } - Frame { - msec: 3520 - hash: "97e9a504c2c4ba5329a616810fc19505" - } - Frame { - msec: 3536 - hash: "348b6d15b8ef6862818b4fbdb938f241" - } - Frame { - msec: 3552 - hash: "c1845df466f5690a8d7a439d33a27f7d" - } - Frame { - msec: 3568 - hash: "aee2486331275b9f4116b61588ce169e" - } - Frame { - msec: 3584 - hash: "efca3eaffa3421d68d788ee3f0ec068c" - } - Frame { - msec: 3600 - hash: "35f2940b51ed8c4734c23a43bf6fe448" - } - Frame { - msec: 3616 - hash: "92b7d34480b7fab4dd39bbccfa8455a5" - } - Frame { - msec: 3632 - hash: "4408049f405ecf5c3c696780390e2155" - } - Frame { - msec: 3648 - hash: "29aa30678d5c87c79ac67198e4dd7bd4" - } - Frame { - msec: 3664 - hash: "2f88ac156017b20795f01716d9e9f2e8" - } - Frame { - msec: 3680 - hash: "4d72dec4a2e8edcff806c11f3742cf07" - } - Frame { - msec: 3696 - hash: "3f5ebad282a4aa9c03a17d32aea03151" - } - Frame { - msec: 3712 - hash: "a8d289d15353d45159607377de285732" - } - Frame { - msec: 3728 - hash: "af2d2fcfa4510e0d26ea90fc7711b0cf" - } - Frame { - msec: 3744 - hash: "aed6897bc8b2163822a052e1cc9ad36b" - } - Frame { - msec: 3760 - hash: "bf7077614b5045f79c8697bab1e83839" - } - Frame { - msec: 3776 - hash: "e5c8c0bf1fce3a964f4bb911ffee0bdb" - } - Frame { - msec: 3792 - hash: "bcfe4aebc880809f56d480f23b17dfd1" - } - Frame { - msec: 3808 - hash: "2ce342f7864ab26124093edc88585c97" - } - Frame { - msec: 3824 - hash: "8be15d95125e03a0282e897096abb443" - } - Frame { - msec: 3840 - hash: "a4486f30becceca3ec3cc5c8718af82a" - } - Frame { - msec: 3856 - image: "multilength.4.png" - } - Frame { - msec: 3872 - hash: "38de7ed0d05015f9b06a4bb278fc96c1" - } - Frame { - msec: 3888 - hash: "1cd9a38bb1fc8b06d5c05cd28719d4b3" - } - Frame { - msec: 3904 - hash: "682ba6e2eb83ce1b6bf8526b21cf2694" - } - Frame { - msec: 3920 - hash: "3da075fccb3d26f30530a69f86d999a8" - } - Frame { - msec: 3936 - hash: "b0fb39798dfa94d0898e5e0d7afd1277" - } - Frame { - msec: 3952 - hash: "7e41bbe233d6bc7354ba4516edec4841" - } - Frame { - msec: 3968 - hash: "1d3f24f20ba123940d97f09949cfcc0f" - } - Frame { - msec: 3984 - hash: "abc7a82d91e28c5a3ee9ffd663c8c7bd" - } - Frame { - msec: 4000 - hash: "e685c0218a3d80584013806707693eb0" - } - Frame { - msec: 4016 - hash: "6ff98dc7eb0453f058a5d4cadf86ddf4" - } - Frame { - msec: 4032 - hash: "5a3d0c2c95cb85678f32a8b68dc8d399" - } - Frame { - msec: 4048 - hash: "d5bde2f063d524ac0e7bcef26d543668" - } - Frame { - msec: 4064 - hash: "64e7bc5e0798ecd009fd05cbc1523977" - } - Frame { - msec: 4080 - hash: "3c87a9ee92661da2aacc09b71dd393ca" - } - Frame { - msec: 4096 - hash: "bf4806e0e8cb73cded37ca97966078d7" - } - Frame { - msec: 4112 - hash: "a5956031dac15dba64bf49c9d308c9c7" - } - Frame { - msec: 4128 - hash: "51395284acf731266eaed86387ad768a" - } - Frame { - msec: 4144 - hash: "489ab28b773d48b8fdf9cf674b1da87f" - } - Frame { - msec: 4160 - hash: "4c6a5b7442a4ff241329157657b8c9f7" - } - Frame { - msec: 4176 - hash: "629faa780676c705ca8349b8765ed38b" - } - Frame { - msec: 4192 - hash: "28654cb8801bea906a4f181004ed0e85" - } - Frame { - msec: 4208 - hash: "2abf774ccf33e6d0af4a8c4154e2ab2a" - } - Frame { - msec: 4224 - hash: "f1cbdf35081b08b676d1661834829c9a" - } - Frame { - msec: 4240 - hash: "a49ef4ec40d59be1e872c6f8bcdbbb4c" - } - Frame { - msec: 4256 - hash: "dab02c8afd3914177bfdf29e68b54291" - } - Frame { - msec: 4272 - hash: "7bdca9571a346117277b0de6fa1f6e5e" - } - Frame { - msec: 4288 - hash: "11dc19768b1a4a787f46082a583c068c" - } - Frame { - msec: 4304 - hash: "5e72d13702108d55d650a01c1caf2cfb" - } - Frame { - msec: 4320 - hash: "e5a379841ae54f07d54c4baa78fa7b69" - } - Frame { - msec: 4336 - hash: "88d2363709d377cad251dc956b0ff866" - } - Frame { - msec: 4352 - hash: "5e6db7322e69f41d37efdd35a769df4e" - } - Frame { - msec: 4368 - hash: "cc781d136bb48a1a41bd9243327bacc3" - } - Frame { - msec: 4384 - hash: "69612d6379a204fa1e1c6d7b58f78370" - } - Frame { - msec: 4400 - hash: "a81c15225bc81a19e22375532a5457ab" - } - Frame { - msec: 4416 - hash: "a97bb0ac528a1377ef8f6bf655795b69" - } - Frame { - msec: 4432 - hash: "7fa6d66219c66ae8aec43e44626b427a" - } - Frame { - msec: 4448 - hash: "99f47bc80b706692f16c6c5fa3c0c85d" - } - Frame { - msec: 4464 - hash: "55d6cf7f545c74ed59a8bf040f9d5d58" - } - Frame { - msec: 4480 - hash: "1a07d14fa7866c5268e622d0925cbf4d" - } - Frame { - msec: 4496 - hash: "a41b281563c401d0e4ff55f4a3c45e18" - } - Frame { - msec: 4512 - hash: "6bff67c2f53a4e620c63eea539f4abe0" - } - Frame { - msec: 4528 - hash: "a5f06e5ff2fd7f390279f7df822c8297" - } - Frame { - msec: 4544 - hash: "213b174770c13105b89a1d88cd2f0b7c" - } - Frame { - msec: 4560 - hash: "dde34ca92317a54ddaa2f9bff515d91c" - } - Frame { - msec: 4576 - hash: "12446cca2aae19fd721cda11bbb51bae" - } - Frame { - msec: 4592 - hash: "f4d00502cab0a843563fcfd336b74596" - } - Frame { - msec: 4608 - hash: "b6ae2b396adf6068ef3a6027e4b175db" - } - Frame { - msec: 4624 - hash: "370dabffdfc0bebf5d25abfaefff399c" - } - Frame { - msec: 4640 - hash: "fd496e8c03f85a872bd5ee6e8a85db7f" - } - Frame { - msec: 4656 - hash: "0999335427d63f318e166ea8662c4c22" - } - Frame { - msec: 4672 - hash: "5a4eb9267cd35a71f6c2daaca1a582be" - } - Frame { - msec: 4688 - hash: "4270d7a26d56f1d805b647c5ec7cc6ce" - } - Frame { - msec: 4704 - hash: "334f1e3c8520196016352bf4d00fbc18" - } - Frame { - msec: 4720 - hash: "2bf704e85c197c776a188927a80deaad" - } - Frame { - msec: 4736 - hash: "e2c5c42e55dc185977bd5049eb4bd3d2" - } - Frame { - msec: 4752 - hash: "7ead4353fdc135d6b959be0ce22955e3" - } - Frame { - msec: 4768 - hash: "ab42998e1e17ac8637d76dc0cf356c7a" - } - Frame { - msec: 4784 - hash: "030f34f8caf0814eaaf18ea5fda669dd" - } - Frame { - msec: 4800 - hash: "6e12a04ac25553142875a10a5c8e46e8" - } - Frame { - msec: 4816 - image: "multilength.5.png" - } - Frame { - msec: 4832 - hash: "e2f2ab9a3fe6a3a375341010c91017bd" - } - Frame { - msec: 4848 - hash: "9301889debd3932772a1c81314eb1ef2" - } - Frame { - msec: 4864 - hash: "671feec6eb1166c612a22405db9c044e" - } - Frame { - msec: 4880 - hash: "648215ffa5448dc173165d24389c014e" - } - Frame { - msec: 4896 - hash: "a70806b54806f29d0e240cd63d86b77e" - } - Frame { - msec: 4912 - hash: "4bf9ffe611c52c21fbdb84221d3d4dba" - } - Frame { - msec: 4928 - hash: "ae78202b0ebd4c13a92d468a7470bdc9" - } - Frame { - msec: 4944 - hash: "fb0c3d6c3e3479abb6a1b44b1a5f3785" - } - Frame { - msec: 4960 - hash: "48906c21e17479807f736d7f7713f6b0" - } - Frame { - msec: 4976 - hash: "a661a461542b3078dd1dad25bf6d8414" - } - Frame { - msec: 4992 - hash: "387deb0df0c59cfb120313946c4e5c9a" - } - Frame { - msec: 5008 - hash: "f2473c6e4877f3035f0b511ff2d27684" - } - Frame { - msec: 5024 - hash: "f88d3767ccd773930ef9d99dfd0e8c17" - } - Frame { - msec: 5040 - hash: "aef8a93d2caafec839d425184176bcc7" - } - Frame { - msec: 5056 - hash: "e73c4521144b2c810f15239e6d8fa468" - } - Frame { - msec: 5072 - hash: "a66856750cc5aa7a21ffb6e0a9c94306" - } - Frame { - msec: 5088 - hash: "22bce57e360790c356564a0568ec3bee" - } - Frame { - msec: 5104 - hash: "55edcaeed37c1390eee2619d52a2eb03" - } - Frame { - msec: 5120 - hash: "51d8495324954f1bd62caa67d15e9ab2" - } - Frame { - msec: 5136 - hash: "bfcbba7e970af922ee87fbbe936eaa84" - } - Frame { - msec: 5152 - hash: "a7652fe427ca7b8ef37dbf9a6097f8af" - } - Frame { - msec: 5168 - hash: "d5ab00fc274a7fd568af514c55f24e04" - } - Frame { - msec: 5184 - hash: "71fd1fe13a14632ff54ad7a87be68bca" - } - Frame { - msec: 5200 - hash: "761f9b41ce4136619f89c73746ab176e" - } - Frame { - msec: 5216 - hash: "cfd826f91f6f880816d505c93a8f125a" - } - Frame { - msec: 5232 - hash: "33fbc77640cc73c17a0f68db5f70ddec" - } - Frame { - msec: 5248 - hash: "ef925f6709f7603d8acddbbe3e3b0426" - } - Frame { - msec: 5264 - hash: "044c1f37e37a68fbfbb9ddbc2da4300a" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml deleted file mode 100644 index e52c609..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide.qml +++ /dev/null @@ -1,32 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: childrenRect.width - height: childrenRect.height - Column { - width: 80 - height: myText.height*4 - TestText { - elide: "ElideLeft" - text: "aaa bbb ccc ddd eee fff" - width: 80 - id: myText - } - TestText { - elide: "ElideMiddle" - text: "aaa bbb ccc ddd eee fff" - width: 80 - } - TestText { - elide: "ElideRight" - text: "aaa bbb ccc ddd eee fff" - width: 80 - } - TestText { - elide: "ElideNone" - text: "aaa bbb ccc ddd eee fff" - width: 80 - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml deleted file mode 100644 index 0370a73..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/elide2.qml +++ /dev/null @@ -1,13 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: 500 - height: 100 - - TestText { - NumberAnimation on width { from: 500; to: 0; loops: Animation.Infinite; duration: 5000 } - elide: Text.ElideRight - text: 'Here is some very long text that we should truncate when sizing window' - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml deleted file mode 100644 index db991a2..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/multilength.qml +++ /dev/null @@ -1,20 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: 500 - height: 50 - color: "lightBlue" - Rectangle { - width: myText.width - height: myText.height - color: "white" - anchors.centerIn: parent - TestText { - id: myText - NumberAnimation on width { from: 500; to: 0; loops: Animation.Infinite; duration: 5000 } - elide: "ElideRight" - text: "Brevity is the soul of wit, and tediousness the limbs and outward flourishes.\x9CBrevity is a great charm of eloquence.\x9CBe concise!\x9CSHHHHHHHHHHHHHHHHHHHHHHHHHHHH" - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/BorderedText.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/BorderedText.qml deleted file mode 100644 index fe4e2e7..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/BorderedText.qml +++ /dev/null @@ -1,9 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -TestText { - property color bcolor: "blue" - font.pixelSize: 10 - text: "The quick brown fox\njumps over\nthe lazy dog." - Rectangle { id: border; color: "transparent"; border.color: bcolor; anchors.fill: parent; opacity: 0.2 } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.0.png deleted file mode 100644 index cfa61a9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml deleted file mode 100644 index fdf2310..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext2.0.png deleted file mode 100644 index be676c0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext2.qml deleted file mode 100644 index f6cddc4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext2.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext2.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext3.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext3.0.png deleted file mode 100644 index df2fe2f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext3.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext3.qml deleted file mode 100644 index 13f413a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext3.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext3.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.0.png deleted file mode 100644 index 76e5b9f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml deleted file mode 100644 index 3da391d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "richtext.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext2.0.png deleted file mode 100644 index bb65ade..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext2.qml deleted file mode 100644 index afae3f8..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext2.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "richtext2.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.0.png deleted file mode 100644 index b4e1d3a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.qml deleted file mode 100644 index fdf2310..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext2.0.png deleted file mode 100644 index 4177b9e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext2.qml deleted file mode 100644 index f6cddc4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext2.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext2.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext3.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext3.0.png deleted file mode 100644 index 04e0f5e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext3.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext3.qml deleted file mode 100644 index 13f413a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext3.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext3.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.0.png deleted file mode 100644 index 36e5d35..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.qml deleted file mode 100644 index 3da391d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "richtext.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext2.0.png deleted file mode 100644 index 34f8e38..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext2.qml deleted file mode 100644 index afae3f8..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext2.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "richtext2.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png deleted file mode 100644 index 89195ae..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml deleted file mode 100644 index fdf2310..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext2.0.png deleted file mode 100644 index 0574f63..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext2.qml deleted file mode 100644 index f6cddc4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext2.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext2.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext3.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext3.0.png deleted file mode 100644 index 0d3c672..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext3.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext3.qml deleted file mode 100644 index 13f413a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext3.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "plaintext3.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png deleted file mode 100644 index 6a48728..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml deleted file mode 100644 index 3da391d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "richtext.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext2.0.png deleted file mode 100644 index 34f8e38..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext2.qml deleted file mode 100644 index afae3f8..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext2.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "richtext2.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml deleted file mode 100644 index 64ab65b..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml +++ /dev/null @@ -1,101 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - id: s; width: 620; height: 360; color: "lightsteelblue" - property string text: "Jackdaws love my big sphinx of quartz." - - Column { - spacing: 8 - TestText { - text: s.text; horizontalAlignment: Text.AlignLeft; width: s.width - } - TestText { - font.pixelSize: 18 - text: s.text; horizontalAlignment: Text.AlignHCenter; verticalAlignment: Text.AlignVCenter; width: s.width; - } - TestText { - font.pixelSize: 24 - text: s.text; horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignBottom; width: s.width; - } - Grid{ - columns: 2 - spacing: 4 - TestText { - text: s.text; color: "red"; smooth: true - } - TestText { - text: s.text; font.capitalization: "AllUppercase" - } - TestText { - text: s.text; font.underline: true - } - TestText { - text: s.text; font.overline: true; smooth: true - } - TestText { - text: s.text; font.strikeout: true - } - TestText { - text: s.text; font.underline: true; font.overline: true; font.strikeout: true - } - TestText { - text: s.text; style: Text.Outline; styleColor: "white" - } - TestText { - text: s.text; style: Text.Sunken; styleColor: "gray" - } - TestText { - text: s.text; style: Text.Raised; styleColor: "yellow" - } - TestText { - text: s.text; font.letterSpacing: 2 - } - } - TestText { - text: s.text; font.underline: true; font.letterSpacing: 2; font.capitalization: "AllUppercase"; color: "blue" - } - TestText { - text: s.text; font.overline: true; font.wordSpacing: 25; font.capitalization: "Capitalize"; color: "green" - } - Row{ - height: childrenRect.height - spacing: 4 - TestText { - text: s.text; elide: Text.ElideLeft; width: 200 - } - TestText { - text: s.text; elide: Text.ElideMiddle; width: 200 - } - TestText { - text: s.text; elide: Text.ElideRight; width: 200 - } - } - Row{ - height: childrenRect.height - spacing: 4 - TestText{ - text: s.text; elide: Text.ElideLeft; width: 200; wrapMode: Text.WordWrap - } - TestText { - text: s.text; elide: Text.ElideMiddle; width: 200; wrapMode: Text.WordWrap - } - TestText { - text: s.text; elide: Text.ElideRight; width: 200; wrapMode: Text.WordWrap - } - } - Row{ - height: childrenRect.height - spacing: 4 - TestText { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere - } - TestText { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap - } - TestText { -text: s.text; font.pixelSize: 18; style: Text.Outline; styleColor: "white"; wrapMode: Text.WordWrap; width: 200 - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext2.qml deleted file mode 100644 index 01de1f0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext2.qml +++ /dev/null @@ -1,23 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: 400; height: 200 - - Row { - spacing: 20 - anchors.centerIn: parent - TestText { - text: "First line\nSecond line"; wrapMode: Text.Wrap - } - TestText { - text: "First line\nSecond line"; width: 70 - } - TestText { - text: "First Second\nThird Fourth"; wrapMode: Text.Wrap; width: 50 - } - TestText { - text: "First line
Second line"; textFormat: Text.StyledText - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext3.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext3.qml deleted file mode 100644 index 10a2d9a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext3.qml +++ /dev/null @@ -1,62 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: main - width: 620; height: 280 - - - Grid { - x: 4; y: 4 - spacing: 8 - columns: 4 - - Column { - spacing: 4 - BorderedText { } - BorderedText { horizontalAlignment: Text.AlignHCenter } - BorderedText { horizontalAlignment: Text.AlignRight } - } - - Column { - spacing: 4 - BorderedText { wrapMode: Text.Wrap } - BorderedText { horizontalAlignment: Text.AlignHCenter; wrapMode: Text.Wrap } - BorderedText { horizontalAlignment: Text.AlignRight; wrapMode: Text.Wrap } - } - - Column { - spacing: 4 - BorderedText { wrapMode: Text.Wrap; elide: Text.ElideRight } - BorderedText { horizontalAlignment: Text.AlignHCenter; wrapMode: Text.Wrap; elide: Text.ElideRight } - BorderedText { horizontalAlignment: Text.AlignRight; wrapMode: Text.Wrap; elide: Text.ElideRight } - } - - Column { - spacing: 4 - BorderedText { width: 230; wrapMode: Text.Wrap; elide: Text.ElideRight } - BorderedText { width: 230; horizontalAlignment: Text.AlignHCenter; wrapMode: Text.Wrap; elide: Text.ElideRight } - BorderedText { width: 230; horizontalAlignment: Text.AlignRight; wrapMode: Text.Wrap; elide: Text.ElideRight } - } - - Column { - spacing: 4 - BorderedText { width: 120; wrapMode: Text.Wrap; elide: Text.ElideRight } - BorderedText { width: 120; horizontalAlignment: Text.AlignHCenter; wrapMode: Text.Wrap; elide: Text.ElideRight } - BorderedText { width: 120; horizontalAlignment: Text.AlignRight; wrapMode: Text.Wrap; elide: Text.ElideRight } - } - - Column { - spacing: 4 - BorderedText { width: 120; wrapMode: Text.Wrap } - BorderedText { width: 120; horizontalAlignment: Text.AlignHCenter; wrapMode: Text.Wrap } - BorderedText { width: 120; horizontalAlignment: Text.AlignRight; wrapMode: Text.Wrap } - } - - Column { - spacing: 4 - BorderedText { width: 120 } - BorderedText { width: 120; horizontalAlignment: Text.AlignHCenter } - BorderedText { width: 120; horizontalAlignment: Text.AlignRight } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml deleted file mode 100644 index a748b68..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml +++ /dev/null @@ -1,47 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - id: s; width: 620; height: 300; color: "lightsteelblue" - property string text: "The quick brown fox jumps over the lazy dog." - - Column { - spacing: 6 - TestText { - text: s.text - } - TestText { - text: s.text; font.pixelSize: 18 - } - TestText { - text: s.text; font.pixelSize: 24 - } - TestText { - text: s.text; color: "red"; smooth: true - } - TestText { - text: s.text; font.capitalization: "AllUppercase" - } - TestText { - text: s.text; font.underline: true - } - TestText { - text: s.text; font.overline: true; smooth: true - } - TestText { - text: s.text; font.strikeout: true - } - TestText { - text: s.text; font.underline: true; font.overline: true; font.strikeout: true - } - TestText { - text: s.text; font.letterSpacing: 2 - } - TestText { - text: s.text; font.underline: true; font.letterSpacing: 2; font.capitalization: "AllUppercase"; color: "blue" - } - TestText { - text: s.text; font.overline: true; font.wordSpacing: 25; font.capitalization: "Capitalize"; color: "green" - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext2.qml deleted file mode 100644 index f5e85fa..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext2.qml +++ /dev/null @@ -1,43 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -//This is a continuation of richtext.qml, it was bisected so that it could fit on smaller screens -Rectangle { - id: s; width: 620; height: 300; color: "lightsteelblue" - property string text: "The quick brown fox jumps over the lazy dog." - - Column { - spacing: 6 - TestText { - text: s.text; font.pixelSize: 18; style: Text.Outline; styleColor: "white" - } - TestText { - text: s.text; font.pixelSize: 18; style: Text.Sunken; styleColor: "gray" - } - TestText { - text: s.text; font.pixelSize: 18; style: Text.Raised; styleColor: "yellow" - } - TestText { - text: s.text; horizontalAlignment: Text.AlignLeft; width: s.width - } - TestText { - text: s.text; horizontalAlignment: Text.AlignHCenter; verticalAlignment: Text.AlignVCenter; width: s.width; height: 20 - } - TestText { - text: s.text; horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignBottom; width: s.width; height: 20 - } - Row{ - height: childrenRect.height; - spacing: 4 - TestText { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere - } - TestText { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap - } - TestText { - text: s.text; font.pixelSize: 18; style: Text.Outline; styleColor: "white"; wrapMode: Text.WordWrap; width: 200 - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines.0.png deleted file mode 100644 index c24c7c6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines.qml deleted file mode 100644 index affd3a6..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "newLines.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap.0.png deleted file mode 100644 index 0ba68e5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap.qml deleted file mode 100644 index 410b47d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "newLines_wrap.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap_elide.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap_elide.0.png deleted file mode 100644 index 3f1144b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap_elide.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap_elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap_elide.qml deleted file mode 100644 index 94cf1d2..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/newLines_wrap_elide.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "newLines_wrap_elide.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap.0.png deleted file mode 100644 index f0ad965..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap.qml deleted file mode 100644 index 4b55312..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "wrap.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap_elide.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap_elide.0.png deleted file mode 100644 index 62274ce..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap_elide.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap_elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap_elide.qml deleted file mode 100644 index 7d002ea..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data-X11/wrap_elide.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "wrap_elide.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines.0.png deleted file mode 100644 index c24c7c6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines.qml deleted file mode 100644 index affd3a6..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "newLines.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap.0.png deleted file mode 100644 index 0ba68e5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap.qml deleted file mode 100644 index 410b47d..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "newLines_wrap.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap_elide.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap_elide.0.png deleted file mode 100644 index 3f1144b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap_elide.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap_elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap_elide.qml deleted file mode 100644 index 94cf1d2..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/newLines_wrap_elide.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "newLines_wrap_elide.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap.0.png deleted file mode 100644 index f0ad965..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap.qml deleted file mode 100644 index 4b55312..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "wrap.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap_elide.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap_elide.0.png deleted file mode 100644 index 62274ce..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap_elide.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap_elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap_elide.qml deleted file mode 100644 index 7d002ea..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/data/wrap_elide.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "wrap_elide.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines.qml deleted file mode 100644 index 4e993c6..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines.qml +++ /dev/null @@ -1,13 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: childrenRect.width - height: childrenRect.height - - TestText { - width: 80 - maximumLineCount: 2 - text: "Line1\nLine2\nLine3\nLine4" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines_wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines_wrap.qml deleted file mode 100644 index 5d8f50b..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines_wrap.qml +++ /dev/null @@ -1,14 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: childrenRect.width - height: childrenRect.height - - TestText { - width: 80 - maximumLineCount: 3 - wrapMode: Text.WordWrap - text: "Line1 has a more\nLine2\nLine3\nLine4" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines_wrap_elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines_wrap_elide.qml deleted file mode 100644 index ac7b5cb..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/newLines_wrap_elide.qml +++ /dev/null @@ -1,15 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: childrenRect.width - height: childrenRect.height - - TestText { - width: 80 - maximumLineCount: 3 - wrapMode: Text.WordWrap - elide: Text.ElideRight - text: "Line1 has a more\nLine2\nLine3\nLine4" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/wrap.qml deleted file mode 100644 index 6d72430..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/wrap.qml +++ /dev/null @@ -1,14 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: childrenRect.width - height: childrenRect.height - - TestText { - width: 80 - maximumLineCount: 3 - wrapMode: Text.WordWrap - text: "The quick brown fox jumped over the lazy dog" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/wrap_elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/wrap_elide.qml deleted file mode 100644 index 785c5f5..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/maximumLineCount/wrap_elide.qml +++ /dev/null @@ -1,15 +0,0 @@ -import QtQuick 1.0 -import "../../shared" 1.0 - -Rectangle { - width: childrenRect.width - height: childrenRect.height - - TestText { - width: 80 - maximumLineCount: 3 - wrapMode: Text.WordWrap - elide: Text.ElideRight - text: "The quick brown fox jumped over the lazy dog" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/qtbug_14865.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/qtbug_14865.qml deleted file mode 100644 index 6699076..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/qtbug_14865.qml +++ /dev/null @@ -1,18 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Rectangle { - width: 100; height: 20 - - TestText { - id: label - objectName: "label" - text: "Hello world!" - width: 10 - } - - Timer { - running: true; interval: 1000 - onTriggered: label.text = "" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml deleted file mode 100644 index 17709ba..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml +++ /dev/null @@ -1,76 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Item { - id:lineedit - property alias text: textEdit.text - - width: 240 + 11 //Should be set manually in most cases - height: textEdit.height + 11 - - Rectangle { - color: 'lightsteelblue' - anchors.fill: parent - } - clip: true - Component.onCompleted: textEdit.cursorPosition = 0; - TestTextEdit { - id:textEdit - cursorDelegate: Item { - Rectangle { - visible: parent.parent.focus - color: "#009BCE" - height: 13 - width: 2 - y: 1 - } - } - property int leftMargin: 6 - property int topMargin: 6 - property int rightMargin: 6 - property int bottomMargin: 6 - x: leftMargin - width: parent.width - leftMargin - rightMargin; - y: 5 - //Below function implements all scrolling logic - onCursorPositionChanged: { - if(cursorRectangle.y < topMargin - textEdit.y){//Cursor went off the front - textEdit.y = topMargin - Math.max(0, cursorRectangle.y); - }else if(cursorRectangle.y > parent.height - topMargin - bottomMargin - textEdit.y){//Cursor went off the end - textEdit.y = topMargin - Math.max(0, cursorRectangle.y - (parent.height - topMargin - bottomMargin) + cursorRectangle.height); - } - } - onHeightChanged: y=topMargin//reset scroll - - text:"" - horizontalAlignment: TextInput.AlignLeft - wrapMode: TextEdit.WordWrap - font.pixelSize:15 - selectionColor: 'steelblue' - } - MouseArea { - //Implements all line edit mouse handling - id: mainMouseArea - anchors.fill: parent; - function translateY(y){ - return y - textEdit.y - } - function translateX(x){ - return x - textEdit.x - } - onPressed: { - textEdit.focus = true; - textEdit.cursorPosition = textEdit.positionAt(translateX(mouse.x), translateY(mouse.y)); - } - onPositionChanged: { - textEdit.moveCursorSelection(textEdit.positionAt(translateX(mouse.x), translateY(mouse.y))); - } - onReleased: { - } - onDoubleClicked: { - textEdit.selectAll() - } - z: textEdit.z + 1 - } - -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml deleted file mode 100644 index 1e0f71a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml +++ /dev/null @@ -1,36 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Rectangle { - resources: [ - Component { id: cursorA - Item { id: cPage; - Behavior on x { NumberAnimation { } } - Behavior on y { NumberAnimation { } } - Behavior on height { NumberAnimation { duration: 200 } } - Rectangle { id: cRectangle; color: "black"; y: 1; width: 1; height: parent.height-2; - Rectangle { id:top; color: "black"; width: 3; height: 1; x: -1; y:0} - Rectangle { id:bottom; color: "black"; width: 3; height: 1; x: -1; anchors.bottom: parent.bottom;} - } - SequentialAnimation on opacity { running: true; loops: Animation.Infinite; - NumberAnimation { to: 0; duration: 500; easing.type: "OutQuad"} - NumberAnimation { to: 1; duration: 500; easing.type: "InQuad"} - } - width: 1; - } - } - ] - width: 400 - height: 200 - color: "white" - TestTextEdit { id: mainText - text: "Hello World" - cursorDelegate: cursorA - focus: true - font.pixelSize: 28 - selectionColor: "lightsteelblue" - selectedTextColor: "deeppink" - color: "forestgreen" - anchors.centerIn: parent - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.0.png deleted file mode 100644 index adbdfa7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.1.png deleted file mode 100644 index d3fbdc6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.2.png deleted file mode 100644 index 9a96d46..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.3.png deleted file mode 100644 index 2026aca..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.4.png deleted file mode 100644 index c435029..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.5.png deleted file mode 100644 index 70f273d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.6.png deleted file mode 100644 index 80b960c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.7.png deleted file mode 100644 index 7247277..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.8.png deleted file mode 100644 index af5a996..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.9.png deleted file mode 100644 index b254164..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml deleted file mode 100644 index 0f3bd2c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/cursorDelegate.qml +++ /dev/null @@ -1,1499 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "cursorDelegate.0.png" - } - Frame { - msec: 32 - hash: "b742ebe441dde1f30dab6d19954a9e8c" - } - Frame { - msec: 48 - hash: "d3be942cfb93c4a5d5aa906410125d02" - } - Frame { - msec: 64 - hash: "062574e74354b104db2ee6d3c3af5802" - } - Frame { - msec: 80 - hash: "575dd420067e4ebe5733eb4e35a447ab" - } - Frame { - msec: 96 - hash: "4213f35c4cd233a08d98ba0380b7ab0a" - } - Frame { - msec: 112 - hash: "505e740aacf4ca7e6ad24367ddad8678" - } - Frame { - msec: 128 - hash: "007e76fb247e11a442802c7cfb4e6a24" - } - Frame { - msec: 144 - hash: "5cf6cb0afffb791da1c4d0fe00cf6326" - } - Frame { - msec: 160 - hash: "aff4097bd39c87c5d1459d99f314dade" - } - Frame { - msec: 176 - hash: "009dc0c6ff28333ac2fdfa3d79ad2fd6" - } - Frame { - msec: 192 - hash: "4bf8e82220ea0d0c4298d5374e149de2" - } - Frame { - msec: 208 - hash: "938a6eea45c4412e847a8700172d80ac" - } - Frame { - msec: 224 - hash: "6502416042993d05dd514119512ed61f" - } - Frame { - msec: 240 - hash: "5d6702b9475e69bda2ed38f6e2d583d9" - } - Frame { - msec: 256 - hash: "8e5fdc8e6cc38089d1e8ff5e91a5c894" - } - Frame { - msec: 272 - hash: "c0249d07bcf25af69bf929b4d5ac00a3" - } - Frame { - msec: 288 - hash: "efe333c2b8cccea0bd7135484049db06" - } - Frame { - msec: 304 - hash: "57e49e9094691a204f7507b0231352b3" - } - Frame { - msec: 320 - hash: "d0a45bd3cfc5e4e6f9a48534c768daba" - } - Frame { - msec: 336 - hash: "6960ab817c67a61af31cc187efe65016" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 352 - hash: "3b0d483ff765f36a196411967b6dfd70" - } - Frame { - msec: 368 - hash: "559713749d65246b185c0c91eb7ad39e" - } - Frame { - msec: 384 - hash: "9aea32722fd4f8b0cde3c06c61cecde6" - } - Frame { - msec: 400 - hash: "25dfa32ce92b6044f5ea68411ab5de5b" - } - Frame { - msec: 416 - hash: "dab689ed2bbe663df309548e615e8621" - } - Frame { - msec: 432 - hash: "26ad44cef380ff9f64c12180fb54c695" - } - Key { - type: 6 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "5e8bbcd46b5692e66963387b80971e90" - } - Frame { - msec: 464 - hash: "747df5357daa951fbedeadf909f9dbf3" - } - Frame { - msec: 480 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 496 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 512 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 528 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 544 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 560 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 576 - hash: "1684711d2c492de2093357168b8726c6" - } - Frame { - msec: 592 - hash: "6d960ca89faec6e3d81f78911b9b5ecf" - } - Frame { - msec: 608 - hash: "1fdd91b57f5832d5c4d797d150892156" - } - Frame { - msec: 624 - hash: "4e0f1ec936cacf3ab6fbc7899a6bc92d" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 640 - hash: "9e67145b58051fd7dc4a18ee0e6a72ad" - } - Frame { - msec: 656 - hash: "14dfb4b356ec851275ddd8e93f04e2d2" - } - Frame { - msec: 672 - hash: "e9b8f691ad62d10877aacb94f98ea308" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "a44b5f63ec1f98b6bc34e95214c9d79e" - } - Frame { - msec: 704 - hash: "6bc0e035c90b74de024d379388fd7014" - } - Frame { - msec: 720 - hash: "61d8f417f7ca5cba2e98a7a7427ea635" - } - Frame { - msec: 736 - hash: "f50adb10f55bcd4c2eb0955f6e1ff78e" - } - Frame { - msec: 752 - hash: "9e160aefac79a9804f6cb8622e45ba71" - } - Frame { - msec: 768 - hash: "6555a0bd60dbbad66283fe37b2f0c362" - } - Frame { - msec: 784 - hash: "0cacc38d86ebf497d31b01556b8a5924" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "b2fe1d5cb5e0a5f07d84ff7a494ae07a" - } - Frame { - msec: 816 - hash: "2c6dbd777bba27b481a8a6ef34d213f9" - } - Frame { - msec: 832 - hash: "989e53620edc6b9b0990545459e7f787" - } - Frame { - msec: 848 - hash: "a89686a7802da3fd07a265a5814255f4" - } - Frame { - msec: 864 - hash: "9f707497eb0c224c8b0a3bba1533217a" - } - Frame { - msec: 880 - hash: "29df155c0b75de8e1bd6361372a51797" - } - Frame { - msec: 896 - hash: "fb7cbeb1e3689cc38acf7a02d671a955" - } - Frame { - msec: 912 - hash: "9045ada282ec37b1681cef89dfcc8f67" - } - Frame { - msec: 928 - hash: "b3816b225eaf5ab49bb31f86ecdd52cb" - } - Frame { - msec: 944 - hash: "0956fccb8e1bf2c218a9e39947846aaa" - } - Frame { - msec: 960 - hash: "01f4ba2e0b4eb018c620efa5e92ec9fe" - } - Frame { - msec: 976 - image: "cursorDelegate.1.png" - } - Frame { - msec: 992 - hash: "c19ec2d067d30a6d42056c9799b0c0c3" - } - Frame { - msec: 1008 - hash: "43a9d066887a89372136619ae8eec100" - } - Frame { - msec: 1024 - hash: "43a9d066887a89372136619ae8eec100" - } - Key { - type: 7 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1040 - hash: "c19ec2d067d30a6d42056c9799b0c0c3" - } - Frame { - msec: 1056 - hash: "8303d8b19e6e5b249aaf2ffbb6d29f91" - } - Frame { - msec: 1072 - hash: "01f4ba2e0b4eb018c620efa5e92ec9fe" - } - Frame { - msec: 1088 - hash: "0956fccb8e1bf2c218a9e39947846aaa" - } - Frame { - msec: 1104 - hash: "b3816b225eaf5ab49bb31f86ecdd52cb" - } - Frame { - msec: 1120 - hash: "9045ada282ec37b1681cef89dfcc8f67" - } - Frame { - msec: 1136 - hash: "fb7cbeb1e3689cc38acf7a02d671a955" - } - Frame { - msec: 1152 - hash: "29df155c0b75de8e1bd6361372a51797" - } - Frame { - msec: 1168 - hash: "9f707497eb0c224c8b0a3bba1533217a" - } - Key { - type: 6 - key: 16777234 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1184 - hash: "9f712a688504fff9719b38c067b32c50" - } - Frame { - msec: 1200 - hash: "24f1467e3be5f4d0509800bef97f4401" - } - Frame { - msec: 1216 - hash: "d56e5fd86addad3bc53417b82ff68829" - } - Frame { - msec: 1232 - hash: "f1c60934ef284840e61fd46c758dd14b" - } - Frame { - msec: 1248 - hash: "7be9fc54278572116f9bd9be8f6994a4" - } - Frame { - msec: 1264 - hash: "0e0ea7ca1b8479d62ae81fb53a1ec264" - } - Frame { - msec: 1280 - hash: "f8b19dbaeec469896a081687d80a2ac4" - } - Key { - type: 7 - key: 16777234 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "a28665925ec121a2bf01733e0a20e18b" - } - Frame { - msec: 1312 - hash: "baa0c601f3d84e344847dcb7f3bd18cf" - } - Frame { - msec: 1328 - hash: "a80d59a1e5af45bc799c19200a3c44ec" - } - Frame { - msec: 1344 - hash: "2a6f833e2fd2930c8ec49016809d8cf6" - } - Frame { - msec: 1360 - hash: "efdc2daad00aaec2c39541261d6d1a98" - } - Frame { - msec: 1376 - hash: "65b75f2a074d4ac5d84fb762d1762231" - } - Frame { - msec: 1392 - hash: "2a170e51a83e902d2699501877225ee3" - } - Frame { - msec: 1408 - hash: "1e4c78e279ff4ab7a875e4d67f68f8ca" - } - Frame { - msec: 1424 - hash: "fd515cf3ec7b987e0e36c02f1da5b8a7" - } - Frame { - msec: 1440 - hash: "54126910ea7a303ea3e7726309d8bf39" - } - Frame { - msec: 1456 - hash: "89263867df0cfa623f80e1578532d98d" - } - Frame { - msec: 1472 - hash: "1bf04aafab1177182eec9a0ff459cd7b" - } - Frame { - msec: 1488 - hash: "1bf04aafab1177182eec9a0ff459cd7b" - } - Frame { - msec: 1504 - hash: "1bf04aafab1177182eec9a0ff459cd7b" - } - Frame { - msec: 1520 - hash: "1bf04aafab1177182eec9a0ff459cd7b" - } - Frame { - msec: 1536 - hash: "1bf04aafab1177182eec9a0ff459cd7b" - } - Frame { - msec: 1552 - hash: "1bf04aafab1177182eec9a0ff459cd7b" - } - Frame { - msec: 1568 - hash: "c824a8bbf60514c20713b1fa583451b2" - } - Frame { - msec: 1584 - hash: "f6282cd20d7f3f64415a0a24df578964" - } - Frame { - msec: 1600 - hash: "a4633c7dc825f20a7ada2079712f7b5e" - } - Frame { - msec: 1616 - hash: "240c839fc986573523b30567afe05623" - } - Frame { - msec: 1632 - hash: "9e3098ea355a80e7e439f3cdecd15b77" - } - Frame { - msec: 1648 - hash: "d8ec7fd807f345509703f4ecf94b583d" - } - Key { - type: 6 - key: 16777249 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "5b6e0bedeca1784610081762850813a1" - } - Frame { - msec: 1680 - hash: "13a596d7aefa3c8ce61660dd5ce27627" - } - Frame { - msec: 1696 - hash: "295bbee587f2fdbadab7aa4e3900b6e0" - } - Frame { - msec: 1712 - hash: "645da4001b1489b12e0bb5dd1b5c114b" - } - Frame { - msec: 1728 - hash: "8e7e4f5b8eb437ab92e466b1d79aee01" - } - Frame { - msec: 1744 - hash: "1a7ec33aa8a19a36a7fc99c3040e427a" - } - Frame { - msec: 1760 - hash: "85f6c7d9f86910e7cceeaf9efc375355" - } - Frame { - msec: 1776 - hash: "8e54b0699d681cfbfc3b605b010c6b76" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "5d6702b9475e69bda2ed38f6e2d583d9" - } - Frame { - msec: 1808 - hash: "6502416042993d05dd514119512ed61f" - } - Frame { - msec: 1824 - hash: "938a6eea45c4412e847a8700172d80ac" - } - Frame { - msec: 1840 - hash: "4bf8e82220ea0d0c4298d5374e149de2" - } - Frame { - msec: 1856 - hash: "009dc0c6ff28333ac2fdfa3d79ad2fd6" - } - Frame { - msec: 1872 - hash: "aff4097bd39c87c5d1459d99f314dade" - } - Frame { - msec: 1888 - hash: "5cf6cb0afffb791da1c4d0fe00cf6326" - } - Frame { - msec: 1904 - hash: "007e76fb247e11a442802c7cfb4e6a24" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1920 - hash: "505e740aacf4ca7e6ad24367ddad8678" - } - Frame { - msec: 1936 - image: "cursorDelegate.2.png" - } - Frame { - msec: 1952 - hash: "575dd420067e4ebe5733eb4e35a447ab" - } - Frame { - msec: 1968 - hash: "062574e74354b104db2ee6d3c3af5802" - } - Frame { - msec: 1984 - hash: "d3be942cfb93c4a5d5aa906410125d02" - } - Frame { - msec: 2000 - hash: "b742ebe441dde1f30dab6d19954a9e8c" - } - Frame { - msec: 2016 - hash: "bbe3a292c59e2f7ae6b8877f6736c96e" - } - Frame { - msec: 2032 - hash: "b742ebe441dde1f30dab6d19954a9e8c" - } - Frame { - msec: 2048 - hash: "d3be942cfb93c4a5d5aa906410125d02" - } - Frame { - msec: 2064 - hash: "062574e74354b104db2ee6d3c3af5802" - } - Frame { - msec: 2080 - hash: "575dd420067e4ebe5733eb4e35a447ab" - } - Frame { - msec: 2096 - hash: "4213f35c4cd233a08d98ba0380b7ab0a" - } - Frame { - msec: 2112 - hash: "505e740aacf4ca7e6ad24367ddad8678" - } - Frame { - msec: 2128 - hash: "007e76fb247e11a442802c7cfb4e6a24" - } - Frame { - msec: 2144 - hash: "5cf6cb0afffb791da1c4d0fe00cf6326" - } - Frame { - msec: 2160 - hash: "aff4097bd39c87c5d1459d99f314dade" - } - Frame { - msec: 2176 - hash: "009dc0c6ff28333ac2fdfa3d79ad2fd6" - } - Frame { - msec: 2192 - hash: "4bf8e82220ea0d0c4298d5374e149de2" - } - Frame { - msec: 2208 - hash: "938a6eea45c4412e847a8700172d80ac" - } - Frame { - msec: 2224 - hash: "6502416042993d05dd514119512ed61f" - } - Key { - type: 7 - key: 16777248 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "5d6702b9475e69bda2ed38f6e2d583d9" - } - Frame { - msec: 2256 - hash: "8e5fdc8e6cc38089d1e8ff5e91a5c894" - } - Frame { - msec: 2272 - hash: "c0249d07bcf25af69bf929b4d5ac00a3" - } - Frame { - msec: 2288 - hash: "efe333c2b8cccea0bd7135484049db06" - } - Frame { - msec: 2304 - hash: "57e49e9094691a204f7507b0231352b3" - } - Frame { - msec: 2320 - hash: "d0a45bd3cfc5e4e6f9a48534c768daba" - } - Frame { - msec: 2336 - hash: "6960ab817c67a61af31cc187efe65016" - } - Frame { - msec: 2352 - hash: "3b0d483ff765f36a196411967b6dfd70" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "559713749d65246b185c0c91eb7ad39e" - } - Frame { - msec: 2384 - hash: "9aea32722fd4f8b0cde3c06c61cecde6" - } - Frame { - msec: 2400 - hash: "25dfa32ce92b6044f5ea68411ab5de5b" - } - Frame { - msec: 2416 - hash: "dab689ed2bbe663df309548e615e8621" - } - Frame { - msec: 2432 - hash: "26ad44cef380ff9f64c12180fb54c695" - } - Frame { - msec: 2448 - hash: "5e8bbcd46b5692e66963387b80971e90" - } - Frame { - msec: 2464 - hash: "747df5357daa951fbedeadf909f9dbf3" - } - Frame { - msec: 2480 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 2512 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 2528 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 2544 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 2560 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 2576 - hash: "1568d4b93d2a284c46f23a0cb17acc24" - } - Frame { - msec: 2592 - hash: "0665a6cfc09981cd8a7ffd0d02e6fbdc" - } - Frame { - msec: 2608 - hash: "49892aa44c8e3584239d245a7ca98af3" - } - Frame { - msec: 2624 - hash: "c9def393bb5d6c447c45b127d32b5e50" - } - Frame { - msec: 2640 - hash: "679d94007b33197ce7decb4df6e8343c" - } - Frame { - msec: 2656 - hash: "817987bcd9f1147ba047333b42ed289d" - } - Frame { - msec: 2672 - hash: "fdd9331015c289b8e33b094999b11dce" - } - Frame { - msec: 2688 - hash: "e4fa13ba2770c0d390945ee4505fea9b" - } - Frame { - msec: 2704 - hash: "69965c88d2273acf680af243610efcf3" - } - Frame { - msec: 2720 - hash: "6cbeb6787a0a7fb7f654f877e41eed57" - } - Frame { - msec: 2736 - hash: "e7528c074b3c65afe3873a3cdf96f041" - } - Frame { - msec: 2752 - hash: "c06c72abe46087f0db87a84fdcbcf601" - } - Frame { - msec: 2768 - hash: "b6840f1d7cf2caed17d763b782553071" - } - Frame { - msec: 2784 - hash: "71fdb77c4133f37180d581e4b1fe9c83" - } - Frame { - msec: 2800 - hash: "f5e2075ed86f146e0162ae4f0a9c6b90" - } - Frame { - msec: 2816 - hash: "5e76b741f49bd279b9f62ae3f474e5b5" - } - Frame { - msec: 2832 - hash: "28c8003699352c3c9563556939d49cd8" - } - Frame { - msec: 2848 - hash: "15ab751c8463326c870dc9ee1af3c1d7" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2864 - hash: "6035ef1252d4f28b965b0bf4771540e4" - } - Frame { - msec: 2880 - hash: "7c79170b07db90ca94f5642f3c0d3998" - } - Frame { - msec: 2896 - image: "cursorDelegate.3.png" - } - Frame { - msec: 2912 - hash: "3b4d1f5e1506c851887c86883eb1a6ac" - } - Frame { - msec: 2928 - hash: "5aff09b0e9078ca6d4ed93694d1fa6f9" - } - Frame { - msec: 2944 - hash: "16813ebf88f881a4cebf75a2325dc064" - } - Frame { - msec: 2960 - hash: "5b901505bb1ab80cd4d5bc85b73ae8ad" - } - Frame { - msec: 2976 - hash: "04c7f2e959c31bf6d3e7bea25d27eb87" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2992 - hash: "408bb423b93cb48afb97a7744848fc5e" - } - Frame { - msec: 3008 - hash: "1a58d66b4d42736eea49a602923a0941" - } - Frame { - msec: 3024 - hash: "1a58d66b4d42736eea49a602923a0941" - } - Frame { - msec: 3040 - hash: "408bb423b93cb48afb97a7744848fc5e" - } - Frame { - msec: 3056 - hash: "04c7f2e959c31bf6d3e7bea25d27eb87" - } - Frame { - msec: 3072 - hash: "5b901505bb1ab80cd4d5bc85b73ae8ad" - } - Frame { - msec: 3088 - hash: "16813ebf88f881a4cebf75a2325dc064" - } - Frame { - msec: 3104 - hash: "5aff09b0e9078ca6d4ed93694d1fa6f9" - } - Frame { - msec: 3120 - hash: "3b4d1f5e1506c851887c86883eb1a6ac" - } - Frame { - msec: 3136 - hash: "6a0a21ed890b475ce506714cc0501381" - } - Frame { - msec: 3152 - hash: "7c79170b07db90ca94f5642f3c0d3998" - } - Frame { - msec: 3168 - hash: "6035ef1252d4f28b965b0bf4771540e4" - } - Frame { - msec: 3184 - hash: "9529b5b70b76541ec82be173deedadfb" - } - Frame { - msec: 3200 - hash: "174bbd347422c46923d6a5831cb5cd94" - } - Frame { - msec: 3216 - hash: "1eb95daf505b817161f1a251cdde1b3c" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3232 - hash: "10f59fadaa27f78b7a1fb25d3a30adf7" - } - Frame { - msec: 3248 - hash: "b87417c77b43bdbfdc3d8293c9a23216" - } - Frame { - msec: 3264 - hash: "64345c713d61638bcc32f277208f2665" - } - Frame { - msec: 3280 - hash: "753dbe02fa95ee2b1387b98d7d456dcf" - } - Frame { - msec: 3296 - hash: "fce9a58aaf8d5cadbb029194317dcae3" - } - Frame { - msec: 3312 - hash: "367083bd88443558002601acbc355b1a" - } - Frame { - msec: 3328 - hash: "8e6ffccf321fa30faec432a4b4138967" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3344 - hash: "4dd4e0dafeed0fc11790145d39f7c85f" - } - Frame { - msec: 3360 - hash: "d612765c6b43035ea4e4683f968a18d3" - } - Frame { - msec: 3376 - hash: "fa77d4d8d339b78e5a28dcf69336c116" - } - Frame { - msec: 3392 - hash: "34cf572a432bdd6dcfcc4fdfa032a800" - } - Frame { - msec: 3408 - hash: "150b5a2f2e916b7023764c481c768492" - } - Frame { - msec: 3424 - hash: "fbc93f511d6f3093c2ecf624a2c63749" - } - Frame { - msec: 3440 - hash: "f9e0bd08b722c16493a8886a19920dda" - } - Frame { - msec: 3456 - hash: "f499f4b3017c88c63f0a2035ad527a0e" - } - Frame { - msec: 3472 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 3488 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 3504 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 3520 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 3536 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 3552 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 3568 - hash: "68d331f508b43e756d6e30ba9b60f9aa" - } - Frame { - msec: 3584 - hash: "c9147c159aebb7aa51d4bac28f96cb57" - } - Frame { - msec: 3600 - hash: "0636b7c5cc215882c60b50f62133c715" - } - Frame { - msec: 3616 - hash: "10b52296e40380a915f7538d21d321a4" - } - Frame { - msec: 3632 - hash: "9c56e2c5e04e8767b70d357558e179de" - } - Frame { - msec: 3648 - hash: "0b1538af23c78cc779174df9fd01f60b" - } - Frame { - msec: 3664 - hash: "1632c7df93f1a735236eaa2464e75ba6" - } - Frame { - msec: 3680 - hash: "a08e8b921e61c79d57c0bc4fa5e79914" - } - Frame { - msec: 3696 - hash: "8220951034b6f1a5755bedd53b947b4a" - } - Frame { - msec: 3712 - hash: "f4c18c333796ff10218fa9145781ea7f" - } - Frame { - msec: 3728 - hash: "7547d3bb0f9c4a53396cfe0252436395" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3744 - hash: "efe333c2b8cccea0bd7135484049db06" - } - Frame { - msec: 3760 - hash: "c0249d07bcf25af69bf929b4d5ac00a3" - } - Frame { - msec: 3776 - hash: "8e5fdc8e6cc38089d1e8ff5e91a5c894" - } - Frame { - msec: 3792 - hash: "5d6702b9475e69bda2ed38f6e2d583d9" - } - Frame { - msec: 3808 - hash: "6502416042993d05dd514119512ed61f" - } - Frame { - msec: 3824 - hash: "938a6eea45c4412e847a8700172d80ac" - } - Frame { - msec: 3840 - hash: "4bf8e82220ea0d0c4298d5374e149de2" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3856 - image: "cursorDelegate.4.png" - } - Frame { - msec: 3872 - hash: "aff4097bd39c87c5d1459d99f314dade" - } - Frame { - msec: 3888 - hash: "5cf6cb0afffb791da1c4d0fe00cf6326" - } - Frame { - msec: 3904 - hash: "007e76fb247e11a442802c7cfb4e6a24" - } - Frame { - msec: 3920 - hash: "505e740aacf4ca7e6ad24367ddad8678" - } - Frame { - msec: 3936 - hash: "4213f35c4cd233a08d98ba0380b7ab0a" - } - Frame { - msec: 3952 - hash: "575dd420067e4ebe5733eb4e35a447ab" - } - Frame { - msec: 3968 - hash: "062574e74354b104db2ee6d3c3af5802" - } - Frame { - msec: 3984 - hash: "d3be942cfb93c4a5d5aa906410125d02" - } - Frame { - msec: 4000 - hash: "b742ebe441dde1f30dab6d19954a9e8c" - } - Frame { - msec: 4016 - hash: "bbe3a292c59e2f7ae6b8877f6736c96e" - } - Frame { - msec: 4032 - hash: "b742ebe441dde1f30dab6d19954a9e8c" - } - Frame { - msec: 4048 - hash: "d3be942cfb93c4a5d5aa906410125d02" - } - Frame { - msec: 4064 - hash: "062574e74354b104db2ee6d3c3af5802" - } - Key { - type: 7 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "575dd420067e4ebe5733eb4e35a447ab" - } - Frame { - msec: 4096 - hash: "4213f35c4cd233a08d98ba0380b7ab0a" - } - Frame { - msec: 4112 - hash: "505e740aacf4ca7e6ad24367ddad8678" - } - Frame { - msec: 4128 - hash: "007e76fb247e11a442802c7cfb4e6a24" - } - Frame { - msec: 4144 - hash: "5cf6cb0afffb791da1c4d0fe00cf6326" - } - Frame { - msec: 4160 - hash: "aff4097bd39c87c5d1459d99f314dade" - } - Frame { - msec: 4176 - hash: "009dc0c6ff28333ac2fdfa3d79ad2fd6" - } - Frame { - msec: 4192 - hash: "4bf8e82220ea0d0c4298d5374e149de2" - } - Frame { - msec: 4208 - hash: "938a6eea45c4412e847a8700172d80ac" - } - Frame { - msec: 4224 - hash: "6502416042993d05dd514119512ed61f" - } - Frame { - msec: 4240 - hash: "5d6702b9475e69bda2ed38f6e2d583d9" - } - Frame { - msec: 4256 - hash: "8e5fdc8e6cc38089d1e8ff5e91a5c894" - } - Frame { - msec: 4272 - hash: "c0249d07bcf25af69bf929b4d5ac00a3" - } - Frame { - msec: 4288 - hash: "efe333c2b8cccea0bd7135484049db06" - } - Frame { - msec: 4304 - hash: "57e49e9094691a204f7507b0231352b3" - } - Frame { - msec: 4320 - hash: "d0a45bd3cfc5e4e6f9a48534c768daba" - } - Frame { - msec: 4336 - hash: "6960ab817c67a61af31cc187efe65016" - } - Frame { - msec: 4352 - hash: "3b0d483ff765f36a196411967b6dfd70" - } - Frame { - msec: 4368 - hash: "559713749d65246b185c0c91eb7ad39e" - } - Frame { - msec: 4384 - hash: "9aea32722fd4f8b0cde3c06c61cecde6" - } - Frame { - msec: 4400 - hash: "25dfa32ce92b6044f5ea68411ab5de5b" - } - Frame { - msec: 4416 - hash: "dab689ed2bbe663df309548e615e8621" - } - Frame { - msec: 4432 - hash: "26ad44cef380ff9f64c12180fb54c695" - } - Frame { - msec: 4448 - hash: "5e8bbcd46b5692e66963387b80971e90" - } - Frame { - msec: 4464 - hash: "747df5357daa951fbedeadf909f9dbf3" - } - Frame { - msec: 4480 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4496 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4512 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4528 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4544 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4560 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4576 - hash: "1568d4b93d2a284c46f23a0cb17acc24" - } - Frame { - msec: 4592 - hash: "0665a6cfc09981cd8a7ffd0d02e6fbdc" - } - Frame { - msec: 4608 - hash: "49892aa44c8e3584239d245a7ca98af3" - } - Frame { - msec: 4624 - hash: "c9def393bb5d6c447c45b127d32b5e50" - } - Frame { - msec: 4640 - hash: "679d94007b33197ce7decb4df6e8343c" - } - Frame { - msec: 4656 - hash: "817987bcd9f1147ba047333b42ed289d" - } - Frame { - msec: 4672 - hash: "fdd9331015c289b8e33b094999b11dce" - } - Frame { - msec: 4688 - hash: "e4fa13ba2770c0d390945ee4505fea9b" - } - Frame { - msec: 4704 - hash: "69965c88d2273acf680af243610efcf3" - } - Frame { - msec: 4720 - hash: "6cbeb6787a0a7fb7f654f877e41eed57" - } - Frame { - msec: 4736 - hash: "e7528c074b3c65afe3873a3cdf96f041" - } - Frame { - msec: 4752 - hash: "c06c72abe46087f0db87a84fdcbcf601" - } - Frame { - msec: 4768 - hash: "b6840f1d7cf2caed17d763b782553071" - } - Frame { - msec: 4784 - hash: "71fdb77c4133f37180d581e4b1fe9c83" - } - Frame { - msec: 4800 - hash: "f5e2075ed86f146e0162ae4f0a9c6b90" - } - Frame { - msec: 4816 - image: "cursorDelegate.5.png" - } - Frame { - msec: 4832 - hash: "28c8003699352c3c9563556939d49cd8" - } - Frame { - msec: 4848 - hash: "15ab751c8463326c870dc9ee1af3c1d7" - } - Frame { - msec: 4864 - hash: "b745b2aee5ec623163ea22614b8ab54b" - } - Frame { - msec: 4880 - hash: "b3f3b8e325dcd56b696eab7228c3db09" - } - Frame { - msec: 4896 - hash: "12ba65e0f70a670b2832235391d3ed05" - } - Frame { - msec: 4912 - hash: "9dfac03113b662a63bddcac9c7ae8f64" - } - Frame { - msec: 4928 - hash: "085bbc44102ae0d1d62531f6b6dbda98" - } - Frame { - msec: 4944 - hash: "007887862e2234f4c308778ecac5e16b" - } - Frame { - msec: 4960 - hash: "61e8e34755db1fb99b44830676ad95ad" - } - Frame { - msec: 4976 - hash: "48c8b1b0d549f7b6d85a81803b9fe31d" - } - Frame { - msec: 4992 - hash: "834cf51445f88394e33a3f3f0a5569f4" - } - Frame { - msec: 5008 - hash: "a43224f77583bb7235895506f49daee6" - } - Frame { - msec: 5024 - hash: "a43224f77583bb7235895506f49daee6" - } - Frame { - msec: 5040 - hash: "834cf51445f88394e33a3f3f0a5569f4" - } - Frame { - msec: 5056 - hash: "48c8b1b0d549f7b6d85a81803b9fe31d" - } - Frame { - msec: 5072 - hash: "61e8e34755db1fb99b44830676ad95ad" - } - Frame { - msec: 5088 - hash: "007887862e2234f4c308778ecac5e16b" - } - Frame { - msec: 5104 - hash: "085bbc44102ae0d1d62531f6b6dbda98" - } - Frame { - msec: 5120 - hash: "9dfac03113b662a63bddcac9c7ae8f64" - } - Frame { - msec: 5136 - hash: "12ba65e0f70a670b2832235391d3ed05" - } - Frame { - msec: 5152 - hash: "b3f3b8e325dcd56b696eab7228c3db09" - } - Frame { - msec: 5168 - hash: "b745b2aee5ec623163ea22614b8ab54b" - } - Frame { - msec: 5184 - hash: "15ab751c8463326c870dc9ee1af3c1d7" - } - Frame { - msec: 5200 - hash: "28c8003699352c3c9563556939d49cd8" - } - Frame { - msec: 5216 - hash: "5e76b741f49bd279b9f62ae3f474e5b5" - } - Frame { - msec: 5232 - hash: "f5e2075ed86f146e0162ae4f0a9c6b90" - } - Frame { - msec: 5248 - hash: "71fdb77c4133f37180d581e4b1fe9c83" - } - Frame { - msec: 5264 - hash: "b6840f1d7cf2caed17d763b782553071" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/justify.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/justify.0.png deleted file mode 100644 index 74c6934..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/justify.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/justify.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/justify.qml deleted file mode 100644 index e4dbeb1..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/justify.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "justify.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.0.png deleted file mode 100644 index 852fc66..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.1.png deleted file mode 100644 index 4b283d0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.2.png deleted file mode 100644 index 342fe05..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.3.png deleted file mode 100644 index fb4a774..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.4.png deleted file mode 100644 index 852fc66..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml deleted file mode 100644 index d7b26cb..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/qt-669.qml +++ /dev/null @@ -1,1371 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "qt-669.0.png" - } - Frame { - msec: 32 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 48 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 64 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 80 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 96 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 112 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 128 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 144 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 160 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 176 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 192 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 208 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 224 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 240 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 256 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 272 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 288 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 304 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 320 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 336 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 352 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 368 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 384 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 400 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 416 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 432 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 464 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 480 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 496 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 512 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 528 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 560 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 576 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 592 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 608 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 624 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 640 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 656 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 672 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 704 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 720 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 736 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 752 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 768 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 784 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 800 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 816 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 832 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 848 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 864 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 880 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 896 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 912 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 928 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 944 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 960 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 976 - image: "qt-669.1.png" - } - Frame { - msec: 992 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 1008 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1024 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 1040 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 1056 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 1072 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 1088 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1104 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 1120 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 1136 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1152 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 1168 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 1184 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 1200 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 1216 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1232 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 1248 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 1264 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 1280 - hash: "fca9d1748195f0d4388694baf901c498" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 1312 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 1328 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 1344 - hash: "fca9d1748195f0d4388694baf901c498" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1360 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1376 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1392 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1408 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1424 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1440 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1456 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1472 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1488 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1520 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1536 - hash: "389d0ac399e709482600181b4869be43" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1552 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1568 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1584 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1600 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1616 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1632 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1648 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1664 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1680 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1696 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1712 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1728 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1744 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1760 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1776 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1792 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1808 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1824 - hash: "389d0ac399e709482600181b4869be43" - } - Frame { - msec: 1840 - hash: "389d0ac399e709482600181b4869be43" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1856 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1872 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1888 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1904 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1920 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1936 - image: "qt-669.2.png" - } - Frame { - msec: 1952 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1968 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 1984 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2000 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 2016 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 2032 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 2048 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Frame { - msec: 2064 - hash: "9ec7c9965d3ce810553b1182b746d148" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2080 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 2096 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 2112 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 2128 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 2144 - hash: "fca9d1748195f0d4388694baf901c498" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 2176 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 2192 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 2208 - hash: "fca9d1748195f0d4388694baf901c498" - } - Frame { - msec: 2224 - hash: "fca9d1748195f0d4388694baf901c498" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 2256 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2272 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 2288 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 2304 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 2320 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Frame { - msec: 2336 - hash: "f531e8dd89482e3d7c501d0b3a8b3392" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2352 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2368 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2384 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2400 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2416 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2432 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2448 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2464 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2480 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2496 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2512 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2528 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2544 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2560 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2576 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Frame { - msec: 2592 - hash: "a719560bf7912aa6cf4e8e5bfc13cb06" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2608 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 2624 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 2640 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 2656 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 2672 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2688 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 2704 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 2720 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 2736 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Frame { - msec: 2752 - hash: "86e1ba72951c0c193bfd2cd2162c500e" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2768 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 2784 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 2800 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2816 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 2832 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 2848 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Frame { - msec: 2864 - hash: "e5fd0e8d81d75fb53e21b6daa8e0fc7f" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2880 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 2896 - image: "qt-669.3.png" - } - Frame { - msec: 2912 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 2928 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 2960 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 2976 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 2992 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Frame { - msec: 3008 - hash: "e2a49d72741ba08c258bb70d3a13c7f6" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3024 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3040 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3056 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3072 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3088 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3104 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3120 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3136 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3152 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3168 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3184 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3200 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3216 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3232 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3248 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3264 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3280 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3296 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3312 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3328 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3344 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3360 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3376 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3392 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3408 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3424 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3440 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3456 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3472 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3488 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3504 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3520 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3536 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3552 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3568 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3584 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3600 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3616 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3632 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3648 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3664 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3680 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Frame { - msec: 3696 - hash: "1d69ccdf88fa78b44a77147190bf1dfc" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3712 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3728 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3744 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3760 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3776 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3792 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3808 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3824 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3840 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3856 - image: "qt-669.4.png" - } - Frame { - msec: 3872 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3888 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3904 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3920 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3936 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3952 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3968 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 3984 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4000 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4016 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4032 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4048 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4064 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4080 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4096 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4112 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4128 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4144 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4160 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4176 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4192 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4208 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4224 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4240 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4256 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4272 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4288 - hash: "32c2b08a6123015ca72f283f89ee1663" - } - Frame { - msec: 4304 - hash: "32c2b08a6123015ca72f283f89ee1663" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.0.png deleted file mode 100644 index 0b4ca4e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.1.png deleted file mode 100644 index 251beb6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.10.png deleted file mode 100644 index 5cd2d7d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.11.png deleted file mode 100644 index 5cd2d7d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.12.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.12.png deleted file mode 100644 index 5cd2d7d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.2.png deleted file mode 100644 index bf6a44e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.3.png deleted file mode 100644 index 1089578..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.4.png deleted file mode 100644 index c9113de..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.5.png deleted file mode 100644 index 47b4744..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.6.png deleted file mode 100644 index c518204..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.7.png deleted file mode 100644 index 9f1c26a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.8.png deleted file mode 100644 index cd8d0a5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.9.png deleted file mode 100644 index 8f5f872..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.qml deleted file mode 100644 index a064bf3..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/usingMultilineEdit.qml +++ /dev/null @@ -1,4687 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "usingMultilineEdit.0.png" - } - Frame { - msec: 32 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 48 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 64 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 80 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 96 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 112 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 128 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 144 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 160 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 176 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 192 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 208 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 224 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 240 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 256 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 272 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 288 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 304 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 320 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 118; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 336 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 352 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 368 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 384 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 400 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 118; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 416 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 432 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 448 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 464 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 480 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 496 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 512 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 528 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 544 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 560 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 576 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 592 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 608 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 624 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Frame { - msec: 640 - hash: "9d5bfe023a03fde612678d000e7d4135" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 117; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 656 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 672 - hash: "73232e1c199b5dda158a7e765386a716" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 117; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 688 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 704 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 720 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 736 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 752 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 768 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 784 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 800 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 816 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 832 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 848 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 864 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 880 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 896 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 912 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 928 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 944 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 960 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 976 - image: "usingMultilineEdit.1.png" - } - Frame { - msec: 992 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1008 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1024 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1040 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1056 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1072 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1088 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1104 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1120 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1136 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1152 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1168 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1184 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1200 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1216 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1232 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1248 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1264 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1280 - hash: "73232e1c199b5dda158a7e765386a716" - } - Frame { - msec: 1296 - hash: "73232e1c199b5dda158a7e765386a716" - } - Key { - type: 6 - key: 44 - modifiers: 0 - text: "2c" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "75aa32bf4bfdda0dfcf04768bf931da6" - } - Frame { - msec: 1328 - hash: "75aa32bf4bfdda0dfcf04768bf931da6" - } - Frame { - msec: 1344 - hash: "75aa32bf4bfdda0dfcf04768bf931da6" - } - Frame { - msec: 1360 - hash: "75aa32bf4bfdda0dfcf04768bf931da6" - } - Frame { - msec: 1376 - hash: "75aa32bf4bfdda0dfcf04768bf931da6" - } - Key { - type: 7 - key: 44 - modifiers: 0 - text: "2c" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "75aa32bf4bfdda0dfcf04768bf931da6" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1408 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Frame { - msec: 1424 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Frame { - msec: 1440 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Frame { - msec: 1456 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1472 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Frame { - msec: 1488 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Frame { - msec: 1504 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Frame { - msec: 1520 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Frame { - msec: 1536 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Frame { - msec: 1552 - hash: "7243b903b5b7d8c323a233ae13a2ddf3" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "676834a4ee84cb251c6ed102be89ea2e" - } - Frame { - msec: 1584 - hash: "676834a4ee84cb251c6ed102be89ea2e" - } - Frame { - msec: 1600 - hash: "676834a4ee84cb251c6ed102be89ea2e" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1616 - hash: "676834a4ee84cb251c6ed102be89ea2e" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1632 - hash: "74a81081cd0547624cc4168e824b48b8" - } - Frame { - msec: 1648 - hash: "74a81081cd0547624cc4168e824b48b8" - } - Frame { - msec: 1664 - hash: "74a81081cd0547624cc4168e824b48b8" - } - Frame { - msec: 1680 - hash: "74a81081cd0547624cc4168e824b48b8" - } - Frame { - msec: 1696 - hash: "74a81081cd0547624cc4168e824b48b8" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1712 - hash: "74a81081cd0547624cc4168e824b48b8" - } - Frame { - msec: 1728 - hash: "74a81081cd0547624cc4168e824b48b8" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1744 - hash: "4c736b2bffb38df898478e3d0ce37fb0" - } - Frame { - msec: 1760 - hash: "4c736b2bffb38df898478e3d0ce37fb0" - } - Frame { - msec: 1776 - hash: "4c736b2bffb38df898478e3d0ce37fb0" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "4c736b2bffb38df898478e3d0ce37fb0" - } - Frame { - msec: 1808 - hash: "4c736b2bffb38df898478e3d0ce37fb0" - } - Frame { - msec: 1824 - hash: "4c736b2bffb38df898478e3d0ce37fb0" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 1840 - hash: "fd070c77e33e1498bacf0076903d33d7" - } - Frame { - msec: 1856 - hash: "fd070c77e33e1498bacf0076903d33d7" - } - Frame { - msec: 1872 - hash: "fd070c77e33e1498bacf0076903d33d7" - } - Frame { - msec: 1888 - hash: "fd070c77e33e1498bacf0076903d33d7" - } - Frame { - msec: 1904 - hash: "fd070c77e33e1498bacf0076903d33d7" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1920 - hash: "2ce31e62bfe5c1a62621fe4ea6bb07ab" - } - Frame { - msec: 1936 - image: "usingMultilineEdit.2.png" - } - Frame { - msec: 1952 - hash: "2ce31e62bfe5c1a62621fe4ea6bb07ab" - } - Frame { - msec: 1968 - hash: "2ce31e62bfe5c1a62621fe4ea6bb07ab" - } - Key { - type: 6 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 1984 - hash: "77f7b91dba63e20e92b47575ae2f1a85" - } - Frame { - msec: 2000 - hash: "77f7b91dba63e20e92b47575ae2f1a85" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2016 - hash: "77f7b91dba63e20e92b47575ae2f1a85" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "6c881ac1c94b6648ce1a2c39e477906c" - } - Frame { - msec: 2048 - hash: "6c881ac1c94b6648ce1a2c39e477906c" - } - Key { - type: 7 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "6c881ac1c94b6648ce1a2c39e477906c" - } - Frame { - msec: 2080 - hash: "6c881ac1c94b6648ce1a2c39e477906c" - } - Frame { - msec: 2096 - hash: "6c881ac1c94b6648ce1a2c39e477906c" - } - Frame { - msec: 2112 - hash: "6c881ac1c94b6648ce1a2c39e477906c" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "6c881ac1c94b6648ce1a2c39e477906c" - } - Frame { - msec: 2144 - hash: "6c881ac1c94b6648ce1a2c39e477906c" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "8799a9ee6ae4334c0e595c75160cbb35" - } - Frame { - msec: 2176 - hash: "8799a9ee6ae4334c0e595c75160cbb35" - } - Frame { - msec: 2192 - hash: "8799a9ee6ae4334c0e595c75160cbb35" - } - Frame { - msec: 2208 - hash: "8799a9ee6ae4334c0e595c75160cbb35" - } - Frame { - msec: 2224 - hash: "8799a9ee6ae4334c0e595c75160cbb35" - } - Frame { - msec: 2240 - hash: "8799a9ee6ae4334c0e595c75160cbb35" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 2256 - hash: "1947b07da95b6fb20dfa0189d2e099f4" - } - Frame { - msec: 2272 - hash: "1947b07da95b6fb20dfa0189d2e099f4" - } - Frame { - msec: 2288 - hash: "1947b07da95b6fb20dfa0189d2e099f4" - } - Frame { - msec: 2304 - hash: "1947b07da95b6fb20dfa0189d2e099f4" - } - Frame { - msec: 2320 - hash: "1947b07da95b6fb20dfa0189d2e099f4" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 2336 - hash: "1947b07da95b6fb20dfa0189d2e099f4" - } - Frame { - msec: 2352 - hash: "1947b07da95b6fb20dfa0189d2e099f4" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "f4831fddbb6dccd2add6c381abe18ff5" - } - Frame { - msec: 2384 - hash: "f4831fddbb6dccd2add6c381abe18ff5" - } - Frame { - msec: 2400 - hash: "f4831fddbb6dccd2add6c381abe18ff5" - } - Frame { - msec: 2416 - hash: "f4831fddbb6dccd2add6c381abe18ff5" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 2432 - hash: "f4831fddbb6dccd2add6c381abe18ff5" - } - Key { - type: 6 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "c8e601e39d6399c3bcbe99080e10e77b" - } - Frame { - msec: 2464 - hash: "c8e601e39d6399c3bcbe99080e10e77b" - } - Frame { - msec: 2480 - hash: "c8e601e39d6399c3bcbe99080e10e77b" - } - Frame { - msec: 2496 - hash: "c8e601e39d6399c3bcbe99080e10e77b" - } - Frame { - msec: 2512 - hash: "c8e601e39d6399c3bcbe99080e10e77b" - } - Frame { - msec: 2528 - hash: "c8e601e39d6399c3bcbe99080e10e77b" - } - Key { - type: 7 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 2544 - hash: "c8e601e39d6399c3bcbe99080e10e77b" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Frame { - msec: 2576 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Frame { - msec: 2592 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Frame { - msec: 2608 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2624 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Frame { - msec: 2640 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Frame { - msec: 2656 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Frame { - msec: 2672 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Frame { - msec: 2688 - hash: "895b6084f9cd58d0746270468d037fc3" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 2704 - hash: "ded3a272885f24140fb8d21835ae6b3a" - } - Frame { - msec: 2720 - hash: "ded3a272885f24140fb8d21835ae6b3a" - } - Frame { - msec: 2736 - hash: "ded3a272885f24140fb8d21835ae6b3a" - } - Frame { - msec: 2752 - hash: "ded3a272885f24140fb8d21835ae6b3a" - } - Frame { - msec: 2768 - hash: "ded3a272885f24140fb8d21835ae6b3a" - } - Frame { - msec: 2784 - hash: "ded3a272885f24140fb8d21835ae6b3a" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "9339ea22fd115b8ae025c0b3a588ca1c" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 2816 - hash: "9339ea22fd115b8ae025c0b3a588ca1c" - } - Frame { - msec: 2832 - hash: "9339ea22fd115b8ae025c0b3a588ca1c" - } - Frame { - msec: 2848 - hash: "9339ea22fd115b8ae025c0b3a588ca1c" - } - Frame { - msec: 2864 - hash: "9339ea22fd115b8ae025c0b3a588ca1c" - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2880 - hash: "9339ea22fd115b8ae025c0b3a588ca1c" - } - Frame { - msec: 2896 - image: "usingMultilineEdit.3.png" - } - Frame { - msec: 2912 - hash: "9339ea22fd115b8ae025c0b3a588ca1c" - } - Frame { - msec: 2928 - hash: "9339ea22fd115b8ae025c0b3a588ca1c" - } - Key { - type: 6 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "1f219781fb7a7682d27cb875900d077a" - } - Frame { - msec: 2960 - hash: "1f219781fb7a7682d27cb875900d077a" - } - Frame { - msec: 2976 - hash: "1f219781fb7a7682d27cb875900d077a" - } - Key { - type: 7 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2992 - hash: "20bd65f158440301e6cf14463e498368" - } - Frame { - msec: 3008 - hash: "20bd65f158440301e6cf14463e498368" - } - Frame { - msec: 3024 - hash: "20bd65f158440301e6cf14463e498368" - } - Frame { - msec: 3040 - hash: "20bd65f158440301e6cf14463e498368" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 3056 - hash: "20bd65f158440301e6cf14463e498368" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3072 - hash: "3e73d53051a3175393f4ecb486645bf9" - } - Frame { - msec: 3088 - hash: "3e73d53051a3175393f4ecb486645bf9" - } - Frame { - msec: 3104 - hash: "3e73d53051a3175393f4ecb486645bf9" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3120 - hash: "3e73d53051a3175393f4ecb486645bf9" - } - Key { - type: 7 - key: 32 - modifiers: 33554432 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3136 - hash: "3e73d53051a3175393f4ecb486645bf9" - } - Frame { - msec: 3152 - hash: "3e73d53051a3175393f4ecb486645bf9" - } - Key { - type: 6 - key: 73 - modifiers: 33554432 - text: "49" - autorep: false - count: 1 - } - Frame { - msec: 3168 - hash: "6f566097d23557bef60969852cd3515e" - } - Frame { - msec: 3184 - hash: "6f566097d23557bef60969852cd3515e" - } - Frame { - msec: 3200 - hash: "6f566097d23557bef60969852cd3515e" - } - Frame { - msec: 3216 - hash: "6f566097d23557bef60969852cd3515e" - } - Key { - type: 7 - key: 73 - modifiers: 33554432 - text: "49" - autorep: false - count: 1 - } - Frame { - msec: 3232 - hash: "6f566097d23557bef60969852cd3515e" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3248 - hash: "4767592fe68e8d32d286cf5eaf4510ff" - } - Frame { - msec: 3264 - hash: "4767592fe68e8d32d286cf5eaf4510ff" - } - Frame { - msec: 3280 - hash: "4767592fe68e8d32d286cf5eaf4510ff" - } - Frame { - msec: 3296 - hash: "4767592fe68e8d32d286cf5eaf4510ff" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3312 - hash: "4767592fe68e8d32d286cf5eaf4510ff" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3328 - hash: "d7fd1a19be4f061fc39c4accf18ba0dc" - } - Frame { - msec: 3344 - hash: "d7fd1a19be4f061fc39c4accf18ba0dc" - } - Frame { - msec: 3360 - hash: "d7fd1a19be4f061fc39c4accf18ba0dc" - } - Frame { - msec: 3376 - hash: "d7fd1a19be4f061fc39c4accf18ba0dc" - } - Frame { - msec: 3392 - hash: "d7fd1a19be4f061fc39c4accf18ba0dc" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3408 - hash: "d7fd1a19be4f061fc39c4accf18ba0dc" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3424 - hash: "03e74ddf4c94d322c1b1b35419157948" - } - Frame { - msec: 3440 - hash: "03e74ddf4c94d322c1b1b35419157948" - } - Frame { - msec: 3456 - hash: "03e74ddf4c94d322c1b1b35419157948" - } - Frame { - msec: 3472 - hash: "03e74ddf4c94d322c1b1b35419157948" - } - Frame { - msec: 3488 - hash: "03e74ddf4c94d322c1b1b35419157948" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Key { - type: 6 - key: 78 - modifiers: 0 - text: "6e" - autorep: false - count: 1 - } - Frame { - msec: 3504 - hash: "32712a89ba577f55319fe90873668138" - } - Frame { - msec: 3520 - hash: "32712a89ba577f55319fe90873668138" - } - Frame { - msec: 3536 - hash: "32712a89ba577f55319fe90873668138" - } - Frame { - msec: 3552 - hash: "32712a89ba577f55319fe90873668138" - } - Frame { - msec: 3568 - hash: "32712a89ba577f55319fe90873668138" - } - Frame { - msec: 3584 - hash: "32712a89ba577f55319fe90873668138" - } - Key { - type: 7 - key: 78 - modifiers: 0 - text: "6e" - autorep: false - count: 1 - } - Frame { - msec: 3600 - hash: "32712a89ba577f55319fe90873668138" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 3616 - hash: "9f1cf9784c0659f4902d632542fe9d52" - } - Frame { - msec: 3632 - hash: "9f1cf9784c0659f4902d632542fe9d52" - } - Frame { - msec: 3648 - hash: "9f1cf9784c0659f4902d632542fe9d52" - } - Frame { - msec: 3664 - hash: "9f1cf9784c0659f4902d632542fe9d52" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3680 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 3696 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3712 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3728 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3744 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3760 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3776 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3792 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3808 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3824 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3840 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3856 - image: "usingMultilineEdit.4.png" - } - Frame { - msec: 3872 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3888 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3904 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3920 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3936 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3952 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Frame { - msec: 3968 - hash: "b350f3b710a0d36ba56bdce6c86f902e" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 3984 - hash: "2b44bf2548bd887f22e5689946e24de5" - } - Frame { - msec: 4000 - hash: "2b44bf2548bd887f22e5689946e24de5" - } - Frame { - msec: 4016 - hash: "2b44bf2548bd887f22e5689946e24de5" - } - Frame { - msec: 4032 - hash: "2b44bf2548bd887f22e5689946e24de5" - } - Frame { - msec: 4048 - hash: "2b44bf2548bd887f22e5689946e24de5" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4064 - hash: "925c7c96166cc75dc92bd280fd354e43" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "925c7c96166cc75dc92bd280fd354e43" - } - Frame { - msec: 4096 - hash: "925c7c96166cc75dc92bd280fd354e43" - } - Frame { - msec: 4112 - hash: "925c7c96166cc75dc92bd280fd354e43" - } - Frame { - msec: 4128 - hash: "925c7c96166cc75dc92bd280fd354e43" - } - Key { - type: 6 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 4144 - hash: "61d6f7583f143917b86adcad6a5ba909" - } - Frame { - msec: 4160 - hash: "61d6f7583f143917b86adcad6a5ba909" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4176 - hash: "61d6f7583f143917b86adcad6a5ba909" - } - Frame { - msec: 4192 - hash: "61d6f7583f143917b86adcad6a5ba909" - } - Frame { - msec: 4208 - hash: "61d6f7583f143917b86adcad6a5ba909" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 4224 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Frame { - msec: 4240 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Key { - type: 7 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 4256 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Frame { - msec: 4272 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 4288 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Frame { - msec: 4304 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Frame { - msec: 4320 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Frame { - msec: 4336 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Frame { - msec: 4352 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Frame { - msec: 4368 - hash: "679e0940be9c40435aebb05a6e0da685" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4384 - hash: "e819d25f605ec1347e89de65682edb7d" - } - Frame { - msec: 4400 - hash: "e819d25f605ec1347e89de65682edb7d" - } - Frame { - msec: 4416 - hash: "e819d25f605ec1347e89de65682edb7d" - } - Frame { - msec: 4432 - hash: "e819d25f605ec1347e89de65682edb7d" - } - Frame { - msec: 4448 - hash: "e819d25f605ec1347e89de65682edb7d" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4464 - hash: "e819d25f605ec1347e89de65682edb7d" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4480 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4496 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4512 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4528 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4544 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4560 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4576 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4592 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4608 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4624 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4640 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4656 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4672 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4688 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4704 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4720 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4736 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4752 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4768 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4784 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4800 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Frame { - msec: 4816 - image: "usingMultilineEdit.5.png" - } - Frame { - msec: 4832 - hash: "ef65860a90a96d521a860c4e73e833ee" - } - Key { - type: 6 - key: 63 - modifiers: 33554432 - text: "3f" - autorep: false - count: 1 - } - Frame { - msec: 4848 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 4864 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 4880 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 4896 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 4912 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 4928 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 4944 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Key { - type: 7 - key: 63 - modifiers: 33554432 - text: "3f" - autorep: false - count: 1 - } - Frame { - msec: 4960 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 4976 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 4992 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5008 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5024 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5040 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5056 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5072 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5088 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5104 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5120 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5136 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5152 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5168 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5184 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5200 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5216 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5232 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5248 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5264 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5280 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5296 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5312 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5328 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5344 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5360 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5376 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5392 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5408 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5424 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5440 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5456 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5472 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5488 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5504 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5520 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5536 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5552 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5568 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5584 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5600 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5616 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5632 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5648 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5664 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5680 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5696 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5712 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5728 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5744 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Frame { - msec: 5760 - hash: "84497b5307b95f59693b71dc13c838ef" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 48; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - image: "usingMultilineEdit.6.png" - } - Frame { - msec: 5792 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 5808 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 5824 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 22 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 23 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "ee9722d220435828b919fa4d8e314b78" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "ee9722d220435828b919fa4d8e314b78" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 41 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "8a06a84965166774ff160984ed05b5ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "0a9ec173aa0436b9b9edf3f20946ae5a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 52 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 58 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5920 - hash: "0a9ec173aa0436b9b9edf3f20946ae5a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 69 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5936 - hash: "5511590b6b6826d8e863956220eee2e4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 62; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5952 - hash: "4d413c13e43c57809af8ee83a165dcb1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5968 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 105 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 128 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 130 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 134 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 140 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 149 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 153 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Frame { - msec: 6208 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Frame { - msec: 6224 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Frame { - msec: 6240 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Frame { - msec: 6256 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6288 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6304 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 126 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6320 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 63; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6336 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 88 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6352 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 72 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6368 - hash: "cc0c5811bc845540c2c550cefe45ab1c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 58 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 51 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6384 - hash: "b35bc1db0fd5b95bb830a9be9ded1659" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6400 - hash: "b35bc1db0fd5b95bb830a9be9ded1659" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6416 - hash: "576bbe32d2b6f582cbb0102d2b0e079b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 16 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 6 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6432 - hash: "15a7ee7f58f286ae22385c2817b9b697" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6448 - hash: "5cd516c20c91c407ca9932ea89afd100" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: -23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6464 - hash: "40ce8b3c3588727a37e03dd83cb3d536" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6480 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6496 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6512 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6544 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6560 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6576 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Frame { - msec: 6608 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Frame { - msec: 6624 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Frame { - msec: 6640 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Frame { - msec: 6656 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Frame { - msec: 6672 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -47 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: -42 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: -39 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6720 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: -28 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - image: "usingMultilineEdit.7.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6752 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: -18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: -14 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6768 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: -10 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6784 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -6 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: -3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6800 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: -1 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 0 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6816 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6832 - hash: "384cc9f557dd56079a54c1f0460bf96f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 5 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 7 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6848 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 10 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6864 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 11 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 55; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6896 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 6912 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 6928 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 6944 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 6960 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 6976 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 6992 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 7008 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 7024 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 7040 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 7056 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 7072 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Frame { - msec: 7088 - hash: "a3d9bdf8086303458ae5d35294551894" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 59; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7104 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7120 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7136 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7152 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7168 - hash: "a5755969d822cae00af992085c419a17" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 59; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7184 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7200 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7216 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7232 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7248 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7264 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7280 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7296 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7312 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7328 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7344 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7360 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7376 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7392 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7408 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7424 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7440 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7456 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7472 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7488 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7504 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7520 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7536 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7552 - hash: "a5755969d822cae00af992085c419a17" - } - Frame { - msec: 7568 - hash: "a5755969d822cae00af992085c419a17" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7584 - hash: "2395700fc4c3080e99b8871518113778" - } - Frame { - msec: 7600 - hash: "2395700fc4c3080e99b8871518113778" - } - Frame { - msec: 7616 - hash: "2395700fc4c3080e99b8871518113778" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7632 - hash: "2395700fc4c3080e99b8871518113778" - } - Frame { - msec: 7648 - hash: "2395700fc4c3080e99b8871518113778" - } - Frame { - msec: 7664 - hash: "2395700fc4c3080e99b8871518113778" - } - Frame { - msec: 7680 - hash: "2395700fc4c3080e99b8871518113778" - } - Frame { - msec: 7696 - image: "usingMultilineEdit.8.png" - } - Frame { - msec: 7712 - hash: "2395700fc4c3080e99b8871518113778" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7728 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7744 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7760 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7776 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7792 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7808 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7824 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7840 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7856 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7872 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7888 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7904 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7920 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7936 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Frame { - msec: 7952 - hash: "71e055a9dbd940b3445d5ad9e277b483" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 7968 - hash: "2ed8cb467e60f2fb253abb37bdc18a9a" - } - Frame { - msec: 7984 - hash: "2ed8cb467e60f2fb253abb37bdc18a9a" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8000 - hash: "5783992a07652cfc53bfa0e1f36c1415" - } - Frame { - msec: 8016 - hash: "5783992a07652cfc53bfa0e1f36c1415" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8032 - hash: "0fa5790dcbcb740d530b6333063629d6" - } - Frame { - msec: 8048 - hash: "0fa5790dcbcb740d530b6333063629d6" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8064 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Frame { - msec: 8080 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 7 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8096 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Frame { - msec: 8112 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Frame { - msec: 8128 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Frame { - msec: 8144 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Frame { - msec: 8160 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Frame { - msec: 8176 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Frame { - msec: 8192 - hash: "00ae3b5d61a83fdd16fc05b7c3fde8ed" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8208 - hash: "8f59f9f91dbcf608143925ff1f974151" - } - Frame { - msec: 8224 - hash: "8f59f9f91dbcf608143925ff1f974151" - } - Frame { - msec: 8240 - hash: "8f59f9f91dbcf608143925ff1f974151" - } - Frame { - msec: 8256 - hash: "8f59f9f91dbcf608143925ff1f974151" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8272 - hash: "8f59f9f91dbcf608143925ff1f974151" - } - Frame { - msec: 8288 - hash: "8f59f9f91dbcf608143925ff1f974151" - } - Frame { - msec: 8304 - hash: "8f59f9f91dbcf608143925ff1f974151" - } - Frame { - msec: 8320 - hash: "8f59f9f91dbcf608143925ff1f974151" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8336 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Frame { - msec: 8352 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Frame { - msec: 8368 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Frame { - msec: 8384 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8400 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Frame { - msec: 8416 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Frame { - msec: 8432 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Frame { - msec: 8448 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Frame { - msec: 8464 - hash: "fc48aa2746eaaf31312de3c37d821ff0" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8480 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8496 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8512 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8528 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8544 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8560 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8576 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8592 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8608 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8624 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8640 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8656 - image: "usingMultilineEdit.9.png" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8672 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8688 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8704 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8720 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8736 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8752 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8768 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8784 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8800 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8816 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8832 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8848 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8864 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8880 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8896 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8912 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8928 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8944 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8960 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8976 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 8992 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9008 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9024 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9040 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9056 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9072 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9088 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9104 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9120 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9136 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9152 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9168 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9184 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9200 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 70; y: 73 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9216 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9232 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9248 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9264 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 77 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9280 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 70; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9296 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9312 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9328 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9344 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9360 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9376 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9392 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9408 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9424 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Frame { - msec: 9440 - hash: "61856cf1f8f2ef6d0b365ab3d7eece51" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 71; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9456 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9472 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9488 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9504 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9520 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9536 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 71; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9552 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9568 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9584 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9600 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9616 - image: "usingMultilineEdit.10.png" - } - Frame { - msec: 9632 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9648 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9664 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 9680 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9696 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9712 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9728 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9744 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9760 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9776 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9792 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9808 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9824 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9840 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9856 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9872 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9888 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9904 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9920 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9936 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9952 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9968 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 9984 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10000 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10016 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10032 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10048 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10064 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10080 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10096 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Key { - type: 6 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10112 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10128 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10144 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10160 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10176 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10192 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10208 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10224 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Key { - type: 7 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10240 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10256 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10272 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10288 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10304 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10320 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10336 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Frame { - msec: 10352 - hash: "2ccfdac58b836aa89d2a75d0bdca6624" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10368 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10384 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10400 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10416 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10432 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10448 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10464 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10480 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10496 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10512 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10528 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10544 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10560 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10576 - image: "usingMultilineEdit.11.png" - } - Frame { - msec: 10592 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10608 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10624 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10640 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10656 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10672 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10688 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10704 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10720 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10736 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10752 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10768 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10784 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10800 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10816 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10832 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10848 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10864 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10880 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10896 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10912 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10928 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10944 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10960 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10976 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 10992 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11008 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11024 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11040 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11056 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11072 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11088 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11104 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11120 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11136 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11152 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11168 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11184 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11200 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11216 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11232 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11248 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11264 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11280 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11296 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11312 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11328 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11344 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11360 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11376 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11392 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11408 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11424 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11440 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11456 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11472 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11488 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11504 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11520 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11536 - image: "usingMultilineEdit.12.png" - } - Frame { - msec: 11552 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11568 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11584 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11600 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } - Frame { - msec: 11616 - hash: "37a675ab007d0e0a8f3735d4d84505de" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.0.png deleted file mode 100644 index a61ba5a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.1.png deleted file mode 100644 index 2a28c96..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.2.png deleted file mode 100644 index d1ddaa6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.3.png deleted file mode 100644 index 493c5cd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.4.png deleted file mode 100644 index 2b2ce59..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.5.png deleted file mode 100644 index 044eea4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.6.png deleted file mode 100644 index f0748b2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.7.png deleted file mode 100644 index f0748b2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.qml deleted file mode 100644 index f5af59f..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-MAC/wrap.qml +++ /dev/null @@ -1,2467 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "wrap.0.png" - } - Key { - type: 6 - key: 84 - modifiers: 33554432 - text: "54" - autorep: false - count: 1 - } - Frame { - msec: 32 - hash: "2b7fa5ced204393f05bf68d33e0ca2ad" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 48 - hash: "2b7fa5ced204393f05bf68d33e0ca2ad" - } - Frame { - msec: 64 - hash: "2b7fa5ced204393f05bf68d33e0ca2ad" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 80 - hash: "2b7fa5ced204393f05bf68d33e0ca2ad" - } - Frame { - msec: 96 - hash: "2b7fa5ced204393f05bf68d33e0ca2ad" - } - Key { - type: 6 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 112 - hash: "5fe2c4c01922f0b0d3f65152bd80f689" - } - Frame { - msec: 128 - hash: "5fe2c4c01922f0b0d3f65152bd80f689" - } - Frame { - msec: 144 - hash: "5fe2c4c01922f0b0d3f65152bd80f689" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 160 - hash: "9645f4ad60570c8a95e9ae6dda3f5060" - } - Frame { - msec: 176 - hash: "9645f4ad60570c8a95e9ae6dda3f5060" - } - Frame { - msec: 192 - hash: "9645f4ad60570c8a95e9ae6dda3f5060" - } - Key { - type: 7 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 208 - hash: "9645f4ad60570c8a95e9ae6dda3f5060" - } - Frame { - msec: 224 - hash: "9645f4ad60570c8a95e9ae6dda3f5060" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 240 - hash: "f28f446cb8de8af0a49ae6e728c996fc" - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 256 - hash: "f28f446cb8de8af0a49ae6e728c996fc" - } - Frame { - msec: 272 - hash: "f28f446cb8de8af0a49ae6e728c996fc" - } - Frame { - msec: 288 - hash: "f28f446cb8de8af0a49ae6e728c996fc" - } - Frame { - msec: 304 - hash: "f28f446cb8de8af0a49ae6e728c996fc" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 320 - hash: "f28f446cb8de8af0a49ae6e728c996fc" - } - Frame { - msec: 336 - hash: "f28f446cb8de8af0a49ae6e728c996fc" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 352 - hash: "98c390c519cd0476de17be8bb49b0f65" - } - Frame { - msec: 368 - hash: "98c390c519cd0476de17be8bb49b0f65" - } - Frame { - msec: 384 - hash: "98c390c519cd0476de17be8bb49b0f65" - } - Frame { - msec: 400 - hash: "98c390c519cd0476de17be8bb49b0f65" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 416 - hash: "98c390c519cd0476de17be8bb49b0f65" - } - Frame { - msec: 432 - hash: "98c390c519cd0476de17be8bb49b0f65" - } - Frame { - msec: 448 - hash: "98c390c519cd0476de17be8bb49b0f65" - } - Frame { - msec: 464 - hash: "98c390c519cd0476de17be8bb49b0f65" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 480 - hash: "d842a866459f3ecb4fa4fc1426a05411" - } - Frame { - msec: 496 - hash: "d842a866459f3ecb4fa4fc1426a05411" - } - Frame { - msec: 512 - hash: "d842a866459f3ecb4fa4fc1426a05411" - } - Frame { - msec: 528 - hash: "d842a866459f3ecb4fa4fc1426a05411" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" - } - Frame { - msec: 560 - hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" - } - Frame { - msec: 576 - hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" - } - Frame { - msec: 592 - hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" - } - Frame { - msec: 608 - hash: "4c858bfd2e8ba7a959bbf2d1e17865e7" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 624 - hash: "9eed9c764b2c5b73a60df84fc0d68756" - } - Frame { - msec: 640 - hash: "9eed9c764b2c5b73a60df84fc0d68756" - } - Frame { - msec: 656 - hash: "9eed9c764b2c5b73a60df84fc0d68756" - } - Frame { - msec: 672 - hash: "9eed9c764b2c5b73a60df84fc0d68756" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "9eed9c764b2c5b73a60df84fc0d68756" - } - Frame { - msec: 704 - hash: "9eed9c764b2c5b73a60df84fc0d68756" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 720 - hash: "7a1d64574a0a6b90695629fd443274e6" - } - Frame { - msec: 736 - hash: "7a1d64574a0a6b90695629fd443274e6" - } - Frame { - msec: 752 - hash: "7a1d64574a0a6b90695629fd443274e6" - } - Frame { - msec: 768 - hash: "7a1d64574a0a6b90695629fd443274e6" - } - Frame { - msec: 784 - hash: "7a1d64574a0a6b90695629fd443274e6" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "7a1d64574a0a6b90695629fd443274e6" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 816 - hash: "31e9c4500448142ee2be3171a2bd5385" - } - Frame { - msec: 832 - hash: "31e9c4500448142ee2be3171a2bd5385" - } - Frame { - msec: 848 - hash: "31e9c4500448142ee2be3171a2bd5385" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 864 - hash: "31e9c4500448142ee2be3171a2bd5385" - } - Frame { - msec: 880 - hash: "31e9c4500448142ee2be3171a2bd5385" - } - Frame { - msec: 896 - hash: "31e9c4500448142ee2be3171a2bd5385" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 912 - hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" - } - Frame { - msec: 928 - hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" - } - Frame { - msec: 944 - hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" - } - Frame { - msec: 960 - hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" - } - Frame { - msec: 976 - image: "wrap.1.png" - } - Frame { - msec: 992 - hash: "7fcfd3706ba11c43ac0a4c2f96b1d80d" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1008 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1024 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1040 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1056 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1072 - hash: "c05191599361c4171c086630f9608cd0" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 1088 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1104 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1120 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1136 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1152 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1168 - hash: "c05191599361c4171c086630f9608cd0" - } - Frame { - msec: 1184 - hash: "c05191599361c4171c086630f9608cd0" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "088e0567dd568019ccb2114d3108a1dd" - } - Frame { - msec: 1216 - hash: "088e0567dd568019ccb2114d3108a1dd" - } - Frame { - msec: 1232 - hash: "088e0567dd568019ccb2114d3108a1dd" - } - Frame { - msec: 1248 - hash: "088e0567dd568019ccb2114d3108a1dd" - } - Frame { - msec: 1264 - hash: "088e0567dd568019ccb2114d3108a1dd" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1280 - hash: "35fde81ed66c4804b2b31c0d93fb010a" - } - Frame { - msec: 1296 - hash: "35fde81ed66c4804b2b31c0d93fb010a" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Frame { - msec: 1328 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Frame { - msec: 1344 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1360 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Frame { - msec: 1376 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Frame { - msec: 1408 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Frame { - msec: 1424 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Frame { - msec: 1440 - hash: "0b212b2b1354e99db328c30d4c8e8b4e" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1456 - hash: "1d19bc237d8de1598a629f2aea7e8e97" - } - Frame { - msec: 1472 - hash: "1d19bc237d8de1598a629f2aea7e8e97" - } - Frame { - msec: 1488 - hash: "1d19bc237d8de1598a629f2aea7e8e97" - } - Frame { - msec: 1504 - hash: "1d19bc237d8de1598a629f2aea7e8e97" - } - Frame { - msec: 1520 - hash: "1d19bc237d8de1598a629f2aea7e8e97" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1536 - hash: "1d19bc237d8de1598a629f2aea7e8e97" - } - Frame { - msec: 1552 - hash: "1d19bc237d8de1598a629f2aea7e8e97" - } - Key { - type: 6 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "df3025b2de2cf6cee2b918c6d13834c6" - } - Frame { - msec: 1584 - hash: "df3025b2de2cf6cee2b918c6d13834c6" - } - Frame { - msec: 1600 - hash: "df3025b2de2cf6cee2b918c6d13834c6" - } - Frame { - msec: 1616 - hash: "df3025b2de2cf6cee2b918c6d13834c6" - } - Frame { - msec: 1632 - hash: "df3025b2de2cf6cee2b918c6d13834c6" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Key { - type: 7 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 1648 - hash: "b19baef8a5d8efd96d5ec9e729a9d42a" - } - Frame { - msec: 1664 - hash: "b19baef8a5d8efd96d5ec9e729a9d42a" - } - Frame { - msec: 1680 - hash: "b19baef8a5d8efd96d5ec9e729a9d42a" - } - Frame { - msec: 1696 - hash: "b19baef8a5d8efd96d5ec9e729a9d42a" - } - Frame { - msec: 1712 - hash: "b19baef8a5d8efd96d5ec9e729a9d42a" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1728 - hash: "914e61f38d7f2b5a465037d6ef1ddaba" - } - Frame { - msec: 1744 - hash: "914e61f38d7f2b5a465037d6ef1ddaba" - } - Frame { - msec: 1760 - hash: "914e61f38d7f2b5a465037d6ef1ddaba" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1776 - hash: "914e61f38d7f2b5a465037d6ef1ddaba" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Frame { - msec: 1808 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1824 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Frame { - msec: 1840 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Frame { - msec: 1856 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Frame { - msec: 1872 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1888 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Frame { - msec: 1904 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Frame { - msec: 1920 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Frame { - msec: 1936 - image: "wrap.2.png" - } - Frame { - msec: 1952 - hash: "e816134a8fef0bbee8e94c0f9561750b" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1968 - hash: "9552729028c8e129e19c06ff35bb085b" - } - Frame { - msec: 1984 - hash: "9552729028c8e129e19c06ff35bb085b" - } - Frame { - msec: 2000 - hash: "9552729028c8e129e19c06ff35bb085b" - } - Frame { - msec: 2016 - hash: "9552729028c8e129e19c06ff35bb085b" - } - Frame { - msec: 2032 - hash: "9552729028c8e129e19c06ff35bb085b" - } - Frame { - msec: 2048 - hash: "9552729028c8e129e19c06ff35bb085b" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2080 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Frame { - msec: 2096 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Frame { - msec: 2112 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Frame { - msec: 2144 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Frame { - msec: 2160 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Frame { - msec: 2176 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Frame { - msec: 2192 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Frame { - msec: 2208 - hash: "2dbdfe3bd309b98af7ed8980725f3ee7" - } - Key { - type: 6 - key: 88 - modifiers: 0 - text: "78" - autorep: false - count: 1 - } - Frame { - msec: 2224 - hash: "28748f90f61954b94377768788f1634d" - } - Frame { - msec: 2240 - hash: "28748f90f61954b94377768788f1634d" - } - Frame { - msec: 2256 - hash: "28748f90f61954b94377768788f1634d" - } - Frame { - msec: 2272 - hash: "28748f90f61954b94377768788f1634d" - } - Frame { - msec: 2288 - hash: "28748f90f61954b94377768788f1634d" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2304 - hash: "2cf8ad2ba8ddcde4dd8549f034a77005" - } - Key { - type: 7 - key: 88 - modifiers: 0 - text: "78" - autorep: false - count: 1 - } - Frame { - msec: 2320 - hash: "2cf8ad2ba8ddcde4dd8549f034a77005" - } - Frame { - msec: 2336 - hash: "2cf8ad2ba8ddcde4dd8549f034a77005" - } - Frame { - msec: 2352 - hash: "2cf8ad2ba8ddcde4dd8549f034a77005" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "95b6ce7c01461847a3f7aff88aa8ad9d" - } - Frame { - msec: 2384 - hash: "95b6ce7c01461847a3f7aff88aa8ad9d" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2400 - hash: "95b6ce7c01461847a3f7aff88aa8ad9d" - } - Frame { - msec: 2416 - hash: "95b6ce7c01461847a3f7aff88aa8ad9d" - } - Frame { - msec: 2432 - hash: "95b6ce7c01461847a3f7aff88aa8ad9d" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "95b6ce7c01461847a3f7aff88aa8ad9d" - } - Frame { - msec: 2464 - hash: "95b6ce7c01461847a3f7aff88aa8ad9d" - } - Frame { - msec: 2480 - hash: "95b6ce7c01461847a3f7aff88aa8ad9d" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "81872138f3cafb1cf06009df77af1461" - } - Frame { - msec: 2512 - hash: "81872138f3cafb1cf06009df77af1461" - } - Frame { - msec: 2528 - hash: "81872138f3cafb1cf06009df77af1461" - } - Frame { - msec: 2544 - hash: "81872138f3cafb1cf06009df77af1461" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "81872138f3cafb1cf06009df77af1461" - } - Frame { - msec: 2576 - hash: "81872138f3cafb1cf06009df77af1461" - } - Frame { - msec: 2592 - hash: "81872138f3cafb1cf06009df77af1461" - } - Frame { - msec: 2608 - hash: "81872138f3cafb1cf06009df77af1461" - } - Frame { - msec: 2624 - hash: "81872138f3cafb1cf06009df77af1461" - } - Frame { - msec: 2640 - hash: "81872138f3cafb1cf06009df77af1461" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 2656 - hash: "dfa35c08894d7ed748b8846fa3ce8fac" - } - Frame { - msec: 2672 - hash: "dfa35c08894d7ed748b8846fa3ce8fac" - } - Frame { - msec: 2688 - hash: "dfa35c08894d7ed748b8846fa3ce8fac" - } - Frame { - msec: 2704 - hash: "dfa35c08894d7ed748b8846fa3ce8fac" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 2720 - hash: "dfa35c08894d7ed748b8846fa3ce8fac" - } - Frame { - msec: 2736 - hash: "dfa35c08894d7ed748b8846fa3ce8fac" - } - Frame { - msec: 2752 - hash: "dfa35c08894d7ed748b8846fa3ce8fac" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2768 - hash: "9decac3d9243bebdc7699fcb77a31f21" - } - Frame { - msec: 2784 - hash: "9decac3d9243bebdc7699fcb77a31f21" - } - Frame { - msec: 2800 - hash: "9decac3d9243bebdc7699fcb77a31f21" - } - Frame { - msec: 2816 - hash: "9decac3d9243bebdc7699fcb77a31f21" - } - Frame { - msec: 2832 - hash: "9decac3d9243bebdc7699fcb77a31f21" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2848 - hash: "6a1bb7dd22f3e090008ba265c30f9c2d" - } - Frame { - msec: 2864 - hash: "6a1bb7dd22f3e090008ba265c30f9c2d" - } - Frame { - msec: 2880 - hash: "6a1bb7dd22f3e090008ba265c30f9c2d" - } - Frame { - msec: 2896 - image: "wrap.3.png" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2912 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 2928 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 2960 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2976 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 2992 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 3008 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 3024 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 3040 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 3056 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 3072 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Frame { - msec: 3088 - hash: "ee39b3014e140aff2f974f3b919f85f4" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3104 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Frame { - msec: 3120 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Frame { - msec: 3136 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Frame { - msec: 3152 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Frame { - msec: 3168 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3184 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Frame { - msec: 3200 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Frame { - msec: 3216 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Frame { - msec: 3232 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Frame { - msec: 3248 - hash: "d448179ec6bba91f3f70be821710a8c7" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 3264 - hash: "e30b5aa9b5d08fba758fe781812f096d" - } - Frame { - msec: 3280 - hash: "e30b5aa9b5d08fba758fe781812f096d" - } - Frame { - msec: 3296 - hash: "e30b5aa9b5d08fba758fe781812f096d" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 3312 - hash: "e30b5aa9b5d08fba758fe781812f096d" - } - Frame { - msec: 3328 - hash: "e30b5aa9b5d08fba758fe781812f096d" - } - Frame { - msec: 3344 - hash: "e30b5aa9b5d08fba758fe781812f096d" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3360 - hash: "ba932735c5079ad6562050b6e332d2e7" - } - Frame { - msec: 3376 - hash: "ba932735c5079ad6562050b6e332d2e7" - } - Frame { - msec: 3392 - hash: "ba932735c5079ad6562050b6e332d2e7" - } - Frame { - msec: 3408 - hash: "ba932735c5079ad6562050b6e332d2e7" - } - Frame { - msec: 3424 - hash: "ba932735c5079ad6562050b6e332d2e7" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3440 - hash: "ba932735c5079ad6562050b6e332d2e7" - } - Frame { - msec: 3456 - hash: "ba932735c5079ad6562050b6e332d2e7" - } - Frame { - msec: 3472 - hash: "ba932735c5079ad6562050b6e332d2e7" - } - Key { - type: 6 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 3488 - hash: "01dacbcc21c541e0cbf272ee01292b7c" - } - Frame { - msec: 3504 - hash: "01dacbcc21c541e0cbf272ee01292b7c" - } - Frame { - msec: 3520 - hash: "01dacbcc21c541e0cbf272ee01292b7c" - } - Frame { - msec: 3536 - hash: "01dacbcc21c541e0cbf272ee01292b7c" - } - Key { - type: 7 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 3552 - hash: "01dacbcc21c541e0cbf272ee01292b7c" - } - Frame { - msec: 3568 - hash: "01dacbcc21c541e0cbf272ee01292b7c" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3584 - hash: "7b493045fb2b7373525ce570d86542d7" - } - Frame { - msec: 3600 - hash: "7b493045fb2b7373525ce570d86542d7" - } - Frame { - msec: 3616 - hash: "7b493045fb2b7373525ce570d86542d7" - } - Frame { - msec: 3632 - hash: "7b493045fb2b7373525ce570d86542d7" - } - Frame { - msec: 3648 - hash: "7b493045fb2b7373525ce570d86542d7" - } - Frame { - msec: 3664 - hash: "7b493045fb2b7373525ce570d86542d7" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3680 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3696 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3712 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3728 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3744 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3760 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3776 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3792 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3808 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3824 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3840 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3856 - image: "wrap.4.png" - } - Frame { - msec: 3872 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3888 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Frame { - msec: 3904 - hash: "7c11ac5b8dfee4708b7b49c2a1a7db57" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 3920 - hash: "46a6db4f63965f019fc1966e2a6caf98" - } - Frame { - msec: 3936 - hash: "46a6db4f63965f019fc1966e2a6caf98" - } - Frame { - msec: 3952 - hash: "46a6db4f63965f019fc1966e2a6caf98" - } - Frame { - msec: 3968 - hash: "46a6db4f63965f019fc1966e2a6caf98" - } - Frame { - msec: 3984 - hash: "46a6db4f63965f019fc1966e2a6caf98" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4000 - hash: "46a6db4f63965f019fc1966e2a6caf98" - } - Frame { - msec: 4016 - hash: "46a6db4f63965f019fc1966e2a6caf98" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4032 - hash: "abc8cf4650aa07a9a26ad04a082bc269" - } - Frame { - msec: 4048 - hash: "abc8cf4650aa07a9a26ad04a082bc269" - } - Frame { - msec: 4064 - hash: "abc8cf4650aa07a9a26ad04a082bc269" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "abc8cf4650aa07a9a26ad04a082bc269" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4096 - hash: "23ee54c88cd70b6c66137ce32702cf01" - } - Frame { - msec: 4112 - hash: "23ee54c88cd70b6c66137ce32702cf01" - } - Frame { - msec: 4128 - hash: "23ee54c88cd70b6c66137ce32702cf01" - } - Frame { - msec: 4144 - hash: "23ee54c88cd70b6c66137ce32702cf01" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4160 - hash: "23ee54c88cd70b6c66137ce32702cf01" - } - Frame { - msec: 4176 - hash: "23ee54c88cd70b6c66137ce32702cf01" - } - Frame { - msec: 4192 - hash: "23ee54c88cd70b6c66137ce32702cf01" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4208 - hash: "dc0899573a995421b57a6689d300a421" - } - Frame { - msec: 4224 - hash: "dc0899573a995421b57a6689d300a421" - } - Frame { - msec: 4240 - hash: "dc0899573a995421b57a6689d300a421" - } - Frame { - msec: 4256 - hash: "dc0899573a995421b57a6689d300a421" - } - Frame { - msec: 4272 - hash: "dc0899573a995421b57a6689d300a421" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 4288 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4304 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Frame { - msec: 4320 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Frame { - msec: 4336 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 4352 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Frame { - msec: 4368 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Frame { - msec: 4384 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Frame { - msec: 4400 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Frame { - msec: 4416 - hash: "4d42c63a0324c1573818ebb081d8927f" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4432 - hash: "9d2239e4b71da17a6f8f2ef979f4bf85" - } - Frame { - msec: 4448 - hash: "9d2239e4b71da17a6f8f2ef979f4bf85" - } - Frame { - msec: 4464 - hash: "9d2239e4b71da17a6f8f2ef979f4bf85" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4480 - hash: "9d2239e4b71da17a6f8f2ef979f4bf85" - } - Frame { - msec: 4496 - hash: "9d2239e4b71da17a6f8f2ef979f4bf85" - } - Frame { - msec: 4512 - hash: "9d2239e4b71da17a6f8f2ef979f4bf85" - } - Frame { - msec: 4528 - hash: "9d2239e4b71da17a6f8f2ef979f4bf85" - } - Frame { - msec: 4544 - hash: "9d2239e4b71da17a6f8f2ef979f4bf85" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4560 - hash: "289059d77547c9ec548b33d8bbe9fca9" - } - Frame { - msec: 4576 - hash: "289059d77547c9ec548b33d8bbe9fca9" - } - Frame { - msec: 4592 - hash: "289059d77547c9ec548b33d8bbe9fca9" - } - Frame { - msec: 4608 - hash: "289059d77547c9ec548b33d8bbe9fca9" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4624 - hash: "289059d77547c9ec548b33d8bbe9fca9" - } - Frame { - msec: 4640 - hash: "289059d77547c9ec548b33d8bbe9fca9" - } - Frame { - msec: 4656 - hash: "289059d77547c9ec548b33d8bbe9fca9" - } - Frame { - msec: 4672 - hash: "289059d77547c9ec548b33d8bbe9fca9" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 4688 - hash: "4b60bfb67c5007b4054241e581ce92ac" - } - Frame { - msec: 4704 - hash: "4b60bfb67c5007b4054241e581ce92ac" - } - Frame { - msec: 4720 - hash: "4b60bfb67c5007b4054241e581ce92ac" - } - Frame { - msec: 4736 - hash: "4b60bfb67c5007b4054241e581ce92ac" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 4752 - hash: "4b60bfb67c5007b4054241e581ce92ac" - } - Frame { - msec: 4768 - hash: "4b60bfb67c5007b4054241e581ce92ac" - } - Frame { - msec: 4784 - hash: "4b60bfb67c5007b4054241e581ce92ac" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4800 - hash: "dbabce81e44f912d6a30ff4cc3289da8" - } - Frame { - msec: 4816 - image: "wrap.5.png" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4832 - hash: "dbabce81e44f912d6a30ff4cc3289da8" - } - Frame { - msec: 4848 - hash: "dbabce81e44f912d6a30ff4cc3289da8" - } - Frame { - msec: 4864 - hash: "dbabce81e44f912d6a30ff4cc3289da8" - } - Frame { - msec: 4880 - hash: "dbabce81e44f912d6a30ff4cc3289da8" - } - Key { - type: 6 - key: 46 - modifiers: 0 - text: "2e" - autorep: false - count: 1 - } - Frame { - msec: 4896 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 4912 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 4928 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 4944 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Key { - type: 7 - key: 46 - modifiers: 0 - text: "2e" - autorep: false - count: 1 - } - Frame { - msec: 4960 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 4976 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 4992 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5008 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5024 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5040 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5056 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5072 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5088 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5104 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5120 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5136 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5152 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5168 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5184 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5200 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5216 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5232 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5248 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5264 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5280 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5296 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5312 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5328 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5344 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5360 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5376 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5392 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5408 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5424 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5440 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5456 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5472 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5488 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5504 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5520 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5536 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5552 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5568 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5584 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5600 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5616 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5632 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5648 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5664 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5680 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5696 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5712 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5728 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5744 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5760 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5776 - image: "wrap.6.png" - } - Frame { - msec: 5792 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5808 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5824 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5840 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5856 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5872 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5888 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5904 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5920 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5936 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5952 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5968 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 5984 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6000 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6016 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6032 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6048 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6064 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6080 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6096 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6112 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6128 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6144 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6160 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6176 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6192 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6208 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6224 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6240 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6256 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6272 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6288 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6304 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6320 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6336 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6352 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6368 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6384 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6400 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6416 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6432 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6448 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6464 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6480 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6496 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6512 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6528 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6544 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6560 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6576 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6592 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6608 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6624 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6640 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6656 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6672 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6688 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6704 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6720 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6736 - image: "wrap.7.png" - } - Frame { - msec: 6752 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6768 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6784 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6800 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6816 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6832 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6848 - hash: "e9633d239e0a9ca008ed033565322c24" - } - Frame { - msec: 6864 - hash: "e9633d239e0a9ca008ed033565322c24" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png deleted file mode 100644 index be025e5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png deleted file mode 100644 index 1b2cd04..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png deleted file mode 100644 index 2e56d47..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png deleted file mode 100644 index 8abdfc2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png deleted file mode 100644 index 58428ce..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png deleted file mode 100644 index 3c23bd6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png deleted file mode 100644 index 80b960c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png deleted file mode 100644 index 7247277..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png deleted file mode 100644 index af5a996..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png deleted file mode 100644 index b254164..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml deleted file mode 100644 index 9630745..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml +++ /dev/null @@ -1,1499 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "cursorDelegate.0.png" - } - Frame { - msec: 32 - hash: "2fd338490edda276f7ee16232bf244d1" - } - Frame { - msec: 48 - hash: "527a1c18503f580bcf926a70d9f30006" - } - Frame { - msec: 64 - hash: "8b911c3e4a0fccf1dbeca50931780a2d" - } - Frame { - msec: 80 - hash: "f631ad72bf36ccb0c5f3ff708f029b1b" - } - Frame { - msec: 96 - hash: "d4099e6a2c1ff77a71231351f5bc32ff" - } - Frame { - msec: 112 - hash: "0e531d158b1c14d6fc633e528846c336" - } - Frame { - msec: 128 - hash: "5721d3397b9e66da4ee47a7f19107566" - } - Frame { - msec: 144 - hash: "6647f5d3680f3523ec73b434d0c2f8da" - } - Frame { - msec: 160 - hash: "73fb40e680c30b1a5fe95de9913a0591" - } - Frame { - msec: 176 - hash: "c392c2599b29086a437afa292b06d63c" - } - Frame { - msec: 192 - hash: "bcedd42d52bab532831b47c6ee2a99ac" - } - Frame { - msec: 208 - hash: "089b150d5cc9315c6626edfc1bb66774" - } - Frame { - msec: 224 - hash: "f6e83fdb13e4f00ba5004b081e2379ee" - } - Frame { - msec: 240 - hash: "ca8336d47c002df3702a46be2b974ba7" - } - Frame { - msec: 256 - hash: "f0d82431f1e35f76fd718af1d742cd13" - } - Frame { - msec: 272 - hash: "78dc119673be7902ab25d508db771f04" - } - Frame { - msec: 288 - hash: "2839bc67b7ac43353b976c2c7bc3b6c3" - } - Frame { - msec: 304 - hash: "c1f9743c0505b6ca197c4bd0bbbd7bd3" - } - Frame { - msec: 320 - hash: "2d714b10ce1e3e7dd1efb58ed4b62f90" - } - Frame { - msec: 336 - hash: "c4f94bab5475eacfc757338ffd6d4a59" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 352 - hash: "c5caa8a08f09203c005e1cd6d80e8ccc" - } - Frame { - msec: 368 - hash: "c96896be1a311c0cedc1c7ec1bd9e13e" - } - Frame { - msec: 384 - hash: "d3d6dc1d8ff93e373583e3cbdca88b81" - } - Frame { - msec: 400 - hash: "2a456146359c54c52f9e7a6cebcfa454" - } - Frame { - msec: 416 - hash: "d127788c702c2ed037c709ffc331840e" - } - Frame { - msec: 432 - hash: "8a5987a736b092e12198d969544d632c" - } - Key { - type: 6 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "e8471c605f6a8cc187d879510ed7ebe7" - } - Frame { - msec: 464 - hash: "6959b4f72422636ae59989c9def06d03" - } - Frame { - msec: 480 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 496 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 512 - hash: "45a1fa0c871592f872574fdcd3fb586c" - } - Frame { - msec: 528 - hash: "45a1fa0c871592f872574fdcd3fb586c" - } - Frame { - msec: 544 - hash: "45a1fa0c871592f872574fdcd3fb586c" - } - Frame { - msec: 560 - hash: "45a1fa0c871592f872574fdcd3fb586c" - } - Frame { - msec: 576 - hash: "8567bf3fb7adb990501070fac62fda31" - } - Frame { - msec: 592 - hash: "824b9fef000cfad45c86d180eb13c584" - } - Frame { - msec: 608 - hash: "cb8989a5839bf284f0e8b3eb1bf68667" - } - Frame { - msec: 624 - hash: "f23e6394ed3c2fc32c690095ccfc1a7f" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 640 - hash: "d32d30ebd0c292e66314f6b6005701b9" - } - Frame { - msec: 656 - hash: "4ebda51f84f73eb6891f9c71ffba4b92" - } - Frame { - msec: 672 - hash: "9a97e8cdb84e96f08f2af468d146fb45" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "9cd5a0e60b7f679faba3dad78eac1ac3" - } - Frame { - msec: 704 - hash: "2e18ff4ebead28620901d4a9ad050ffe" - } - Frame { - msec: 720 - hash: "57a6a1bbfe4c4577e4334b63b977ca13" - } - Frame { - msec: 736 - hash: "5f5806c2b30465845ed2bc36f1c60e14" - } - Frame { - msec: 752 - hash: "10125c338dffa13dfd0bbff5fc33d757" - } - Frame { - msec: 768 - hash: "b6c83fdee9081a1773a441cffb843c11" - } - Frame { - msec: 784 - hash: "c26f3ac7cd2065b98434e3fb4bc7c4a7" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "6cb47a37677280ef63b060767c669878" - } - Frame { - msec: 816 - hash: "7f27c84cd7ae3f255b0df6029e13c48d" - } - Frame { - msec: 832 - hash: "fec675b07b3f569014e9f35563761d49" - } - Frame { - msec: 848 - hash: "cfd2439d79ad66232107022317fd5a4c" - } - Frame { - msec: 864 - hash: "cec5331c1f6023335942e572992aa172" - } - Frame { - msec: 880 - hash: "549d4736558332a64c5fc3462be71500" - } - Frame { - msec: 896 - hash: "1d01fe566f850fe2297fd8ed6b1efa8d" - } - Frame { - msec: 912 - hash: "cd1b61c7acd7067f9722c1a673b9a3ea" - } - Frame { - msec: 928 - hash: "cb4fed177ff3df7212413450d4b73549" - } - Frame { - msec: 944 - hash: "720d0e5c3e377e2c53d251e02577d6f6" - } - Frame { - msec: 960 - hash: "1ab118400896a46a8d179b762343522f" - } - Frame { - msec: 976 - image: "cursorDelegate.1.png" - } - Frame { - msec: 992 - hash: "6cf8502f84b57001bf14fc4bab24911b" - } - Frame { - msec: 1008 - hash: "5aa693852436f664da87d4360da0f477" - } - Frame { - msec: 1024 - hash: "5aa693852436f664da87d4360da0f477" - } - Key { - type: 7 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1040 - hash: "6cf8502f84b57001bf14fc4bab24911b" - } - Frame { - msec: 1056 - hash: "17499b49e462181383fde57dce81aef9" - } - Frame { - msec: 1072 - hash: "1ab118400896a46a8d179b762343522f" - } - Frame { - msec: 1088 - hash: "720d0e5c3e377e2c53d251e02577d6f6" - } - Frame { - msec: 1104 - hash: "cb4fed177ff3df7212413450d4b73549" - } - Frame { - msec: 1120 - hash: "cd1b61c7acd7067f9722c1a673b9a3ea" - } - Frame { - msec: 1136 - hash: "1d01fe566f850fe2297fd8ed6b1efa8d" - } - Frame { - msec: 1152 - hash: "549d4736558332a64c5fc3462be71500" - } - Frame { - msec: 1168 - hash: "cec5331c1f6023335942e572992aa172" - } - Key { - type: 6 - key: 16777234 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1184 - hash: "a8af14ffccbd892f17c0235d62d10cd8" - } - Frame { - msec: 1200 - hash: "81fbaaf1af513b2dc978ef0e358bbc6f" - } - Frame { - msec: 1216 - hash: "204cfba6a668ba25ed37f12bfcdd97eb" - } - Frame { - msec: 1232 - hash: "fa6c8f7f8a8730d412168002511b82e6" - } - Frame { - msec: 1248 - hash: "0d491b55d03f5d5bb6cfce63bc98deae" - } - Frame { - msec: 1264 - hash: "0e4d3edabdf6e0faa366abcc3b0ef521" - } - Frame { - msec: 1280 - hash: "13f397452e74ef834662363b09b000b9" - } - Key { - type: 7 - key: 16777234 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "bb064cac4cb117b4d28e26d04dd59d7c" - } - Frame { - msec: 1312 - hash: "dfab74915a3f1e82c558ba8fb26d81fc" - } - Frame { - msec: 1328 - hash: "7593cfb3073aa9d638c093e0f4c9857d" - } - Frame { - msec: 1344 - hash: "fe4a725dcc97b7f320225e02dc88d34a" - } - Frame { - msec: 1360 - hash: "67794fa0162684b2097164d6cd666f16" - } - Frame { - msec: 1376 - hash: "747cfcd428eb59ca99749de261e561d4" - } - Frame { - msec: 1392 - hash: "293fd7523f25e42d2acab401482a9af9" - } - Frame { - msec: 1408 - hash: "2644c937db0488c14f833a9e9f7d9cf6" - } - Frame { - msec: 1424 - hash: "d80500f7cce8d887d0c523060e4217af" - } - Frame { - msec: 1440 - hash: "96265a45f0f25d9c0cd1168789b50952" - } - Frame { - msec: 1456 - hash: "e862d11944ea38939faa5b24fa9183bf" - } - Frame { - msec: 1472 - hash: "946c778fcc8ee4942a30d4654e103fec" - } - Frame { - msec: 1488 - hash: "946c778fcc8ee4942a30d4654e103fec" - } - Frame { - msec: 1504 - hash: "946c778fcc8ee4942a30d4654e103fec" - } - Frame { - msec: 1520 - hash: "946c778fcc8ee4942a30d4654e103fec" - } - Frame { - msec: 1536 - hash: "946c778fcc8ee4942a30d4654e103fec" - } - Frame { - msec: 1552 - hash: "946c778fcc8ee4942a30d4654e103fec" - } - Frame { - msec: 1568 - hash: "99e0e3d965bea36001298815d12b4d4c" - } - Frame { - msec: 1584 - hash: "c552ace3096eca31d0fc256d2bd153e0" - } - Frame { - msec: 1600 - hash: "203858ff0fc145ac60942c2b8e67ca20" - } - Frame { - msec: 1616 - hash: "11ea7696ec3aa9a394cabd723bcada9e" - } - Frame { - msec: 1632 - hash: "e0e24c0527e015d0bb05206771024d04" - } - Frame { - msec: 1648 - hash: "995ccae48c4f0fc2ab40e793d074e78b" - } - Key { - type: 6 - key: 16777249 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "cff7bee4ba1e8eb4c46e13f12f6059e1" - } - Frame { - msec: 1680 - hash: "e43bd84ba7bdc4ea0370c79bfa7667bd" - } - Frame { - msec: 1696 - hash: "b7dd97abf895eaea20836833f959f0c6" - } - Frame { - msec: 1712 - hash: "b724e9874f0df5ed4ad9bdedbc4c45c9" - } - Frame { - msec: 1728 - hash: "69d9d28793e65aa9a1829d07cc035e4d" - } - Frame { - msec: 1744 - hash: "689fc2cf5feb1084fceda93eab9b7aac" - } - Frame { - msec: 1760 - hash: "2bcc0f2fb8cccf7904c982cd60d3fefb" - } - Frame { - msec: 1776 - hash: "d55a868304da7e9af57cd775f2c283c1" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "b2591af5120258c99e84f31311396675" - } - Frame { - msec: 1808 - hash: "4f9908bdbad583a6a956a21d6ab05505" - } - Frame { - msec: 1824 - hash: "dd1c43a94dcabae975f0dba67c2742da" - } - Frame { - msec: 1840 - hash: "f9b8c8987bad613fe23fcf9d5fe995b8" - } - Frame { - msec: 1856 - hash: "9bd4431207a85e0effefb9cf36a2651b" - } - Frame { - msec: 1872 - hash: "cd7c4c097231797649f2d24a729e3587" - } - Frame { - msec: 1888 - hash: "f2ac503f2aab55df922f90a6b9baeb0f" - } - Frame { - msec: 1904 - hash: "f356c05f9445c2fb260a29a58431269c" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1920 - hash: "5580f8c543d67378b0f54117070f69bd" - } - Frame { - msec: 1936 - image: "cursorDelegate.2.png" - } - Frame { - msec: 1952 - hash: "634c5597e64c34b039c70f614f0100e1" - } - Frame { - msec: 1968 - hash: "7f0bde32846ae8172cfd02f38d34dc48" - } - Frame { - msec: 1984 - hash: "bc9092f889ffd6a6682ed9754c6697a2" - } - Frame { - msec: 2000 - hash: "3ef935e3a4a0d409af7dd38f2433cdfe" - } - Frame { - msec: 2016 - hash: "2a044024b38499e801810a19d313e01f" - } - Frame { - msec: 2032 - hash: "3ef935e3a4a0d409af7dd38f2433cdfe" - } - Frame { - msec: 2048 - hash: "bc9092f889ffd6a6682ed9754c6697a2" - } - Frame { - msec: 2064 - hash: "7f0bde32846ae8172cfd02f38d34dc48" - } - Frame { - msec: 2080 - hash: "634c5597e64c34b039c70f614f0100e1" - } - Frame { - msec: 2096 - hash: "80f3bf6ea745da047da936578b87ee00" - } - Frame { - msec: 2112 - hash: "5580f8c543d67378b0f54117070f69bd" - } - Frame { - msec: 2128 - hash: "f356c05f9445c2fb260a29a58431269c" - } - Frame { - msec: 2144 - hash: "f2ac503f2aab55df922f90a6b9baeb0f" - } - Frame { - msec: 2160 - hash: "cd7c4c097231797649f2d24a729e3587" - } - Frame { - msec: 2176 - hash: "9bd4431207a85e0effefb9cf36a2651b" - } - Frame { - msec: 2192 - hash: "f9b8c8987bad613fe23fcf9d5fe995b8" - } - Frame { - msec: 2208 - hash: "dd1c43a94dcabae975f0dba67c2742da" - } - Frame { - msec: 2224 - hash: "4f9908bdbad583a6a956a21d6ab05505" - } - Key { - type: 7 - key: 16777248 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "b2591af5120258c99e84f31311396675" - } - Frame { - msec: 2256 - hash: "5c40e466b5af2e4b67dbb4ea96b24146" - } - Frame { - msec: 2272 - hash: "899a30ca4014231c8e9f15be4e0c3ee6" - } - Frame { - msec: 2288 - hash: "a44bbb13a336fdd4aedaf4c5c6ee399a" - } - Frame { - msec: 2304 - hash: "3b1b3e228ccbd61f9dfb896391da0b5b" - } - Frame { - msec: 2320 - hash: "22f5ec3d2eda574d1976604b82307924" - } - Frame { - msec: 2336 - hash: "9e63d1a15c954d2960eecf54e5eeb172" - } - Frame { - msec: 2352 - hash: "64ce03b10500b5a98b5c826362d8140e" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "c96896be1a311c0cedc1c7ec1bd9e13e" - } - Frame { - msec: 2384 - hash: "d3d6dc1d8ff93e373583e3cbdca88b81" - } - Frame { - msec: 2400 - hash: "2a456146359c54c52f9e7a6cebcfa454" - } - Frame { - msec: 2416 - hash: "d127788c702c2ed037c709ffc331840e" - } - Frame { - msec: 2432 - hash: "8a5987a736b092e12198d969544d632c" - } - Frame { - msec: 2448 - hash: "e8471c605f6a8cc187d879510ed7ebe7" - } - Frame { - msec: 2464 - hash: "6959b4f72422636ae59989c9def06d03" - } - Frame { - msec: 2480 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 2512 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 2528 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 2544 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 2560 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 2576 - hash: "aa52467f87fbd766baa5137ddf18e0f6" - } - Frame { - msec: 2592 - hash: "bc9549a04b9bc898feda61b7fce45b3f" - } - Frame { - msec: 2608 - hash: "606e69ad9b6e3a82e08ae4bbabb34680" - } - Frame { - msec: 2624 - hash: "257ed9eae13221c5d47103043ef4ad5c" - } - Frame { - msec: 2640 - hash: "f5b44d257447499e0268e9a8730d88e7" - } - Frame { - msec: 2656 - hash: "8f03a92b2b0b04ee0ac45e7631df78ce" - } - Frame { - msec: 2672 - hash: "054e88b3d80940006b24fdf233a70682" - } - Frame { - msec: 2688 - hash: "20896fbba7e1970957ff20d33541730c" - } - Frame { - msec: 2704 - hash: "238fca62069b7c6e1b6919afca518dbe" - } - Frame { - msec: 2720 - hash: "764e14ba052d8340d6d674d6f417643d" - } - Frame { - msec: 2736 - hash: "278fb36637ff60d1949da9e9b887726f" - } - Frame { - msec: 2752 - hash: "f51251c5ec7b0071248d3fa5db1c12fd" - } - Frame { - msec: 2768 - hash: "785d38e036e7dd809037de3885067455" - } - Frame { - msec: 2784 - hash: "4291bb6217f363aab48812359626de36" - } - Frame { - msec: 2800 - hash: "e139ad6787f1c4a1b89d4030703076e5" - } - Frame { - msec: 2816 - hash: "4c23976fb1b3b583153cbd72f2db10f4" - } - Frame { - msec: 2832 - hash: "5e0a3d848a749ecd4f9a572f10664f4b" - } - Frame { - msec: 2848 - hash: "1acc382cfe2f5872982440e8a85eb57b" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2864 - hash: "eba94c6ae3dc4eb26c8d074137c7aa0f" - } - Frame { - msec: 2880 - hash: "7c75307fbb765bd69b888d500247b595" - } - Frame { - msec: 2896 - image: "cursorDelegate.3.png" - } - Frame { - msec: 2912 - hash: "da73d23a925d93194aeb64d1522adc02" - } - Frame { - msec: 2928 - hash: "d661872854338121d867b35d9e44ae6d" - } - Frame { - msec: 2944 - hash: "969b5cf20c7c4e18723a8b8a70ea68ec" - } - Frame { - msec: 2960 - hash: "c7318ea4b4a4ac49308bef41d3bc264d" - } - Frame { - msec: 2976 - hash: "dd6bd11cc0bc877dbd70c55d4f5bab29" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2992 - hash: "21905ed4264a52c9b404149abedabe33" - } - Frame { - msec: 3008 - hash: "e952374e5967619679af711157b561cd" - } - Frame { - msec: 3024 - hash: "e952374e5967619679af711157b561cd" - } - Frame { - msec: 3040 - hash: "21905ed4264a52c9b404149abedabe33" - } - Frame { - msec: 3056 - hash: "dd6bd11cc0bc877dbd70c55d4f5bab29" - } - Frame { - msec: 3072 - hash: "c7318ea4b4a4ac49308bef41d3bc264d" - } - Frame { - msec: 3088 - hash: "969b5cf20c7c4e18723a8b8a70ea68ec" - } - Frame { - msec: 3104 - hash: "d661872854338121d867b35d9e44ae6d" - } - Frame { - msec: 3120 - hash: "da73d23a925d93194aeb64d1522adc02" - } - Frame { - msec: 3136 - hash: "2c0261e2223d7212e047dd4af6246a8f" - } - Frame { - msec: 3152 - hash: "7c75307fbb765bd69b888d500247b595" - } - Frame { - msec: 3168 - hash: "eba94c6ae3dc4eb26c8d074137c7aa0f" - } - Frame { - msec: 3184 - hash: "e6eaa9959334f24ef3cf68d44d7340f1" - } - Frame { - msec: 3200 - hash: "3adb8604d872bc8ff5498841c6da71b5" - } - Frame { - msec: 3216 - hash: "e602eeaac3ce53033154297e73802c02" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3232 - hash: "85afa80a1c333674cfbfcc38cedc798d" - } - Frame { - msec: 3248 - hash: "72679887fb26b7eb2553d6e554e26679" - } - Frame { - msec: 3264 - hash: "d25f21361d9cea41b17277f1ffecac62" - } - Frame { - msec: 3280 - hash: "24db38727e1a58d515119181ea41e209" - } - Frame { - msec: 3296 - hash: "e7ddd84f438fd2d463a3b9552dad345a" - } - Frame { - msec: 3312 - hash: "621e406f5b9204eb5d82c4f66fdf6a61" - } - Frame { - msec: 3328 - hash: "2a8befe073dda8589197cf05eeeaaf59" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3344 - hash: "104f0e21a041236f48dab6fe2c1c5aa1" - } - Frame { - msec: 3360 - hash: "0f8f74614b0b7295bb9df8fa0b1f6877" - } - Frame { - msec: 3376 - hash: "3a3cc6cfd3200e06a2816f2746edf699" - } - Frame { - msec: 3392 - hash: "83032d1da6907ebe1ab9fddf314d0bc1" - } - Frame { - msec: 3408 - hash: "b93878281f21c85c211908086f2899e7" - } - Frame { - msec: 3424 - hash: "a554a6ecd96f37f114f1fd616e0aeab2" - } - Frame { - msec: 3440 - hash: "8943d47912a4206e61836d99cca835da" - } - Frame { - msec: 3456 - hash: "4d06d264f71d75421c9a6d5a87d6a9ba" - } - Frame { - msec: 3472 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 3488 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 3504 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 3520 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 3536 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 3552 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 3568 - hash: "ca17401d638025fde8aad18b9a358029" - } - Frame { - msec: 3584 - hash: "3542537f0b0e1375d81c7f0365bbdf1d" - } - Frame { - msec: 3600 - hash: "235b68812a3cb48fc09bd8319aef40f1" - } - Frame { - msec: 3616 - hash: "3aa88f646534068d13e9c4f23af52019" - } - Frame { - msec: 3632 - hash: "8f037bdef4940fdb1936900ad5aee36e" - } - Frame { - msec: 3648 - hash: "18e8239c50ca62a5bd96d983ab5ff46d" - } - Frame { - msec: 3664 - hash: "d62f6887bdad9decb48ebaf63a6330a3" - } - Frame { - msec: 3680 - hash: "0af7997ec1a755a761fc1ab47ef30137" - } - Frame { - msec: 3696 - hash: "b3a384f93ef5f36466f0a638182b66cb" - } - Frame { - msec: 3712 - hash: "fceb3ee105028e29dca001197c63e524" - } - Frame { - msec: 3728 - hash: "5c16dc7aee02eefa95d0c6211f81ba48" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3744 - hash: "e4c3193ad0885084becbeaaaa899fff4" - } - Frame { - msec: 3760 - hash: "84afa9118845126960309537e529ea74" - } - Frame { - msec: 3776 - hash: "6e18f95c4252aff3ee5447a08153ee53" - } - Frame { - msec: 3792 - hash: "59facabe2430703113665d0153402472" - } - Frame { - msec: 3808 - hash: "316bce2e605a4df04d41a4f7620086bd" - } - Frame { - msec: 3824 - hash: "7dcba8f0dd9fd67518f0502d904624fd" - } - Frame { - msec: 3840 - hash: "cb9166d113c5c7495916f6b7f850407c" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3856 - image: "cursorDelegate.4.png" - } - Frame { - msec: 3872 - hash: "7cc78c7ab5820a698b62c452dfc0d1db" - } - Frame { - msec: 3888 - hash: "5f068715dc1244895e6e09afd6e846a9" - } - Frame { - msec: 3904 - hash: "c279e7293539593bfc8250d37f78791c" - } - Frame { - msec: 3920 - hash: "d01ff855befa456a213d4f78f22fe46c" - } - Frame { - msec: 3936 - hash: "16e20d2e663e64daa1920b165604f342" - } - Frame { - msec: 3952 - hash: "2feebd6865e71afd30c73e342fb2cab1" - } - Frame { - msec: 3968 - hash: "8c417cb9ef300c895323060ceb860bd9" - } - Frame { - msec: 3984 - hash: "05903a78cad8d331349f93a1cea75d7d" - } - Frame { - msec: 4000 - hash: "e142bb264ab7877a9b40596d497ea2c1" - } - Frame { - msec: 4016 - hash: "717e5e965b9ff188fd9200927968d359" - } - Frame { - msec: 4032 - hash: "e142bb264ab7877a9b40596d497ea2c1" - } - Frame { - msec: 4048 - hash: "05903a78cad8d331349f93a1cea75d7d" - } - Frame { - msec: 4064 - hash: "8c417cb9ef300c895323060ceb860bd9" - } - Key { - type: 7 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "2feebd6865e71afd30c73e342fb2cab1" - } - Frame { - msec: 4096 - hash: "16e20d2e663e64daa1920b165604f342" - } - Frame { - msec: 4112 - hash: "d01ff855befa456a213d4f78f22fe46c" - } - Frame { - msec: 4128 - hash: "c279e7293539593bfc8250d37f78791c" - } - Frame { - msec: 4144 - hash: "5f068715dc1244895e6e09afd6e846a9" - } - Frame { - msec: 4160 - hash: "7cc78c7ab5820a698b62c452dfc0d1db" - } - Frame { - msec: 4176 - hash: "194b8b8843cf8a7d90ec910ee4021d9c" - } - Frame { - msec: 4192 - hash: "cb9166d113c5c7495916f6b7f850407c" - } - Frame { - msec: 4208 - hash: "7dcba8f0dd9fd67518f0502d904624fd" - } - Frame { - msec: 4224 - hash: "316bce2e605a4df04d41a4f7620086bd" - } - Frame { - msec: 4240 - hash: "59facabe2430703113665d0153402472" - } - Frame { - msec: 4256 - hash: "6e18f95c4252aff3ee5447a08153ee53" - } - Frame { - msec: 4272 - hash: "84afa9118845126960309537e529ea74" - } - Frame { - msec: 4288 - hash: "e4c3193ad0885084becbeaaaa899fff4" - } - Frame { - msec: 4304 - hash: "6a7b8f8ae1959681afc7e76c242ddf63" - } - Frame { - msec: 4320 - hash: "94457c4fd09b63fe9df738af422a3716" - } - Frame { - msec: 4336 - hash: "29189dea05961b2ed7d525b17bc99513" - } - Frame { - msec: 4352 - hash: "11fc3e52587bbedf0016c829d2d849d1" - } - Frame { - msec: 4368 - hash: "57178e2a3d404d4301ee89a6202ad7cc" - } - Frame { - msec: 4384 - hash: "151778e9dd76fbf6d9e98b86469ec01e" - } - Frame { - msec: 4400 - hash: "bfab5d3f368c06f2ef5e22b7e16090ad" - } - Frame { - msec: 4416 - hash: "ef29b8ff8fcf221368056aa249f706a1" - } - Frame { - msec: 4432 - hash: "cd14458426f94efbbc729112e6a481c5" - } - Frame { - msec: 4448 - hash: "cbafbb1c359a0c0e7182c4449d04b052" - } - Frame { - msec: 4464 - hash: "b56e3f531bb6b3f2c62a6972910038b3" - } - Frame { - msec: 4480 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4496 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4512 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4528 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4544 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4560 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4576 - hash: "3d6db6e3ee77ee75341ce16dc4a56c59" - } - Frame { - msec: 4592 - hash: "ff43ccdb14ae4d12ffead2eb261a5056" - } - Frame { - msec: 4608 - hash: "fb73ac1e61834f2f0263e53a3c00a857" - } - Frame { - msec: 4624 - hash: "6bd66d118ff27b0cea7944ea22c727c9" - } - Frame { - msec: 4640 - hash: "0b474aa5492386c319bf72280dae7896" - } - Frame { - msec: 4656 - hash: "81952cf37f0965a603bf06a05ef610fa" - } - Frame { - msec: 4672 - hash: "ad7606f147498c755284d111a1af7710" - } - Frame { - msec: 4688 - hash: "144abb4208f9cc4f823e0d4abb3207d8" - } - Frame { - msec: 4704 - hash: "0b4f3fafaf262f16e887938eda9624a3" - } - Frame { - msec: 4720 - hash: "e729d3fde3db0f72b1080c7dc2eded1a" - } - Frame { - msec: 4736 - hash: "36ffc8e16ebcb9c4499c4ff037b8b293" - } - Frame { - msec: 4752 - hash: "c49853a23d2e8b966836888acce19ecc" - } - Frame { - msec: 4768 - hash: "3873af5aa871bdb1d4f538333b11cf33" - } - Frame { - msec: 4784 - hash: "6d02efe848b27b3e221a8332099fb83f" - } - Frame { - msec: 4800 - hash: "2f08f365916d892f0789e93b674cb41b" - } - Frame { - msec: 4816 - image: "cursorDelegate.5.png" - } - Frame { - msec: 4832 - hash: "3adb8604d872bc8ff5498841c6da71b5" - } - Frame { - msec: 4848 - hash: "e6eaa9959334f24ef3cf68d44d7340f1" - } - Frame { - msec: 4864 - hash: "eba94c6ae3dc4eb26c8d074137c7aa0f" - } - Frame { - msec: 4880 - hash: "7c75307fbb765bd69b888d500247b595" - } - Frame { - msec: 4896 - hash: "2c0261e2223d7212e047dd4af6246a8f" - } - Frame { - msec: 4912 - hash: "da73d23a925d93194aeb64d1522adc02" - } - Frame { - msec: 4928 - hash: "d661872854338121d867b35d9e44ae6d" - } - Frame { - msec: 4944 - hash: "969b5cf20c7c4e18723a8b8a70ea68ec" - } - Frame { - msec: 4960 - hash: "c7318ea4b4a4ac49308bef41d3bc264d" - } - Frame { - msec: 4976 - hash: "dd6bd11cc0bc877dbd70c55d4f5bab29" - } - Frame { - msec: 4992 - hash: "21905ed4264a52c9b404149abedabe33" - } - Frame { - msec: 5008 - hash: "e952374e5967619679af711157b561cd" - } - Frame { - msec: 5024 - hash: "e952374e5967619679af711157b561cd" - } - Frame { - msec: 5040 - hash: "21905ed4264a52c9b404149abedabe33" - } - Frame { - msec: 5056 - hash: "dd6bd11cc0bc877dbd70c55d4f5bab29" - } - Frame { - msec: 5072 - hash: "c7318ea4b4a4ac49308bef41d3bc264d" - } - Frame { - msec: 5088 - hash: "969b5cf20c7c4e18723a8b8a70ea68ec" - } - Frame { - msec: 5104 - hash: "d661872854338121d867b35d9e44ae6d" - } - Frame { - msec: 5120 - hash: "da73d23a925d93194aeb64d1522adc02" - } - Frame { - msec: 5136 - hash: "2c0261e2223d7212e047dd4af6246a8f" - } - Frame { - msec: 5152 - hash: "7c75307fbb765bd69b888d500247b595" - } - Frame { - msec: 5168 - hash: "eba94c6ae3dc4eb26c8d074137c7aa0f" - } - Frame { - msec: 5184 - hash: "e6eaa9959334f24ef3cf68d44d7340f1" - } - Frame { - msec: 5200 - hash: "3adb8604d872bc8ff5498841c6da71b5" - } - Frame { - msec: 5216 - hash: "e602eeaac3ce53033154297e73802c02" - } - Frame { - msec: 5232 - hash: "2f08f365916d892f0789e93b674cb41b" - } - Frame { - msec: 5248 - hash: "6d02efe848b27b3e221a8332099fb83f" - } - Frame { - msec: 5264 - hash: "3873af5aa871bdb1d4f538333b11cf33" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.0.png deleted file mode 100644 index 7d0d0ae..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.1.png deleted file mode 100644 index 7d612bf..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.qml deleted file mode 100644 index 8c7e380..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/linkActivated.qml +++ /dev/null @@ -1,191 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "linkActivated.0.png" - } - Frame { - msec: 32 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 48 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 64 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 80 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 96 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 112 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 128 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 144 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 160 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 176 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 192 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 208 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 224 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 240 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 256 - hash: "53d97d0966197ea41364511dea13752f" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 21; y: 13 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 272 - hash: "9482227cbc77e9083218c1452e8644d8" - } - Frame { - msec: 288 - hash: "9482227cbc77e9083218c1452e8644d8" - } - Frame { - msec: 304 - hash: "9482227cbc77e9083218c1452e8644d8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 22; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 320 - hash: "9482227cbc77e9083218c1452e8644d8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 10 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 23; y: 10 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 336 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 352 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 368 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 384 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 400 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 416 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 432 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 448 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 464 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 480 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 496 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 512 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 528 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 544 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 560 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 576 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 592 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 608 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png deleted file mode 100644 index 8d74b8d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png deleted file mode 100644 index 8a642d2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png deleted file mode 100644 index 5698741..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png deleted file mode 100644 index 7f56f34..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.4.png deleted file mode 100644 index 8d74b8d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml deleted file mode 100644 index a4ba005..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml +++ /dev/null @@ -1,1371 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "qt-669.0.png" - } - Frame { - msec: 32 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 48 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 64 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 80 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 96 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 112 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 128 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 144 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 160 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 176 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 192 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 208 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 224 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 240 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 256 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 272 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 288 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 304 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 320 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 336 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 352 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 368 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 384 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 400 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 416 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 432 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 464 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 480 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 496 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 512 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 528 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 560 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 576 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 592 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 608 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 624 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 640 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 656 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 672 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 704 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 720 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 736 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 752 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 768 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 784 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 800 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 816 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 832 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 848 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 864 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 880 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 896 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 912 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 928 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 944 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 960 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 976 - image: "qt-669.1.png" - } - Frame { - msec: 992 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 1008 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1024 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 1040 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 1056 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 1072 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 1088 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1104 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 1120 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 1136 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1152 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 1168 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 1184 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 1200 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 1216 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1232 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 1248 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 1264 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 1280 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 1312 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 1328 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 1344 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1360 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1376 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1392 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1408 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1424 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1440 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1456 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1472 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1488 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1520 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1536 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1552 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1568 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1584 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1600 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1616 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1632 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1648 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1664 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1680 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1696 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1712 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1728 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1744 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1760 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1776 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1792 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1808 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1824 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Frame { - msec: 1840 - hash: "da047993eb77afffee6b8f0f210ca2d6" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1856 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1872 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1888 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1904 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1920 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1936 - image: "qt-669.2.png" - } - Frame { - msec: 1952 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1968 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 1984 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2000 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 2016 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 2032 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 2048 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Frame { - msec: 2064 - hash: "6f08f7b6337d5ebb305579bb71ba31d8" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2080 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 2096 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 2112 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 2128 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 2144 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 2176 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 2192 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 2208 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Frame { - msec: 2224 - hash: "b80db720c6371aeaf99f4787fec2c5a3" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 2256 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2272 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 2288 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 2304 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 2320 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Frame { - msec: 2336 - hash: "c8b5e39f4930399527236905cdbcb546" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2352 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2368 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2384 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2400 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2416 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2432 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2448 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2464 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2480 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2496 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2512 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2528 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2544 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2560 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2576 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Frame { - msec: 2592 - hash: "3624b85c9362dfeff911cd5426f11ada" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2608 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 2624 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 2640 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 2656 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 2672 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2688 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 2704 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 2720 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 2736 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Frame { - msec: 2752 - hash: "fa22742b8778a3b63ce7d6699dbf7482" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2768 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 2784 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 2800 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2816 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 2832 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 2848 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Frame { - msec: 2864 - hash: "b069c174a1b9589ed3137cd01f870b17" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2880 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 2896 - image: "qt-669.3.png" - } - Frame { - msec: 2912 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 2928 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 2960 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 2976 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 2992 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Frame { - msec: 3008 - hash: "53f9d63bacad27fd73c2f84b82599dbc" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3024 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3040 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3056 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3072 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3088 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3104 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3120 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3136 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3152 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3168 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3184 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3200 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3216 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3232 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3248 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3264 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3280 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3296 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3312 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3328 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3344 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3360 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3376 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3392 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3408 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3424 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3440 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3456 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3472 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3488 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3504 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3520 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3536 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3552 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3568 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3584 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3600 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3616 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3632 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3648 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3664 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3680 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Frame { - msec: 3696 - hash: "9294b20b7160322e1f2eecaee6ebf856" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3712 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3728 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3744 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3760 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3776 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3792 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3808 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3824 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3840 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3856 - image: "qt-669.4.png" - } - Frame { - msec: 3872 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3888 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3904 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3920 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3936 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3952 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3968 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 3984 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4000 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4016 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4032 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4048 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4064 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4080 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4096 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4112 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4128 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4144 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4160 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4176 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4192 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4208 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4224 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4240 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4256 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4272 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4288 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } - Frame { - msec: 4304 - hash: "80122e3e0d124c01b2769c1c88aa4a13" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png deleted file mode 100644 index a1c3c39..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png deleted file mode 100644 index bfc91f5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png deleted file mode 100644 index 8effaef..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png deleted file mode 100644 index 8effaef..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.12.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.12.png deleted file mode 100644 index 8effaef..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png deleted file mode 100644 index f1829fa..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png deleted file mode 100644 index b7f41db..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png deleted file mode 100644 index 9e58c3a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png deleted file mode 100644 index 8dbcc41..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png deleted file mode 100644 index 302974b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png deleted file mode 100644 index b79af19..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png deleted file mode 100644 index b435da6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png deleted file mode 100644 index ef15fdf..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml deleted file mode 100644 index a03948c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml +++ /dev/null @@ -1,4687 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "usingMultilineEdit.0.png" - } - Frame { - msec: 32 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 48 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 64 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 80 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 96 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 112 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 128 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 144 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 160 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 176 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 192 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 208 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 224 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 240 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 256 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 272 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 288 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 304 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 320 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 118; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 336 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 352 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 368 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 384 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 400 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 118; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 416 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 432 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 448 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 464 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 480 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 496 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 512 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 528 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 544 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 560 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 576 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 592 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 608 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 624 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Frame { - msec: 640 - hash: "b59ca5ccc1bd1d1192cc109d66a31d0b" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 117; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 656 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 672 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 117; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 688 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 704 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 720 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 736 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 752 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 768 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 784 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 800 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 816 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 832 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 848 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 864 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 880 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 896 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 912 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 928 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 944 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 960 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 976 - image: "usingMultilineEdit.1.png" - } - Frame { - msec: 992 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1008 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1024 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1040 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1056 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1072 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1088 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1104 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1120 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1136 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1152 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1168 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1184 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1200 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1216 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1232 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1248 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1264 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1280 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Frame { - msec: 1296 - hash: "2414ab7436ed58a29eaf3ef15b5ced79" - } - Key { - type: 6 - key: 44 - modifiers: 0 - text: "2c" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "91757521cdb0617645a2a6cb831f51f3" - } - Frame { - msec: 1328 - hash: "91757521cdb0617645a2a6cb831f51f3" - } - Frame { - msec: 1344 - hash: "91757521cdb0617645a2a6cb831f51f3" - } - Frame { - msec: 1360 - hash: "91757521cdb0617645a2a6cb831f51f3" - } - Frame { - msec: 1376 - hash: "91757521cdb0617645a2a6cb831f51f3" - } - Key { - type: 7 - key: 44 - modifiers: 0 - text: "2c" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "91757521cdb0617645a2a6cb831f51f3" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1408 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Frame { - msec: 1424 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Frame { - msec: 1440 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Frame { - msec: 1456 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1472 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Frame { - msec: 1488 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Frame { - msec: 1504 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Frame { - msec: 1520 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Frame { - msec: 1536 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Frame { - msec: 1552 - hash: "a7e2d2f2668dcb902d3ab0e413d9b639" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "1602f7c814daec9612795d1e109b8f14" - } - Frame { - msec: 1584 - hash: "1602f7c814daec9612795d1e109b8f14" - } - Frame { - msec: 1600 - hash: "1602f7c814daec9612795d1e109b8f14" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1616 - hash: "1602f7c814daec9612795d1e109b8f14" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1632 - hash: "84e1e7c90b2134d037146d8a7cd4c413" - } - Frame { - msec: 1648 - hash: "84e1e7c90b2134d037146d8a7cd4c413" - } - Frame { - msec: 1664 - hash: "84e1e7c90b2134d037146d8a7cd4c413" - } - Frame { - msec: 1680 - hash: "84e1e7c90b2134d037146d8a7cd4c413" - } - Frame { - msec: 1696 - hash: "84e1e7c90b2134d037146d8a7cd4c413" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1712 - hash: "84e1e7c90b2134d037146d8a7cd4c413" - } - Frame { - msec: 1728 - hash: "84e1e7c90b2134d037146d8a7cd4c413" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1744 - hash: "87109c5f296e5b56aaecc09a2decae4d" - } - Frame { - msec: 1760 - hash: "87109c5f296e5b56aaecc09a2decae4d" - } - Frame { - msec: 1776 - hash: "87109c5f296e5b56aaecc09a2decae4d" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "87109c5f296e5b56aaecc09a2decae4d" - } - Frame { - msec: 1808 - hash: "87109c5f296e5b56aaecc09a2decae4d" - } - Frame { - msec: 1824 - hash: "87109c5f296e5b56aaecc09a2decae4d" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 1840 - hash: "29f766ca17ac45522ca2079cce9a1015" - } - Frame { - msec: 1856 - hash: "29f766ca17ac45522ca2079cce9a1015" - } - Frame { - msec: 1872 - hash: "29f766ca17ac45522ca2079cce9a1015" - } - Frame { - msec: 1888 - hash: "29f766ca17ac45522ca2079cce9a1015" - } - Frame { - msec: 1904 - hash: "29f766ca17ac45522ca2079cce9a1015" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1920 - hash: "be6de699f29278ee3a39c3d8ed90f808" - } - Frame { - msec: 1936 - image: "usingMultilineEdit.2.png" - } - Frame { - msec: 1952 - hash: "be6de699f29278ee3a39c3d8ed90f808" - } - Frame { - msec: 1968 - hash: "be6de699f29278ee3a39c3d8ed90f808" - } - Key { - type: 6 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 1984 - hash: "ef413406c3e7aa03ced4e06661dfafcc" - } - Frame { - msec: 2000 - hash: "ef413406c3e7aa03ced4e06661dfafcc" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2016 - hash: "ef413406c3e7aa03ced4e06661dfafcc" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "d29b729a45533ef77af530ab2f125bd1" - } - Frame { - msec: 2048 - hash: "d29b729a45533ef77af530ab2f125bd1" - } - Key { - type: 7 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "d29b729a45533ef77af530ab2f125bd1" - } - Frame { - msec: 2080 - hash: "d29b729a45533ef77af530ab2f125bd1" - } - Frame { - msec: 2096 - hash: "d29b729a45533ef77af530ab2f125bd1" - } - Frame { - msec: 2112 - hash: "d29b729a45533ef77af530ab2f125bd1" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "d29b729a45533ef77af530ab2f125bd1" - } - Frame { - msec: 2144 - hash: "d29b729a45533ef77af530ab2f125bd1" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "3b2069cbaa6640664dbe1b80f3cf0670" - } - Frame { - msec: 2176 - hash: "3b2069cbaa6640664dbe1b80f3cf0670" - } - Frame { - msec: 2192 - hash: "3b2069cbaa6640664dbe1b80f3cf0670" - } - Frame { - msec: 2208 - hash: "3b2069cbaa6640664dbe1b80f3cf0670" - } - Frame { - msec: 2224 - hash: "3b2069cbaa6640664dbe1b80f3cf0670" - } - Frame { - msec: 2240 - hash: "3b2069cbaa6640664dbe1b80f3cf0670" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 2256 - hash: "6ef4fd1a5d53c16670163384ef4c8f06" - } - Frame { - msec: 2272 - hash: "6ef4fd1a5d53c16670163384ef4c8f06" - } - Frame { - msec: 2288 - hash: "6ef4fd1a5d53c16670163384ef4c8f06" - } - Frame { - msec: 2304 - hash: "6ef4fd1a5d53c16670163384ef4c8f06" - } - Frame { - msec: 2320 - hash: "6ef4fd1a5d53c16670163384ef4c8f06" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 2336 - hash: "6ef4fd1a5d53c16670163384ef4c8f06" - } - Frame { - msec: 2352 - hash: "6ef4fd1a5d53c16670163384ef4c8f06" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "c656f82ce3471c70d5f8050c5bd904e6" - } - Frame { - msec: 2384 - hash: "c656f82ce3471c70d5f8050c5bd904e6" - } - Frame { - msec: 2400 - hash: "c656f82ce3471c70d5f8050c5bd904e6" - } - Frame { - msec: 2416 - hash: "c656f82ce3471c70d5f8050c5bd904e6" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 2432 - hash: "c656f82ce3471c70d5f8050c5bd904e6" - } - Key { - type: 6 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "991d345c4a62087543afa032e8d4bd2f" - } - Frame { - msec: 2464 - hash: "991d345c4a62087543afa032e8d4bd2f" - } - Frame { - msec: 2480 - hash: "991d345c4a62087543afa032e8d4bd2f" - } - Frame { - msec: 2496 - hash: "991d345c4a62087543afa032e8d4bd2f" - } - Frame { - msec: 2512 - hash: "991d345c4a62087543afa032e8d4bd2f" - } - Frame { - msec: 2528 - hash: "991d345c4a62087543afa032e8d4bd2f" - } - Key { - type: 7 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 2544 - hash: "991d345c4a62087543afa032e8d4bd2f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Frame { - msec: 2576 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Frame { - msec: 2592 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Frame { - msec: 2608 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2624 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Frame { - msec: 2640 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Frame { - msec: 2656 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Frame { - msec: 2672 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Frame { - msec: 2688 - hash: "9b55130d7cb0922aaeed3a5aad103f98" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 2704 - hash: "9b323c8f49dc890af8849a0de8a7db4d" - } - Frame { - msec: 2720 - hash: "9b323c8f49dc890af8849a0de8a7db4d" - } - Frame { - msec: 2736 - hash: "9b323c8f49dc890af8849a0de8a7db4d" - } - Frame { - msec: 2752 - hash: "9b323c8f49dc890af8849a0de8a7db4d" - } - Frame { - msec: 2768 - hash: "9b323c8f49dc890af8849a0de8a7db4d" - } - Frame { - msec: 2784 - hash: "9b323c8f49dc890af8849a0de8a7db4d" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "c3c761352c46bd89c400c6638180fa9a" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 2816 - hash: "c3c761352c46bd89c400c6638180fa9a" - } - Frame { - msec: 2832 - hash: "c3c761352c46bd89c400c6638180fa9a" - } - Frame { - msec: 2848 - hash: "c3c761352c46bd89c400c6638180fa9a" - } - Frame { - msec: 2864 - hash: "c3c761352c46bd89c400c6638180fa9a" - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2880 - hash: "c3c761352c46bd89c400c6638180fa9a" - } - Frame { - msec: 2896 - image: "usingMultilineEdit.3.png" - } - Frame { - msec: 2912 - hash: "c3c761352c46bd89c400c6638180fa9a" - } - Frame { - msec: 2928 - hash: "c3c761352c46bd89c400c6638180fa9a" - } - Key { - type: 6 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "93af025fc4cf949167efac7ed3bc5258" - } - Frame { - msec: 2960 - hash: "93af025fc4cf949167efac7ed3bc5258" - } - Frame { - msec: 2976 - hash: "93af025fc4cf949167efac7ed3bc5258" - } - Key { - type: 7 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2992 - hash: "41fe34c5246a438886e85fdc30513a08" - } - Frame { - msec: 3008 - hash: "41fe34c5246a438886e85fdc30513a08" - } - Frame { - msec: 3024 - hash: "41fe34c5246a438886e85fdc30513a08" - } - Frame { - msec: 3040 - hash: "41fe34c5246a438886e85fdc30513a08" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 3056 - hash: "41fe34c5246a438886e85fdc30513a08" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3072 - hash: "db7bd05984a1ca713382f109780b8e5d" - } - Frame { - msec: 3088 - hash: "db7bd05984a1ca713382f109780b8e5d" - } - Frame { - msec: 3104 - hash: "db7bd05984a1ca713382f109780b8e5d" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3120 - hash: "db7bd05984a1ca713382f109780b8e5d" - } - Key { - type: 7 - key: 32 - modifiers: 33554432 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3136 - hash: "db7bd05984a1ca713382f109780b8e5d" - } - Frame { - msec: 3152 - hash: "db7bd05984a1ca713382f109780b8e5d" - } - Key { - type: 6 - key: 73 - modifiers: 33554432 - text: "49" - autorep: false - count: 1 - } - Frame { - msec: 3168 - hash: "85bed6c44d017fb45591ee821a6e8c82" - } - Frame { - msec: 3184 - hash: "85bed6c44d017fb45591ee821a6e8c82" - } - Frame { - msec: 3200 - hash: "85bed6c44d017fb45591ee821a6e8c82" - } - Frame { - msec: 3216 - hash: "85bed6c44d017fb45591ee821a6e8c82" - } - Key { - type: 7 - key: 73 - modifiers: 33554432 - text: "49" - autorep: false - count: 1 - } - Frame { - msec: 3232 - hash: "85bed6c44d017fb45591ee821a6e8c82" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3248 - hash: "70e09c15e0db15327b278c20508cd77e" - } - Frame { - msec: 3264 - hash: "70e09c15e0db15327b278c20508cd77e" - } - Frame { - msec: 3280 - hash: "70e09c15e0db15327b278c20508cd77e" - } - Frame { - msec: 3296 - hash: "70e09c15e0db15327b278c20508cd77e" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3312 - hash: "70e09c15e0db15327b278c20508cd77e" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3328 - hash: "7bdf47aad57a3e53683819927a9ba6f7" - } - Frame { - msec: 3344 - hash: "7bdf47aad57a3e53683819927a9ba6f7" - } - Frame { - msec: 3360 - hash: "7bdf47aad57a3e53683819927a9ba6f7" - } - Frame { - msec: 3376 - hash: "7bdf47aad57a3e53683819927a9ba6f7" - } - Frame { - msec: 3392 - hash: "7bdf47aad57a3e53683819927a9ba6f7" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3408 - hash: "7bdf47aad57a3e53683819927a9ba6f7" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3424 - hash: "cd302294ea4a6015f4093e3ce0640a15" - } - Frame { - msec: 3440 - hash: "cd302294ea4a6015f4093e3ce0640a15" - } - Frame { - msec: 3456 - hash: "cd302294ea4a6015f4093e3ce0640a15" - } - Frame { - msec: 3472 - hash: "cd302294ea4a6015f4093e3ce0640a15" - } - Frame { - msec: 3488 - hash: "cd302294ea4a6015f4093e3ce0640a15" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Key { - type: 6 - key: 78 - modifiers: 0 - text: "6e" - autorep: false - count: 1 - } - Frame { - msec: 3504 - hash: "6679b8bffbcf389e1a56e9e494c9041c" - } - Frame { - msec: 3520 - hash: "6679b8bffbcf389e1a56e9e494c9041c" - } - Frame { - msec: 3536 - hash: "6679b8bffbcf389e1a56e9e494c9041c" - } - Frame { - msec: 3552 - hash: "6679b8bffbcf389e1a56e9e494c9041c" - } - Frame { - msec: 3568 - hash: "6679b8bffbcf389e1a56e9e494c9041c" - } - Frame { - msec: 3584 - hash: "6679b8bffbcf389e1a56e9e494c9041c" - } - Key { - type: 7 - key: 78 - modifiers: 0 - text: "6e" - autorep: false - count: 1 - } - Frame { - msec: 3600 - hash: "6679b8bffbcf389e1a56e9e494c9041c" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 3616 - hash: "6cf8306437867645e5459cd4c9733ef7" - } - Frame { - msec: 3632 - hash: "6cf8306437867645e5459cd4c9733ef7" - } - Frame { - msec: 3648 - hash: "6cf8306437867645e5459cd4c9733ef7" - } - Frame { - msec: 3664 - hash: "6cf8306437867645e5459cd4c9733ef7" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3680 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 3696 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3712 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3728 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3744 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3760 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3776 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3792 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3808 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3824 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3840 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3856 - image: "usingMultilineEdit.4.png" - } - Frame { - msec: 3872 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3888 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3904 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3920 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3936 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3952 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Frame { - msec: 3968 - hash: "31c0880fb6b8995881f0983685c51c81" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 3984 - hash: "34c2a53d8852e17ab2b7990eb6156343" - } - Frame { - msec: 4000 - hash: "34c2a53d8852e17ab2b7990eb6156343" - } - Frame { - msec: 4016 - hash: "34c2a53d8852e17ab2b7990eb6156343" - } - Frame { - msec: 4032 - hash: "34c2a53d8852e17ab2b7990eb6156343" - } - Frame { - msec: 4048 - hash: "34c2a53d8852e17ab2b7990eb6156343" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4064 - hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" - } - Frame { - msec: 4096 - hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" - } - Frame { - msec: 4112 - hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" - } - Frame { - msec: 4128 - hash: "75a0e73d34f90ca26b4c7e94a7a6ecd2" - } - Key { - type: 6 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 4144 - hash: "296a65279cec34eb93083f3938bf9b16" - } - Frame { - msec: 4160 - hash: "296a65279cec34eb93083f3938bf9b16" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4176 - hash: "296a65279cec34eb93083f3938bf9b16" - } - Frame { - msec: 4192 - hash: "296a65279cec34eb93083f3938bf9b16" - } - Frame { - msec: 4208 - hash: "296a65279cec34eb93083f3938bf9b16" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 4224 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Frame { - msec: 4240 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Key { - type: 7 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 4256 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Frame { - msec: 4272 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 4288 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Frame { - msec: 4304 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Frame { - msec: 4320 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Frame { - msec: 4336 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Frame { - msec: 4352 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Frame { - msec: 4368 - hash: "902a4133742f9a99195a059f7f6b91df" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4384 - hash: "7e92966a300a81511c5fcb9e447b9029" - } - Frame { - msec: 4400 - hash: "7e92966a300a81511c5fcb9e447b9029" - } - Frame { - msec: 4416 - hash: "7e92966a300a81511c5fcb9e447b9029" - } - Frame { - msec: 4432 - hash: "7e92966a300a81511c5fcb9e447b9029" - } - Frame { - msec: 4448 - hash: "7e92966a300a81511c5fcb9e447b9029" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4464 - hash: "7e92966a300a81511c5fcb9e447b9029" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4480 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4496 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4512 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4528 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4544 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4560 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4576 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4592 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4608 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4624 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4640 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4656 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4672 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4688 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4704 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4720 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4736 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4752 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4768 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4784 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4800 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Frame { - msec: 4816 - image: "usingMultilineEdit.5.png" - } - Frame { - msec: 4832 - hash: "d22869235a5e4689db64d97f0b5af6c0" - } - Key { - type: 6 - key: 63 - modifiers: 33554432 - text: "3f" - autorep: false - count: 1 - } - Frame { - msec: 4848 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 4864 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 4880 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 4896 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 4912 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 4928 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 4944 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Key { - type: 7 - key: 63 - modifiers: 33554432 - text: "3f" - autorep: false - count: 1 - } - Frame { - msec: 4960 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 4976 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 4992 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5008 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5024 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5040 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5056 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5072 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5088 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5104 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5120 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5136 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5152 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5168 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5184 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5200 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5216 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5232 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5248 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5264 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5280 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5296 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5312 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5328 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5344 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5360 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5376 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5392 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5408 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5424 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5440 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5456 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5472 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5488 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5504 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5520 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5536 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5552 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5568 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5584 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5600 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5616 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5632 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5648 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5664 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5680 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5696 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5712 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5728 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5744 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Frame { - msec: 5760 - hash: "8153431eabfb3a6916aa37319d9fd379" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 48; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - image: "usingMultilineEdit.6.png" - } - Frame { - msec: 5792 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 5808 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 5824 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 22 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 23 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "4b0c9ae119bd6c9f6331cbefc53afa3d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "4b0c9ae119bd6c9f6331cbefc53afa3d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 41 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "e6b3b80f052fec9f67b02a7f36676b5d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "37d1ee8e1c914d499dd7920576dadcae" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 52 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 58 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5920 - hash: "37d1ee8e1c914d499dd7920576dadcae" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 69 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5936 - hash: "34f7bd61afb22009181d79841bc59fa1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 62; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5952 - hash: "23ea9471d132daab6193b0809c8bd98e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5968 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 105 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 128 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 130 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 134 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 140 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 149 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 153 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Frame { - msec: 6208 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Frame { - msec: 6224 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Frame { - msec: 6240 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Frame { - msec: 6256 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6288 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6304 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 126 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6320 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 63; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6336 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 88 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6352 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 72 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6368 - hash: "e35d1c5a15474388727942b41fdcec0f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 58 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 51 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6384 - hash: "1b24d0c17446cfadc351127f842ac5fd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6400 - hash: "1b24d0c17446cfadc351127f842ac5fd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6416 - hash: "f0b06fefc9e18b836ffe081215efe584" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 16 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 6 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6432 - hash: "9ed30cb00df82cce04e8c8b76d056013" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6448 - hash: "4d37a34962e019f47201da6baddebca8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: -23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6464 - hash: "cd83055403901b1a7a99dfda3798ca7e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6480 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6496 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6512 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6544 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6560 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6576 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "71cdc5a9144234556630430361779ff7" - } - Frame { - msec: 6608 - hash: "71cdc5a9144234556630430361779ff7" - } - Frame { - msec: 6624 - hash: "71cdc5a9144234556630430361779ff7" - } - Frame { - msec: 6640 - hash: "71cdc5a9144234556630430361779ff7" - } - Frame { - msec: 6656 - hash: "71cdc5a9144234556630430361779ff7" - } - Frame { - msec: 6672 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -47 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: -42 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: -39 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6720 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: -28 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - image: "usingMultilineEdit.7.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6752 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: -18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: -14 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6768 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: -10 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6784 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -6 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: -3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6800 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: -1 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 0 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6816 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6832 - hash: "71cdc5a9144234556630430361779ff7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 5 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 7 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6848 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 10 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6864 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 11 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 55; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6896 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 6912 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 6928 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 6944 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 6960 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 6976 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 6992 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 7008 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 7024 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 7040 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 7056 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 7072 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Frame { - msec: 7088 - hash: "0fba30df8b6cac2f911fbd2b7c48fca6" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 59; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7104 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7120 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7136 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7152 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7168 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 59; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7184 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7200 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7216 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7232 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7248 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7264 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7280 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7296 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7312 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7328 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7344 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7360 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7376 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7392 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7408 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7424 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7440 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7456 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7472 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7488 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7504 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7520 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7536 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7552 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Frame { - msec: 7568 - hash: "df53c57d83cf38d96893f379d8a0c1a7" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7584 - hash: "bdc721eb51436b121826d4163cbf596f" - } - Frame { - msec: 7600 - hash: "bdc721eb51436b121826d4163cbf596f" - } - Frame { - msec: 7616 - hash: "bdc721eb51436b121826d4163cbf596f" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7632 - hash: "bdc721eb51436b121826d4163cbf596f" - } - Frame { - msec: 7648 - hash: "bdc721eb51436b121826d4163cbf596f" - } - Frame { - msec: 7664 - hash: "bdc721eb51436b121826d4163cbf596f" - } - Frame { - msec: 7680 - hash: "bdc721eb51436b121826d4163cbf596f" - } - Frame { - msec: 7696 - image: "usingMultilineEdit.8.png" - } - Frame { - msec: 7712 - hash: "bdc721eb51436b121826d4163cbf596f" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7728 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7744 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7760 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7776 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7792 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7808 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7824 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7840 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7856 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7872 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7888 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7904 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7920 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7936 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Frame { - msec: 7952 - hash: "7d378c1c1e54d2d13b602f1cf1a56a2f" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 7968 - hash: "bc028efd0fc3d999269d047fe4d64e27" - } - Frame { - msec: 7984 - hash: "bc028efd0fc3d999269d047fe4d64e27" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8000 - hash: "b18fe0d9cfed62d53e152e3f294dc8b3" - } - Frame { - msec: 8016 - hash: "b18fe0d9cfed62d53e152e3f294dc8b3" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8032 - hash: "eca1a9d5eed543b913d1d2b19cef3286" - } - Frame { - msec: 8048 - hash: "eca1a9d5eed543b913d1d2b19cef3286" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8064 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Frame { - msec: 8080 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 7 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8096 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Frame { - msec: 8112 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Frame { - msec: 8128 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Frame { - msec: 8144 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Frame { - msec: 8160 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Frame { - msec: 8176 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Frame { - msec: 8192 - hash: "01f1ac2c199086a701a784a3a47fdb71" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8208 - hash: "c8254066bc7b4bae0934425226d59a2b" - } - Frame { - msec: 8224 - hash: "c8254066bc7b4bae0934425226d59a2b" - } - Frame { - msec: 8240 - hash: "c8254066bc7b4bae0934425226d59a2b" - } - Frame { - msec: 8256 - hash: "c8254066bc7b4bae0934425226d59a2b" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8272 - hash: "c8254066bc7b4bae0934425226d59a2b" - } - Frame { - msec: 8288 - hash: "c8254066bc7b4bae0934425226d59a2b" - } - Frame { - msec: 8304 - hash: "c8254066bc7b4bae0934425226d59a2b" - } - Frame { - msec: 8320 - hash: "c8254066bc7b4bae0934425226d59a2b" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8336 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Frame { - msec: 8352 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Frame { - msec: 8368 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Frame { - msec: 8384 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8400 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Frame { - msec: 8416 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Frame { - msec: 8432 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Frame { - msec: 8448 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Frame { - msec: 8464 - hash: "7bd48f4441ba1971bf49cb5b9e174935" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8480 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8496 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8512 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8528 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8544 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8560 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8576 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8592 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8608 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8624 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8640 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8656 - image: "usingMultilineEdit.9.png" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8672 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8688 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8704 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8720 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8736 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8752 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8768 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8784 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8800 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8816 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8832 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8848 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8864 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8880 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8896 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8912 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8928 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8944 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8960 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8976 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 8992 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9008 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9024 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9040 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9056 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9072 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9088 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9104 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9120 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9136 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9152 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9168 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9184 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9200 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 70; y: 73 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9216 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9232 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9248 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9264 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 77 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9280 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 70; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9296 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9312 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9328 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9344 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9360 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9376 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9392 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9408 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9424 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Frame { - msec: 9440 - hash: "edf44121a60ee9d975954863c2ed848c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 71; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9456 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9472 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9488 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9504 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9520 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9536 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 71; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9552 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9568 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9584 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9600 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9616 - image: "usingMultilineEdit.10.png" - } - Frame { - msec: 9632 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9648 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9664 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 9680 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9696 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9712 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9728 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9744 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9760 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9776 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9792 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9808 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9824 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9840 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9856 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9872 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9888 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9904 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9920 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9936 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9952 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9968 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 9984 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10000 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10016 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10032 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10048 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10064 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10080 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10096 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Key { - type: 6 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10112 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10128 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10144 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10160 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10176 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10192 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10208 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10224 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Key { - type: 7 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10240 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10256 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10272 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10288 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10304 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10320 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10336 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Frame { - msec: 10352 - hash: "956f4f8cfca76cfee9babea29b0715ea" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10368 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10384 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10400 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10416 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10432 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10448 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10464 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10480 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10496 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10512 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10528 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10544 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10560 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10576 - image: "usingMultilineEdit.11.png" - } - Frame { - msec: 10592 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10608 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10624 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10640 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10656 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10672 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10688 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10704 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10720 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10736 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10752 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10768 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10784 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10800 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10816 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10832 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10848 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10864 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10880 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10896 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10912 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10928 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10944 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10960 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10976 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 10992 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11008 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11024 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11040 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11056 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11072 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11088 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11104 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11120 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11136 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11152 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11168 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11184 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11200 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11216 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11232 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11248 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11264 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11280 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11296 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11312 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11328 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11344 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11360 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11376 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11392 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11408 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11424 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11440 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11456 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11472 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11488 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11504 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11520 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11536 - image: "usingMultilineEdit.12.png" - } - Frame { - msec: 11552 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11568 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11584 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11600 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } - Frame { - msec: 11616 - hash: "b58ab2c31823e7b0be144fba3e77368a" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png deleted file mode 100644 index da3b971..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png deleted file mode 100644 index 8ea0787..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png deleted file mode 100644 index 33328db..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png deleted file mode 100644 index 222ba53..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png deleted file mode 100644 index 970e73d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png deleted file mode 100644 index 4dc64a1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png deleted file mode 100644 index 99d451c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.7.png deleted file mode 100644 index 99d451c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml deleted file mode 100644 index 13834f0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml +++ /dev/null @@ -1,2467 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "wrap.0.png" - } - Key { - type: 6 - key: 84 - modifiers: 33554432 - text: "54" - autorep: false - count: 1 - } - Frame { - msec: 32 - hash: "ca07773bf0df96be1f23d13c4d6e2bfd" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 48 - hash: "ca07773bf0df96be1f23d13c4d6e2bfd" - } - Frame { - msec: 64 - hash: "ca07773bf0df96be1f23d13c4d6e2bfd" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 80 - hash: "ca07773bf0df96be1f23d13c4d6e2bfd" - } - Frame { - msec: 96 - hash: "ca07773bf0df96be1f23d13c4d6e2bfd" - } - Key { - type: 6 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 112 - hash: "fc223de2e1f35db08d9689bc41f02304" - } - Frame { - msec: 128 - hash: "fc223de2e1f35db08d9689bc41f02304" - } - Frame { - msec: 144 - hash: "fc223de2e1f35db08d9689bc41f02304" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 160 - hash: "dc208fb5236b0a2a54bf9aaf7a9d60cd" - } - Frame { - msec: 176 - hash: "dc208fb5236b0a2a54bf9aaf7a9d60cd" - } - Frame { - msec: 192 - hash: "dc208fb5236b0a2a54bf9aaf7a9d60cd" - } - Key { - type: 7 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 208 - hash: "dc208fb5236b0a2a54bf9aaf7a9d60cd" - } - Frame { - msec: 224 - hash: "dc208fb5236b0a2a54bf9aaf7a9d60cd" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 240 - hash: "c017468afd522089b5c9f42dd61be1b4" - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 256 - hash: "c017468afd522089b5c9f42dd61be1b4" - } - Frame { - msec: 272 - hash: "c017468afd522089b5c9f42dd61be1b4" - } - Frame { - msec: 288 - hash: "c017468afd522089b5c9f42dd61be1b4" - } - Frame { - msec: 304 - hash: "c017468afd522089b5c9f42dd61be1b4" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 320 - hash: "c017468afd522089b5c9f42dd61be1b4" - } - Frame { - msec: 336 - hash: "c017468afd522089b5c9f42dd61be1b4" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 352 - hash: "84b1f1bf26af0da07006bb102d22693f" - } - Frame { - msec: 368 - hash: "84b1f1bf26af0da07006bb102d22693f" - } - Frame { - msec: 384 - hash: "84b1f1bf26af0da07006bb102d22693f" - } - Frame { - msec: 400 - hash: "84b1f1bf26af0da07006bb102d22693f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 416 - hash: "84b1f1bf26af0da07006bb102d22693f" - } - Frame { - msec: 432 - hash: "84b1f1bf26af0da07006bb102d22693f" - } - Frame { - msec: 448 - hash: "84b1f1bf26af0da07006bb102d22693f" - } - Frame { - msec: 464 - hash: "84b1f1bf26af0da07006bb102d22693f" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 480 - hash: "a16f5aa01bd07de4ef7f868b7b6116f7" - } - Frame { - msec: 496 - hash: "a16f5aa01bd07de4ef7f868b7b6116f7" - } - Frame { - msec: 512 - hash: "a16f5aa01bd07de4ef7f868b7b6116f7" - } - Frame { - msec: 528 - hash: "a16f5aa01bd07de4ef7f868b7b6116f7" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "e25e16d0d7b223b243d466630b901f68" - } - Frame { - msec: 560 - hash: "e25e16d0d7b223b243d466630b901f68" - } - Frame { - msec: 576 - hash: "e25e16d0d7b223b243d466630b901f68" - } - Frame { - msec: 592 - hash: "e25e16d0d7b223b243d466630b901f68" - } - Frame { - msec: 608 - hash: "e25e16d0d7b223b243d466630b901f68" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 624 - hash: "a53520edb9c117aa53abc42fce3505be" - } - Frame { - msec: 640 - hash: "a53520edb9c117aa53abc42fce3505be" - } - Frame { - msec: 656 - hash: "a53520edb9c117aa53abc42fce3505be" - } - Frame { - msec: 672 - hash: "a53520edb9c117aa53abc42fce3505be" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "a53520edb9c117aa53abc42fce3505be" - } - Frame { - msec: 704 - hash: "a53520edb9c117aa53abc42fce3505be" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 720 - hash: "a7ef30038b24e8bf946bdd38aaac6430" - } - Frame { - msec: 736 - hash: "a7ef30038b24e8bf946bdd38aaac6430" - } - Frame { - msec: 752 - hash: "a7ef30038b24e8bf946bdd38aaac6430" - } - Frame { - msec: 768 - hash: "a7ef30038b24e8bf946bdd38aaac6430" - } - Frame { - msec: 784 - hash: "a7ef30038b24e8bf946bdd38aaac6430" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "a7ef30038b24e8bf946bdd38aaac6430" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 816 - hash: "026b29fc03bd22e15ff725d34dee91eb" - } - Frame { - msec: 832 - hash: "026b29fc03bd22e15ff725d34dee91eb" - } - Frame { - msec: 848 - hash: "026b29fc03bd22e15ff725d34dee91eb" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 864 - hash: "026b29fc03bd22e15ff725d34dee91eb" - } - Frame { - msec: 880 - hash: "026b29fc03bd22e15ff725d34dee91eb" - } - Frame { - msec: 896 - hash: "026b29fc03bd22e15ff725d34dee91eb" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 912 - hash: "2b1cef34dff32e36e3c44f2ffb2be66e" - } - Frame { - msec: 928 - hash: "2b1cef34dff32e36e3c44f2ffb2be66e" - } - Frame { - msec: 944 - hash: "2b1cef34dff32e36e3c44f2ffb2be66e" - } - Frame { - msec: 960 - hash: "2b1cef34dff32e36e3c44f2ffb2be66e" - } - Frame { - msec: 976 - image: "wrap.1.png" - } - Frame { - msec: 992 - hash: "2b1cef34dff32e36e3c44f2ffb2be66e" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1008 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1024 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1040 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1056 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1072 - hash: "f619bc4148876effc459127009d4cc3a" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 1088 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1104 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1120 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1136 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1152 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1168 - hash: "f619bc4148876effc459127009d4cc3a" - } - Frame { - msec: 1184 - hash: "f619bc4148876effc459127009d4cc3a" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "c7fbee3129141e8493b7bc4f85fdc2d0" - } - Frame { - msec: 1216 - hash: "c7fbee3129141e8493b7bc4f85fdc2d0" - } - Frame { - msec: 1232 - hash: "c7fbee3129141e8493b7bc4f85fdc2d0" - } - Frame { - msec: 1248 - hash: "c7fbee3129141e8493b7bc4f85fdc2d0" - } - Frame { - msec: 1264 - hash: "c7fbee3129141e8493b7bc4f85fdc2d0" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1280 - hash: "f2a45d80148ee1b5f1cd8cb6ddd0c5ed" - } - Frame { - msec: 1296 - hash: "f2a45d80148ee1b5f1cd8cb6ddd0c5ed" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Frame { - msec: 1328 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Frame { - msec: 1344 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1360 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Frame { - msec: 1376 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Frame { - msec: 1408 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Frame { - msec: 1424 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Frame { - msec: 1440 - hash: "147efa341e4dc39cdd555c2c81e5c603" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1456 - hash: "d5b19a6d767a08f488cc8fc5c427a2dd" - } - Frame { - msec: 1472 - hash: "d5b19a6d767a08f488cc8fc5c427a2dd" - } - Frame { - msec: 1488 - hash: "d5b19a6d767a08f488cc8fc5c427a2dd" - } - Frame { - msec: 1504 - hash: "d5b19a6d767a08f488cc8fc5c427a2dd" - } - Frame { - msec: 1520 - hash: "d5b19a6d767a08f488cc8fc5c427a2dd" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1536 - hash: "d5b19a6d767a08f488cc8fc5c427a2dd" - } - Frame { - msec: 1552 - hash: "d5b19a6d767a08f488cc8fc5c427a2dd" - } - Key { - type: 6 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "bf6265ca859f700fb07f8b992255787d" - } - Frame { - msec: 1584 - hash: "bf6265ca859f700fb07f8b992255787d" - } - Frame { - msec: 1600 - hash: "bf6265ca859f700fb07f8b992255787d" - } - Frame { - msec: 1616 - hash: "bf6265ca859f700fb07f8b992255787d" - } - Frame { - msec: 1632 - hash: "bf6265ca859f700fb07f8b992255787d" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Key { - type: 7 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 1648 - hash: "329e4cd26283eb08188d96b2b0325733" - } - Frame { - msec: 1664 - hash: "329e4cd26283eb08188d96b2b0325733" - } - Frame { - msec: 1680 - hash: "329e4cd26283eb08188d96b2b0325733" - } - Frame { - msec: 1696 - hash: "329e4cd26283eb08188d96b2b0325733" - } - Frame { - msec: 1712 - hash: "329e4cd26283eb08188d96b2b0325733" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1728 - hash: "7b5ac2afafbbaf1e13c70a11461820ad" - } - Frame { - msec: 1744 - hash: "7b5ac2afafbbaf1e13c70a11461820ad" - } - Frame { - msec: 1760 - hash: "7b5ac2afafbbaf1e13c70a11461820ad" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1776 - hash: "7b5ac2afafbbaf1e13c70a11461820ad" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Frame { - msec: 1808 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1824 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Frame { - msec: 1840 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Frame { - msec: 1856 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Frame { - msec: 1872 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1888 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Frame { - msec: 1904 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Frame { - msec: 1920 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Frame { - msec: 1936 - image: "wrap.2.png" - } - Frame { - msec: 1952 - hash: "bcfa1aa48767f70541a70cb5f85792ba" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1968 - hash: "e89f7cf38b3b596298d6c649a1207469" - } - Frame { - msec: 1984 - hash: "e89f7cf38b3b596298d6c649a1207469" - } - Frame { - msec: 2000 - hash: "e89f7cf38b3b596298d6c649a1207469" - } - Frame { - msec: 2016 - hash: "e89f7cf38b3b596298d6c649a1207469" - } - Frame { - msec: 2032 - hash: "e89f7cf38b3b596298d6c649a1207469" - } - Frame { - msec: 2048 - hash: "e89f7cf38b3b596298d6c649a1207469" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2080 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Frame { - msec: 2096 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Frame { - msec: 2112 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Frame { - msec: 2144 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Frame { - msec: 2160 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Frame { - msec: 2176 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Frame { - msec: 2192 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Frame { - msec: 2208 - hash: "18e71331b42a115f7f9d5c09e235b944" - } - Key { - type: 6 - key: 88 - modifiers: 0 - text: "78" - autorep: false - count: 1 - } - Frame { - msec: 2224 - hash: "3630abd7cc6ab303d08f30dea7b1eec1" - } - Frame { - msec: 2240 - hash: "3630abd7cc6ab303d08f30dea7b1eec1" - } - Frame { - msec: 2256 - hash: "3630abd7cc6ab303d08f30dea7b1eec1" - } - Frame { - msec: 2272 - hash: "3630abd7cc6ab303d08f30dea7b1eec1" - } - Frame { - msec: 2288 - hash: "3630abd7cc6ab303d08f30dea7b1eec1" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2304 - hash: "83e7b8c680cda95ec0a669b8030a3efd" - } - Key { - type: 7 - key: 88 - modifiers: 0 - text: "78" - autorep: false - count: 1 - } - Frame { - msec: 2320 - hash: "83e7b8c680cda95ec0a669b8030a3efd" - } - Frame { - msec: 2336 - hash: "83e7b8c680cda95ec0a669b8030a3efd" - } - Frame { - msec: 2352 - hash: "83e7b8c680cda95ec0a669b8030a3efd" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "cc826833607ae754e633d21ca67a6b5a" - } - Frame { - msec: 2384 - hash: "cc826833607ae754e633d21ca67a6b5a" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2400 - hash: "cc826833607ae754e633d21ca67a6b5a" - } - Frame { - msec: 2416 - hash: "cc826833607ae754e633d21ca67a6b5a" - } - Frame { - msec: 2432 - hash: "cc826833607ae754e633d21ca67a6b5a" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "cc826833607ae754e633d21ca67a6b5a" - } - Frame { - msec: 2464 - hash: "cc826833607ae754e633d21ca67a6b5a" - } - Frame { - msec: 2480 - hash: "cc826833607ae754e633d21ca67a6b5a" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Frame { - msec: 2512 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Frame { - msec: 2528 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Frame { - msec: 2544 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Frame { - msec: 2576 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Frame { - msec: 2592 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Frame { - msec: 2608 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Frame { - msec: 2624 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Frame { - msec: 2640 - hash: "2b4c812fac4e84909cc8fc70d8966a27" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 2656 - hash: "c1aabf4b43cbae0d7654ba78fc870fdd" - } - Frame { - msec: 2672 - hash: "c1aabf4b43cbae0d7654ba78fc870fdd" - } - Frame { - msec: 2688 - hash: "c1aabf4b43cbae0d7654ba78fc870fdd" - } - Frame { - msec: 2704 - hash: "c1aabf4b43cbae0d7654ba78fc870fdd" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 2720 - hash: "c1aabf4b43cbae0d7654ba78fc870fdd" - } - Frame { - msec: 2736 - hash: "c1aabf4b43cbae0d7654ba78fc870fdd" - } - Frame { - msec: 2752 - hash: "c1aabf4b43cbae0d7654ba78fc870fdd" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2768 - hash: "a707dd726c777a661e4f12d27a75cf63" - } - Frame { - msec: 2784 - hash: "a707dd726c777a661e4f12d27a75cf63" - } - Frame { - msec: 2800 - hash: "a707dd726c777a661e4f12d27a75cf63" - } - Frame { - msec: 2816 - hash: "a707dd726c777a661e4f12d27a75cf63" - } - Frame { - msec: 2832 - hash: "a707dd726c777a661e4f12d27a75cf63" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2848 - hash: "bdaa69c1074f9820901ce31ea24383ca" - } - Frame { - msec: 2864 - hash: "bdaa69c1074f9820901ce31ea24383ca" - } - Frame { - msec: 2880 - hash: "bdaa69c1074f9820901ce31ea24383ca" - } - Frame { - msec: 2896 - image: "wrap.3.png" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2912 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 2928 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 2960 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2976 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 2992 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 3008 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 3024 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 3040 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 3056 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 3072 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Frame { - msec: 3088 - hash: "f703f87031be4f9d7409fb145343c02b" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3104 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Frame { - msec: 3120 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Frame { - msec: 3136 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Frame { - msec: 3152 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Frame { - msec: 3168 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3184 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Frame { - msec: 3200 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Frame { - msec: 3216 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Frame { - msec: 3232 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Frame { - msec: 3248 - hash: "cb2660df955b757b00661a1acb5f22d2" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 3264 - hash: "8ea510d25195956fa42eabfe3bb9f230" - } - Frame { - msec: 3280 - hash: "8ea510d25195956fa42eabfe3bb9f230" - } - Frame { - msec: 3296 - hash: "8ea510d25195956fa42eabfe3bb9f230" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 3312 - hash: "8ea510d25195956fa42eabfe3bb9f230" - } - Frame { - msec: 3328 - hash: "8ea510d25195956fa42eabfe3bb9f230" - } - Frame { - msec: 3344 - hash: "8ea510d25195956fa42eabfe3bb9f230" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3360 - hash: "26b58aef7b1f50a5d261718e8266a3fb" - } - Frame { - msec: 3376 - hash: "26b58aef7b1f50a5d261718e8266a3fb" - } - Frame { - msec: 3392 - hash: "26b58aef7b1f50a5d261718e8266a3fb" - } - Frame { - msec: 3408 - hash: "26b58aef7b1f50a5d261718e8266a3fb" - } - Frame { - msec: 3424 - hash: "26b58aef7b1f50a5d261718e8266a3fb" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3440 - hash: "26b58aef7b1f50a5d261718e8266a3fb" - } - Frame { - msec: 3456 - hash: "26b58aef7b1f50a5d261718e8266a3fb" - } - Frame { - msec: 3472 - hash: "26b58aef7b1f50a5d261718e8266a3fb" - } - Key { - type: 6 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 3488 - hash: "012854de1c9d1a772994d02f52bdcd7c" - } - Frame { - msec: 3504 - hash: "012854de1c9d1a772994d02f52bdcd7c" - } - Frame { - msec: 3520 - hash: "012854de1c9d1a772994d02f52bdcd7c" - } - Frame { - msec: 3536 - hash: "012854de1c9d1a772994d02f52bdcd7c" - } - Key { - type: 7 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 3552 - hash: "012854de1c9d1a772994d02f52bdcd7c" - } - Frame { - msec: 3568 - hash: "012854de1c9d1a772994d02f52bdcd7c" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3584 - hash: "660a31e1c0d573f4155cfa8fe2323413" - } - Frame { - msec: 3600 - hash: "660a31e1c0d573f4155cfa8fe2323413" - } - Frame { - msec: 3616 - hash: "660a31e1c0d573f4155cfa8fe2323413" - } - Frame { - msec: 3632 - hash: "660a31e1c0d573f4155cfa8fe2323413" - } - Frame { - msec: 3648 - hash: "660a31e1c0d573f4155cfa8fe2323413" - } - Frame { - msec: 3664 - hash: "660a31e1c0d573f4155cfa8fe2323413" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3680 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3696 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3712 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3728 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3744 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3760 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3776 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3792 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3808 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3824 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3840 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3856 - image: "wrap.4.png" - } - Frame { - msec: 3872 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3888 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Frame { - msec: 3904 - hash: "bea00f5e628e40b679eb8829c16c6260" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 3920 - hash: "c5c60cd10a1106161cde5f51dbdec5ad" - } - Frame { - msec: 3936 - hash: "c5c60cd10a1106161cde5f51dbdec5ad" - } - Frame { - msec: 3952 - hash: "c5c60cd10a1106161cde5f51dbdec5ad" - } - Frame { - msec: 3968 - hash: "c5c60cd10a1106161cde5f51dbdec5ad" - } - Frame { - msec: 3984 - hash: "c5c60cd10a1106161cde5f51dbdec5ad" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4000 - hash: "c5c60cd10a1106161cde5f51dbdec5ad" - } - Frame { - msec: 4016 - hash: "c5c60cd10a1106161cde5f51dbdec5ad" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4032 - hash: "41c26e6a4c911f9ecd082c4d3366806b" - } - Frame { - msec: 4048 - hash: "41c26e6a4c911f9ecd082c4d3366806b" - } - Frame { - msec: 4064 - hash: "41c26e6a4c911f9ecd082c4d3366806b" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "41c26e6a4c911f9ecd082c4d3366806b" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4096 - hash: "e212938ce981ed4e8d7a993468bc9377" - } - Frame { - msec: 4112 - hash: "e212938ce981ed4e8d7a993468bc9377" - } - Frame { - msec: 4128 - hash: "e212938ce981ed4e8d7a993468bc9377" - } - Frame { - msec: 4144 - hash: "e212938ce981ed4e8d7a993468bc9377" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4160 - hash: "e212938ce981ed4e8d7a993468bc9377" - } - Frame { - msec: 4176 - hash: "e212938ce981ed4e8d7a993468bc9377" - } - Frame { - msec: 4192 - hash: "e212938ce981ed4e8d7a993468bc9377" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4208 - hash: "55df0528a97d77d0a4b513aeedd34440" - } - Frame { - msec: 4224 - hash: "55df0528a97d77d0a4b513aeedd34440" - } - Frame { - msec: 4240 - hash: "55df0528a97d77d0a4b513aeedd34440" - } - Frame { - msec: 4256 - hash: "55df0528a97d77d0a4b513aeedd34440" - } - Frame { - msec: 4272 - hash: "55df0528a97d77d0a4b513aeedd34440" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 4288 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4304 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Frame { - msec: 4320 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Frame { - msec: 4336 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 4352 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Frame { - msec: 4368 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Frame { - msec: 4384 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Frame { - msec: 4400 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Frame { - msec: 4416 - hash: "2165091c97a891560bf3afab879e6dbc" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4432 - hash: "a3d7968e13768c4ec538fe9ba7edf142" - } - Frame { - msec: 4448 - hash: "a3d7968e13768c4ec538fe9ba7edf142" - } - Frame { - msec: 4464 - hash: "a3d7968e13768c4ec538fe9ba7edf142" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4480 - hash: "a3d7968e13768c4ec538fe9ba7edf142" - } - Frame { - msec: 4496 - hash: "a3d7968e13768c4ec538fe9ba7edf142" - } - Frame { - msec: 4512 - hash: "a3d7968e13768c4ec538fe9ba7edf142" - } - Frame { - msec: 4528 - hash: "a3d7968e13768c4ec538fe9ba7edf142" - } - Frame { - msec: 4544 - hash: "a3d7968e13768c4ec538fe9ba7edf142" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4560 - hash: "3b18ada8637d4024acfe88718765f71c" - } - Frame { - msec: 4576 - hash: "3b18ada8637d4024acfe88718765f71c" - } - Frame { - msec: 4592 - hash: "3b18ada8637d4024acfe88718765f71c" - } - Frame { - msec: 4608 - hash: "3b18ada8637d4024acfe88718765f71c" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4624 - hash: "3b18ada8637d4024acfe88718765f71c" - } - Frame { - msec: 4640 - hash: "3b18ada8637d4024acfe88718765f71c" - } - Frame { - msec: 4656 - hash: "3b18ada8637d4024acfe88718765f71c" - } - Frame { - msec: 4672 - hash: "3b18ada8637d4024acfe88718765f71c" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 4688 - hash: "c419775870b0c5e41b5156c840e6a298" - } - Frame { - msec: 4704 - hash: "c419775870b0c5e41b5156c840e6a298" - } - Frame { - msec: 4720 - hash: "c419775870b0c5e41b5156c840e6a298" - } - Frame { - msec: 4736 - hash: "c419775870b0c5e41b5156c840e6a298" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 4752 - hash: "c419775870b0c5e41b5156c840e6a298" - } - Frame { - msec: 4768 - hash: "c419775870b0c5e41b5156c840e6a298" - } - Frame { - msec: 4784 - hash: "c419775870b0c5e41b5156c840e6a298" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4800 - hash: "81a744f02650728c7557a27c94056e64" - } - Frame { - msec: 4816 - image: "wrap.5.png" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4832 - hash: "81a744f02650728c7557a27c94056e64" - } - Frame { - msec: 4848 - hash: "81a744f02650728c7557a27c94056e64" - } - Frame { - msec: 4864 - hash: "81a744f02650728c7557a27c94056e64" - } - Frame { - msec: 4880 - hash: "81a744f02650728c7557a27c94056e64" - } - Key { - type: 6 - key: 46 - modifiers: 0 - text: "2e" - autorep: false - count: 1 - } - Frame { - msec: 4896 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 4912 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 4928 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 4944 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Key { - type: 7 - key: 46 - modifiers: 0 - text: "2e" - autorep: false - count: 1 - } - Frame { - msec: 4960 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 4976 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 4992 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5008 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5024 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5040 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5056 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5072 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5088 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5104 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5120 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5136 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5152 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5168 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5184 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5200 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5216 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5232 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5248 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5264 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5280 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5296 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5312 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5328 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5344 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5360 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5376 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5392 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5408 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5424 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5440 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5456 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5472 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5488 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5504 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5520 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5536 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5552 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5568 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5584 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5600 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5616 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5632 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5648 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5664 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5680 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5696 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5712 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5728 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5744 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5760 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5776 - image: "wrap.6.png" - } - Frame { - msec: 5792 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5808 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5824 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5840 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5856 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5872 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5888 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5904 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5920 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5936 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5952 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5968 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 5984 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6000 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6016 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6032 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6048 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6064 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6080 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6096 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6112 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6128 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6144 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6160 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6176 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6192 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6208 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6224 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6240 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6256 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6272 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6288 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6304 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6320 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6336 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6352 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6368 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6384 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6400 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6416 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6432 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6448 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6464 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6480 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6496 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6512 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6528 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6544 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6560 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6576 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6592 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6608 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6624 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6640 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6656 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6672 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6688 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6704 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6720 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6736 - image: "wrap.7.png" - } - Frame { - msec: 6752 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6768 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6784 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6800 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6816 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6832 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6848 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } - Frame { - msec: 6864 - hash: "ed1520bf20159e60c6a75bbf07f3a6ee" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png deleted file mode 100644 index b24344c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png deleted file mode 100644 index 5e29359..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png deleted file mode 100644 index 0ffee64..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png deleted file mode 100644 index 6c56e9c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png deleted file mode 100644 index 276170d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png deleted file mode 100644 index 3d8709f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png deleted file mode 100644 index 80b960c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png deleted file mode 100644 index 7247277..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png deleted file mode 100644 index af5a996..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png deleted file mode 100644 index b254164..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml deleted file mode 100644 index 3819043..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml +++ /dev/null @@ -1,1499 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "6e8324bf913d9df21a59ab4337257c15" - } - Frame { - msec: 32 - hash: "4e068995d68e8939e6560e35b685e839" - } - Frame { - msec: 48 - hash: "761b09bce25b3b240093d16ad02268d7" - } - Frame { - msec: 64 - hash: "1ecb6d7d08d4e4e14db28e24a60eccc4" - } - Frame { - msec: 80 - hash: "642417a56b3d6b8b35f5aec1bf0a9d2c" - } - Frame { - msec: 96 - hash: "2e24870a44d3fc6c6d5c920bab29d417" - } - Frame { - msec: 112 - hash: "9a59d0672f2a752943561af89fd71d7f" - } - Frame { - msec: 128 - hash: "c359dd36910678a30f935a13c8680ee4" - } - Frame { - msec: 144 - hash: "245f1e127549e9b28c7574ffb143fcde" - } - Frame { - msec: 160 - hash: "8df3d3dbce673311d88c055e8dffaeb5" - } - Frame { - msec: 176 - hash: "590fdeaddb3df033a1908a8a95fcd17a" - } - Frame { - msec: 192 - hash: "a158891c8d2ee3899463412a3363e48c" - } - Frame { - msec: 208 - hash: "e9ec2c82f46b36fbd0285ce6795c7cf9" - } - Frame { - msec: 224 - hash: "0a02598af770dfe1d332f10c9482e770" - } - Frame { - msec: 240 - hash: "8765475468bccbd0df897a533241f3c5" - } - Frame { - msec: 256 - hash: "4cd9deed66bfdfadde8f8bf34f0e5513" - } - Frame { - msec: 272 - hash: "139bf5a1811beb2438df4ecfa3bbaac7" - } - Frame { - msec: 288 - hash: "9d51555afd71a7035e67a543846dcf7f" - } - Frame { - msec: 304 - hash: "de187b58fc8dfaad2d62e9463691b0c0" - } - Frame { - msec: 320 - hash: "9f88ac6d71246b06ca7ce9d8d983c91b" - } - Frame { - msec: 336 - hash: "a43c12a7d6597d171112dc43085a439e" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 352 - hash: "ad38f32755f669837ec2243e355ebc85" - } - Frame { - msec: 368 - hash: "d87bd14345c785cc7e78a5c5462b90ec" - } - Frame { - msec: 384 - hash: "77850031e012246dd967ac689e353eb3" - } - Frame { - msec: 400 - hash: "f1bd048cd9167a8f162d1c39aca4f7c1" - } - Frame { - msec: 416 - hash: "0fa030c5da23f23a0665a535e23b84a2" - } - Frame { - msec: 432 - hash: "af3a5f1982459164dfec26746172b0eb" - } - Key { - type: 6 - key: 16777248 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "0de90659472b63dd41a5602197ff502e" - } - Frame { - msec: 464 - hash: "81e40abf91017614a52e03bb2474549f" - } - Frame { - msec: 480 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 496 - hash: "7bae45481596788afde8866a3c97edd7" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 512 - hash: "0416581d32ab84680dfc26b6f546d2c5" - } - Frame { - msec: 528 - hash: "0416581d32ab84680dfc26b6f546d2c5" - } - Frame { - msec: 544 - hash: "0416581d32ab84680dfc26b6f546d2c5" - } - Frame { - msec: 560 - hash: "0416581d32ab84680dfc26b6f546d2c5" - } - Frame { - msec: 576 - hash: "ac98b973e6d12193829139661d3e5847" - } - Frame { - msec: 592 - hash: "366907376adae4d88d42d1b9e7533ec0" - } - Frame { - msec: 608 - hash: "5f486d0a21c74f2ba50afcafa8c15453" - } - Frame { - msec: 624 - hash: "a3bf6dde525e528745272a8e43fc895c" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 640 - hash: "4ffb297d2a98a3d13b848af569b1b5b5" - } - Frame { - msec: 656 - hash: "3679a17658e417bf08fc86d4bef0d4e9" - } - Frame { - msec: 672 - hash: "5c6a25284ffd13350425e792fd143421" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "09a2c1032d0206e20340ae4267525f98" - } - Frame { - msec: 704 - hash: "0036070d9a7ee854b3612858af46ab59" - } - Frame { - msec: 720 - hash: "8774509eaa5fc29385da89214ef77589" - } - Frame { - msec: 736 - hash: "6d4f8ebf046148e5079f498396c119b4" - } - Frame { - msec: 752 - hash: "4c7d5d2f77116c96357b0791348af058" - } - Frame { - msec: 768 - hash: "398c927a3525d5b90a5dd7a05ba9467b" - } - Frame { - msec: 784 - hash: "d84b45f6acb8cbd399d4ed6bf80ce132" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "40c597d9e04e8e0daf62f58b9e7973b3" - } - Frame { - msec: 816 - hash: "2c7fdd47e29d924e3e008a6840e0e6be" - } - Frame { - msec: 832 - hash: "2b3229bb1aa220499114f274cf643ce9" - } - Frame { - msec: 848 - hash: "e55446874c1a343ce3607d679d69d1d4" - } - Frame { - msec: 864 - hash: "6824708eb176a9cf92f241d4054800dd" - } - Frame { - msec: 880 - hash: "d386230dd416740625eb4f677ef4531b" - } - Frame { - msec: 896 - hash: "9b2fbddab890dbe43e84e85bf320e6c1" - } - Frame { - msec: 912 - hash: "1d1065aca7eb47f0096bc2c8c4320880" - } - Frame { - msec: 928 - hash: "d97ba6e2bfc021fe993afdb5b28316ba" - } - Frame { - msec: 944 - hash: "3a3a2f340bf1ccb14eab0562d7ecfe87" - } - Frame { - msec: 960 - image: "cursorDelegate.0.png" - } - Frame { - msec: 976 - hash: "ea4f4c1de5bfb1be43ab0188afb7189c" - } - Frame { - msec: 992 - hash: "399ca2d4411d3fb226c94bd32a17d0cd" - } - Frame { - msec: 1008 - hash: "ca78503396613536c8e4076884354cb1" - } - Frame { - msec: 1024 - hash: "ca78503396613536c8e4076884354cb1" - } - Key { - type: 7 - key: 16777249 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1040 - hash: "399ca2d4411d3fb226c94bd32a17d0cd" - } - Frame { - msec: 1056 - hash: "ea4f4c1de5bfb1be43ab0188afb7189c" - } - Frame { - msec: 1072 - hash: "d23d7492b85e4f30994ecd64e8273ff6" - } - Frame { - msec: 1088 - hash: "3a3a2f340bf1ccb14eab0562d7ecfe87" - } - Frame { - msec: 1104 - hash: "d97ba6e2bfc021fe993afdb5b28316ba" - } - Frame { - msec: 1120 - hash: "1d1065aca7eb47f0096bc2c8c4320880" - } - Frame { - msec: 1136 - hash: "9b2fbddab890dbe43e84e85bf320e6c1" - } - Frame { - msec: 1152 - hash: "d386230dd416740625eb4f677ef4531b" - } - Frame { - msec: 1168 - hash: "6824708eb176a9cf92f241d4054800dd" - } - Key { - type: 6 - key: 16777234 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1184 - hash: "e8e14dbba33578a36d9c69214333c537" - } - Frame { - msec: 1200 - hash: "95c6e967f6f445748945c51943cf532f" - } - Frame { - msec: 1216 - hash: "d145d4cbd0e3a98686b3bac1c5c17093" - } - Frame { - msec: 1232 - hash: "09348a4108a585dd23c3a252a5c596f6" - } - Frame { - msec: 1248 - hash: "55126f2c879771e1aa5ced51b54c827a" - } - Frame { - msec: 1264 - hash: "ebb36a4c2fcb85107033ec2731fc5743" - } - Frame { - msec: 1280 - hash: "0581a4432d4b3d0c1555a31e772c2575" - } - Key { - type: 7 - key: 16777234 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "b4030774f06935f1b43fc8f1a69e53a5" - } - Frame { - msec: 1312 - hash: "655e1739c130888ff83a3b69bb0ab7e3" - } - Frame { - msec: 1328 - hash: "99fc97c572e7c8949693b32910e6eefb" - } - Frame { - msec: 1344 - hash: "e9c8bb13c2549047c05d671daa378496" - } - Frame { - msec: 1360 - hash: "cb344e0d39b5b07ca7d094bf30ce9f53" - } - Frame { - msec: 1376 - hash: "15ba6e62c693f2bf74bdf86668139985" - } - Frame { - msec: 1392 - hash: "48133ec73eb9723059eb6e6af3139f2b" - } - Frame { - msec: 1408 - hash: "0b19e777a04f03774f2d5f5398bdb10f" - } - Frame { - msec: 1424 - hash: "fc41d9a9aedf9274a68b33603ed6ccd0" - } - Frame { - msec: 1440 - hash: "fa6e65f0c835b12dc10463711bd73350" - } - Frame { - msec: 1456 - hash: "25a02c3388e52df550a0332efde90fcd" - } - Frame { - msec: 1472 - hash: "2390443be82acf291856be59fa18fc26" - } - Frame { - msec: 1488 - hash: "2390443be82acf291856be59fa18fc26" - } - Frame { - msec: 1504 - hash: "2390443be82acf291856be59fa18fc26" - } - Frame { - msec: 1520 - hash: "2390443be82acf291856be59fa18fc26" - } - Frame { - msec: 1536 - hash: "2390443be82acf291856be59fa18fc26" - } - Frame { - msec: 1552 - hash: "2390443be82acf291856be59fa18fc26" - } - Frame { - msec: 1568 - hash: "284cd356d551a048d4a000b90217ac72" - } - Frame { - msec: 1584 - hash: "94fb20c3767e09d1b4254ee6122cf24e" - } - Frame { - msec: 1600 - hash: "bfac920384425ce9f34505b44eceb523" - } - Frame { - msec: 1616 - hash: "4a2d434efcb9a57f2013dc6b366e0e4e" - } - Frame { - msec: 1632 - hash: "d0fbe98dc34c4bb0d1ceb7e4678cc1d5" - } - Frame { - msec: 1648 - hash: "28ab147983a71e93e5610f53e14bd113" - } - Key { - type: 6 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "2e6ee60fe9ff07fa4558134e6b1d6da8" - } - Frame { - msec: 1680 - hash: "f181e578e865981d7a2073080b381ec1" - } - Frame { - msec: 1696 - hash: "d7c0558ea16829b52ea6d09814c301b9" - } - Frame { - msec: 1712 - hash: "c9304cb66c04566cf4374b46ab85e6e7" - } - Frame { - msec: 1728 - hash: "024dde64822afc9eea63974851fe57e1" - } - Frame { - msec: 1744 - hash: "8e4520e95a8acc8f1d4b710c4a14898f" - } - Frame { - msec: 1760 - hash: "6b271c3f1d9d49bbd80a8ee33f3fc09c" - } - Frame { - msec: 1776 - hash: "eb76a46632856bf07b005cad2ba2f6ab" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "a29bd83f6b4e877f3c7b89c82dfcab54" - } - Frame { - msec: 1808 - hash: "dca39b6b6fff5e4a6309e4c0e42811c0" - } - Frame { - msec: 1824 - hash: "88ad3f9f638a97bed98f00ec7d78dfe4" - } - Frame { - msec: 1840 - hash: "5697a705f36283213bbe4b5848baa764" - } - Frame { - msec: 1856 - hash: "8850842afae3060a91d612f7b869fd48" - } - Frame { - msec: 1872 - hash: "4f08dbd1cab0bfcc8b9f232d46cf42db" - } - Frame { - msec: 1888 - hash: "f7df5b96d0983a918e3c81aa7bee3950" - } - Frame { - msec: 1904 - hash: "b28681bcb414d428588acda377fef838" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1920 - image: "cursorDelegate.1.png" - } - Frame { - msec: 1936 - hash: "5c154b54776ed555563d3e5196a8aedd" - } - Frame { - msec: 1952 - hash: "ee64c0452b325880de3a4fea599c18cc" - } - Frame { - msec: 1968 - hash: "0776e1557b2d32db1c7c43331c532331" - } - Frame { - msec: 1984 - hash: "24b68da9a63bbf00ffffeca649f771fa" - } - Frame { - msec: 2000 - hash: "00d49d91b51f5bd428c07e9be65f551a" - } - Frame { - msec: 2016 - hash: "874d4b599cb92cd9160960e3b3af74e0" - } - Frame { - msec: 2032 - hash: "00d49d91b51f5bd428c07e9be65f551a" - } - Frame { - msec: 2048 - hash: "24b68da9a63bbf00ffffeca649f771fa" - } - Frame { - msec: 2064 - hash: "0776e1557b2d32db1c7c43331c532331" - } - Frame { - msec: 2080 - hash: "ee64c0452b325880de3a4fea599c18cc" - } - Frame { - msec: 2096 - hash: "5c154b54776ed555563d3e5196a8aedd" - } - Frame { - msec: 2112 - hash: "a5f90da82b51bc866648304a20a1dcd3" - } - Frame { - msec: 2128 - hash: "b28681bcb414d428588acda377fef838" - } - Frame { - msec: 2144 - hash: "f7df5b96d0983a918e3c81aa7bee3950" - } - Frame { - msec: 2160 - hash: "4f08dbd1cab0bfcc8b9f232d46cf42db" - } - Frame { - msec: 2176 - hash: "8850842afae3060a91d612f7b869fd48" - } - Frame { - msec: 2192 - hash: "5697a705f36283213bbe4b5848baa764" - } - Frame { - msec: 2208 - hash: "88ad3f9f638a97bed98f00ec7d78dfe4" - } - Frame { - msec: 2224 - hash: "dca39b6b6fff5e4a6309e4c0e42811c0" - } - Key { - type: 7 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "a29bd83f6b4e877f3c7b89c82dfcab54" - } - Frame { - msec: 2256 - hash: "7defd2ecefeb86b457a2ee76d97424ee" - } - Frame { - msec: 2272 - hash: "ccf6d45e8822d72482d9b585909b612b" - } - Frame { - msec: 2288 - hash: "996dddf091394513adda1b1f00bf0c68" - } - Frame { - msec: 2304 - hash: "3cf94e90eddb4b0815762b89f58f8325" - } - Frame { - msec: 2320 - hash: "ab9f876450526b37774c6c4a5794c7b1" - } - Frame { - msec: 2336 - hash: "9109880e9201e92eb17ae87a3648dca7" - } - Frame { - msec: 2352 - hash: "0e759f2f279057c1f4d1147be5b41214" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "d87bd14345c785cc7e78a5c5462b90ec" - } - Frame { - msec: 2384 - hash: "77850031e012246dd967ac689e353eb3" - } - Frame { - msec: 2400 - hash: "f1bd048cd9167a8f162d1c39aca4f7c1" - } - Frame { - msec: 2416 - hash: "0fa030c5da23f23a0665a535e23b84a2" - } - Frame { - msec: 2432 - hash: "af3a5f1982459164dfec26746172b0eb" - } - Frame { - msec: 2448 - hash: "0de90659472b63dd41a5602197ff502e" - } - Frame { - msec: 2464 - hash: "81e40abf91017614a52e03bb2474549f" - } - Frame { - msec: 2480 - hash: "7bae45481596788afde8866a3c97edd7" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 2512 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 2528 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 2544 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 2560 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 2576 - hash: "e26dbfb26415b21198add56d5de02cb2" - } - Frame { - msec: 2592 - hash: "fa2877a963417789b82170b32e0af7a0" - } - Frame { - msec: 2608 - hash: "860b39f92c412a7d946f882d8f99d837" - } - Frame { - msec: 2624 - hash: "d7b8c52aef183965a97d82a18b03ed94" - } - Frame { - msec: 2640 - hash: "b1ce9cf0ebd8e1e783e5bd43bbd72072" - } - Frame { - msec: 2656 - hash: "d214b419ec5b4cff8f877bdeb1b9ef96" - } - Frame { - msec: 2672 - hash: "95e7057104508b3919d722d4befde7b7" - } - Frame { - msec: 2688 - hash: "270489ec5da5bf9a93fa4e52f47a71f5" - } - Frame { - msec: 2704 - hash: "46646e396ab0c1c20427dadd71d45ba9" - } - Frame { - msec: 2720 - hash: "65e2fd167565f876310d56fa9203c118" - } - Frame { - msec: 2736 - hash: "aff0da79bd9bd8c285139d7737a1316f" - } - Frame { - msec: 2752 - hash: "bf264fe7d774a597a3ff0965d912fa90" - } - Frame { - msec: 2768 - hash: "f00358343437f6e058848c7237601632" - } - Frame { - msec: 2784 - hash: "88c9e1d58397a81ed23931c7fdae1e7d" - } - Frame { - msec: 2800 - hash: "44d46b459f6bb89510e52b0d999fd499" - } - Frame { - msec: 2816 - hash: "0c196a24c9ca7143d382688db678d855" - } - Frame { - msec: 2832 - hash: "9df6d3d3b9981cb907ab89e65b743e97" - } - Frame { - msec: 2848 - hash: "501a644d6cde64ad041b086e00fd3950" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2864 - hash: "83f297406b1c6311da3a216024836d15" - } - Frame { - msec: 2880 - image: "cursorDelegate.2.png" - } - Frame { - msec: 2896 - hash: "93f79f8717948bde8ee55c668af2d397" - } - Frame { - msec: 2912 - hash: "881b5c2ccd0bbdaea4d61abbec600fc5" - } - Frame { - msec: 2928 - hash: "be72fe7c27901db62f2dbd9a757e4838" - } - Frame { - msec: 2944 - hash: "c83c973fb1253ccab333fb1e604155b8" - } - Frame { - msec: 2960 - hash: "dd6072d204812c23e24db1e7a81c6f57" - } - Frame { - msec: 2976 - hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2992 - hash: "fc8ede705bfe8f339fe47041c502b0d6" - } - Frame { - msec: 3008 - hash: "00fa0306d3fdc7e384cfc0660a3a355d" - } - Frame { - msec: 3024 - hash: "00fa0306d3fdc7e384cfc0660a3a355d" - } - Frame { - msec: 3040 - hash: "fc8ede705bfe8f339fe47041c502b0d6" - } - Frame { - msec: 3056 - hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" - } - Frame { - msec: 3072 - hash: "dd6072d204812c23e24db1e7a81c6f57" - } - Frame { - msec: 3088 - hash: "c83c973fb1253ccab333fb1e604155b8" - } - Frame { - msec: 3104 - hash: "be72fe7c27901db62f2dbd9a757e4838" - } - Frame { - msec: 3120 - hash: "881b5c2ccd0bbdaea4d61abbec600fc5" - } - Frame { - msec: 3136 - hash: "93f79f8717948bde8ee55c668af2d397" - } - Frame { - msec: 3152 - hash: "1bb236db749ef514c00d0a3dd698d24f" - } - Frame { - msec: 3168 - hash: "83f297406b1c6311da3a216024836d15" - } - Frame { - msec: 3184 - hash: "3d284b4000d2849ed4af2f7c1b859492" - } - Frame { - msec: 3200 - hash: "de315e6836334fd0a2da855f5be4ff30" - } - Frame { - msec: 3216 - hash: "5ca117709284f4a1cbd64cdba4079340" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3232 - hash: "308a4220f5c74fd56bd218cd695b9822" - } - Frame { - msec: 3248 - hash: "4ac4e09e987f2ba9661ed52fb1bdf236" - } - Frame { - msec: 3264 - hash: "9ffd39a8a540ec88ff2b20a16ef083ee" - } - Frame { - msec: 3280 - hash: "4a36ed8e68811954fef171d5734ccbaf" - } - Frame { - msec: 3296 - hash: "714a6231aca70cfa8e83ea71b7ae90dc" - } - Frame { - msec: 3312 - hash: "1fa9e35449ee87c972e3189ad0651a68" - } - Frame { - msec: 3328 - hash: "d602008fada2f4edb6ad00fe759f9db9" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3344 - hash: "bf16cc38f109e761b5ac2b0c63a1a2fe" - } - Frame { - msec: 3360 - hash: "30f26041533455ed92c4984f55e3c6ff" - } - Frame { - msec: 3376 - hash: "5838d666902bc693de505522dad13254" - } - Frame { - msec: 3392 - hash: "6c8ada09b627050e4340da6e8ddd646e" - } - Frame { - msec: 3408 - hash: "b33cd5bbb90d435dd7ea3ab67bef88ee" - } - Frame { - msec: 3424 - hash: "692d4029938c01044b4210958dd1ee7e" - } - Frame { - msec: 3440 - hash: "7e2e55555ee2c7e172e61ddb6365355d" - } - Frame { - msec: 3456 - hash: "87ca0584879b25336a1023ac3252fc9a" - } - Frame { - msec: 3472 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 3488 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 3504 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 3520 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 3536 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 3552 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 3568 - hash: "8c6052eb4cf03d7742a73874d9f15285" - } - Frame { - msec: 3584 - hash: "8a1b63c42867f87a1cf4b47944b3860a" - } - Frame { - msec: 3600 - hash: "90712efd7c17b0ad33d2c2c02e9eaa97" - } - Frame { - msec: 3616 - hash: "8099972420ffd03e2bfc3ea45918a543" - } - Frame { - msec: 3632 - hash: "2b78b1179a34319c287a6659406e23c3" - } - Frame { - msec: 3648 - hash: "ad9458ab4d6376c87350a2356c280f94" - } - Frame { - msec: 3664 - hash: "a74bc230e310a2826b2fed962db22f7a" - } - Frame { - msec: 3680 - hash: "bd72e8f4757050c41673a6f0d38f2285" - } - Frame { - msec: 3696 - hash: "379bad4fa4b605cb6a16434bdb031e2b" - } - Frame { - msec: 3712 - hash: "e144a8e9586f29f9b2f042b47e7739ae" - } - Frame { - msec: 3728 - hash: "bd74c9e79bc1a88dd6a17a3aed21e368" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3744 - hash: "144724168f42372e10ec6c39662a5ed8" - } - Frame { - msec: 3760 - hash: "d8859888802e7b54e2d2a44cf252eb54" - } - Frame { - msec: 3776 - hash: "20561e2faf7e8fe1d6337248e6cd5e94" - } - Frame { - msec: 3792 - hash: "184cff262d1004ce702c117a6b5b9699" - } - Frame { - msec: 3808 - hash: "61b156acacefa6e4f4ddd8adaca90d08" - } - Frame { - msec: 3824 - hash: "0906852b1e62a936694a22d6ffa4f5dd" - } - Frame { - msec: 3840 - image: "cursorDelegate.3.png" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3856 - hash: "cc0fb2ae2dd1ccad94c453bc4c4b6d32" - } - Frame { - msec: 3872 - hash: "6a6baee5ca76d331c47fca4d0f7168e5" - } - Frame { - msec: 3888 - hash: "32032d7ce55af41c97ac5bf33aca40bb" - } - Frame { - msec: 3904 - hash: "a8781226e5e494324a34e120aa446cd1" - } - Frame { - msec: 3920 - hash: "0dd5df088fcc0228a97ffe715c95e2b6" - } - Frame { - msec: 3936 - hash: "774b161fe9645bc69b89e580b3e41f71" - } - Frame { - msec: 3952 - hash: "5756d7ffd8ff656db54f4329ea909553" - } - Frame { - msec: 3968 - hash: "2b4a5c97ff4d8792a7706bb78385ec35" - } - Frame { - msec: 3984 - hash: "f9765e4def564b64861402e1a873b169" - } - Frame { - msec: 4000 - hash: "287b07ef6288dcea13fffd2b95aafd54" - } - Frame { - msec: 4016 - hash: "7abcb9d6cf223c1655f6265f780a321a" - } - Frame { - msec: 4032 - hash: "287b07ef6288dcea13fffd2b95aafd54" - } - Frame { - msec: 4048 - hash: "f9765e4def564b64861402e1a873b169" - } - Frame { - msec: 4064 - hash: "2b4a5c97ff4d8792a7706bb78385ec35" - } - Key { - type: 7 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "5756d7ffd8ff656db54f4329ea909553" - } - Frame { - msec: 4096 - hash: "774b161fe9645bc69b89e580b3e41f71" - } - Frame { - msec: 4112 - hash: "0dd5df088fcc0228a97ffe715c95e2b6" - } - Frame { - msec: 4128 - hash: "a8781226e5e494324a34e120aa446cd1" - } - Frame { - msec: 4144 - hash: "32032d7ce55af41c97ac5bf33aca40bb" - } - Frame { - msec: 4160 - hash: "6a6baee5ca76d331c47fca4d0f7168e5" - } - Frame { - msec: 4176 - hash: "cc0fb2ae2dd1ccad94c453bc4c4b6d32" - } - Frame { - msec: 4192 - hash: "2d1b406be294727a278ba6bbc97be62a" - } - Frame { - msec: 4208 - hash: "0906852b1e62a936694a22d6ffa4f5dd" - } - Frame { - msec: 4224 - hash: "61b156acacefa6e4f4ddd8adaca90d08" - } - Frame { - msec: 4240 - hash: "184cff262d1004ce702c117a6b5b9699" - } - Frame { - msec: 4256 - hash: "20561e2faf7e8fe1d6337248e6cd5e94" - } - Frame { - msec: 4272 - hash: "d8859888802e7b54e2d2a44cf252eb54" - } - Frame { - msec: 4288 - hash: "144724168f42372e10ec6c39662a5ed8" - } - Frame { - msec: 4304 - hash: "d2da36fbf73289f545133bd608af66a2" - } - Frame { - msec: 4320 - hash: "b1d7da6b42a31bba91148ab37b111945" - } - Frame { - msec: 4336 - hash: "6f226a3b20d95e17df69e2c4e5aff3d1" - } - Frame { - msec: 4352 - hash: "1109da0f043a9418661fc05e53fe3b45" - } - Frame { - msec: 4368 - hash: "f3e901db9efd1d9fadf1cb6858040d51" - } - Frame { - msec: 4384 - hash: "c8e50c0e924b11a3f1943abb9a4008a4" - } - Frame { - msec: 4400 - hash: "431226a27488ed1dba237de3d43f94c5" - } - Frame { - msec: 4416 - hash: "420d316430c84f10d7cd24d29b918149" - } - Frame { - msec: 4432 - hash: "ccbd4d1e4865ebd9b0fe923e6ab05e5c" - } - Frame { - msec: 4448 - hash: "231bff73758a1c6f7c7c0365159ba3e6" - } - Frame { - msec: 4464 - hash: "d1ac7ceda7303bbf3392d33f47037ed6" - } - Frame { - msec: 4480 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4496 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4512 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4528 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4544 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4560 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4576 - hash: "a2ad07326fafcb3012cdb869f39af466" - } - Frame { - msec: 4592 - hash: "8622eb25a6da44926b5161bce213a483" - } - Frame { - msec: 4608 - hash: "fe563aa9dae9655871f82a779063cdbd" - } - Frame { - msec: 4624 - hash: "775cd79b012f79b773449a0ad8457149" - } - Frame { - msec: 4640 - hash: "01e9fab344a148a0877a7332d561be5a" - } - Frame { - msec: 4656 - hash: "935566d139599a30197850774fb059ba" - } - Frame { - msec: 4672 - hash: "4aae1ac532624417decddd978f516b6e" - } - Frame { - msec: 4688 - hash: "34dc78df6e9941988712c1f8f79c3db0" - } - Frame { - msec: 4704 - hash: "23a96c11d5917c44bd48239ed2b5777f" - } - Frame { - msec: 4720 - hash: "f8f13e097eae3152db3ccebff1343fe0" - } - Frame { - msec: 4736 - hash: "02f8fca7c4ab80ecf425e4b39e966b86" - } - Frame { - msec: 4752 - hash: "c3356367750e797ff81bc4102f948134" - } - Frame { - msec: 4768 - hash: "7b5de3772b8bcb4b10f3d265d5603afb" - } - Frame { - msec: 4784 - hash: "ed3c741639232377f61867fd353ce58a" - } - Frame { - msec: 4800 - image: "cursorDelegate.4.png" - } - Frame { - msec: 4816 - hash: "5ca117709284f4a1cbd64cdba4079340" - } - Frame { - msec: 4832 - hash: "de315e6836334fd0a2da855f5be4ff30" - } - Frame { - msec: 4848 - hash: "3d284b4000d2849ed4af2f7c1b859492" - } - Frame { - msec: 4864 - hash: "83f297406b1c6311da3a216024836d15" - } - Frame { - msec: 4880 - hash: "1bb236db749ef514c00d0a3dd698d24f" - } - Frame { - msec: 4896 - hash: "93f79f8717948bde8ee55c668af2d397" - } - Frame { - msec: 4912 - hash: "881b5c2ccd0bbdaea4d61abbec600fc5" - } - Frame { - msec: 4928 - hash: "be72fe7c27901db62f2dbd9a757e4838" - } - Frame { - msec: 4944 - hash: "c83c973fb1253ccab333fb1e604155b8" - } - Frame { - msec: 4960 - hash: "dd6072d204812c23e24db1e7a81c6f57" - } - Frame { - msec: 4976 - hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" - } - Frame { - msec: 4992 - hash: "fc8ede705bfe8f339fe47041c502b0d6" - } - Frame { - msec: 5008 - hash: "00fa0306d3fdc7e384cfc0660a3a355d" - } - Frame { - msec: 5024 - hash: "00fa0306d3fdc7e384cfc0660a3a355d" - } - Frame { - msec: 5040 - hash: "fc8ede705bfe8f339fe47041c502b0d6" - } - Frame { - msec: 5056 - hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" - } - Frame { - msec: 5072 - hash: "dd6072d204812c23e24db1e7a81c6f57" - } - Frame { - msec: 5088 - hash: "c83c973fb1253ccab333fb1e604155b8" - } - Frame { - msec: 5104 - hash: "be72fe7c27901db62f2dbd9a757e4838" - } - Frame { - msec: 5120 - hash: "881b5c2ccd0bbdaea4d61abbec600fc5" - } - Frame { - msec: 5136 - hash: "93f79f8717948bde8ee55c668af2d397" - } - Frame { - msec: 5152 - hash: "1bb236db749ef514c00d0a3dd698d24f" - } - Frame { - msec: 5168 - hash: "83f297406b1c6311da3a216024836d15" - } - Frame { - msec: 5184 - hash: "3d284b4000d2849ed4af2f7c1b859492" - } - Frame { - msec: 5200 - hash: "de315e6836334fd0a2da855f5be4ff30" - } - Frame { - msec: 5216 - hash: "5ca117709284f4a1cbd64cdba4079340" - } - Frame { - msec: 5232 - hash: "4f0d49aff27a1c83287d38e760c10f16" - } - Frame { - msec: 5248 - hash: "ed3c741639232377f61867fd353ce58a" - } - Frame { - msec: 5264 - hash: "7b5de3772b8bcb4b10f3d265d5603afb" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.0.png deleted file mode 100644 index 431bed8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.1.png deleted file mode 100644 index d8d6bac..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.2.png deleted file mode 100644 index 27e02e5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.3.png deleted file mode 100644 index 00549b3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.4.png deleted file mode 100644 index 5c2a885..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.5.png deleted file mode 100644 index 5c2a885..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.6.png deleted file mode 100644 index fd7f010..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.qml deleted file mode 100644 index dff5452..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/flickableEdit.qml +++ /dev/null @@ -1,3551 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "flickableEdit.0.png" - } - Frame { - msec: 32 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 48 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 64 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 80 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 96 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 112 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 128 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 144 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 160 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 176 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 192 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 208 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 224 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 240 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 256 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 272 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 288 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 304 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 320 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 336 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 352 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 368 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 384 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 400 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 416 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 432 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 448 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 464 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 480 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 496 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 512 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 528 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 544 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 560 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 576 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 592 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 608 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 624 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 640 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 656 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 672 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 688 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 704 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 720 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 736 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 752 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 768 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 784 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 800 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 816 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 832 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 848 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 864 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 880 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 896 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 29; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 912 - hash: "1a426d2b8854412a3c91f927588f63ce" - } - Frame { - msec: 928 - hash: "1a426d2b8854412a3c91f927588f63ce" - } - Frame { - msec: 944 - hash: "1a426d2b8854412a3c91f927588f63ce" - } - Frame { - msec: 960 - hash: "1a426d2b8854412a3c91f927588f63ce" - } - Frame { - msec: 976 - image: "flickableEdit.1.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 30; y: 12 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 32; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 992 - hash: "1a426d2b8854412a3c91f927588f63ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 12 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 34; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1008 - hash: "1a426d2b8854412a3c91f927588f63ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 36; y: 12 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 39; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1024 - hash: "4626e25f67dfd0fe3846322455762b3b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 11 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1040 - hash: "4626e25f67dfd0fe3846322455762b3b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 11 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1056 - hash: "e506425ea4a8eb6d94442ac0bccd0911" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 11 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 10 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "3c45be5d00748154f9abce8d525b5791" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 10 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 10 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1088 - hash: "3e33ff0dfd478bad91472fa2bb4908a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1104 - hash: "3e33ff0dfd478bad91472fa2bb4908a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 71; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1120 - hash: "e8e7e98f3d7dbcdb4040ae81ef656e02" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 75; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1136 - hash: "e8e7e98f3d7dbcdb4040ae81ef656e02" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 78; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1152 - hash: "309c25ff85a361dfebd6464984fd9d79" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 83; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 85; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1168 - hash: "4b4fc7d9263af761222bb23f41021731" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 87; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 90; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1184 - hash: "4b4fc7d9263af761222bb23f41021731" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 93; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1200 - hash: "bd00eeda31cfc8d59a2c9677e771dadb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 99; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1216 - hash: "adce307d674b8425fa39b69958d6acc5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1232 - hash: "36e04d9124f32a21784f3017cc26ee71" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 116; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1248 - hash: "36e04d9124f32a21784f3017cc26ee71" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 119; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1264 - hash: "c6548ac358dd0eb4fa07ed305039d4e2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1280 - hash: "a0c4b8e21b0b04edaf7b32b2ab40edb2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 128; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1296 - hash: "a0c4b8e21b0b04edaf7b32b2ab40edb2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 134; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1312 - hash: "d32fb36408859c35dacc5787374b6ae4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1328 - hash: "d32fb36408859c35dacc5787374b6ae4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 141; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1344 - hash: "d32fb36408859c35dacc5787374b6ae4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1360 - hash: "90f44df899138e894b1a7e42657b8331" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 147; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1376 - hash: "90f44df899138e894b1a7e42657b8331" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1392 - hash: "8ec6bb08aac10a622df934421f64beb4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 150; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1408 - hash: "d4e52b7ca07033e4f2124607454fd81b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1424 - hash: "499d7c3d9cfb35db68f6eece23130e6b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1440 - hash: "499d7c3d9cfb35db68f6eece23130e6b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1456 - hash: "3ea13a21a5bbe336408c76ab17ff4268" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1472 - hash: "3ea13a21a5bbe336408c76ab17ff4268" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1488 - hash: "3ea13a21a5bbe336408c76ab17ff4268" - } - Frame { - msec: 1504 - hash: "3ea13a21a5bbe336408c76ab17ff4268" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1520 - hash: "3ea13a21a5bbe336408c76ab17ff4268" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1536 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 165; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1552 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1568 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 169; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1584 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1600 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1616 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1632 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1648 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1664 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1680 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1696 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1712 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1728 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1744 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1760 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1776 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1792 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1808 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1824 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1840 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 170; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1856 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1872 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1888 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1904 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 1920 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 1936 - image: "flickableEdit.2.png" - } - Frame { - msec: 1952 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 1968 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 1984 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2000 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2016 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2032 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2048 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2064 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2080 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2096 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2112 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2128 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2144 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2160 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2176 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2192 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2208 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2224 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2240 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2256 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2272 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2288 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2304 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2320 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2336 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2352 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2368 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2384 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2400 - hash: "4b8bc23e0153e6925c3e3a065fcc8dcd" - } - Frame { - msec: 2416 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2432 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2448 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2464 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2480 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2496 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2512 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2528 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2544 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2560 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2576 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2592 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2608 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2624 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2640 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2656 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2672 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2688 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Frame { - msec: 2704 - hash: "06bc360da9134471bf6e8e6ff36cbaa4" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 21; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2720 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2736 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2752 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2768 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2784 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2800 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2816 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2832 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2848 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2864 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2880 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2896 - image: "flickableEdit.3.png" - } - Frame { - msec: 2912 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2928 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 22; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2944 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2960 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2976 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Frame { - msec: 2992 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 24; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3008 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 25; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3024 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 26; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3040 - hash: "9d2c8b1f0f7da6a4914a54cf76393861" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 29; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3056 - hash: "e5daa45e1d798fdf2562dbb9a1a2c97b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 30; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 31; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3072 - hash: "698b572adf95ddc235b781b126a1cc10" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 35; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3088 - hash: "7a87fe9484b00f8c7039e3129fc24fb5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 37; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3104 - hash: "2f17e7980a28789d0f262e3682c2da27" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 42; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3120 - hash: "0757f4c05233a25e6a8825b2c6052d8d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3136 - hash: "799da712f376033efdbaf9a342e4bc3f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3152 - hash: "bf7b2a29664fe4acf52d56c73cf079b1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 62; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3168 - hash: "7928b280e7a9ab89217c9abf3b709cd2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 72; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3184 - hash: "3102339f3e18640f6b508e88aafefb79" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 75; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 78; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3200 - hash: "98cddfbea5b96f9dd08c5a3655155d35" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 84; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3216 - hash: "5604b2f85c3a90f8b29da3fec2f6c509" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 87; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3232 - hash: "5ca4055c8dded5d30c326d6d304da28d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 94; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 97; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3248 - hash: "b0afe256f8f89a77a5fa87c023cda469" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3264 - hash: "d7408be78c80e2b6e5848ee696a79ee0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3280 - hash: "f7e12621527fd52e21595cfbf804879c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3296 - hash: "6b8c9413ba1a791e42b06aaa711cdb4e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 127; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3312 - hash: "1c80e0f89033dedc66b236561042f4f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3328 - hash: "6ec06d8844ff57e34af5316895250858" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3344 - hash: "f3c0159243555e919fd736866b00a5ab" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3360 - hash: "973ced5d6155240490acd6241610429d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 169; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "0aee5feb94508f70c62cc3255c53bc8a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 182; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3392 - hash: "840cc661a50dd8bc1af8f6d53ccbece5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3408 - hash: "34a470358ccfb7592cf47399ab6dbc19" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 195; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3424 - hash: "25c53ff3977ca8422c545c1608782833" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3440 - hash: "d4388550549d54e31640cda4672c3bfb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3456 - hash: "8904c3b225a5e732fca4fc605d0fc12a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3472 - hash: "415a630fc6a963e99a0e13bf5e461849" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 223; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 226; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3488 - hash: "1526e90e0345e20a3455554c8f249de7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3504 - hash: "2b215748d63e505469d343919b245af9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 235; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 238; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3520 - hash: "6821e559cb1e45b0cd731c90c3b16934" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 241; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 243; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3536 - hash: "334ddaa8c2cd0506528fe20a21991b03" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 245; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 247; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3552 - hash: "6e651889e91d3de96d9aaf91f4ed9a2c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 250; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 251; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3568 - hash: "0554f22d8079ef0213dc25f9f1b59055" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 252; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 253; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3584 - hash: "1eb0805e4c706af1c7cfa113d32edda1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 255; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 256; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3600 - hash: "482f30ca992e9f92241523a47125d9b4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 257; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 259; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3616 - hash: "6b2bec317fad51fe85bab6a00ced9655" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 261; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 262; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3632 - hash: "acc661684f507375518fc73fe081f61e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 263; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 265; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3648 - hash: "f77143d0d7a3cf8c0163bf950940ad07" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 267; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3664 - hash: "8d0407ae3f55305e1d9780deaa30c064" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3680 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 3696 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 3712 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3728 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3744 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3760 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3776 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3792 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3808 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3824 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3840 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3856 - image: "flickableEdit.4.png" - } - Frame { - msec: 3872 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3888 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3904 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3920 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3936 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3952 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3968 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 3984 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4000 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4016 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4032 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4048 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4064 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4080 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4096 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4112 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4128 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4144 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4160 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4176 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4192 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4208 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4224 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4240 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4256 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4272 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4288 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4304 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4320 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4336 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4352 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4368 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4384 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4400 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4416 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4432 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4448 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4464 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4480 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4496 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4512 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4528 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4544 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4560 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4576 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4592 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4608 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4624 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4640 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4656 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4672 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4688 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4704 - hash: "c536946f28abb221cc38d6f438887e17" - } - Frame { - msec: 4720 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4736 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4752 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4768 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4784 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4800 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4816 - image: "flickableEdit.5.png" - } - Frame { - msec: 4832 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4848 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4864 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Frame { - msec: 4880 - hash: "91bd6701cbb1e836a01d1619e0421503" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4896 - hash: "e5a6693779ffb4e8a333756690a8f9e0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 264; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 262; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4912 - hash: "6acabe70146611091621ef5079cc97ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 259; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 256; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4928 - hash: "f75b5eaa04bfec866f088f665edb225e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 253; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 249; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4944 - hash: "1888acd9f3e48348c22e324d67ab2724" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 245; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 240; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4960 - hash: "cd24be347f20371f9d0796fa4a38ad0c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 235; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 231; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4976 - hash: "f39bc67a8e83340f8e89cf11c89fb27c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4992 - hash: "80d8019485231c061ba1cf81fd4c42ca" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5008 - hash: "72893900dfd007ea25a7d75982be6320" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 29 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5024 - hash: "f3d02c4d2f0b8b75b0b6159c0ba8f4db" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 28 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 195; y: 28 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5040 - hash: "8ecdf1325bb2084bf6212216bd86b324" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 27 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 186; y: 27 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5056 - hash: "be5c62268b337c9d7f69ab01b02c816d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 182; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 178; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5072 - hash: "a0eea6c818a1cb71809aff4613e9655d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5088 - hash: "27fcf1d4cd00dc7ac54fa92f9c7e2ac2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 165; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5104 - hash: "32f6bdc5e2f6ce34436a21dd8ee348dd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5120 - hash: "4c11c9075429acd4acddc6ede4e5fe69" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 23 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5136 - hash: "8fdaf03e0b03698613092303945787d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 23 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 22 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5152 - hash: "d9bc269f21d5eade8bb9555d05a86744" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 142; y: 22 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 22 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5168 - hash: "f9dd0735682dba198febffcc85c9835a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5184 - hash: "a98869bb654e3b4c1f4d9d0e7e24197a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 128; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5200 - hash: "50ceb9d6d58129b71009079a0028e7c4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 121; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5216 - hash: "6b8c9413ba1a791e42b06aaa711cdb4e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5232 - hash: "f7e12621527fd52e21595cfbf804879c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5248 - hash: "d7408be78c80e2b6e5848ee696a79ee0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 19 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 99; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5264 - hash: "e648f25a978b9f14cf71d5f1d90edf15" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 19 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 93; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5280 - hash: "64ce73aa32f2c08f4cee9a35a103a1d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 19 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 88; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "1db1d100eb1f97a7c85ab8df3e558188" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 86; y: 18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 84; y: 18 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "5604b2f85c3a90f8b29da3fec2f6c509" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 79; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5328 - hash: "fb57c6295d512821945754020ea6a3ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 77; y: 17 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 75; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5344 - hash: "14dfd5b78901c9f63e4f5d0889f77805" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 17 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 72; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5360 - hash: "cc105198e78269be1240785b791c8612" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 17 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5376 - hash: "1ef97830b4f1be66a4f443ee4573547b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 17 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5392 - hash: "0ef86edc381e75c39ba067404817edb8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 63; y: 17 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 60; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5408 - hash: "6a7605f59eb364fbc166aeea7b54695a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 17 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5424 - hash: "e86bb3698ad8b46e70237088ea056ab0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 17 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5440 - hash: "56db36cde05d74d6bf8eec0b21515b20" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 17 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5456 - hash: "05adc602e827635ca43c0cff2b5b857d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 18 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5472 - hash: "cbdcdf9b7e640a79e2269247bb4d6cc2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: 18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5488 - hash: "bc014e9feb5e69c4042385a6753d1884" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 38; y: 19 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 37; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5504 - hash: "544e9ddbedae500955e6cec79eae709c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 35; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5520 - hash: "ec17a9dba3846c1919b67eaf3d234471" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 30; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 28; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5536 - hash: "8ab538f8baa170798c93e6eb4d5441f8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 26; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5552 - hash: "1b1636fecff90e602b87dbf84a986d2a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 25; y: 20 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 24; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5568 - hash: "27a84ee3fb8b306e22e50ba753828b7c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5584 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 5600 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 23; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5616 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 5632 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 5648 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 5664 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 5680 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 5696 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 5712 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5728 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5744 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5760 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5776 - image: "flickableEdit.6.png" - } - Frame { - msec: 5792 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5808 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5824 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5840 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5856 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5872 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5888 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5904 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5920 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5936 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5952 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5968 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 5984 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6000 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6016 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6032 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6048 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6064 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6080 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6096 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6112 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6128 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6144 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6160 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6176 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6192 - hash: "46af738f612bfe0fbf4f83eb847dacb7" - } - Frame { - msec: 6208 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6224 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6240 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6256 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6272 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6288 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6304 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6320 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6336 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6352 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6368 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6384 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6400 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6416 - hash: "ee9cd90fbe594efb411315a97b702a40" - } - Frame { - msec: 6432 - hash: "ee9cd90fbe594efb411315a97b702a40" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.0.png deleted file mode 100644 index 7d0d0ae..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.1.png deleted file mode 100644 index 7d612bf..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.qml deleted file mode 100644 index 8c7e380..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/linkActivated.qml +++ /dev/null @@ -1,191 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "linkActivated.0.png" - } - Frame { - msec: 32 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 48 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 64 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 80 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 96 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 112 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 128 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 144 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 160 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 176 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 192 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 208 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 224 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 240 - hash: "53d97d0966197ea41364511dea13752f" - } - Frame { - msec: 256 - hash: "53d97d0966197ea41364511dea13752f" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 21; y: 13 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 272 - hash: "9482227cbc77e9083218c1452e8644d8" - } - Frame { - msec: 288 - hash: "9482227cbc77e9083218c1452e8644d8" - } - Frame { - msec: 304 - hash: "9482227cbc77e9083218c1452e8644d8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 22; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 320 - hash: "9482227cbc77e9083218c1452e8644d8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 10 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 23; y: 10 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 336 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 352 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 368 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 384 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 400 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 416 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 432 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 448 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 464 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 480 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 496 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 512 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 528 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 544 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 560 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 576 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 592 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } - Frame { - msec: 608 - hash: "29c47cec5d015e6cab0762c3db0fa714" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.0.png deleted file mode 100644 index 95a835a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.1.png deleted file mode 100644 index 409192c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.2.png deleted file mode 100644 index cd2f112..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.3.png deleted file mode 100644 index 7191c1e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml deleted file mode 100644 index 5926e04..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/qt-669.qml +++ /dev/null @@ -1,1371 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 32 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 48 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 64 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 80 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 96 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 112 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 128 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 144 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 160 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 176 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 192 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 208 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 224 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 240 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 256 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 272 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 288 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 304 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 320 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 336 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 352 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 368 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 384 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 400 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 416 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 432 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 464 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 480 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 496 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 512 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 528 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 560 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 576 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 592 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 608 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 624 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 640 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 656 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 672 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 704 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 720 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 736 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 752 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 768 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 784 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 800 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 816 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 832 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 848 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 864 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 880 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 896 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 912 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 928 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 944 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 960 - image: "qt-669.0.png" - } - Frame { - msec: 976 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 992 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 1008 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1024 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 1040 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 1056 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 1072 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 1088 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1104 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 1120 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 1136 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1152 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 1168 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 1184 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 1200 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 1216 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1232 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 1248 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 1264 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 1280 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 1312 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 1328 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 1344 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1360 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1376 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1392 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1408 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1424 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1440 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1456 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1472 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1488 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1520 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1536 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1552 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1568 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1584 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1600 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1616 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1632 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1648 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1664 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1680 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1696 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1712 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1728 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1744 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1760 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1776 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1792 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1808 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1824 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Frame { - msec: 1840 - hash: "a3b98f215b2329e29d17b61eba0f9e45" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1856 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1872 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1888 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1904 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1920 - image: "qt-669.1.png" - } - Frame { - msec: 1936 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1952 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1968 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 1984 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2000 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 2016 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 2032 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 2048 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Frame { - msec: 2064 - hash: "d85314199885fdf9cc8e666c3fb723fb" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2080 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 2096 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 2112 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 2128 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 2144 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 2176 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 2192 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 2208 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Frame { - msec: 2224 - hash: "1313880b796ae7134f50fa8dafa4a974" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 2256 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2272 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 2288 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 2304 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 2320 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Frame { - msec: 2336 - hash: "c899e9d181860f682ba7275fa36f82a1" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2352 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2368 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2384 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2400 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2416 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2432 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2448 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2464 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2480 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2496 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2512 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2528 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2544 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2560 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2576 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Frame { - msec: 2592 - hash: "2caf044acf7aaf0af6a03e7b8180fa16" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2608 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 2624 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 2640 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 2656 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 2672 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2688 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 2704 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 2720 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 2736 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Frame { - msec: 2752 - hash: "c87aaf72137c2b9e8c876879e7215072" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2768 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 2784 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 2800 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2816 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 2832 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 2848 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Frame { - msec: 2864 - hash: "3c455f51fea0926576077d55d6fbfbb2" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2880 - image: "qt-669.2.png" - } - Frame { - msec: 2896 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 2912 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 2928 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 2960 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 2976 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 2992 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Frame { - msec: 3008 - hash: "394360c0bff5ee3ad206d2911838d64e" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3024 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3040 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3056 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3072 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3088 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3104 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3120 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3136 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3152 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3168 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3184 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3200 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3216 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3232 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3248 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3264 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3280 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3296 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3312 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3328 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3344 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3360 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3376 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3392 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3408 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3424 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3440 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3456 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3472 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3488 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3504 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3520 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3536 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3552 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3568 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3584 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3600 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3616 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3632 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3648 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3664 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3680 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Frame { - msec: 3696 - hash: "10573e4c9dab5bd6e46ec79949c098e5" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3712 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3728 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3744 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3760 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3776 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3792 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3808 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3824 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3840 - image: "qt-669.3.png" - } - Frame { - msec: 3856 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3872 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3888 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3904 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3920 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3936 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3952 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3968 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 3984 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4000 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4016 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4032 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4048 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4064 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4080 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4096 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4112 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4128 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4144 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4160 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4176 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4192 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4208 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4224 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4240 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4256 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4272 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4288 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } - Frame { - msec: 4304 - hash: "4e0ce00bde70a96774a6477ef2305b7f" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png deleted file mode 100644 index e69860e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png deleted file mode 100644 index 1db3c26..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png deleted file mode 100644 index 9c72d52..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png deleted file mode 100644 index 9c72d52..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png deleted file mode 100644 index fbef805..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png deleted file mode 100644 index dc56c7e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png deleted file mode 100644 index 04ea496..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png deleted file mode 100644 index 98bf7de..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png deleted file mode 100644 index d95b895..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png deleted file mode 100644 index 9954344..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png deleted file mode 100644 index d49c2ff..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png deleted file mode 100644 index 9c72d52..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml deleted file mode 100644 index 94891e5..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml +++ /dev/null @@ -1,4687 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 32 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 48 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 64 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 80 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 96 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 112 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 128 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 144 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 160 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 176 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 192 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 208 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 224 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 240 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 256 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 272 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 288 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 304 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 320 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 118; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 336 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 352 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 368 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 384 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 400 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 118; y: 70 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 416 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 432 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 448 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 464 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 480 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 496 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 512 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 528 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 544 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 560 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 576 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 592 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 608 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 624 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Frame { - msec: 640 - hash: "a4edfba57a47b45f96fe1fa7a37c1720" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 117; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 656 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 672 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 117; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 688 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 704 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 720 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 736 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 752 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 768 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 784 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 800 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 816 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 832 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 848 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 864 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 880 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 896 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 912 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 928 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 944 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 960 - image: "usingMultilineEdit.0.png" - } - Frame { - msec: 976 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 992 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1008 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1024 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1040 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1056 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1072 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1088 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1104 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1120 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1136 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1152 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1168 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1184 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1200 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1216 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1232 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1248 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1264 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1280 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Frame { - msec: 1296 - hash: "bf9ad629e190df34f8bbb242e986083f" - } - Key { - type: 6 - key: 44 - modifiers: 0 - text: "2c" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "bf65dbbfc02ad1589093d965c83d5806" - } - Frame { - msec: 1328 - hash: "bf65dbbfc02ad1589093d965c83d5806" - } - Frame { - msec: 1344 - hash: "bf65dbbfc02ad1589093d965c83d5806" - } - Frame { - msec: 1360 - hash: "bf65dbbfc02ad1589093d965c83d5806" - } - Frame { - msec: 1376 - hash: "bf65dbbfc02ad1589093d965c83d5806" - } - Key { - type: 7 - key: 44 - modifiers: 0 - text: "2c" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "bf65dbbfc02ad1589093d965c83d5806" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1408 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Frame { - msec: 1424 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Frame { - msec: 1440 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Frame { - msec: 1456 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1472 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Frame { - msec: 1488 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Frame { - msec: 1504 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Frame { - msec: 1520 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Frame { - msec: 1536 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Frame { - msec: 1552 - hash: "ef0640a754b76b5e28bff78376f1aaf3" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "b392b8d675e61166e9707f4a7f191c15" - } - Frame { - msec: 1584 - hash: "b392b8d675e61166e9707f4a7f191c15" - } - Frame { - msec: 1600 - hash: "b392b8d675e61166e9707f4a7f191c15" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1616 - hash: "b392b8d675e61166e9707f4a7f191c15" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1632 - hash: "f7a9826581a72f37b1211f1006d93ae5" - } - Frame { - msec: 1648 - hash: "f7a9826581a72f37b1211f1006d93ae5" - } - Frame { - msec: 1664 - hash: "f7a9826581a72f37b1211f1006d93ae5" - } - Frame { - msec: 1680 - hash: "f7a9826581a72f37b1211f1006d93ae5" - } - Frame { - msec: 1696 - hash: "f7a9826581a72f37b1211f1006d93ae5" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1712 - hash: "f7a9826581a72f37b1211f1006d93ae5" - } - Frame { - msec: 1728 - hash: "f7a9826581a72f37b1211f1006d93ae5" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1744 - hash: "cea68eaed3000fe598917688b49525b7" - } - Frame { - msec: 1760 - hash: "cea68eaed3000fe598917688b49525b7" - } - Frame { - msec: 1776 - hash: "cea68eaed3000fe598917688b49525b7" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "cea68eaed3000fe598917688b49525b7" - } - Frame { - msec: 1808 - hash: "cea68eaed3000fe598917688b49525b7" - } - Frame { - msec: 1824 - hash: "cea68eaed3000fe598917688b49525b7" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 1840 - hash: "968932500933300e0a0ca711067d6659" - } - Frame { - msec: 1856 - hash: "968932500933300e0a0ca711067d6659" - } - Frame { - msec: 1872 - hash: "968932500933300e0a0ca711067d6659" - } - Frame { - msec: 1888 - hash: "968932500933300e0a0ca711067d6659" - } - Frame { - msec: 1904 - hash: "968932500933300e0a0ca711067d6659" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 1920 - image: "usingMultilineEdit.1.png" - } - Frame { - msec: 1936 - hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" - } - Frame { - msec: 1952 - hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" - } - Frame { - msec: 1968 - hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" - } - Key { - type: 6 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 1984 - hash: "067182091936c99dfa5c29b226bd4351" - } - Frame { - msec: 2000 - hash: "067182091936c99dfa5c29b226bd4351" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2016 - hash: "067182091936c99dfa5c29b226bd4351" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "810e996b65424f80e229160860805492" - } - Frame { - msec: 2048 - hash: "810e996b65424f80e229160860805492" - } - Key { - type: 7 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "810e996b65424f80e229160860805492" - } - Frame { - msec: 2080 - hash: "810e996b65424f80e229160860805492" - } - Frame { - msec: 2096 - hash: "810e996b65424f80e229160860805492" - } - Frame { - msec: 2112 - hash: "810e996b65424f80e229160860805492" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "810e996b65424f80e229160860805492" - } - Frame { - msec: 2144 - hash: "810e996b65424f80e229160860805492" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "10aca130f139e44c0889d8d9c9bb8673" - } - Frame { - msec: 2176 - hash: "10aca130f139e44c0889d8d9c9bb8673" - } - Frame { - msec: 2192 - hash: "10aca130f139e44c0889d8d9c9bb8673" - } - Frame { - msec: 2208 - hash: "10aca130f139e44c0889d8d9c9bb8673" - } - Frame { - msec: 2224 - hash: "10aca130f139e44c0889d8d9c9bb8673" - } - Frame { - msec: 2240 - hash: "10aca130f139e44c0889d8d9c9bb8673" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 2256 - hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" - } - Frame { - msec: 2272 - hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" - } - Frame { - msec: 2288 - hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" - } - Frame { - msec: 2304 - hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" - } - Frame { - msec: 2320 - hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 2336 - hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" - } - Frame { - msec: 2352 - hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "701c2738b7c064cd487bd0c6c0beb6b4" - } - Frame { - msec: 2384 - hash: "701c2738b7c064cd487bd0c6c0beb6b4" - } - Frame { - msec: 2400 - hash: "701c2738b7c064cd487bd0c6c0beb6b4" - } - Frame { - msec: 2416 - hash: "701c2738b7c064cd487bd0c6c0beb6b4" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 2432 - hash: "701c2738b7c064cd487bd0c6c0beb6b4" - } - Key { - type: 6 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "35c0c51dd874faa28058251164836dcb" - } - Frame { - msec: 2464 - hash: "35c0c51dd874faa28058251164836dcb" - } - Frame { - msec: 2480 - hash: "35c0c51dd874faa28058251164836dcb" - } - Frame { - msec: 2496 - hash: "35c0c51dd874faa28058251164836dcb" - } - Frame { - msec: 2512 - hash: "35c0c51dd874faa28058251164836dcb" - } - Frame { - msec: 2528 - hash: "35c0c51dd874faa28058251164836dcb" - } - Key { - type: 7 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 2544 - hash: "35c0c51dd874faa28058251164836dcb" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Frame { - msec: 2576 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Frame { - msec: 2592 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Frame { - msec: 2608 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2624 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Frame { - msec: 2640 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Frame { - msec: 2656 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Frame { - msec: 2672 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Frame { - msec: 2688 - hash: "12748fe9d3b72aff29449deeb2372d03" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 2704 - hash: "0d119074fb7e882ebe4dfbad9bfb401a" - } - Frame { - msec: 2720 - hash: "0d119074fb7e882ebe4dfbad9bfb401a" - } - Frame { - msec: 2736 - hash: "0d119074fb7e882ebe4dfbad9bfb401a" - } - Frame { - msec: 2752 - hash: "0d119074fb7e882ebe4dfbad9bfb401a" - } - Frame { - msec: 2768 - hash: "0d119074fb7e882ebe4dfbad9bfb401a" - } - Frame { - msec: 2784 - hash: "0d119074fb7e882ebe4dfbad9bfb401a" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "3646bd6ea35fb8f0160a24a203b0f469" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 2816 - hash: "3646bd6ea35fb8f0160a24a203b0f469" - } - Frame { - msec: 2832 - hash: "3646bd6ea35fb8f0160a24a203b0f469" - } - Frame { - msec: 2848 - hash: "3646bd6ea35fb8f0160a24a203b0f469" - } - Frame { - msec: 2864 - hash: "3646bd6ea35fb8f0160a24a203b0f469" - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2880 - image: "usingMultilineEdit.2.png" - } - Frame { - msec: 2896 - hash: "3646bd6ea35fb8f0160a24a203b0f469" - } - Frame { - msec: 2912 - hash: "3646bd6ea35fb8f0160a24a203b0f469" - } - Frame { - msec: 2928 - hash: "3646bd6ea35fb8f0160a24a203b0f469" - } - Key { - type: 6 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "d90cbfbec0e5a73781664eec63ba7081" - } - Frame { - msec: 2960 - hash: "d90cbfbec0e5a73781664eec63ba7081" - } - Frame { - msec: 2976 - hash: "d90cbfbec0e5a73781664eec63ba7081" - } - Key { - type: 7 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2992 - hash: "8faa6d1174cf3e8ef10f6575276ed125" - } - Frame { - msec: 3008 - hash: "8faa6d1174cf3e8ef10f6575276ed125" - } - Frame { - msec: 3024 - hash: "8faa6d1174cf3e8ef10f6575276ed125" - } - Frame { - msec: 3040 - hash: "8faa6d1174cf3e8ef10f6575276ed125" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 3056 - hash: "8faa6d1174cf3e8ef10f6575276ed125" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3072 - hash: "bac072bfe350abe83fbc941e56845939" - } - Frame { - msec: 3088 - hash: "bac072bfe350abe83fbc941e56845939" - } - Frame { - msec: 3104 - hash: "bac072bfe350abe83fbc941e56845939" - } - Key { - type: 6 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3120 - hash: "bac072bfe350abe83fbc941e56845939" - } - Key { - type: 7 - key: 32 - modifiers: 33554432 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3136 - hash: "bac072bfe350abe83fbc941e56845939" - } - Frame { - msec: 3152 - hash: "bac072bfe350abe83fbc941e56845939" - } - Key { - type: 6 - key: 73 - modifiers: 33554432 - text: "49" - autorep: false - count: 1 - } - Frame { - msec: 3168 - hash: "386a85651164d0edbeb5cc2b7ee438c7" - } - Frame { - msec: 3184 - hash: "386a85651164d0edbeb5cc2b7ee438c7" - } - Frame { - msec: 3200 - hash: "386a85651164d0edbeb5cc2b7ee438c7" - } - Frame { - msec: 3216 - hash: "386a85651164d0edbeb5cc2b7ee438c7" - } - Key { - type: 7 - key: 73 - modifiers: 33554432 - text: "49" - autorep: false - count: 1 - } - Frame { - msec: 3232 - hash: "386a85651164d0edbeb5cc2b7ee438c7" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3248 - hash: "982d48e7ef886a74791306f055ddc714" - } - Frame { - msec: 3264 - hash: "982d48e7ef886a74791306f055ddc714" - } - Frame { - msec: 3280 - hash: "982d48e7ef886a74791306f055ddc714" - } - Frame { - msec: 3296 - hash: "982d48e7ef886a74791306f055ddc714" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3312 - hash: "982d48e7ef886a74791306f055ddc714" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3328 - hash: "38003a58f17d25d302c5e1b643b271b0" - } - Frame { - msec: 3344 - hash: "38003a58f17d25d302c5e1b643b271b0" - } - Frame { - msec: 3360 - hash: "38003a58f17d25d302c5e1b643b271b0" - } - Frame { - msec: 3376 - hash: "38003a58f17d25d302c5e1b643b271b0" - } - Frame { - msec: 3392 - hash: "38003a58f17d25d302c5e1b643b271b0" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3408 - hash: "38003a58f17d25d302c5e1b643b271b0" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3424 - hash: "18d37190d139a1567d91882fdac411d6" - } - Frame { - msec: 3440 - hash: "18d37190d139a1567d91882fdac411d6" - } - Frame { - msec: 3456 - hash: "18d37190d139a1567d91882fdac411d6" - } - Frame { - msec: 3472 - hash: "18d37190d139a1567d91882fdac411d6" - } - Frame { - msec: 3488 - hash: "18d37190d139a1567d91882fdac411d6" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Key { - type: 6 - key: 78 - modifiers: 0 - text: "6e" - autorep: false - count: 1 - } - Frame { - msec: 3504 - hash: "279aa32aaeebea7f8078e8a750d0514b" - } - Frame { - msec: 3520 - hash: "279aa32aaeebea7f8078e8a750d0514b" - } - Frame { - msec: 3536 - hash: "279aa32aaeebea7f8078e8a750d0514b" - } - Frame { - msec: 3552 - hash: "279aa32aaeebea7f8078e8a750d0514b" - } - Frame { - msec: 3568 - hash: "279aa32aaeebea7f8078e8a750d0514b" - } - Frame { - msec: 3584 - hash: "279aa32aaeebea7f8078e8a750d0514b" - } - Key { - type: 7 - key: 78 - modifiers: 0 - text: "6e" - autorep: false - count: 1 - } - Frame { - msec: 3600 - hash: "279aa32aaeebea7f8078e8a750d0514b" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 3616 - hash: "626123df4dc8fc1321d0262871ffbe3e" - } - Frame { - msec: 3632 - hash: "626123df4dc8fc1321d0262871ffbe3e" - } - Frame { - msec: 3648 - hash: "626123df4dc8fc1321d0262871ffbe3e" - } - Frame { - msec: 3664 - hash: "626123df4dc8fc1321d0262871ffbe3e" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3680 - hash: "00972f42fed66eb94832506b436b203d" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 3696 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3712 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3728 - hash: "00972f42fed66eb94832506b436b203d" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3744 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3760 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3776 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3792 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3808 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3824 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3840 - image: "usingMultilineEdit.3.png" - } - Frame { - msec: 3856 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3872 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3888 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3904 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3920 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3936 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3952 - hash: "00972f42fed66eb94832506b436b203d" - } - Frame { - msec: 3968 - hash: "00972f42fed66eb94832506b436b203d" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 3984 - hash: "72d952ff90862b93ccec046f61d85360" - } - Frame { - msec: 4000 - hash: "72d952ff90862b93ccec046f61d85360" - } - Frame { - msec: 4016 - hash: "72d952ff90862b93ccec046f61d85360" - } - Frame { - msec: 4032 - hash: "72d952ff90862b93ccec046f61d85360" - } - Frame { - msec: 4048 - hash: "72d952ff90862b93ccec046f61d85360" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4064 - hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" - } - Frame { - msec: 4096 - hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" - } - Frame { - msec: 4112 - hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" - } - Frame { - msec: 4128 - hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" - } - Key { - type: 6 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 4144 - hash: "f091e9b3d660c3664960f3fe6f624a1d" - } - Frame { - msec: 4160 - hash: "f091e9b3d660c3664960f3fe6f624a1d" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4176 - hash: "f091e9b3d660c3664960f3fe6f624a1d" - } - Frame { - msec: 4192 - hash: "f091e9b3d660c3664960f3fe6f624a1d" - } - Frame { - msec: 4208 - hash: "f091e9b3d660c3664960f3fe6f624a1d" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 4224 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Frame { - msec: 4240 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Key { - type: 7 - key: 85 - modifiers: 0 - text: "75" - autorep: false - count: 1 - } - Frame { - msec: 4256 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Frame { - msec: 4272 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 4288 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Frame { - msec: 4304 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Frame { - msec: 4320 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Frame { - msec: 4336 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Frame { - msec: 4352 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Frame { - msec: 4368 - hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4384 - hash: "f96b7c209a5e558543157cf5aa4ce69e" - } - Frame { - msec: 4400 - hash: "f96b7c209a5e558543157cf5aa4ce69e" - } - Frame { - msec: 4416 - hash: "f96b7c209a5e558543157cf5aa4ce69e" - } - Frame { - msec: 4432 - hash: "f96b7c209a5e558543157cf5aa4ce69e" - } - Frame { - msec: 4448 - hash: "f96b7c209a5e558543157cf5aa4ce69e" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4464 - hash: "f96b7c209a5e558543157cf5aa4ce69e" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4480 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4496 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4512 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4528 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4544 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4560 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4576 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4592 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Key { - type: 6 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4608 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4624 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4640 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4656 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4672 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4688 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4704 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4720 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4736 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4752 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4768 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4784 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4800 - image: "usingMultilineEdit.4.png" - } - Frame { - msec: 4816 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Frame { - msec: 4832 - hash: "67facce41bc51af385bd8102a7e1285e" - } - Key { - type: 6 - key: 63 - modifiers: 33554432 - text: "3f" - autorep: false - count: 1 - } - Frame { - msec: 4848 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 4864 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 4880 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 4896 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 4912 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 4928 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 4944 - hash: "a616e994d83964ff75d95b702f355937" - } - Key { - type: 7 - key: 63 - modifiers: 33554432 - text: "3f" - autorep: false - count: 1 - } - Frame { - msec: 4960 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 4976 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 4992 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5008 - hash: "a616e994d83964ff75d95b702f355937" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5024 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5040 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5056 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5072 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5088 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5104 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5120 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5136 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5152 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5168 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5184 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5200 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5216 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5232 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5248 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5264 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5280 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5296 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5312 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5328 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5344 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5360 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5376 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5392 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5408 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5424 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5440 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5456 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5472 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5488 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5504 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5520 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5536 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5552 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5568 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5584 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5600 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5616 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5632 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5648 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5664 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5680 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5696 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5712 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5728 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5744 - hash: "a616e994d83964ff75d95b702f355937" - } - Frame { - msec: 5760 - image: "usingMultilineEdit.5.png" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 48; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - hash: "e9532a9023548cf5dfca3fdaeb3467e7" - } - Frame { - msec: 5792 - hash: "e9532a9023548cf5dfca3fdaeb3467e7" - } - Frame { - msec: 5808 - hash: "e9532a9023548cf5dfca3fdaeb3467e7" - } - Frame { - msec: 5824 - hash: "e9532a9023548cf5dfca3fdaeb3467e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 21 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 22 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "e9532a9023548cf5dfca3fdaeb3467e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 23 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "3ee2836c3a2ff4c71d82dd261941883b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "3ee2836c3a2ff4c71d82dd261941883b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 41 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "3ee2836c3a2ff4c71d82dd261941883b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "4e620c1b847274f691e80a384eac5320" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 52 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 58 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5920 - hash: "1a246aa1be0878c38da2eaac6befb738" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 64 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 69 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5936 - hash: "7d6d4a33aacd1d2f530834af31069793" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 62; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5952 - hash: "eba517141a4dc94025801fabc8c5e813" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5968 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 105 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 128 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 130 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 134 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 140 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 148 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 149 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 151 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 69; y: 153 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Frame { - msec: 6208 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Frame { - msec: 6224 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Frame { - msec: 6240 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Frame { - msec: 6256 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 154 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6288 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6304 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 126 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6320 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 63; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6336 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 88 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 80 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6352 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 72 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6368 - hash: "a0f4a1f253c763054ca7d9727d517e5c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 59; y: 58 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 51 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6384 - hash: "b6589493e0225846be0af57024e25d98" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6400 - hash: "b6589493e0225846be0af57024e25d98" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6416 - hash: "d8a1bee2a0e57944d8268a2ce7e6c3c1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 16 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 6 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6432 - hash: "a609d3c9cb375240e66dd316af27543c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6448 - hash: "0d376060ba0f9843ed814a8d8150d047" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: -23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6464 - hash: "9ad787bf41f0ab66beffff056a115c23" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6480 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6496 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6512 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6544 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6560 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6576 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Frame { - msec: 6608 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Frame { - msec: 6624 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Frame { - msec: 6640 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Frame { - msec: 6656 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Frame { - msec: 6672 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -47 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: -45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: -42 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: -39 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6720 - image: "usingMultilineEdit.6.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: -33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: -28 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: -21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6752 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: -18 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: -14 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6768 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: -10 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6784 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: -6 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: -3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6800 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: -1 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 0 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6816 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 3 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6832 - hash: "bc4cd74678c08403bb16b74630d0fd18" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 5 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 7 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6848 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 10 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6864 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 11 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 55; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6896 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 6912 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 6928 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 6944 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 6960 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 6976 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 6992 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 7008 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 7024 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 7040 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 7056 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 7072 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Frame { - msec: 7088 - hash: "0e728de352bc8658bb3e2900a56bfad9" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 59; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7104 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7120 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7136 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7152 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7168 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 59; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7184 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7200 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7216 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7232 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7248 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7264 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7280 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7296 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7312 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7328 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7344 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7360 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7376 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7392 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7408 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7424 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7440 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7456 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7472 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7488 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7504 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7520 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7536 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7552 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Frame { - msec: 7568 - hash: "c9b766ef3743159fdd7a01d3eeaa357b" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7584 - hash: "f8d7e167379a5109b1744727b3bb5050" - } - Frame { - msec: 7600 - hash: "f8d7e167379a5109b1744727b3bb5050" - } - Frame { - msec: 7616 - hash: "f8d7e167379a5109b1744727b3bb5050" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7632 - hash: "f8d7e167379a5109b1744727b3bb5050" - } - Frame { - msec: 7648 - hash: "f8d7e167379a5109b1744727b3bb5050" - } - Frame { - msec: 7664 - hash: "f8d7e167379a5109b1744727b3bb5050" - } - Frame { - msec: 7680 - image: "usingMultilineEdit.7.png" - } - Frame { - msec: 7696 - hash: "f8d7e167379a5109b1744727b3bb5050" - } - Frame { - msec: 7712 - hash: "f8d7e167379a5109b1744727b3bb5050" - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7728 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7744 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7760 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7776 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7792 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7808 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7824 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7840 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7856 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7872 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7888 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7904 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7920 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7936 - hash: "d1f43fa2f710725527736ac3439577df" - } - Frame { - msec: 7952 - hash: "d1f43fa2f710725527736ac3439577df" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 7968 - hash: "1553d42725394fa4d4c9b97dc12a78b9" - } - Frame { - msec: 7984 - hash: "1553d42725394fa4d4c9b97dc12a78b9" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8000 - hash: "a62df700f3209668a813e765a79e7859" - } - Frame { - msec: 8016 - hash: "a62df700f3209668a813e765a79e7859" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8032 - hash: "e8928770969b82523e828e3036bbe106" - } - Frame { - msec: 8048 - hash: "e8928770969b82523e828e3036bbe106" - } - Key { - type: 7 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Key { - type: 6 - key: 16777237 - modifiers: 0 - text: "" - autorep: true - count: 1 - } - Frame { - msec: 8064 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Frame { - msec: 8080 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Key { - type: 6 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Key { - type: 7 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8096 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Frame { - msec: 8112 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Frame { - msec: 8128 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Frame { - msec: 8144 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Frame { - msec: 8160 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Frame { - msec: 8176 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Frame { - msec: 8192 - hash: "ba0c406580cc0fa02a6b26367a290ec9" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8208 - hash: "479b5ba3f5b3d38b5e9aba6b5204da03" - } - Frame { - msec: 8224 - hash: "479b5ba3f5b3d38b5e9aba6b5204da03" - } - Frame { - msec: 8240 - hash: "479b5ba3f5b3d38b5e9aba6b5204da03" - } - Frame { - msec: 8256 - hash: "479b5ba3f5b3d38b5e9aba6b5204da03" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8272 - hash: "479b5ba3f5b3d38b5e9aba6b5204da03" - } - Frame { - msec: 8288 - hash: "479b5ba3f5b3d38b5e9aba6b5204da03" - } - Frame { - msec: 8304 - hash: "479b5ba3f5b3d38b5e9aba6b5204da03" - } - Frame { - msec: 8320 - hash: "479b5ba3f5b3d38b5e9aba6b5204da03" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8336 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Frame { - msec: 8352 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Frame { - msec: 8368 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Frame { - msec: 8384 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8400 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Frame { - msec: 8416 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Frame { - msec: 8432 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Frame { - msec: 8448 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Frame { - msec: 8464 - hash: "978ed05f4ea2cc7ddb06807a25883335" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8480 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8496 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8512 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8528 - hash: "b65c439a091d3293352de410d28aaca1" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8544 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8560 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8576 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8592 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8608 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8624 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8640 - image: "usingMultilineEdit.8.png" - } - Frame { - msec: 8656 - hash: "b65c439a091d3293352de410d28aaca1" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8672 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8688 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8704 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8720 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8736 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8752 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8768 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8784 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8800 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8816 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8832 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8848 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8864 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8880 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8896 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8912 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8928 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8944 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8960 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8976 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 8992 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9008 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9024 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9040 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9056 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9072 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9088 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9104 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9120 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9136 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9152 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9168 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9184 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9200 - hash: "b65c439a091d3293352de410d28aaca1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 70; y: 73 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9216 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9232 - hash: "b65c439a091d3293352de410d28aaca1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 74 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9248 - hash: "b65c439a091d3293352de410d28aaca1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 75 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 76 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9264 - hash: "b65c439a091d3293352de410d28aaca1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 77 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9280 - hash: "b65c439a091d3293352de410d28aaca1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 70; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9296 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9312 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9328 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9344 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9360 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9376 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9392 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9408 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9424 - hash: "b65c439a091d3293352de410d28aaca1" - } - Frame { - msec: 9440 - hash: "b65c439a091d3293352de410d28aaca1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 71; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9456 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9472 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9488 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9504 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9520 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9536 - hash: "3d08eff16edf54f522a75df1734150df" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 71; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9552 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9568 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9584 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9600 - image: "usingMultilineEdit.9.png" - } - Frame { - msec: 9616 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9632 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9648 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9664 - hash: "3d08eff16edf54f522a75df1734150df" - } - Key { - type: 6 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 9680 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9696 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9712 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9728 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9744 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9760 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9776 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9792 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9808 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9824 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9840 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9856 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9872 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9888 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9904 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9920 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9936 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9952 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9968 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 9984 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10000 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10016 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10032 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10048 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10064 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10080 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10096 - hash: "3d08eff16edf54f522a75df1734150df" - } - Key { - type: 6 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10112 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10128 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10144 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10160 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10176 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10192 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10208 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10224 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Key { - type: 7 - key: 16777237 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10240 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10256 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10272 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10288 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10304 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10320 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10336 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Frame { - msec: 10352 - hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" - } - Key { - type: 6 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10368 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10384 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10400 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10416 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10432 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10448 - hash: "3d08eff16edf54f522a75df1734150df" - } - Key { - type: 7 - key: 16777235 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10464 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10480 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10496 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10512 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10528 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10544 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10560 - image: "usingMultilineEdit.10.png" - } - Frame { - msec: 10576 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10592 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10608 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10624 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10640 - hash: "3d08eff16edf54f522a75df1734150df" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10656 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10672 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10688 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10704 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10720 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10736 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10752 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10768 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10784 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10800 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10816 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10832 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10848 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10864 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10880 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10896 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10912 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10928 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10944 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10960 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10976 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 10992 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11008 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11024 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11040 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11056 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11072 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11088 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11104 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11120 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11136 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11152 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11168 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11184 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11200 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11216 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11232 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11248 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11264 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11280 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11296 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11312 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11328 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11344 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11360 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11376 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11392 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11408 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11424 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11440 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11456 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11472 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11488 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11504 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11520 - image: "usingMultilineEdit.11.png" - } - Frame { - msec: 11536 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11552 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11568 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11584 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11600 - hash: "3d08eff16edf54f522a75df1734150df" - } - Frame { - msec: 11616 - hash: "3d08eff16edf54f522a75df1734150df" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.0.png deleted file mode 100644 index ec65f49..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.1.png deleted file mode 100644 index ec65f49..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.2.png deleted file mode 100644 index ec65f49..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.3.png deleted file mode 100644 index ec65f49..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.4.png deleted file mode 100644 index ec65f49..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.5.png deleted file mode 100644 index ec65f49..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.6.png deleted file mode 100644 index ec65f49..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml deleted file mode 100644 index 2e755a4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/wrap.qml +++ /dev/null @@ -1,2467 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 84 - modifiers: 33554432 - text: "54" - autorep: false - count: 1 - } - Frame { - msec: 32 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 48 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 64 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 80 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 96 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 880 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 960 - image: "wrap.0.png" - } - Frame { - msec: 976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 1088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Key { - type: 7 - key: 72 - modifiers: 0 - text: "68" - autorep: false - count: 1 - } - Frame { - msec: 1648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1760 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1840 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1920 - image: "wrap.1.png" - } - Frame { - msec: 1936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 1968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 1984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 88 - modifiers: 0 - text: "78" - autorep: false - count: 1 - } - Frame { - msec: 2224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 88 - modifiers: 0 - text: "78" - autorep: false - count: 1 - } - Frame { - msec: 2320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 2656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 2720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Key { - type: 7 - key: 73 - modifiers: 0 - text: "69" - autorep: false - count: 1 - } - Frame { - msec: 2848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2880 - image: "wrap.2.png" - } - Frame { - msec: 2896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 2944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2960 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 2992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 3184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 3264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 3312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 3440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 3488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 80 - modifiers: 0 - text: "70" - autorep: false - count: 1 - } - Frame { - msec: 3552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3760 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 3776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3840 - image: "wrap.3.png" - } - Frame { - msec: 3856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 3920 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 3984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 4288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 82 - modifiers: 0 - text: "72" - autorep: false - count: 1 - } - Frame { - msec: 4304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 4352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 4480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 84 - modifiers: 0 - text: "74" - autorep: false - count: 1 - } - Frame { - msec: 4624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 4688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 4752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4800 - image: "wrap.4.png" - } - Frame { - msec: 4816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 4832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4880 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 6 - key: 46 - modifiers: 0 - text: "2e" - autorep: false - count: 1 - } - Frame { - msec: 4896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Key { - type: 7 - key: 46 - modifiers: 0 - text: "2e" - autorep: false - count: 1 - } - Frame { - msec: 4960 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 4992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5760 - image: "wrap.5.png" - } - Frame { - msec: 5776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5840 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5920 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 5984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6720 - image: "wrap.6.png" - } - Frame { - msec: 6736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } - Frame { - msec: 6864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/flickableEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/flickableEdit.qml deleted file mode 100644 index 6913fdd..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/flickableEdit.qml +++ /dev/null @@ -1,20 +0,0 @@ -import QtQuick 1.0 - -Flickable { - width: 200 - height: 50 - contentWidth: 400 - - Column { - anchors.fill: parent - - TextEdit { - selectByMouse: true - text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" - } - TextEdit { - selectByMouse: false - text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/justify.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/justify.qml deleted file mode 100644 index 4aeb58c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/justify.qml +++ /dev/null @@ -1,22 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Rectangle { - width: 450 - height: 250 - - TestTextEdit { - anchors.fill: parent - anchors { leftMargin: 10; rightMargin: 10; topMargin:10; bottomMargin: 10 } - wrapMode: Text.Wrap - horizontalAlignment: Text.AlignJustify - - text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin a aliquet massa. Integer id velit a nibh imperdiet sagittis. Cras fringilla enim non nulla porta bibendum. Integer risus urna, hendrerit non interdum ut, dapibus id velit. Nullam fermentum viverra pellentesque. In molestie scelerisque lorem molestie ultrices. Curabitur dolor arcu, tristique in sodales in, varius sed diam. Quisque magna velit, tincidunt sed ullamcorper sit amet, ornare adipiscing ligula. In hac habitasse platea dictumst. Ut tincidunt urna vel mauris fermentum ornare quis a ligula. Suspendisse cursus volutpat sapien eget cursus." - - Rectangle { - anchors.fill: parent - color: "transparent" - border.color: "red" - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/linkActivated.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/linkActivated.qml deleted file mode 100644 index 177d475..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/linkActivated.qml +++ /dev/null @@ -1,15 +0,0 @@ -import QtQuick 1.1 - -Rectangle{ - width: 100 - height: 100 - TextEdit{ - text: 'Click Me ' - onLinkActivated: txt.text=link; - } - Text{ - id: txt - y:50 - text: "unknown" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml deleted file mode 100644 index 5f80234..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml +++ /dev/null @@ -1,19 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Rectangle { - Component { id: testableCursor - //This shouldn't blink - Rectangle { - color:"black" - width:1 - } - } - width:300; - height:40; - TestTextEdit { - focus: true; - cursorDelegate: testableCursor - text: "Jackdaws love my big sphinx of Quartz" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml deleted file mode 100644 index bf5e7a0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml +++ /dev/null @@ -1,14 +0,0 @@ -import QtQuick 1.0 - -Rectangle{ - width: 280 - height: 140 - Column { - MultilineEdit { - text: 'I am the very model of a modern major general. I\'ve information vegetable, animal and mineral. I know the kings of england and I quote the fights historical - from Marathon to Waterloo in order categorical.'; - width: 182; height: 60; - } - Rectangle {height: 20; width: 20;}//Spacer - MultilineEdit {text: 'Hello world'} - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml deleted file mode 100644 index 63400f1..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/wrap.qml +++ /dev/null @@ -1,35 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Item { - height:400 - width: 200 - TestTextEdit { - width: 200 - height: 100 - wrapMode: TextEdit.WordWrap - focus: true - } - //With QTBUG-6273 only the bottom one would be wrapped - TestTextEdit { - width: 200 - height: 100 - wrapMode: TextEdit.WordWrap - text: "This is a test that text edit wraps correctly." - y:100 - } - TestTextEdit { - width: 150 - height: 100 - wrapMode: TextEdit.WrapAnywhere - text: "This is a test that text edit wraps correctly. thisisaverylongstringwithnospaces" - y:200 - } - TestTextEdit { - width: 150 - height: 100 - wrapMode: TextEdit.Wrap - text: "This is a test that text edit wraps correctly. thisisaverylongstringwithnospaces" - y:300 - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml deleted file mode 100644 index 6789eac..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/LineEdit.qml +++ /dev/null @@ -1,69 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Item { - id:lineedit - property alias text: textInp.text - - width: textInp.width + 11 - height: 13 + 11 - - Rectangle { - color: 'lightsteelblue' - anchors.fill: parent - } - clip: true - Component.onCompleted: textInp.cursorPosition = 0; - TestTextInput { - id:textInp - cursorDelegate: Item { - Rectangle { - visible: parent.parent.focus - color: "#009BCE" - height: 13 - width: 2 - y: 1 - } - } - property int leftMargin: 6 - property int rightMargin: 6 - x: leftMargin - y: 5 - //Below function implements all scrolling logic - onCursorPositionChanged: { - if(cursorRectangle.x < leftMargin - textInp.x){//Cursor went off the front - textInp.x = leftMargin - Math.max(0, cursorRectangle.x); - }else if(cursorRectangle.x > parent.width - leftMargin - rightMargin - textInp.x){//Cusor went off the end - textInp.x = leftMargin - Math.max(0, cursorRectangle.x - (parent.width - leftMargin - rightMargin)); - } - } - - autoScroll: false //It is preferable to implement your own scrolling - text:"" - horizontalAlignment: TextInput.AlignLeft - font.pixelSize:15 - selectionColor: 'steelblue' - } - MouseArea { - //Implements all line edit mouse handling - id: mainMouseArea - anchors.fill: parent; - function translateX(x){ - return x - textInp.x - } - onPressed: { - textInp.focus = true; - textInp.cursorPosition = textInp.positionAt(translateX(mouse.x)); - } - onPositionChanged: { - textInp.moveCursorSelection(textInp.positionAt(translateX(mouse.x))); - } - onReleased: { - } - onDoubleClicked: { - textInp.selectAll() - } - z: textInp.z + 1 - } - -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml deleted file mode 100644 index f2a34b7..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml +++ /dev/null @@ -1,37 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Rectangle { - resources: [ - Component { id: cursorA - Item { id: cPage; - Behavior on x { NumberAnimation { } } - Behavior on y { NumberAnimation { } } - Behavior on height { NumberAnimation { duration: 200 } } - Rectangle { id: cRectangle; color: "black"; y: 1; width: 1; height: parent.height-2; - Rectangle { id:top; color: "black"; width: 3; height: 1; x: -1; y:0} - Rectangle { id:bottom; color: "black"; width: 3; height: 1; x: -1; anchors.bottom: parent.bottom;} - opacity: 1 - SequentialAnimation on opacity { running: cPage.parent.focus == true; loops: Animation.Infinite; - NumberAnimation { to: 1; duration: 500; easing.type: "InQuad"} - NumberAnimation { to: 0; duration: 500; easing.type: "OutQuad"} - } - } - width: 1; - } - } - ] - width: 400 - height: 200 - color: "white" - TestTextInput { id: mainText - text: "Hello World" - cursorDelegate: cursorA - focus: true - font.pixelSize: 28 - selectionColor: "lightsteelblue" - selectedTextColor: "deeppink" - color: "forestgreen" - anchors.centerIn: parent - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.0.png deleted file mode 100644 index b65bc37..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.1.png deleted file mode 100644 index ebaa011..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.2.png deleted file mode 100644 index 57ee370..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.3.png deleted file mode 100644 index 4b70b4a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.4.png deleted file mode 100644 index 18ae753..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.5.png deleted file mode 100644 index 2b463f0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.6.png deleted file mode 100644 index 7331f89..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.7.png deleted file mode 100644 index 968bdd2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.8.png deleted file mode 100644 index 9a3436a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml deleted file mode 100644 index 6b8ba9b..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/cursorDelegate.qml +++ /dev/null @@ -1,1551 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "cursorDelegate.0.png" - } - Frame { - msec: 32 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 48 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 64 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 80 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 96 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 112 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 128 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 144 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 160 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 176 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 192 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 208 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 224 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 240 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 256 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 272 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 288 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 304 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 320 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 336 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 352 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 368 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 384 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 400 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 416 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 432 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Frame { - msec: 448 - hash: "a7af287992f894f9cf76e834b922f5b3" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 464 - hash: "74b6ebfbe8246f0b2b43f88d9f6028d1" - } - Frame { - msec: 480 - hash: "74b6ebfbe8246f0b2b43f88d9f6028d1" - } - Frame { - msec: 496 - hash: "74b6ebfbe8246f0b2b43f88d9f6028d1" - } - Frame { - msec: 512 - hash: "74b6ebfbe8246f0b2b43f88d9f6028d1" - } - Frame { - msec: 528 - hash: "0f0e9ced5d2f9f20a2b5f1b5bde0be62" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "bec7fff73d6d869d2d15b3ea35fa0605" - } - Frame { - msec: 560 - hash: "e3afffc91ed0a78a0022421e6d1bd0d2" - } - Frame { - msec: 576 - hash: "45f44411121d335ed7a844803313e566" - } - Frame { - msec: 592 - hash: "b951279da53fe76ab62ca9837ecbd7a6" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 608 - hash: "b5678202f08099b09ce88cef5eeea20a" - } - Frame { - msec: 624 - hash: "93f6663d083a2bd3b4079241f3fc0159" - } - Frame { - msec: 640 - hash: "8c802943d3030214cb7af7fd1db1c813" - } - Frame { - msec: 656 - hash: "01396c0332523ba2a8971a99c6962516" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 672 - hash: "fc5dd253219d1a8aca7fcf31be0e7d69" - } - Frame { - msec: 688 - hash: "545071a58d8db4f73e1cb6981e9ec62e" - } - Frame { - msec: 704 - hash: "13bc1aa8ce4fc3d9ba9a6c3046e14c92" - } - Frame { - msec: 720 - hash: "ba7d13545fb7384dcb3edd32979c9442" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 736 - hash: "8f9e1abd8eb2d072907b910630e93c9a" - } - Frame { - msec: 752 - hash: "003d0e4a01909aa51cb1967738383ede" - } - Frame { - msec: 768 - hash: "223cce18cef44b3945d0a1d45554c5c1" - } - Frame { - msec: 784 - hash: "fcd7f862bdce75d7e6df574ff0146ca6" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "21f5e3696987222106b00f0efe3bb165" - } - Frame { - msec: 816 - hash: "6380ce26303da8180dff8fcc88caaf1d" - } - Frame { - msec: 832 - hash: "52bfa995405a3d6523d97b2c36428d89" - } - Frame { - msec: 848 - hash: "7169d69c2adb50bf80c075e30eb8e965" - } - Frame { - msec: 864 - hash: "f5ad55885a4fc2b47a5420e9e0d7c59c" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 880 - hash: "831081f829df0a226c75389bc457a768" - } - Frame { - msec: 896 - hash: "2306a9c9cb570bc922f120f2f63e26e4" - } - Frame { - msec: 912 - hash: "23d6728fe34436e53a449e26962c3ad5" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 928 - hash: "db2de48337701cbb36a14e32f1846683" - } - Frame { - msec: 944 - hash: "04bb83a694d293fd4ba956fc79db79e7" - } - Frame { - msec: 960 - hash: "7a1a71b2d7e42934163990d5c011c464" - } - Frame { - msec: 976 - image: "cursorDelegate.1.png" - } - Frame { - msec: 992 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1008 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 1024 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 1040 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1056 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 1072 - hash: "20f1db4245d1689e980371d7b1bcb903" - } - Frame { - msec: 1088 - hash: "6a3629223845d352ba02e3ad8569f698" - } - Frame { - msec: 1104 - hash: "ee3dd4535fcf24249c41ebebb5f4fca6" - } - Frame { - msec: 1120 - hash: "7bf5df6a807da0c8d316420ced34e267" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1136 - hash: "4f5ce98428d5fba11a6322f88cab14c3" - } - Frame { - msec: 1152 - hash: "14406e8d0e120a0f30864fa8793f2e8d" - } - Frame { - msec: 1168 - hash: "6e891d584ce4f636708cee1111193878" - } - Frame { - msec: 1184 - hash: "cd6bbc72108cfffd043a31d0d3655851" - } - Frame { - msec: 1200 - hash: "d4069e606ab2b10c90e6f567be462c10" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1216 - hash: "de8e00d6116b1aa900478a41c7ac78f1" - } - Frame { - msec: 1232 - hash: "5a0c4e31eb9ecb2ffc9380d474861846" - } - Frame { - msec: 1248 - hash: "bbacdb359c6206b50a859169b106ec92" - } - Frame { - msec: 1264 - hash: "c4f4ed5a4842f1bbdda67a27d74fd5f4" - } - Frame { - msec: 1280 - hash: "4deb6d0a83b14abef80f2bfa0491cbd0" - } - Frame { - msec: 1296 - hash: "9caca7068ce5b289d70c39667e87a57f" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "e3ca7a8a860efc3811b8befe0a97d7f1" - } - Key { - type: 6 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1328 - hash: "ddb3dcb40f412c087d0ae21b5a8e47aa" - } - Frame { - msec: 1344 - hash: "325d8356c3e14467c54d03d096a3c1a5" - } - Frame { - msec: 1360 - hash: "83f4c541b94180863e538e6c0a0e1ae0" - } - Frame { - msec: 1376 - hash: "16623dc34067800f3c7d6aabe1076927" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "e7319b080b621c5d176d6913cd9a8f7e" - } - Frame { - msec: 1408 - hash: "353a200418b2cc0fbe925329224e658a" - } - Frame { - msec: 1424 - hash: "98fd3f1fc108de1d78f07587f9e94ec4" - } - Frame { - msec: 1440 - hash: "f75fbda5a1403f7b1dd8e9d05e30ebeb" - } - Frame { - msec: 1456 - hash: "c2742ff9a04bbae6c6de13f08d514913" - } - Frame { - msec: 1472 - hash: "a73b65c18ba10e6b6d310fc325d7ccb2" - } - Frame { - msec: 1488 - hash: "bbe72b26a6f3f518a3c8b6cd9e8dbfd1" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "679205439a359f3ffb05f631a1979596" - } - Frame { - msec: 1520 - hash: "7ada5f6a58a6a7f9a3b4199a412fccfd" - } - Frame { - msec: 1536 - hash: "66749c0e5b97cec02f4908a709201604" - } - Frame { - msec: 1552 - hash: "373bfac053f5cfeceabe2979f3e6f444" - } - Frame { - msec: 1568 - hash: "c7ab2bcdcd1b7fd25ac775c4dd382635" - } - Frame { - msec: 1584 - hash: "3116b1a0cf1724bdae2cb71b9e15c73e" - } - Frame { - msec: 1600 - hash: "9bdc4513c30bf2d1eca61317cc22ebaa" - } - Frame { - msec: 1616 - hash: "bbecf871ff569ac1020272c1ccc9aa14" - } - Frame { - msec: 1632 - hash: "beef5a84dcc7794cf0aabfc8b7f811bc" - } - Frame { - msec: 1648 - hash: "2db7161f3591ef0b3f1e3cb2aa357c8b" - } - Frame { - msec: 1664 - hash: "b8b5ffef5e52a8ae94ddb5ec3328fa0e" - } - Frame { - msec: 1680 - hash: "b65c4657ffb97a59455f2c3e23e3eb51" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1696 - hash: "9702981b8eb5f035f2f4da6708ad1a92" - } - Frame { - msec: 1712 - hash: "a6f46dd869daf69c5a5a3c887ae35a05" - } - Frame { - msec: 1728 - hash: "902c0f174b16b1b0d419c13220937e06" - } - Frame { - msec: 1744 - hash: "97a5ea7449a1f313d0d5e818edc29bf6" - } - Frame { - msec: 1760 - hash: "d5b69638452ea2260861c17991fc8bef" - } - Frame { - msec: 1776 - hash: "5fa21c53d65b078d1b30830d99a0fbaf" - } - Frame { - msec: 1792 - hash: "668de1d2fa5780f5088637d919db0a0d" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1808 - hash: "1989592754c28456aa917562fa3620bd" - } - Frame { - msec: 1824 - hash: "89cd0ef7c366bbcee8e4404e9a2285a7" - } - Frame { - msec: 1840 - hash: "d062d4b132ee3086a00220d47e8907fc" - } - Frame { - msec: 1856 - hash: "198bd9fc763c70fb84bdae122f0bdd8b" - } - Key { - type: 7 - key: 16777248 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1872 - hash: "304f7f6cef5b09c09db1284b8095e9a2" - } - Key { - type: 6 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1888 - hash: "565003fef7b9810ffe95c3bbeeda5bbc" - } - Frame { - msec: 1904 - hash: "2fa85a19ba2bb7d04264a246c4982eb4" - } - Frame { - msec: 1920 - hash: "7be44eca358924dc11c5123e406f1c99" - } - Frame { - msec: 1936 - image: "cursorDelegate.2.png" - } - Frame { - msec: 1952 - hash: "a08502b3fbb425c7b1cad93e4bc5701e" - } - Frame { - msec: 1968 - hash: "fba3a88b7fe6f7583daf07db78f3598c" - } - Frame { - msec: 1984 - hash: "509d75aa56bcdb6718c18b56e138ef3c" - } - Frame { - msec: 2000 - hash: "509d75aa56bcdb6718c18b56e138ef3c" - } - Frame { - msec: 2016 - hash: "509d75aa56bcdb6718c18b56e138ef3c" - } - Frame { - msec: 2032 - hash: "509d75aa56bcdb6718c18b56e138ef3c" - } - Key { - type: 7 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2048 - hash: "509d75aa56bcdb6718c18b56e138ef3c" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "fba3a88b7fe6f7583daf07db78f3598c" - } - Frame { - msec: 2080 - hash: "a08502b3fbb425c7b1cad93e4bc5701e" - } - Frame { - msec: 2096 - hash: "86ad5a9e06d19ea79e0fc9f7f36cdb0f" - } - Frame { - msec: 2112 - hash: "7be44eca358924dc11c5123e406f1c99" - } - Frame { - msec: 2128 - hash: "2fa85a19ba2bb7d04264a246c4982eb4" - } - Frame { - msec: 2144 - hash: "565003fef7b9810ffe95c3bbeeda5bbc" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "39c81c6efdbc32b6e0378810404bef2c" - } - Frame { - msec: 2176 - hash: "756f36cf41c2bae3a8a8716701e55e37" - } - Frame { - msec: 2192 - hash: "fb09d44a5a5b5b795d562512e9547301" - } - Frame { - msec: 2208 - hash: "183538d04cf009f100a1e49a3229c143" - } - Frame { - msec: 2224 - hash: "2ec91bfdb0f106a526f6bde3eb0ed7ce" - } - Frame { - msec: 2240 - hash: "f34175acc261ad79bc9d2083af04ae10" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2256 - hash: "39a59b2e9e0bee87d3ba50e1408bea1c" - } - Frame { - msec: 2272 - hash: "db61ba19d56b69d148aeb182de596713" - } - Frame { - msec: 2288 - hash: "e0b07106a5adc1603788444d48b9c3db" - } - Frame { - msec: 2304 - hash: "1dd5625fb6a0ddbaa3919a1702695e9c" - } - Frame { - msec: 2320 - hash: "d7d39e8f717bab17aaf8a12e4f9e0dfc" - } - Frame { - msec: 2336 - hash: "d7a226b40a049dee56755af9206246b4" - } - Frame { - msec: 2352 - hash: "37d2d2830f6ae6bf0c8fb29c5d4f521a" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "21008b3a5179e25f9b132a4c05b8b8c4" - } - Frame { - msec: 2384 - hash: "a6f05fb5206a456bea790ba7ba31868c" - } - Frame { - msec: 2400 - hash: "754e2fca1b3ed5ee9875aafb1a0c62d3" - } - Frame { - msec: 2416 - hash: "75d1ae9c60573f9e27cd7c2d1706cbfc" - } - Frame { - msec: 2432 - hash: "c78608cde907bc09760d858795b43bbf" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "348438b012690f63956e6a865c4173c5" - } - Frame { - msec: 2464 - hash: "b0c970656fdb5af48efc4bf0e1879f36" - } - Frame { - msec: 2480 - hash: "7291a68c8e790f58e2440dfbe896c36d" - } - Frame { - msec: 2496 - hash: "9bcbf9f7b35987c3acbd80031a688279" - } - Frame { - msec: 2512 - hash: "48a00bd3f844e863338898bd28d845a4" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2528 - hash: "dc5f63ee9e8d50f744f7b375a52e32c3" - } - Frame { - msec: 2544 - hash: "f52d2f475a335a75fad0a0f84e812809" - } - Frame { - msec: 2560 - hash: "bc54cefc8f0b84fc2432b0fb01203b9c" - } - Frame { - msec: 2576 - hash: "e6f14d1181a0db90d2c2891fd6e82883" - } - Frame { - msec: 2592 - hash: "1edc2fff7b3d76bbe2615810a5d15d41" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2608 - hash: "5bc156937a29989a3a39761b58958fbd" - } - Frame { - msec: 2624 - hash: "071d45235a669e870356efc60ba8016c" - } - Frame { - msec: 2640 - hash: "1d588fb1f8321e4b437f924077fa7d60" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2656 - hash: "ca9aff6590dda45a66cdca601dccaf59" - } - Frame { - msec: 2672 - hash: "2553146fff0d367cc6fa2d11f0a5c83a" - } - Frame { - msec: 2688 - hash: "05bd919cd91ff449027b188d9a24b61f" - } - Frame { - msec: 2704 - hash: "35d6ce9ecef79d006d6416c3b0d75e79" - } - Frame { - msec: 2720 - hash: "1459a2410a971e344d4dacccff1eb7da" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2736 - hash: "bd04cc87db0138b57bf0feeafa7630f5" - } - Frame { - msec: 2752 - hash: "81521187d5d88b62f4f7578ea4ee5f68" - } - Frame { - msec: 2768 - hash: "f2f8d1e8232787da1e36d7e8a27b6d93" - } - Frame { - msec: 2784 - hash: "a5dbd1f572419ca4a4b91629e522867f" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "23ab256301d7190f56c4f0af7f57bcc2" - } - Frame { - msec: 2816 - hash: "3a106a01b1cf6b53b5f8721415538f15" - } - Frame { - msec: 2832 - hash: "881f4de48cf79636f5cb292f4cacf842" - } - Frame { - msec: 2848 - hash: "4abe8abf4f29a31220c03af143ef9978" - } - Frame { - msec: 2864 - hash: "50db0e06ceb12795d3e11b2c4a04df9c" - } - Frame { - msec: 2880 - hash: "39f759d5b58ffdaa79d438f932a72582" - } - Frame { - msec: 2896 - image: "cursorDelegate.3.png" - } - Frame { - msec: 2912 - hash: "0cf83e3a000b8ae6a21ef64e5470430f" - } - Frame { - msec: 2928 - hash: "07116cd7cf46fc692542ac57c3e30aea" - } - Frame { - msec: 2944 - hash: "bd92a36fad90de909b5a29a6fead2160" - } - Frame { - msec: 2960 - hash: "95c4d0cc52903dc70c9118e26cd58b7b" - } - Frame { - msec: 2976 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 2992 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 3008 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 3024 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 3040 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 3056 - hash: "cb6ca047657a99dbbb037c1c45b40866" - } - Frame { - msec: 3072 - hash: "95c4d0cc52903dc70c9118e26cd58b7b" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3088 - hash: "f9e0bd08b722c16493a8886a19920dda" - } - Frame { - msec: 3104 - hash: "0636b7c5cc215882c60b50f62133c715" - } - Frame { - msec: 3120 - hash: "150b5a2f2e916b7023764c481c768492" - } - Frame { - msec: 3136 - hash: "14bc879f562ace9d2d1a3f3980a72e1f" - } - Frame { - msec: 3152 - hash: "2bdc09121f13e95e15e331ac90fbbe5e" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3168 - hash: "b701aa41aff9df45cc4b35d23789ad46" - } - Frame { - msec: 3184 - hash: "ad77330d51b1251576905a45fdbdf576" - } - Frame { - msec: 3200 - hash: "4ab6780997a5a598d2da7fbbc19877b7" - } - Frame { - msec: 3216 - hash: "43b324d0e4882147d316a5dc16eff4a5" - } - Frame { - msec: 3232 - hash: "4379bfd0da6fedac77e2111d9fdc5ecb" - } - Frame { - msec: 3248 - hash: "ca35937be71e1f982cedd33bdd09d127" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3264 - hash: "f6bac38774fa8a09084c045e34fd1732" - } - Frame { - msec: 3280 - hash: "6d8b58612860febb13800958cab3aecd" - } - Frame { - msec: 3296 - hash: "7f921d2293cf547de3b5573dbf98d5bb" - } - Frame { - msec: 3312 - hash: "18771337bbe826b5a34bd9705c79f56a" - } - Frame { - msec: 3328 - hash: "3dd49406c4b39980908d8869dc3c060a" - } - Frame { - msec: 3344 - hash: "8cae649565b5655d606f216334a0b5b5" - } - Frame { - msec: 3360 - hash: "27c59b474d706ce79b5d075713c1ea88" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3376 - hash: "6d70d654998bbc0a2431ca7c4a58cd3c" - } - Frame { - msec: 3392 - hash: "bf55fffd1727c0d076e05e274dcebb0d" - } - Frame { - msec: 3408 - hash: "d5b0696cbe2969723bb2fe740deeb81f" - } - Frame { - msec: 3424 - hash: "27968050a9cf7d57d016274709086be1" - } - Frame { - msec: 3440 - hash: "3bc037fd17d0d394b82ba19914f31b90" - } - Frame { - msec: 3456 - hash: "117d7ad2d2ae47f3a0c2a68928534b76" - } - Frame { - msec: 3472 - hash: "a538ce971f34a497c05258da2567a208" - } - Frame { - msec: 3488 - hash: "91e2e5cc6efcffc9e58646a008a57c9d" - } - Frame { - msec: 3504 - hash: "13db17cc3c6513014a95210a443e5842" - } - Key { - type: 7 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3520 - hash: "03325597bd4e7d7b6f7c84c848018872" - } - Frame { - msec: 3536 - hash: "e96dc6d611d23553b363a765195604f9" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3552 - hash: "942476dd6fb7a4f3d10c398503cb7b90" - } - Frame { - msec: 3568 - hash: "cbe34fd18b6355ae9be469a594b44192" - } - Frame { - msec: 3584 - hash: "3dce89f398d2c856bcd32da34867ebd8" - } - Frame { - msec: 3600 - hash: "c78608cde907bc09760d858795b43bbf" - } - Frame { - msec: 3616 - hash: "75d1ae9c60573f9e27cd7c2d1706cbfc" - } - Frame { - msec: 3632 - hash: "754e2fca1b3ed5ee9875aafb1a0c62d3" - } - Frame { - msec: 3648 - hash: "a6f05fb5206a456bea790ba7ba31868c" - } - Frame { - msec: 3664 - hash: "21008b3a5179e25f9b132a4c05b8b8c4" - } - Frame { - msec: 3680 - hash: "37d2d2830f6ae6bf0c8fb29c5d4f521a" - } - Frame { - msec: 3696 - hash: "d7a226b40a049dee56755af9206246b4" - } - Frame { - msec: 3712 - hash: "d7d39e8f717bab17aaf8a12e4f9e0dfc" - } - Frame { - msec: 3728 - hash: "1dd5625fb6a0ddbaa3919a1702695e9c" - } - Frame { - msec: 3744 - hash: "e0b07106a5adc1603788444d48b9c3db" - } - Frame { - msec: 3760 - hash: "db61ba19d56b69d148aeb182de596713" - } - Frame { - msec: 3776 - hash: "39a59b2e9e0bee87d3ba50e1408bea1c" - } - Frame { - msec: 3792 - hash: "f34175acc261ad79bc9d2083af04ae10" - } - Frame { - msec: 3808 - hash: "2ec91bfdb0f106a526f6bde3eb0ed7ce" - } - Frame { - msec: 3824 - hash: "183538d04cf009f100a1e49a3229c143" - } - Frame { - msec: 3840 - hash: "fb09d44a5a5b5b795d562512e9547301" - } - Frame { - msec: 3856 - image: "cursorDelegate.4.png" - } - Frame { - msec: 3872 - hash: "39c81c6efdbc32b6e0378810404bef2c" - } - Frame { - msec: 3888 - hash: "23d9a9a6a9d032c7e447407193ca51ef" - } - Frame { - msec: 3904 - hash: "bdd00cfe933985fe77626114902ce823" - } - Frame { - msec: 3920 - hash: "1d25c2753ccabdaaf47a669c28d9e2cb" - } - Frame { - msec: 3936 - hash: "20fde9bbe26ebede31fc8c21dec3fcc5" - } - Frame { - msec: 3952 - hash: "c9147c159aebb7aa51d4bac28f96cb57" - } - Frame { - msec: 3968 - hash: "68d331f508b43e756d6e30ba9b60f9aa" - } - Frame { - msec: 3984 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4000 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4016 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4032 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4048 - hash: "af99069cdddfa9d099fbe25ba586e138" - } - Frame { - msec: 4064 - hash: "68d331f508b43e756d6e30ba9b60f9aa" - } - Frame { - msec: 4080 - hash: "c9147c159aebb7aa51d4bac28f96cb57" - } - Frame { - msec: 4096 - hash: "20fde9bbe26ebede31fc8c21dec3fcc5" - } - Frame { - msec: 4112 - hash: "1d25c2753ccabdaaf47a669c28d9e2cb" - } - Frame { - msec: 4128 - hash: "bdd00cfe933985fe77626114902ce823" - } - Frame { - msec: 4144 - hash: "23d9a9a6a9d032c7e447407193ca51ef" - } - Frame { - msec: 4160 - hash: "39c81c6efdbc32b6e0378810404bef2c" - } - Frame { - msec: 4176 - hash: "756f36cf41c2bae3a8a8716701e55e37" - } - Frame { - msec: 4192 - hash: "fb09d44a5a5b5b795d562512e9547301" - } - Frame { - msec: 4208 - hash: "183538d04cf009f100a1e49a3229c143" - } - Frame { - msec: 4224 - hash: "2ec91bfdb0f106a526f6bde3eb0ed7ce" - } - Frame { - msec: 4240 - hash: "f34175acc261ad79bc9d2083af04ae10" - } - Frame { - msec: 4256 - hash: "39a59b2e9e0bee87d3ba50e1408bea1c" - } - Frame { - msec: 4272 - hash: "db61ba19d56b69d148aeb182de596713" - } - Frame { - msec: 4288 - hash: "e0b07106a5adc1603788444d48b9c3db" - } - Frame { - msec: 4304 - hash: "1dd5625fb6a0ddbaa3919a1702695e9c" - } - Frame { - msec: 4320 - hash: "d7d39e8f717bab17aaf8a12e4f9e0dfc" - } - Frame { - msec: 4336 - hash: "d7a226b40a049dee56755af9206246b4" - } - Frame { - msec: 4352 - hash: "37d2d2830f6ae6bf0c8fb29c5d4f521a" - } - Frame { - msec: 4368 - hash: "21008b3a5179e25f9b132a4c05b8b8c4" - } - Frame { - msec: 4384 - hash: "a6f05fb5206a456bea790ba7ba31868c" - } - Frame { - msec: 4400 - hash: "754e2fca1b3ed5ee9875aafb1a0c62d3" - } - Frame { - msec: 4416 - hash: "75d1ae9c60573f9e27cd7c2d1706cbfc" - } - Frame { - msec: 4432 - hash: "c78608cde907bc09760d858795b43bbf" - } - Frame { - msec: 4448 - hash: "3dce89f398d2c856bcd32da34867ebd8" - } - Frame { - msec: 4464 - hash: "cbe34fd18b6355ae9be469a594b44192" - } - Frame { - msec: 4480 - hash: "942476dd6fb7a4f3d10c398503cb7b90" - } - Frame { - msec: 4496 - hash: "e96dc6d611d23553b363a765195604f9" - } - Frame { - msec: 4512 - hash: "03325597bd4e7d7b6f7c84c848018872" - } - Frame { - msec: 4528 - hash: "13db17cc3c6513014a95210a443e5842" - } - Frame { - msec: 4544 - hash: "91e2e5cc6efcffc9e58646a008a57c9d" - } - Frame { - msec: 4560 - hash: "a538ce971f34a497c05258da2567a208" - } - Frame { - msec: 4576 - hash: "117d7ad2d2ae47f3a0c2a68928534b76" - } - Frame { - msec: 4592 - hash: "3bc037fd17d0d394b82ba19914f31b90" - } - Frame { - msec: 4608 - hash: "27968050a9cf7d57d016274709086be1" - } - Frame { - msec: 4624 - hash: "d5b0696cbe2969723bb2fe740deeb81f" - } - Frame { - msec: 4640 - hash: "bf55fffd1727c0d076e05e274dcebb0d" - } - Frame { - msec: 4656 - hash: "6d70d654998bbc0a2431ca7c4a58cd3c" - } - Frame { - msec: 4672 - hash: "27c59b474d706ce79b5d075713c1ea88" - } - Frame { - msec: 4688 - hash: "8cae649565b5655d606f216334a0b5b5" - } - Frame { - msec: 4704 - hash: "3dd49406c4b39980908d8869dc3c060a" - } - Frame { - msec: 4720 - hash: "18771337bbe826b5a34bd9705c79f56a" - } - Frame { - msec: 4736 - hash: "7f921d2293cf547de3b5573dbf98d5bb" - } - Frame { - msec: 4752 - hash: "6d8b58612860febb13800958cab3aecd" - } - Frame { - msec: 4768 - hash: "f6bac38774fa8a09084c045e34fd1732" - } - Frame { - msec: 4784 - hash: "ca35937be71e1f982cedd33bdd09d127" - } - Frame { - msec: 4800 - hash: "4379bfd0da6fedac77e2111d9fdc5ecb" - } - Frame { - msec: 4816 - image: "cursorDelegate.5.png" - } - Frame { - msec: 4832 - hash: "4ab6780997a5a598d2da7fbbc19877b7" - } - Frame { - msec: 4848 - hash: "ad77330d51b1251576905a45fdbdf576" - } - Frame { - msec: 4864 - hash: "b701aa41aff9df45cc4b35d23789ad46" - } - Frame { - msec: 4880 - hash: "2bdc09121f13e95e15e331ac90fbbe5e" - } - Frame { - msec: 4896 - hash: "14bc879f562ace9d2d1a3f3980a72e1f" - } - Frame { - msec: 4912 - hash: "150b5a2f2e916b7023764c481c768492" - } - Frame { - msec: 4928 - hash: "0636b7c5cc215882c60b50f62133c715" - } - Frame { - msec: 4944 - hash: "f9e0bd08b722c16493a8886a19920dda" - } - Frame { - msec: 4960 - hash: "f499f4b3017c88c63f0a2035ad527a0e" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.0.png deleted file mode 100644 index 5f632d0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.1.png deleted file mode 100644 index 060be22..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.2.png deleted file mode 100644 index d373aef..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.3.png deleted file mode 100644 index 5dad108..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.qml deleted file mode 100644 index 6081aaf..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/echoMode.qml +++ /dev/null @@ -1,1043 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "echoMode.0.png" - } - Frame { - msec: 32 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 48 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 64 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 80 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 96 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 112 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 128 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 144 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 160 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 176 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 192 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 208 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 224 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 240 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 256 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 272 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 288 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 304 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 320 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 336 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Frame { - msec: 352 - hash: "0e7c7dc19aab217751411568b58830ef" - } - Key { - type: 6 - key: 74 - modifiers: 33554432 - text: "4a" - autorep: false - count: 1 - } - Frame { - msec: 368 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 384 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 400 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 416 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 432 - hash: "593867b082681c362d7dffda12615284" - } - Key { - type: 7 - key: 74 - modifiers: 33554432 - text: "4a" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 464 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 480 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 496 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 512 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 528 - hash: "593867b082681c362d7dffda12615284" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 560 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 576 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 592 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 608 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 624 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 640 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 656 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 672 - hash: "593867b082681c362d7dffda12615284" - } - Frame { - msec: 688 - hash: "593867b082681c362d7dffda12615284" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 704 - hash: "8d4a4baca932c318fba437b05962a635" - } - Frame { - msec: 720 - hash: "8d4a4baca932c318fba437b05962a635" - } - Frame { - msec: 736 - hash: "8d4a4baca932c318fba437b05962a635" - } - Frame { - msec: 752 - hash: "8d4a4baca932c318fba437b05962a635" - } - Frame { - msec: 768 - hash: "8d4a4baca932c318fba437b05962a635" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 784 - hash: "8d4a4baca932c318fba437b05962a635" - } - Frame { - msec: 800 - hash: "8d4a4baca932c318fba437b05962a635" - } - Frame { - msec: 816 - hash: "8d4a4baca932c318fba437b05962a635" - } - Frame { - msec: 832 - hash: "8d4a4baca932c318fba437b05962a635" - } - Frame { - msec: 848 - hash: "8d4a4baca932c318fba437b05962a635" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 864 - hash: "b2698dba3a5ebe80e26f273b32857506" - } - Frame { - msec: 880 - hash: "b2698dba3a5ebe80e26f273b32857506" - } - Frame { - msec: 896 - hash: "b2698dba3a5ebe80e26f273b32857506" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 912 - hash: "b2698dba3a5ebe80e26f273b32857506" - } - Frame { - msec: 928 - hash: "b2698dba3a5ebe80e26f273b32857506" - } - Frame { - msec: 944 - hash: "b2698dba3a5ebe80e26f273b32857506" - } - Frame { - msec: 960 - hash: "b2698dba3a5ebe80e26f273b32857506" - } - Frame { - msec: 976 - image: "echoMode.1.png" - } - Key { - type: 6 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 992 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1008 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1024 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1040 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Key { - type: 7 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 1056 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1072 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1088 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1104 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1120 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1136 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1152 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1168 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1184 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1200 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1216 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Frame { - msec: 1232 - hash: "3ea06a90d633d5e9fe5a11cc4ed67764" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1248 - hash: "a190bbf59ec807391077b9d1183f72b5" - } - Frame { - msec: 1264 - hash: "a190bbf59ec807391077b9d1183f72b5" - } - Frame { - msec: 1280 - hash: "a190bbf59ec807391077b9d1183f72b5" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "a190bbf59ec807391077b9d1183f72b5" - } - Frame { - msec: 1312 - hash: "a190bbf59ec807391077b9d1183f72b5" - } - Frame { - msec: 1328 - hash: "a190bbf59ec807391077b9d1183f72b5" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1344 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Frame { - msec: 1360 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Frame { - msec: 1376 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Frame { - msec: 1392 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Frame { - msec: 1408 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Frame { - msec: 1424 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Frame { - msec: 1440 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Frame { - msec: 1456 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Frame { - msec: 1472 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1488 - hash: "f171a98a3a726b517ad4b401a0720ba2" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Frame { - msec: 1520 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Frame { - msec: 1536 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Frame { - msec: 1552 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Frame { - msec: 1584 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Frame { - msec: 1600 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Frame { - msec: 1616 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Frame { - msec: 1632 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Frame { - msec: 1648 - hash: "e7199e4284be9dea34caff7bde0f6303" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" - } - Frame { - msec: 1680 - hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" - } - Frame { - msec: 1696 - hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" - } - Frame { - msec: 1712 - hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" - } - Frame { - msec: 1728 - hash: "1d9d3c6435f2fa06bda16ef4a2ff238f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1744 - hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1760 - hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" - } - Frame { - msec: 1776 - hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" - } - Frame { - msec: 1792 - hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1808 - hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" - } - Frame { - msec: 1824 - hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" - } - Frame { - msec: 1840 - hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" - } - Frame { - msec: 1856 - hash: "9d8cb02bbc4f39d38ccdf8e9bda0ed5c" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 1872 - hash: "2af75935ad1d3be02c6481c094737575" - } - Frame { - msec: 1888 - hash: "2af75935ad1d3be02c6481c094737575" - } - Frame { - msec: 1904 - hash: "2af75935ad1d3be02c6481c094737575" - } - Frame { - msec: 1920 - hash: "2af75935ad1d3be02c6481c094737575" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 1936 - image: "echoMode.2.png" - } - Frame { - msec: 1952 - hash: "2af75935ad1d3be02c6481c094737575" - } - Frame { - msec: 1968 - hash: "2af75935ad1d3be02c6481c094737575" - } - Frame { - msec: 1984 - hash: "2af75935ad1d3be02c6481c094737575" - } - Frame { - msec: 2000 - hash: "2af75935ad1d3be02c6481c094737575" - } - Frame { - msec: 2016 - hash: "2af75935ad1d3be02c6481c094737575" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "c3512d6a7ead481aa6fec8ef8ee2f1d1" - } - Frame { - msec: 2048 - hash: "c3512d6a7ead481aa6fec8ef8ee2f1d1" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "c3512d6a7ead481aa6fec8ef8ee2f1d1" - } - Frame { - msec: 2080 - hash: "c3512d6a7ead481aa6fec8ef8ee2f1d1" - } - Key { - type: 6 - key: 86 - modifiers: 0 - text: "76" - autorep: false - count: 1 - } - Frame { - msec: 2096 - hash: "064e1fc885ab7f07dad1770361087bef" - } - Frame { - msec: 2112 - hash: "064e1fc885ab7f07dad1770361087bef" - } - Frame { - msec: 2128 - hash: "064e1fc885ab7f07dad1770361087bef" - } - Frame { - msec: 2144 - hash: "064e1fc885ab7f07dad1770361087bef" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Key { - type: 7 - key: 86 - modifiers: 0 - text: "76" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "9b764f6e9cc3d30446e1b32f7ab94f66" - } - Frame { - msec: 2176 - hash: "9b764f6e9cc3d30446e1b32f7ab94f66" - } - Frame { - msec: 2192 - hash: "9b764f6e9cc3d30446e1b32f7ab94f66" - } - Frame { - msec: 2208 - hash: "9b764f6e9cc3d30446e1b32f7ab94f66" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2224 - hash: "18eff632e106f632aad481ab40f985d7" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "18eff632e106f632aad481ab40f985d7" - } - Frame { - msec: 2256 - hash: "18eff632e106f632aad481ab40f985d7" - } - Frame { - msec: 2272 - hash: "18eff632e106f632aad481ab40f985d7" - } - Frame { - msec: 2288 - hash: "18eff632e106f632aad481ab40f985d7" - } - Frame { - msec: 2304 - hash: "18eff632e106f632aad481ab40f985d7" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2320 - hash: "18eff632e106f632aad481ab40f985d7" - } - Frame { - msec: 2336 - hash: "18eff632e106f632aad481ab40f985d7" - } - Key { - type: 6 - key: 77 - modifiers: 0 - text: "6d" - autorep: false - count: 1 - } - Frame { - msec: 2352 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Frame { - msec: 2368 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Frame { - msec: 2384 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Frame { - msec: 2400 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Frame { - msec: 2416 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Frame { - msec: 2432 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Key { - type: 7 - key: 77 - modifiers: 0 - text: "6d" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Frame { - msec: 2464 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Frame { - msec: 2480 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Frame { - msec: 2496 - hash: "eaabd4617081e3bc68a5b9099c63272a" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 2512 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2528 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2544 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2576 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2592 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2608 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2624 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2640 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2656 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2672 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2688 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2704 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2720 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2736 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2752 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2768 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2784 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2800 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2816 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2832 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2848 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2864 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2880 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2896 - image: "echoMode.3.png" - } - Frame { - msec: 2912 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2928 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2944 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2960 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2976 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 2992 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 3008 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 3024 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 3040 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } - Frame { - msec: 3056 - hash: "fec019ea87914d30b5bf4754ce8ba916" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.0.png deleted file mode 100644 index 6a32f0d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.qml deleted file mode 100644 index fd64d64..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/hAlign.qml +++ /dev/null @@ -1,107 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "hAlign.0.png" - } - Frame { - msec: 32 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 48 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 64 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 80 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 96 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 112 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 128 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 144 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 160 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 176 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 192 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 208 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 224 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 240 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 256 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 272 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 288 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 304 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 320 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 336 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 352 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 368 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 384 - hash: "043c40378d2707bd231a448cd242aa3c" - } - Frame { - msec: 400 - hash: "043c40378d2707bd231a448cd242aa3c" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.0.png deleted file mode 100644 index 6ca52b6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.1.png deleted file mode 100644 index 31d6b2c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.10.png deleted file mode 100644 index d89e2d8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.11.png deleted file mode 100644 index 834516a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.2.png deleted file mode 100644 index 31d6b2c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.3.png deleted file mode 100644 index 31d6b2c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.4.png deleted file mode 100644 index 8147bda..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.5.png deleted file mode 100644 index c67e619..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.6.png deleted file mode 100644 index 646855f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.7.png deleted file mode 100644 index c1a9d5c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.8.png deleted file mode 100644 index d6c92b7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.9.png deleted file mode 100644 index e798d3b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.qml deleted file mode 100644 index fc8a115..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-MAC/usingLineEdit.qml +++ /dev/null @@ -1,4335 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "usingLineEdit.0.png" - } - Frame { - msec: 32 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 48 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 64 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 80 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 96 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 112 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 128 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 144 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 160 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 176 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 192 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 208 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 224 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 240 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 256 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 272 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 288 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 304 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 320 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 336 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 352 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 368 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 384 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 400 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 416 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 432 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 448 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 464 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 480 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 496 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 512 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 528 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 544 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 560 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 576 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 592 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 608 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 624 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 640 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 656 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 672 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 688 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 704 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 720 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 736 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 752 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 768 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 784 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 800 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 816 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 832 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 848 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 864 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 880 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 896 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 912 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Frame { - msec: 928 - hash: "b2bcfe5c299742bf7da166e9ae1e1126" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 85; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 944 - hash: "1e95a74868a748e11efdc6fbb500f6e8" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 85; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 960 - hash: "1e95a74868a748e11efdc6fbb500f6e8" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 85; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 976 - image: "usingLineEdit.1.png" - } - Frame { - msec: 992 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1008 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1024 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1040 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1056 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 85; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1088 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1104 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1120 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1136 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1152 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1168 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1184 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1200 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1216 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1232 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1248 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1264 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1280 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1296 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1312 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1328 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1344 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1360 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1376 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1392 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1408 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1424 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1440 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1456 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1472 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1488 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1504 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1520 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1536 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1552 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1568 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1584 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1600 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1616 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1632 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1648 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1664 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1680 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1696 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1712 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1728 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1744 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1760 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1776 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1792 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1808 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1824 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1840 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1856 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1872 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1888 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1904 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1920 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1936 - image: "usingLineEdit.2.png" - } - Frame { - msec: 1952 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1968 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 1984 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Key { - type: 6 - key: 67 - modifiers: 67108864 - text: "03" - autorep: false - count: 1 - } - Frame { - msec: 2000 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2016 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2032 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2048 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2064 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2080 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2096 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2112 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Key { - type: 7 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2144 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2160 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2176 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2192 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2208 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2224 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2240 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2256 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2272 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2288 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2304 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2320 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2336 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2352 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2368 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2384 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2400 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2416 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2432 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2448 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2464 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2480 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Key { - type: 6 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2512 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2528 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2544 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2560 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2576 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Key { - type: 7 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2592 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2608 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2624 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2640 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2656 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2672 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2688 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2704 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2720 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2736 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2752 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2768 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2784 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2816 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2832 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2848 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2864 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2880 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2896 - image: "usingLineEdit.3.png" - } - Frame { - msec: 2912 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2928 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2944 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2960 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2976 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 2992 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3008 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3024 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3040 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3056 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3072 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3088 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3104 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3120 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3136 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3152 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3168 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3184 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3200 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Frame { - msec: 3216 - hash: "c346bd1c6a8c04dff75bc14882a4d964" - } - Key { - type: 6 - key: 86 - modifiers: 67108864 - text: "16" - autorep: false - count: 1 - } - Frame { - msec: 3232 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3248 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3264 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3280 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3296 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3312 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3328 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Key { - type: 7 - key: 86 - modifiers: 67108864 - text: "16" - autorep: false - count: 1 - } - Frame { - msec: 3344 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3360 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3376 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3392 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3408 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3424 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3440 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3456 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3472 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3488 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3504 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3520 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3536 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Frame { - msec: 3552 - hash: "4e24e7e6a205160479b0d23057a50b37" - } - Key { - type: 6 - key: 86 - modifiers: 67108864 - text: "16" - autorep: false - count: 1 - } - Frame { - msec: 3568 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3584 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3600 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3616 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3632 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3648 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3664 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3680 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Key { - type: 7 - key: 86 - modifiers: 67108864 - text: "16" - autorep: false - count: 1 - } - Frame { - msec: 3696 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3712 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3728 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3744 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3760 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3776 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3792 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3808 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3824 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3840 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3856 - image: "usingLineEdit.4.png" - } - Frame { - msec: 3872 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3888 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3904 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3920 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3936 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3952 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3968 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 3984 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4000 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4016 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4032 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4048 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4064 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4080 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4096 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4112 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4128 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4144 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4160 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4176 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4192 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Key { - type: 7 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4208 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4224 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4240 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4256 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4272 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4288 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4304 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4320 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4336 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4352 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4368 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4384 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4400 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4416 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4432 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4448 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4464 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4480 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4496 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4512 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4528 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4544 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4560 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4576 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4592 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4608 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4624 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4640 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4656 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4672 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4688 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Frame { - msec: 4704 - hash: "c6354c09a2bdf6ff23cae30640abdd65" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 69; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4736 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4752 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4768 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4784 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4800 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 69; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4816 - image: "usingLineEdit.5.png" - } - Frame { - msec: 4832 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4848 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4864 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4880 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4896 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4912 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4928 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4944 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4960 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4976 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 4992 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5008 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5024 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5040 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5056 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5072 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5088 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5104 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5120 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5136 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5152 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5168 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5184 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5200 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5216 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5232 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5248 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5264 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5280 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5296 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5312 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5328 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5344 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Frame { - msec: 5360 - hash: "b7e9475cc88b099f9e17b67f4d0c8ed0" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5376 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5392 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5408 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5424 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5440 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5456 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5472 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5488 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5504 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5520 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5536 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5552 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5568 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5584 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5600 - hash: "5435254889b22b00b043f0d748021369" - } - Frame { - msec: 5616 - hash: "5435254889b22b00b043f0d748021369" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5632 - hash: "94fa3848acc33accfb607ce31029f06d" - } - Frame { - msec: 5648 - hash: "94fa3848acc33accfb607ce31029f06d" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5664 - hash: "1ea423dd8084001f2357f1613a77daa4" - } - Frame { - msec: 5680 - hash: "1ea423dd8084001f2357f1613a77daa4" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5696 - hash: "b0f808e85cc5721473da7cd84b1987dc" - } - Frame { - msec: 5712 - hash: "b0f808e85cc5721473da7cd84b1987dc" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5728 - hash: "0667aaf2eb49c2375b831301fefb0035" - } - Frame { - msec: 5744 - hash: "0667aaf2eb49c2375b831301fefb0035" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5760 - hash: "7680aca6b9feccc7e73efa79c1473ce8" - } - Frame { - msec: 5776 - image: "usingLineEdit.6.png" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5792 - hash: "fbbc99bf6a697d60ef348148c0a48bc2" - } - Frame { - msec: 5808 - hash: "fbbc99bf6a697d60ef348148c0a48bc2" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5824 - hash: "9550d8fab2512470dd9dde62f3494450" - } - Frame { - msec: 5840 - hash: "9550d8fab2512470dd9dde62f3494450" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5856 - hash: "9550d8fab2512470dd9dde62f3494450" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5872 - hash: "ab79f5095d60f5cef526a074ef6d4e96" - } - Frame { - msec: 5888 - hash: "ab79f5095d60f5cef526a074ef6d4e96" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5904 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5920 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 5936 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 5952 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 5968 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 5984 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6000 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6016 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6032 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6048 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6064 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6080 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6096 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6112 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6128 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Frame { - msec: 6144 - hash: "4e6ef470ed2c2a2418a4838c6e4ae64b" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6160 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6176 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6192 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6208 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6224 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6240 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6256 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6272 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6288 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6304 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6320 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6336 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6352 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6368 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6384 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6400 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6416 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6432 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6448 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6464 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6480 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6496 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6512 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6528 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6544 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6560 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6576 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6592 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6608 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6624 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6640 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6656 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6672 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6688 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6704 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6720 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6736 - image: "usingLineEdit.7.png" - } - Frame { - msec: 6752 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6768 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6784 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6800 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6816 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6832 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6848 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6864 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6880 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6896 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6912 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6928 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Frame { - msec: 6944 - hash: "ed2a8fae3e94e2f90232d172246d3783" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6960 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 6976 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 6992 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7008 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7024 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7040 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7056 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7072 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7088 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7104 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7120 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7136 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7152 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7168 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7184 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7200 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7216 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7232 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7248 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7264 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7280 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7296 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7312 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7328 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7344 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7360 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7376 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7392 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7408 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7424 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7440 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7456 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7472 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7488 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7504 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7520 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Key { - type: 7 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7536 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7552 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7568 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7584 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7600 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7616 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7632 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7648 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7664 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7680 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7696 - image: "usingLineEdit.8.png" - } - Frame { - msec: 7712 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7728 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7744 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7760 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7776 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7792 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7808 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7824 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7840 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7856 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7872 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7888 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7904 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7920 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7936 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7952 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7968 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 7984 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8000 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8016 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8032 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8048 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8064 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8080 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8096 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8112 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8128 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8144 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8160 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8176 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8192 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8208 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8224 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8240 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8256 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8272 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8288 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8304 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8320 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8336 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8352 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8368 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8384 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8400 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8416 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8432 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8448 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8464 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8480 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Frame { - msec: 8496 - hash: "f1c4f46ee86ce1eb24fcd72106da0248" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 61; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8512 - hash: "e779fc73a3ca131452f62e889d5c96ea" - } - Frame { - msec: 8528 - hash: "e779fc73a3ca131452f62e889d5c96ea" - } - Frame { - msec: 8544 - hash: "e779fc73a3ca131452f62e889d5c96ea" - } - Frame { - msec: 8560 - hash: "e779fc73a3ca131452f62e889d5c96ea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 60; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8576 - hash: "e779fc73a3ca131452f62e889d5c96ea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8592 - hash: "400b446983d944bac62889fb47e8d405" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8608 - hash: "400b446983d944bac62889fb47e8d405" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 32; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8624 - hash: "769278730ba7e2a31333496a0c99499f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 31; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 30; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8640 - hash: "769278730ba7e2a31333496a0c99499f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 29; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8656 - image: "usingLineEdit.9.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 28; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8672 - hash: "c193a6f52a967c97961df08ebffe50c1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 26; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8688 - hash: "c193a6f52a967c97961df08ebffe50c1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 25; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 24; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8704 - hash: "c193a6f52a967c97961df08ebffe50c1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 22; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8720 - hash: "c193a6f52a967c97961df08ebffe50c1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 20; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 19; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8736 - hash: "ce0d865bf18c5c3ff93bda82f95e97c2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 18; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8752 - hash: "ce0d865bf18c5c3ff93bda82f95e97c2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 15; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8768 - hash: "ce0d865bf18c5c3ff93bda82f95e97c2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 14; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 13; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8784 - hash: "ce0d865bf18c5c3ff93bda82f95e97c2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 12; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 11; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8800 - hash: "ce0d865bf18c5c3ff93bda82f95e97c2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 10; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 8; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8816 - hash: "af2a9c17451a89153e04418e056d9ea5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 6; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 5; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8832 - hash: "749a1ccf2050c809be5e3820d3b2fba9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 3; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 2; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8848 - hash: "74f183256682200a804baa620a6ce978" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 0; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -1; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8864 - hash: "9d837fb68c47ac3659b93e9f77cea0af" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -2; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -3; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8880 - hash: "2dc20ba694548e05c80383d0fcc429fc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -5; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -6; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8896 - hash: "0f5b95fbbdd932c8dbfaffd0cdd44dec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -7; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -9; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8912 - hash: "dd9e9d86eacd44b19c6c9c64c2abf007" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -10; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -11; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8928 - hash: "7c67140abcbe7b8a36a7324016377272" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -12; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -13; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8944 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -14; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -15; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8960 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 8976 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -16; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -17; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8992 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -18; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9008 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9024 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9040 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9056 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9072 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9088 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9104 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9120 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9136 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9152 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9168 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9184 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Frame { - msec: 9200 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -17; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9216 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -16; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9232 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -14; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -13; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9248 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -11; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -10; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9264 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -8; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -7; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9280 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -6; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -5; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9296 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -3; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -1; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9312 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 1; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 3; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9328 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 4; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 6; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9344 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 7; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 8; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9360 - hash: "a085e2633649f0328f109bc4143eaccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 10; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 11; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9376 - hash: "fe89231a1ac7f48eee7cea14167b6616" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 12; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 14; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9392 - hash: "fe89231a1ac7f48eee7cea14167b6616" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 15; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9408 - hash: "fe89231a1ac7f48eee7cea14167b6616" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 21; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 24; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9424 - hash: "e816757e030c8927d6721295f8685162" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 30; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9440 - hash: "48f3a7d217ff85ad6088e18c1b88d6d7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 35; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9456 - hash: "48f3a7d217ff85ad6088e18c1b88d6d7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 38; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 39; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9472 - hash: "6cb50f458ba606cc4204727a02e9191b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9488 - hash: "6cb50f458ba606cc4204727a02e9191b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9504 - hash: "936d1a2ceed861a48fb3dd0c54cb0982" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9520 - hash: "936d1a2ceed861a48fb3dd0c54cb0982" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9536 - hash: "936d1a2ceed861a48fb3dd0c54cb0982" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9552 - hash: "9fb9dbff35b91d65e1e7ce569baede55" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9568 - hash: "9fb9dbff35b91d65e1e7ce569baede55" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9584 - hash: "78038f8df4ef17a164172c5bce16527d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 74; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9600 - hash: "b390e534fe43678ff031ec9de32b50d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 76; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9616 - image: "usingLineEdit.10.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 77; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 78; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9632 - hash: "b390e534fe43678ff031ec9de32b50d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 79; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9648 - hash: "b390e534fe43678ff031ec9de32b50d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 84; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9664 - hash: "94fa3848acc33accfb607ce31029f06d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 85; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 88; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9680 - hash: "b0f808e85cc5721473da7cd84b1987dc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 89; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9696 - hash: "7680aca6b9feccc7e73efa79c1473ce8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 92; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 94; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9712 - hash: "ab79f5095d60f5cef526a074ef6d4e96" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9728 - hash: "35c718664fc8e817e26054c307f908f9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 98; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9744 - hash: "23267fdc8202daba400140e51f5e3bdc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9760 - hash: "0b2765ae503f0194e6e526ea6f9ed8f9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 39 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9776 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 39 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9792 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9808 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9824 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 113; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9840 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9856 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 9872 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9888 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 116; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9904 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9920 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9936 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 9952 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 119; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9968 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9984 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 121; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10000 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10016 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10032 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10048 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10064 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10080 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10096 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10112 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10128 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10144 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10160 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10176 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10192 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10208 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10224 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10240 - hash: "6f6154528c95da216e1f3830de000195" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 122; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10256 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10272 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10288 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10304 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10320 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10336 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10352 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10368 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10384 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10400 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10416 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10432 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10448 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10464 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10480 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10496 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10512 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10528 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10544 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10560 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10576 - image: "usingLineEdit.11.png" - } - Frame { - msec: 10592 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10608 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10624 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10640 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10656 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10672 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10688 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10704 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10720 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10736 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10752 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10768 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10784 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10800 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10816 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10832 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10848 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10864 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10880 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10896 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10912 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10928 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10944 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10960 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10976 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 10992 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11008 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11024 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11040 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11056 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11072 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11088 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11104 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11120 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11136 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11152 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11168 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11184 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11200 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11216 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11232 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11248 - hash: "6f6154528c95da216e1f3830de000195" - } - Frame { - msec: 11264 - hash: "6f6154528c95da216e1f3830de000195" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png deleted file mode 100644 index 18dd55e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png deleted file mode 100644 index 9cc8b85..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png deleted file mode 100644 index f7c23e2..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png deleted file mode 100644 index a5bd6cc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png deleted file mode 100644 index fdcdf88..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.5.png deleted file mode 100644 index 89fd161..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml deleted file mode 100644 index e14fb82..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml +++ /dev/null @@ -1,1551 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "cursorDelegate.0.png" - } - Frame { - msec: 32 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 48 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 64 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 80 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 96 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 112 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 128 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 144 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 160 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 176 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 192 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 208 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 224 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 240 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 256 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 272 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 288 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 304 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 320 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 336 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 352 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 368 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 384 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 400 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 416 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 432 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Frame { - msec: 448 - hash: "ea218f136c6c7a70f2a4da569fae92b0" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 464 - hash: "e0cce7628c07ad989161e77d87f7f511" - } - Frame { - msec: 480 - hash: "e0cce7628c07ad989161e77d87f7f511" - } - Frame { - msec: 496 - hash: "e0cce7628c07ad989161e77d87f7f511" - } - Frame { - msec: 512 - hash: "e0cce7628c07ad989161e77d87f7f511" - } - Frame { - msec: 528 - hash: "b86c442f4a561503d34238465fd20aec" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "36f5f4397549f151ebfc0295ca33f55f" - } - Frame { - msec: 560 - hash: "1cc9682b652e65b547bbeb2b37f9d1e7" - } - Frame { - msec: 576 - hash: "b3874acb58643e1bb70a0b579e517526" - } - Frame { - msec: 592 - hash: "152b962f8a00b68459df073962a1a947" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 608 - hash: "891f86211cdc5050881421613b199939" - } - Frame { - msec: 624 - hash: "5862b5e1ed2d1905357adbc5a7f2ade9" - } - Frame { - msec: 640 - hash: "2fd895e688fa1c8b2f0bbf6e7defdb2a" - } - Frame { - msec: 656 - hash: "66c31658d38604b3e2d424aea15b715d" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 672 - hash: "df5331bc225d5e6f443812d489b19324" - } - Frame { - msec: 688 - hash: "6ca6367bb314804598b6257fd8b49d28" - } - Frame { - msec: 704 - hash: "877f64d93ba9d0d31181c3600bc02f80" - } - Frame { - msec: 720 - hash: "6b3210a6e4f8c448e5d90c6dada7a114" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 736 - hash: "4e64391a8142f94cb1ae38082218af01" - } - Frame { - msec: 752 - hash: "7bc3285fc6a0275622a76e605e2f7609" - } - Frame { - msec: 768 - hash: "895b45ca668e4fe112913d818f28631e" - } - Frame { - msec: 784 - hash: "98e49c0ade7408c3229489ba6681088b" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "98c7370ca0f570dbe23c2724cb4ddead" - } - Frame { - msec: 816 - hash: "a71a7684552b072754469f6ae16d18b6" - } - Frame { - msec: 832 - hash: "9cf40ec30d20e2cf95de2bfede4e46c6" - } - Frame { - msec: 848 - hash: "ed1efc0873a05be9f0c001c9cab94414" - } - Frame { - msec: 864 - hash: "4909c38a27da00d9c6f0dafc52c45035" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 880 - hash: "81d4e7ca4265332555434fdd5f19c621" - } - Frame { - msec: 896 - hash: "c336bac65473a8b76cecca1854c94752" - } - Frame { - msec: 912 - hash: "8bf0b0c6bd2c0fbf7c9f3529a5b92ebc" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 928 - hash: "8b7f6b8eebd1d7648becb91d256ac475" - } - Frame { - msec: 944 - hash: "6fcc3b9dee14bcdd2b60a32f696eec05" - } - Frame { - msec: 960 - hash: "939ac75fa99f482509ee1bb6b93f2ed0" - } - Frame { - msec: 976 - image: "cursorDelegate.1.png" - } - Frame { - msec: 992 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1008 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 1024 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 1040 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1056 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 1072 - hash: "3d6db6e3ee77ee75341ce16dc4a56c59" - } - Frame { - msec: 1088 - hash: "ff43ccdb14ae4d12ffead2eb261a5056" - } - Frame { - msec: 1104 - hash: "cd14458426f94efbbc729112e6a481c5" - } - Frame { - msec: 1120 - hash: "6bd66d118ff27b0cea7944ea22c727c9" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1136 - hash: "c294f1f7b7dd842d797ec5346f8794b3" - } - Frame { - msec: 1152 - hash: "185228bb06e052a279bc0481760a1920" - } - Frame { - msec: 1168 - hash: "81b01e755b7fcbda18634b88052326e4" - } - Frame { - msec: 1184 - hash: "ff16045d2ae8a5e48440fe5094780987" - } - Frame { - msec: 1200 - hash: "01b2a227010cba52952763cd9fbc8c94" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1216 - hash: "3c6ffa5250e90c994e334745efa15b19" - } - Frame { - msec: 1232 - hash: "9656663feae42fced5646d8c21ad05ec" - } - Frame { - msec: 1248 - hash: "95ecea8c39c38c2319a8a0de1c3c97b1" - } - Frame { - msec: 1264 - hash: "7bc610d4efadf5ef603d0c62e81021b2" - } - Frame { - msec: 1280 - hash: "b5343907926d112165a1e8914fa12383" - } - Frame { - msec: 1296 - hash: "7b1be2c0e963b92accd35606cd9521f5" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "2004b105d197f736f68eef070574767d" - } - Key { - type: 6 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1328 - hash: "dbafec45c35739835180f7644f4bf66c" - } - Frame { - msec: 1344 - hash: "ed86b86cc0eb1c8c05b0ddb063937270" - } - Frame { - msec: 1360 - hash: "bdc640c90728a4f39c22e0a415c595b4" - } - Frame { - msec: 1376 - hash: "2af0c828b767942ba1745dd9838a54b5" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "547f4cbf1637d997f50f755965dd4704" - } - Frame { - msec: 1408 - hash: "ede46a74a6e5297454da63227684d6cf" - } - Frame { - msec: 1424 - hash: "3a8747e0b26763c7bbc5ecd433c41d5a" - } - Frame { - msec: 1440 - hash: "0ae75d3cf890fe95e53f4c2c2eb0c660" - } - Frame { - msec: 1456 - hash: "1014ed3a45803f4ca8dfd669137d3502" - } - Frame { - msec: 1472 - hash: "0abf6b3183b4b85eabbcb3f2d4173473" - } - Frame { - msec: 1488 - hash: "39dbf6788ad997531894fd5138953f21" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "0fd0841b32106155e25c274b47724d60" - } - Frame { - msec: 1520 - hash: "9fa396cab1425ca03e394c681ccb798d" - } - Frame { - msec: 1536 - hash: "3c62d2a016bba6cd3f83982dcb7c1582" - } - Frame { - msec: 1552 - hash: "ee6f16b9165eb663ae78716f723e5b16" - } - Frame { - msec: 1568 - hash: "dd2c49caa8b8f690fd8a29aac7f85dc8" - } - Frame { - msec: 1584 - hash: "79343bd1b7472d75daad9ae9848b89ba" - } - Frame { - msec: 1600 - hash: "4c087ae0614e4736130235eea0af5267" - } - Frame { - msec: 1616 - hash: "87d75b0e3bd197084f8d8c0601ba195d" - } - Frame { - msec: 1632 - hash: "ccd66bab965c78aa3b39728aef0648c6" - } - Frame { - msec: 1648 - hash: "d311116fafc9693e6c55eb2c1273a487" - } - Frame { - msec: 1664 - hash: "a4c1bc9c9f987bacfd19ea64f9a3ec2c" - } - Frame { - msec: 1680 - hash: "a6b86821b0563c06b478b62037edffe5" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1696 - hash: "30b8fd8f9d3e63c9101cf3558fc7f0d6" - } - Frame { - msec: 1712 - hash: "8224ae61cfce9bbf9f69677071285ddc" - } - Frame { - msec: 1728 - hash: "1b7408ad665e5e316893397c9362e069" - } - Frame { - msec: 1744 - hash: "7ace1472840c3184263fe23cec5ba929" - } - Frame { - msec: 1760 - hash: "ea3f542c80564ad841675197b51272c9" - } - Frame { - msec: 1776 - hash: "0c4989dbd8d4008c1834140e28b98405" - } - Frame { - msec: 1792 - hash: "337452c36385bebadb35498172eb82ef" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1808 - hash: "030ff7472ad4d566166e99aeb1daf1ad" - } - Frame { - msec: 1824 - hash: "59f7bb68de85445bad114caca87ae859" - } - Frame { - msec: 1840 - hash: "5c0e8905d830357ca7bc26c6383a2dcc" - } - Frame { - msec: 1856 - hash: "b00e889ee28556eaca18a6d52b8b4c0c" - } - Key { - type: 7 - key: 16777248 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1872 - hash: "07d4cc37e71ff6fb34c1370db27bd0f9" - } - Key { - type: 6 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1888 - hash: "86d74cd53c541fde95b36a3899859272" - } - Frame { - msec: 1904 - hash: "82457df6a73b8aa32b567cac53d19679" - } - Frame { - msec: 1920 - hash: "63be8d924bace20717f87f7d260060e5" - } - Frame { - msec: 1936 - image: "cursorDelegate.2.png" - } - Frame { - msec: 1952 - hash: "d274989f514174cda3316fa6650aed05" - } - Frame { - msec: 1968 - hash: "f1cae5982318ec621423513f7a090adf" - } - Frame { - msec: 1984 - hash: "1b30dd4a817370d8b6f5908cef69eeb9" - } - Frame { - msec: 2000 - hash: "1b30dd4a817370d8b6f5908cef69eeb9" - } - Frame { - msec: 2016 - hash: "1b30dd4a817370d8b6f5908cef69eeb9" - } - Frame { - msec: 2032 - hash: "1b30dd4a817370d8b6f5908cef69eeb9" - } - Key { - type: 7 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2048 - hash: "1b30dd4a817370d8b6f5908cef69eeb9" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "f1cae5982318ec621423513f7a090adf" - } - Frame { - msec: 2080 - hash: "d274989f514174cda3316fa6650aed05" - } - Frame { - msec: 2096 - hash: "4c51c2e71ee1fef13b9ac5213b057cef" - } - Frame { - msec: 2112 - hash: "63be8d924bace20717f87f7d260060e5" - } - Frame { - msec: 2128 - hash: "82457df6a73b8aa32b567cac53d19679" - } - Frame { - msec: 2144 - hash: "86d74cd53c541fde95b36a3899859272" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "9bfb6b9a2604b4c534539bc731abda10" - } - Frame { - msec: 2176 - hash: "dfa52bb483388dfee56577968d013c8f" - } - Frame { - msec: 2192 - hash: "ea77a49e7e246649248e19b72d6433c9" - } - Frame { - msec: 2208 - hash: "348e6a82b1491739e72c5c361158a967" - } - Frame { - msec: 2224 - hash: "bb52aa533659d770d01deb8bef5a8b4d" - } - Frame { - msec: 2240 - hash: "082441b5fea02f2676ad4d53aefb6927" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2256 - hash: "9194cd1399ceeda421944cd87182039b" - } - Frame { - msec: 2272 - hash: "edff1333eb3a0047c527503ab3dbe71c" - } - Frame { - msec: 2288 - hash: "e5c9931c8baf260d77f9cfcc1bb41101" - } - Frame { - msec: 2304 - hash: "75c37de92c5af3305733a92d405a4ec8" - } - Frame { - msec: 2320 - hash: "f27082799d0860c660d16c3f9fe6e538" - } - Frame { - msec: 2336 - hash: "5d79ff6cac5bd6943b656964c1d78b00" - } - Frame { - msec: 2352 - hash: "d58a1176858e49c89fc77bed260c6269" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "70deb136fd364646e73390f0aa751baa" - } - Frame { - msec: 2384 - hash: "ed3bf83d975d6b8f830ce0b5a0ad64cc" - } - Frame { - msec: 2400 - hash: "9007b93c9b9ae3612a0f97fe2e2ae825" - } - Frame { - msec: 2416 - hash: "c39f05a5471fb3a26f57feab2b99c8fa" - } - Frame { - msec: 2432 - hash: "49cd710decb32599d7a9c8e0239bf9a5" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "df3e2a44ed4e7cf6adb49f84b1d4fc53" - } - Frame { - msec: 2464 - hash: "5b7984204405b31a0262da011ff3903e" - } - Frame { - msec: 2480 - hash: "0dd2dc00c42eb7bb731d64e9a7188c83" - } - Frame { - msec: 2496 - hash: "1b811aa744375668672fb8b4e0d75621" - } - Frame { - msec: 2512 - hash: "f34c084f977a20fcf96eaf1e7b5423f7" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2528 - hash: "145b1c6526e04f02adf94eb5d0369ae0" - } - Frame { - msec: 2544 - hash: "1b047f1cb4738188c10d8b05e636694a" - } - Frame { - msec: 2560 - hash: "3f5921d19c63c7d434f0428cb155426e" - } - Frame { - msec: 2576 - hash: "940a9ca625a813af3c9f74600b9dd668" - } - Frame { - msec: 2592 - hash: "3df53c013eae20a71e4337be5499ff65" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2608 - hash: "34e4524d132bbb2a9e4aaffa0982ad33" - } - Frame { - msec: 2624 - hash: "87942e371bd51726dbfa5a09fdd31631" - } - Frame { - msec: 2640 - hash: "a2baf811e2b51215c4e5f88f0854f5a5" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2656 - hash: "cc12390ac2a3296c04f2538fb3b4cc00" - } - Frame { - msec: 2672 - hash: "f209d32ec1742194c8436c36230a8239" - } - Frame { - msec: 2688 - hash: "444d87a6fc19b8f0e8dcda0615a484aa" - } - Frame { - msec: 2704 - hash: "2e492b973fffd68245c24d603d2a8221" - } - Frame { - msec: 2720 - hash: "742ab9c9d4d8e37337f237f792aba160" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2736 - hash: "74db3d75c0b30946b18edf5fc115dfce" - } - Frame { - msec: 2752 - hash: "86685be3dbb2236676f767894c694a5a" - } - Frame { - msec: 2768 - hash: "327351a6164fd566dd0f7ead05c7ea36" - } - Frame { - msec: 2784 - hash: "ba9262ab3d8824e3a9cdcfe29059bbda" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "8c8aba2c44a7ea5b4d1e2206a3dbd6a2" - } - Frame { - msec: 2816 - hash: "560067cbba922e2958bc7bae5ab93572" - } - Frame { - msec: 2832 - hash: "566c84584e49c633fdada833ea386565" - } - Frame { - msec: 2848 - hash: "615819749d92cb0b927e370c05321f5b" - } - Frame { - msec: 2864 - hash: "9f11ee25f10750cc2302e6b528ab68b9" - } - Frame { - msec: 2880 - hash: "5140d2ac5f1b361776fb335d43fcda1a" - } - Frame { - msec: 2896 - image: "cursorDelegate.3.png" - } - Frame { - msec: 2912 - hash: "5fb75369681ac189b4de918dfa639f55" - } - Frame { - msec: 2928 - hash: "9da1688d1084f1588b6d203698c8a2b6" - } - Frame { - msec: 2944 - hash: "91bbae5a8fd04da71b1353f687c15d9f" - } - Frame { - msec: 2960 - hash: "d3c0a6ed0510abb6135fb2e61f8721d8" - } - Frame { - msec: 2976 - hash: "23e728398c03c805066766081e434d41" - } - Frame { - msec: 2992 - hash: "23e728398c03c805066766081e434d41" - } - Frame { - msec: 3008 - hash: "23e728398c03c805066766081e434d41" - } - Frame { - msec: 3024 - hash: "23e728398c03c805066766081e434d41" - } - Frame { - msec: 3040 - hash: "23e728398c03c805066766081e434d41" - } - Frame { - msec: 3056 - hash: "23e728398c03c805066766081e434d41" - } - Frame { - msec: 3072 - hash: "d3c0a6ed0510abb6135fb2e61f8721d8" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3088 - hash: "d5519a015a697dcb1763748bd2789441" - } - Frame { - msec: 3104 - hash: "d8ca000081bf565a4f3de5a5e94d894b" - } - Frame { - msec: 3120 - hash: "03984ab7a25d80e24dd0650f881b8203" - } - Frame { - msec: 3136 - hash: "edfea780ea62d48ac69afa5e6cad00af" - } - Frame { - msec: 3152 - hash: "b00a5d2424568d823eb7be0438dafa1f" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3168 - hash: "76fda33dcea27a034ddfab61031d8de6" - } - Frame { - msec: 3184 - hash: "11b9e3a58fd2c6d86e61a5e3b7db04b4" - } - Frame { - msec: 3200 - hash: "f7c583d00d7154d9e8af88bec706f97f" - } - Frame { - msec: 3216 - hash: "8680b8c69c544213fb8d55233bde4ce5" - } - Frame { - msec: 3232 - hash: "74fc148e3c466023e2449c6b1367bceb" - } - Frame { - msec: 3248 - hash: "9495a0ffe7589351cfced8b26f6d64e4" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3264 - hash: "519c58c8c0f62d96005b49f68648565b" - } - Frame { - msec: 3280 - hash: "609a2d8f02c8b42e0921a2a900edccbd" - } - Frame { - msec: 3296 - hash: "c54617fb7b21ef8dc2bc0d8492ec476e" - } - Frame { - msec: 3312 - hash: "096dc0d8b3ed47894ab0289bcfe3aa8f" - } - Frame { - msec: 3328 - hash: "5b725bb5951caa968d221fe7c5dd6370" - } - Frame { - msec: 3344 - hash: "6733673178a1b85b22d22610a6f6c3d7" - } - Frame { - msec: 3360 - hash: "5efbed8f4de4387572c5a98ba14f3c27" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3376 - hash: "650a0792ee0025e12f7f0ce6df72df6c" - } - Frame { - msec: 3392 - hash: "0064815fa6e2bcbbe5f2ea8222ddd2b0" - } - Frame { - msec: 3408 - hash: "13ca683ddd0071771e853a09fc6e5842" - } - Frame { - msec: 3424 - hash: "1625325eee9b4eaab2df135e0d2f0f14" - } - Frame { - msec: 3440 - hash: "9e3f1df1b243167b5470778e8c44f7d1" - } - Frame { - msec: 3456 - hash: "493634fa37f10eb02d255253171d190d" - } - Frame { - msec: 3472 - hash: "86ddfc357d158deae39a7565c512d0c0" - } - Frame { - msec: 3488 - hash: "74486ca31cf165f0e55aacfae7af9e4c" - } - Frame { - msec: 3504 - hash: "3479f78faf16d4d07b6b44d7682ac016" - } - Key { - type: 7 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3520 - hash: "cb35c6a887f191b2eb5de961912c94b8" - } - Frame { - msec: 3536 - hash: "53f5028e96fc65cc6171e78c31c16026" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3552 - hash: "c77e078983f12d8007c5509cd8b356f9" - } - Frame { - msec: 3568 - hash: "ec2da5c6869161936e2598961c605674" - } - Frame { - msec: 3584 - hash: "bb9adcb5730aeafb2956e01d9aacaee1" - } - Frame { - msec: 3600 - hash: "49cd710decb32599d7a9c8e0239bf9a5" - } - Frame { - msec: 3616 - hash: "c39f05a5471fb3a26f57feab2b99c8fa" - } - Frame { - msec: 3632 - hash: "9007b93c9b9ae3612a0f97fe2e2ae825" - } - Frame { - msec: 3648 - hash: "ed3bf83d975d6b8f830ce0b5a0ad64cc" - } - Frame { - msec: 3664 - hash: "70deb136fd364646e73390f0aa751baa" - } - Frame { - msec: 3680 - hash: "d58a1176858e49c89fc77bed260c6269" - } - Frame { - msec: 3696 - hash: "5d79ff6cac5bd6943b656964c1d78b00" - } - Frame { - msec: 3712 - hash: "f27082799d0860c660d16c3f9fe6e538" - } - Frame { - msec: 3728 - hash: "75c37de92c5af3305733a92d405a4ec8" - } - Frame { - msec: 3744 - hash: "e5c9931c8baf260d77f9cfcc1bb41101" - } - Frame { - msec: 3760 - hash: "edff1333eb3a0047c527503ab3dbe71c" - } - Frame { - msec: 3776 - hash: "9194cd1399ceeda421944cd87182039b" - } - Frame { - msec: 3792 - hash: "082441b5fea02f2676ad4d53aefb6927" - } - Frame { - msec: 3808 - hash: "bb52aa533659d770d01deb8bef5a8b4d" - } - Frame { - msec: 3824 - hash: "348e6a82b1491739e72c5c361158a967" - } - Frame { - msec: 3840 - hash: "ea77a49e7e246649248e19b72d6433c9" - } - Frame { - msec: 3856 - image: "cursorDelegate.4.png" - } - Frame { - msec: 3872 - hash: "9bfb6b9a2604b4c534539bc731abda10" - } - Frame { - msec: 3888 - hash: "02b01092c1f0e279872490306163647d" - } - Frame { - msec: 3904 - hash: "acf688ab0ceba1d5d1e0225b90fd706f" - } - Frame { - msec: 3920 - hash: "5866ceee0fd72361dd490a2163b4fc55" - } - Frame { - msec: 3936 - hash: "218083c830ad133e2aeb4692d2d1517d" - } - Frame { - msec: 3952 - hash: "3542537f0b0e1375d81c7f0365bbdf1d" - } - Frame { - msec: 3968 - hash: "ca17401d638025fde8aad18b9a358029" - } - Frame { - msec: 3984 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4000 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4016 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4032 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4048 - hash: "87d666ee3bcf7a606e2aecb4954cfb28" - } - Frame { - msec: 4064 - hash: "ca17401d638025fde8aad18b9a358029" - } - Frame { - msec: 4080 - hash: "3542537f0b0e1375d81c7f0365bbdf1d" - } - Frame { - msec: 4096 - hash: "218083c830ad133e2aeb4692d2d1517d" - } - Frame { - msec: 4112 - hash: "5866ceee0fd72361dd490a2163b4fc55" - } - Frame { - msec: 4128 - hash: "acf688ab0ceba1d5d1e0225b90fd706f" - } - Frame { - msec: 4144 - hash: "02b01092c1f0e279872490306163647d" - } - Frame { - msec: 4160 - hash: "9bfb6b9a2604b4c534539bc731abda10" - } - Frame { - msec: 4176 - hash: "dfa52bb483388dfee56577968d013c8f" - } - Frame { - msec: 4192 - hash: "ea77a49e7e246649248e19b72d6433c9" - } - Frame { - msec: 4208 - hash: "348e6a82b1491739e72c5c361158a967" - } - Frame { - msec: 4224 - hash: "bb52aa533659d770d01deb8bef5a8b4d" - } - Frame { - msec: 4240 - hash: "082441b5fea02f2676ad4d53aefb6927" - } - Frame { - msec: 4256 - hash: "9194cd1399ceeda421944cd87182039b" - } - Frame { - msec: 4272 - hash: "edff1333eb3a0047c527503ab3dbe71c" - } - Frame { - msec: 4288 - hash: "e5c9931c8baf260d77f9cfcc1bb41101" - } - Frame { - msec: 4304 - hash: "75c37de92c5af3305733a92d405a4ec8" - } - Frame { - msec: 4320 - hash: "f27082799d0860c660d16c3f9fe6e538" - } - Frame { - msec: 4336 - hash: "5d79ff6cac5bd6943b656964c1d78b00" - } - Frame { - msec: 4352 - hash: "d58a1176858e49c89fc77bed260c6269" - } - Frame { - msec: 4368 - hash: "70deb136fd364646e73390f0aa751baa" - } - Frame { - msec: 4384 - hash: "ed3bf83d975d6b8f830ce0b5a0ad64cc" - } - Frame { - msec: 4400 - hash: "9007b93c9b9ae3612a0f97fe2e2ae825" - } - Frame { - msec: 4416 - hash: "c39f05a5471fb3a26f57feab2b99c8fa" - } - Frame { - msec: 4432 - hash: "49cd710decb32599d7a9c8e0239bf9a5" - } - Frame { - msec: 4448 - hash: "bb9adcb5730aeafb2956e01d9aacaee1" - } - Frame { - msec: 4464 - hash: "ec2da5c6869161936e2598961c605674" - } - Frame { - msec: 4480 - hash: "c77e078983f12d8007c5509cd8b356f9" - } - Frame { - msec: 4496 - hash: "53f5028e96fc65cc6171e78c31c16026" - } - Frame { - msec: 4512 - hash: "cb35c6a887f191b2eb5de961912c94b8" - } - Frame { - msec: 4528 - hash: "3479f78faf16d4d07b6b44d7682ac016" - } - Frame { - msec: 4544 - hash: "74486ca31cf165f0e55aacfae7af9e4c" - } - Frame { - msec: 4560 - hash: "86ddfc357d158deae39a7565c512d0c0" - } - Frame { - msec: 4576 - hash: "493634fa37f10eb02d255253171d190d" - } - Frame { - msec: 4592 - hash: "9e3f1df1b243167b5470778e8c44f7d1" - } - Frame { - msec: 4608 - hash: "1625325eee9b4eaab2df135e0d2f0f14" - } - Frame { - msec: 4624 - hash: "13ca683ddd0071771e853a09fc6e5842" - } - Frame { - msec: 4640 - hash: "0064815fa6e2bcbbe5f2ea8222ddd2b0" - } - Frame { - msec: 4656 - hash: "650a0792ee0025e12f7f0ce6df72df6c" - } - Frame { - msec: 4672 - hash: "5efbed8f4de4387572c5a98ba14f3c27" - } - Frame { - msec: 4688 - hash: "6733673178a1b85b22d22610a6f6c3d7" - } - Frame { - msec: 4704 - hash: "5b725bb5951caa968d221fe7c5dd6370" - } - Frame { - msec: 4720 - hash: "096dc0d8b3ed47894ab0289bcfe3aa8f" - } - Frame { - msec: 4736 - hash: "c54617fb7b21ef8dc2bc0d8492ec476e" - } - Frame { - msec: 4752 - hash: "609a2d8f02c8b42e0921a2a900edccbd" - } - Frame { - msec: 4768 - hash: "519c58c8c0f62d96005b49f68648565b" - } - Frame { - msec: 4784 - hash: "5d1dd05aade754c204d13f5de03413dd" - } - Frame { - msec: 4800 - hash: "ceca317086930994c35b0ed08db71d64" - } - Frame { - msec: 4816 - image: "cursorDelegate.5.png" - } - Frame { - msec: 4832 - hash: "64fcbd6ba961634b0ba33ec5b6693945" - } - Frame { - msec: 4848 - hash: "48a6ced88807a05aea34b47d36261347" - } - Frame { - msec: 4864 - hash: "aafa7081d0f1a46478c0956ad5c56d1d" - } - Frame { - msec: 4880 - hash: "6a9f14ec3fcd119afe68cbf372b13076" - } - Frame { - msec: 4896 - hash: "927556bdf4e883c409ba8797001152ce" - } - Frame { - msec: 4912 - hash: "b93878281f21c85c211908086f2899e7" - } - Frame { - msec: 4928 - hash: "235b68812a3cb48fc09bd8319aef40f1" - } - Frame { - msec: 4944 - hash: "8943d47912a4206e61836d99cca835da" - } - Frame { - msec: 4960 - hash: "4d06d264f71d75421c9a6d5a87d6a9ba" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png deleted file mode 100644 index 63b1779..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png deleted file mode 100644 index 7924652..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png deleted file mode 100644 index e77bfde..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png deleted file mode 100644 index 67d7e52..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml deleted file mode 100644 index ee29db6..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml +++ /dev/null @@ -1,1043 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "echoMode.0.png" - } - Frame { - msec: 32 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Key { - type: 6 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 48 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 64 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 80 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 96 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 112 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 128 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 144 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 160 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 176 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 192 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 208 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 224 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 240 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 256 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 272 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 288 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 304 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 320 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 336 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Frame { - msec: 352 - hash: "75bcecaf83ffc9b851894db0be2c02bc" - } - Key { - type: 6 - key: 74 - modifiers: 33554432 - text: "4a" - autorep: false - count: 1 - } - Frame { - msec: 368 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 384 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 400 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 416 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 432 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Key { - type: 7 - key: 74 - modifiers: 33554432 - text: "4a" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 464 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 480 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 496 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 512 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 528 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Key { - type: 7 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 560 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 576 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 592 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 608 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 624 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 640 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 656 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 672 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Frame { - msec: 688 - hash: "1a9f4d47e3982ce68eee8446fd735487" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 704 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Frame { - msec: 720 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Frame { - msec: 736 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Frame { - msec: 752 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Frame { - msec: 768 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 784 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Frame { - msec: 800 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Frame { - msec: 816 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Frame { - msec: 832 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Frame { - msec: 848 - hash: "9ab137169f2ea0f4b140a6e668f59ad2" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 864 - hash: "3080734a2da042b87ef9177cbb314835" - } - Frame { - msec: 880 - hash: "3080734a2da042b87ef9177cbb314835" - } - Frame { - msec: 896 - hash: "3080734a2da042b87ef9177cbb314835" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 912 - hash: "3080734a2da042b87ef9177cbb314835" - } - Frame { - msec: 928 - hash: "3080734a2da042b87ef9177cbb314835" - } - Frame { - msec: 944 - hash: "3080734a2da042b87ef9177cbb314835" - } - Frame { - msec: 960 - hash: "3080734a2da042b87ef9177cbb314835" - } - Frame { - msec: 976 - image: "echoMode.1.png" - } - Key { - type: 6 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 992 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1008 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1024 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1040 - hash: "e591963b05361595383b1a60eec289cb" - } - Key { - type: 7 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 1056 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1072 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1088 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1104 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1120 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1136 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1152 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1168 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1184 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1200 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1216 - hash: "e591963b05361595383b1a60eec289cb" - } - Frame { - msec: 1232 - hash: "e591963b05361595383b1a60eec289cb" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1248 - hash: "8a528bf3110bace8275f6fe33ce528b9" - } - Frame { - msec: 1264 - hash: "8a528bf3110bace8275f6fe33ce528b9" - } - Frame { - msec: 1280 - hash: "8a528bf3110bace8275f6fe33ce528b9" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "8a528bf3110bace8275f6fe33ce528b9" - } - Frame { - msec: 1312 - hash: "8a528bf3110bace8275f6fe33ce528b9" - } - Frame { - msec: 1328 - hash: "8a528bf3110bace8275f6fe33ce528b9" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1344 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Frame { - msec: 1360 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Frame { - msec: 1376 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Frame { - msec: 1392 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Frame { - msec: 1408 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Frame { - msec: 1424 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Frame { - msec: 1440 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Frame { - msec: 1456 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Frame { - msec: 1472 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1488 - hash: "03d56caa0c86b5544d1f5148e0dccd92" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Frame { - msec: 1520 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Frame { - msec: 1536 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Frame { - msec: 1552 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Frame { - msec: 1584 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Frame { - msec: 1600 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Frame { - msec: 1616 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Frame { - msec: 1632 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Frame { - msec: 1648 - hash: "d9aac9ed4ca0ad97b440db3ac7384001" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "a2e8a6a742b11b4f30a2d75df14d5f47" - } - Frame { - msec: 1680 - hash: "a2e8a6a742b11b4f30a2d75df14d5f47" - } - Frame { - msec: 1696 - hash: "a2e8a6a742b11b4f30a2d75df14d5f47" - } - Frame { - msec: 1712 - hash: "a2e8a6a742b11b4f30a2d75df14d5f47" - } - Frame { - msec: 1728 - hash: "a2e8a6a742b11b4f30a2d75df14d5f47" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1744 - hash: "021641e69fef4720acf6af15d4a2da82" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1760 - hash: "021641e69fef4720acf6af15d4a2da82" - } - Frame { - msec: 1776 - hash: "021641e69fef4720acf6af15d4a2da82" - } - Frame { - msec: 1792 - hash: "021641e69fef4720acf6af15d4a2da82" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1808 - hash: "021641e69fef4720acf6af15d4a2da82" - } - Frame { - msec: 1824 - hash: "021641e69fef4720acf6af15d4a2da82" - } - Frame { - msec: 1840 - hash: "021641e69fef4720acf6af15d4a2da82" - } - Frame { - msec: 1856 - hash: "021641e69fef4720acf6af15d4a2da82" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 1872 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Frame { - msec: 1888 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Frame { - msec: 1904 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Frame { - msec: 1920 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 1936 - image: "echoMode.2.png" - } - Frame { - msec: 1952 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Frame { - msec: 1968 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Frame { - msec: 1984 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Frame { - msec: 2000 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Frame { - msec: 2016 - hash: "46ece14e3a61aefcb28b3c888ac7ea59" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "ffa55ac51f20c82725cadbb445908fd2" - } - Frame { - msec: 2048 - hash: "ffa55ac51f20c82725cadbb445908fd2" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "ffa55ac51f20c82725cadbb445908fd2" - } - Frame { - msec: 2080 - hash: "ffa55ac51f20c82725cadbb445908fd2" - } - Key { - type: 6 - key: 86 - modifiers: 0 - text: "76" - autorep: false - count: 1 - } - Frame { - msec: 2096 - hash: "e9e2edb9176cb57506a3f130fca15d1e" - } - Frame { - msec: 2112 - hash: "e9e2edb9176cb57506a3f130fca15d1e" - } - Frame { - msec: 2128 - hash: "e9e2edb9176cb57506a3f130fca15d1e" - } - Frame { - msec: 2144 - hash: "e9e2edb9176cb57506a3f130fca15d1e" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Key { - type: 7 - key: 86 - modifiers: 0 - text: "76" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "87c3cf93b47a766d6373ecaec7239dd4" - } - Frame { - msec: 2176 - hash: "87c3cf93b47a766d6373ecaec7239dd4" - } - Frame { - msec: 2192 - hash: "87c3cf93b47a766d6373ecaec7239dd4" - } - Frame { - msec: 2208 - hash: "87c3cf93b47a766d6373ecaec7239dd4" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2224 - hash: "1fb4aa190807d169d1ceaff7d9fa92ad" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "1fb4aa190807d169d1ceaff7d9fa92ad" - } - Frame { - msec: 2256 - hash: "1fb4aa190807d169d1ceaff7d9fa92ad" - } - Frame { - msec: 2272 - hash: "1fb4aa190807d169d1ceaff7d9fa92ad" - } - Frame { - msec: 2288 - hash: "1fb4aa190807d169d1ceaff7d9fa92ad" - } - Frame { - msec: 2304 - hash: "1fb4aa190807d169d1ceaff7d9fa92ad" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2320 - hash: "1fb4aa190807d169d1ceaff7d9fa92ad" - } - Frame { - msec: 2336 - hash: "1fb4aa190807d169d1ceaff7d9fa92ad" - } - Key { - type: 6 - key: 77 - modifiers: 0 - text: "6d" - autorep: false - count: 1 - } - Frame { - msec: 2352 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Frame { - msec: 2368 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Frame { - msec: 2384 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Frame { - msec: 2400 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Frame { - msec: 2416 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Frame { - msec: 2432 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Key { - type: 7 - key: 77 - modifiers: 0 - text: "6d" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Frame { - msec: 2464 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Frame { - msec: 2480 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Frame { - msec: 2496 - hash: "e9cd789b114befb4637fcff39d4413b0" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 2512 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2528 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2544 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2576 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2592 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2608 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2624 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2640 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2656 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2672 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2688 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2704 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2720 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2736 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2752 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2768 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2784 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2800 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2816 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2832 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2848 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2864 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2880 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2896 - image: "echoMode.3.png" - } - Frame { - msec: 2912 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2928 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2944 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2960 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2976 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 2992 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 3008 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 3024 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 3040 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } - Frame { - msec: 3056 - hash: "15f91fda9bcc8a2a9ebf3b9c32f61efb" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png deleted file mode 100644 index 4c04a1b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml deleted file mode 100644 index 74ee95f..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml +++ /dev/null @@ -1,107 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "hAlign.0.png" - } - Frame { - msec: 32 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 48 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 64 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 80 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 96 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 112 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 128 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 144 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 160 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 176 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 192 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 208 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 224 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 240 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 256 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 272 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 288 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 304 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 320 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 336 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 352 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 368 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 384 - hash: "93758371bdc69b81077989e911f62fb0" - } - Frame { - msec: 400 - hash: "93758371bdc69b81077989e911f62fb0" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.0.png deleted file mode 100644 index fc34b1a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.1.png deleted file mode 100644 index fc34b1a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.2.png deleted file mode 100644 index fc34b1a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.3.png deleted file mode 100644 index fb2c90b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.4.png deleted file mode 100644 index fb2c90b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.5.png deleted file mode 100644 index e2231ff..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.qml deleted file mode 100644 index 790dffa..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/qtbug-15818.qml +++ /dev/null @@ -1,1039 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "qtbug-15818.0.png" - } - Frame { - msec: 32 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 48 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 64 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 80 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 96 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 112 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 128 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 144 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 160 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 176 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 192 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 208 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 224 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 240 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 256 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 272 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 288 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 304 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 320 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 336 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 352 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 368 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 384 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 400 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 416 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 432 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 448 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 464 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 480 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 496 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 512 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 528 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 544 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 560 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 576 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 592 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 608 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 624 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 640 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 656 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 672 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 688 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 704 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 720 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 736 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 752 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 768 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 784 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 800 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 816 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 832 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 848 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 864 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 880 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 26; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 896 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 912 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 928 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 27; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 944 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 960 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 976 - image: "qtbug-15818.1.png" - } - Frame { - msec: 992 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 27; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1008 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1024 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1040 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1056 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1072 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1088 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1104 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 27; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1120 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1136 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1152 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1168 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1184 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1200 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1216 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1232 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1248 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1264 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1280 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1296 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1312 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1328 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1344 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1360 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1376 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1392 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1408 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1424 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1440 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1456 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1472 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1488 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1504 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1520 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1536 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1552 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1568 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1584 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1600 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1616 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1632 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1648 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1664 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1680 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1696 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1712 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1728 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1744 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1760 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1776 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Frame { - msec: 1792 - hash: "8833dfac6aae78ce1309222cc4438e6f" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 43; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1808 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 1824 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 1840 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 1856 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 1872 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 1888 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 43; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1904 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 1920 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 1936 - image: "qtbug-15818.2.png" - } - Frame { - msec: 1952 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 43; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1968 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 1984 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2000 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2016 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2032 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2048 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2064 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 43; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2080 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2096 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2112 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2128 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2144 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2160 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2176 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2192 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2208 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2224 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2240 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2256 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2272 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2288 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2304 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2320 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2336 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2352 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2368 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2384 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2400 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2416 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2432 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2448 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2464 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2480 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2496 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2512 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2528 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2544 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2560 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2576 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2592 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2608 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2624 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2640 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2656 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2672 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2688 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 54; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2704 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 2720 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 2736 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 2752 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 2768 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 2784 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 55; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2800 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 2816 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 2832 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Frame { - msec: 2848 - hash: "0a63463fc1004efffd15f9524bcf3a29" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 55; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2864 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2880 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2896 - image: "qtbug-15818.3.png" - } - Frame { - msec: 2912 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2928 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2944 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2960 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 2976 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 55; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2992 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3008 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3024 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3040 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3056 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3072 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3088 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3104 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3120 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3136 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3152 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3168 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3184 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3200 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3216 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3232 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3248 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3264 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3280 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3296 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3312 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3328 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3344 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3360 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3376 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3392 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3408 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3424 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3440 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3456 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3472 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3488 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3504 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3520 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3536 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3552 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3568 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3584 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3600 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3616 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3632 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3648 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3664 - hash: "270462ec02bce658757e0ea4fb2136b1" - } - Frame { - msec: 3680 - hash: "270462ec02bce658757e0ea4fb2136b1" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png deleted file mode 100644 index fb0eb85..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png deleted file mode 100644 index 444ee34..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png deleted file mode 100644 index 5f3668c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.11.png deleted file mode 100644 index 0ea21f3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png deleted file mode 100644 index 444ee34..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png deleted file mode 100644 index 9bcd6a7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png deleted file mode 100644 index 04a1e66..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png deleted file mode 100644 index 716f59b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png deleted file mode 100644 index f6b9fce..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png deleted file mode 100644 index 61430e8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png deleted file mode 100644 index be9691f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png deleted file mode 100644 index 4f285b1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml deleted file mode 100644 index 8957e39..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml +++ /dev/null @@ -1,4335 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "usingLineEdit.0.png" - } - Frame { - msec: 32 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 48 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 64 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 80 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 96 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 112 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 128 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 144 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 160 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 176 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 192 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 208 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 224 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 240 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 256 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 272 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 288 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 304 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 320 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 336 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 352 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 368 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 384 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 400 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 416 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 432 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 448 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 464 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 480 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 496 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 512 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 528 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 544 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 560 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 576 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 592 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 608 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 624 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 640 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 656 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 672 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 688 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 704 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 720 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 736 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 752 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 768 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 784 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 800 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 816 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 832 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 848 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 864 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 880 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 896 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 912 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Frame { - msec: 928 - hash: "2e747d3e26cc85e4c36c42097ab3f379" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 85; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 944 - hash: "227431895322480615fb61a635305230" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 85; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 960 - hash: "227431895322480615fb61a635305230" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 85; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 976 - image: "usingLineEdit.1.png" - } - Frame { - msec: 992 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1008 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1024 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1040 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1056 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 85; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1088 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1104 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1120 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1136 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1152 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1168 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1184 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1200 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1216 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1232 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1248 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1264 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1280 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1296 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1312 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1328 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1344 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1360 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1376 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1392 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1408 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1424 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1440 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1456 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1472 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1488 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1504 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1520 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1536 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1552 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1568 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1584 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1600 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1616 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1632 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1648 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1664 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1680 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1696 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1712 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1728 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1744 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1760 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1776 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1792 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1808 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1824 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1840 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1856 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1872 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1888 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1904 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1920 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1936 - image: "usingLineEdit.2.png" - } - Frame { - msec: 1952 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1968 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 1984 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Key { - type: 6 - key: 67 - modifiers: 67108864 - text: "03" - autorep: false - count: 1 - } - Frame { - msec: 2000 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2016 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2032 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2048 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2064 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2080 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2096 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2112 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Key { - type: 7 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2144 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2160 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2176 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2192 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2208 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2224 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2240 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2256 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2272 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2288 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2304 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2320 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2336 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2352 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2368 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2384 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2400 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2416 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2432 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2448 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2464 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Frame { - msec: 2480 - hash: "b888cf6d6e002e28690cff49726eea70" - } - Key { - type: 6 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2512 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2528 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2544 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2560 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2576 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Key { - type: 7 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2592 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2608 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2624 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2640 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2656 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2672 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2688 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2704 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2720 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2736 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2752 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2768 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2784 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2816 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2832 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2848 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2864 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2880 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2896 - image: "usingLineEdit.3.png" - } - Frame { - msec: 2912 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2928 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2944 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2960 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2976 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 2992 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3008 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3024 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3040 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3056 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3072 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3088 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3104 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3120 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3136 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3152 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3168 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3184 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3200 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Frame { - msec: 3216 - hash: "62afc4e3874da1bcd7e86860bbf6db20" - } - Key { - type: 6 - key: 86 - modifiers: 67108864 - text: "16" - autorep: false - count: 1 - } - Frame { - msec: 3232 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3248 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3264 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3280 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3296 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3312 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3328 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Key { - type: 7 - key: 86 - modifiers: 67108864 - text: "16" - autorep: false - count: 1 - } - Frame { - msec: 3344 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3360 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3376 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3392 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3408 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3424 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3440 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3456 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3472 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3488 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3504 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3520 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3536 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Frame { - msec: 3552 - hash: "dc7187f95e9f178cd5d5a0c4e0d637c3" - } - Key { - type: 6 - key: 86 - modifiers: 67108864 - text: "16" - autorep: false - count: 1 - } - Frame { - msec: 3568 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3584 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3600 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3616 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3632 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3648 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3664 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3680 - hash: "942d2dde9d40eb0864831831b9056525" - } - Key { - type: 7 - key: 86 - modifiers: 67108864 - text: "16" - autorep: false - count: 1 - } - Frame { - msec: 3696 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3712 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3728 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3744 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3760 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3776 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3792 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3808 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3824 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3840 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3856 - image: "usingLineEdit.4.png" - } - Frame { - msec: 3872 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3888 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3904 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3920 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3936 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3952 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3968 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 3984 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4000 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4016 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4032 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4048 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4064 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4080 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4096 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4112 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4128 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4144 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4160 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4176 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4192 - hash: "942d2dde9d40eb0864831831b9056525" - } - Key { - type: 7 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4208 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4224 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4240 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4256 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4272 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4288 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4304 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4320 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4336 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4352 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4368 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4384 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4400 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4416 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4432 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4448 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4464 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4480 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4496 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4512 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4528 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4544 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4560 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4576 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4592 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4608 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4624 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4640 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4656 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4672 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4688 - hash: "942d2dde9d40eb0864831831b9056525" - } - Frame { - msec: 4704 - hash: "942d2dde9d40eb0864831831b9056525" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 69; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4736 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4752 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4768 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4784 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4800 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 69; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4816 - image: "usingLineEdit.5.png" - } - Frame { - msec: 4832 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4848 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4864 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4880 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4896 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4912 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4928 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4944 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4960 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4976 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 4992 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5008 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5024 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5040 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5056 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5072 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5088 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5104 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5120 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5136 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5152 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5168 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5184 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5200 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5216 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5232 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5248 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5264 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5280 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5296 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5312 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5328 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5344 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Frame { - msec: 5360 - hash: "9103b19d12565b6d28380f48acfce3c3" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5376 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5392 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5408 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5424 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5440 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5456 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5472 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5488 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5504 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5520 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5536 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5552 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5568 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5584 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5600 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Frame { - msec: 5616 - hash: "3c6258003fba9b4a61bde3a5eb2394d5" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5632 - hash: "f2c1bfd1a4ffb5bc0a5a354707a8ecf8" - } - Frame { - msec: 5648 - hash: "f2c1bfd1a4ffb5bc0a5a354707a8ecf8" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5664 - hash: "9f4fc35d1b6f5984972da9f819a4031e" - } - Frame { - msec: 5680 - hash: "9f4fc35d1b6f5984972da9f819a4031e" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5696 - hash: "68e84d0e6c0febe00cbc8ff13e7efae1" - } - Frame { - msec: 5712 - hash: "68e84d0e6c0febe00cbc8ff13e7efae1" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5728 - hash: "f0c61e706be86d31f124d6405c14c5b4" - } - Frame { - msec: 5744 - hash: "f0c61e706be86d31f124d6405c14c5b4" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5760 - hash: "dbca3c9292e2a6efac887a33b735607f" - } - Frame { - msec: 5776 - image: "usingLineEdit.6.png" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5792 - hash: "6cb5d4a9c79ac3dc6522c5a1022b2e6e" - } - Frame { - msec: 5808 - hash: "6cb5d4a9c79ac3dc6522c5a1022b2e6e" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5824 - hash: "71d67363467f3053393382b887f43401" - } - Frame { - msec: 5840 - hash: "71d67363467f3053393382b887f43401" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5856 - hash: "71d67363467f3053393382b887f43401" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5872 - hash: "db9175c9b81cb4b43f6d4d80549a5ae1" - } - Frame { - msec: 5888 - hash: "db9175c9b81cb4b43f6d4d80549a5ae1" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5904 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5920 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 5936 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 5952 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 5968 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 5984 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6000 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6016 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6032 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6048 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6064 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6080 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6096 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6112 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6128 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Frame { - msec: 6144 - hash: "535d1bbe1d2147d70bec0b7d932eff41" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6160 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6176 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6192 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6208 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6224 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6240 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6256 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6272 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6288 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6304 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6320 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6336 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6352 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6368 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6384 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Frame { - msec: 6400 - hash: "63132fa980a9fdcce415af1503f34ca6" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6416 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6432 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6448 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6464 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6480 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6496 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6512 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6528 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6544 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6560 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6576 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6592 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6608 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6624 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6640 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6656 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6672 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6688 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6704 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6720 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6736 - image: "usingLineEdit.7.png" - } - Frame { - msec: 6752 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6768 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6784 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Key { - type: 6 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6800 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Key { - type: 7 - key: 16777234 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6816 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6832 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6848 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6864 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6880 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6896 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6912 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6928 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Frame { - msec: 6944 - hash: "cf2ccad24e42d8764c1395e076f3a0df" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6960 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Frame { - msec: 6976 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Frame { - msec: 6992 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Frame { - msec: 7008 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7024 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Frame { - msec: 7040 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Frame { - msec: 7056 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Frame { - msec: 7072 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Frame { - msec: 7088 - hash: "43217b3192aea23b17e2a2e7d820def8" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7104 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7120 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7136 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7152 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7168 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7184 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7200 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7216 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7232 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7248 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Frame { - msec: 7264 - hash: "02dceb1b71d82bfbea5fcfb630fef22d" - } - Key { - type: 6 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7280 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7296 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7312 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7328 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7344 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Key { - type: 7 - key: 16777236 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7360 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7376 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7392 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7408 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7424 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7440 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7456 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7472 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7488 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7504 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7520 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Key { - type: 7 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7536 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7552 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7568 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7584 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7600 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7616 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7632 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7648 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7664 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7680 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7696 - image: "usingLineEdit.8.png" - } - Frame { - msec: 7712 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7728 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7744 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7760 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7776 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7792 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7808 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7824 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7840 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7856 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7872 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7888 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7904 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7920 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7936 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7952 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7968 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 7984 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8000 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8016 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8032 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8048 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8064 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8080 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8096 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8112 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8128 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8144 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8160 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8176 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8192 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8208 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8224 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8240 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8256 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8272 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8288 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8304 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8320 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8336 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8352 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8368 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8384 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8400 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8416 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8432 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8448 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8464 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8480 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Frame { - msec: 8496 - hash: "cff8ff96fe5f67faac7a04805d2a945b" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 61; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8512 - hash: "b901d339089fccecd217f562e3b0253a" - } - Frame { - msec: 8528 - hash: "b901d339089fccecd217f562e3b0253a" - } - Frame { - msec: 8544 - hash: "b901d339089fccecd217f562e3b0253a" - } - Frame { - msec: 8560 - hash: "b901d339089fccecd217f562e3b0253a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 60; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8576 - hash: "b901d339089fccecd217f562e3b0253a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8592 - hash: "8173ad74ad73a8061af3edb8322b3e28" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8608 - hash: "8173ad74ad73a8061af3edb8322b3e28" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 32; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8624 - hash: "a470057b75a1aade3945dbb61526ae50" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 31; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 30; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8640 - hash: "a470057b75a1aade3945dbb61526ae50" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 29; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8656 - image: "usingLineEdit.9.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 28; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8672 - hash: "74c1edc228a7c4ba1c0adab9ed7dd086" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 26; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8688 - hash: "74c1edc228a7c4ba1c0adab9ed7dd086" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 25; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 24; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8704 - hash: "74c1edc228a7c4ba1c0adab9ed7dd086" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 22; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8720 - hash: "74c1edc228a7c4ba1c0adab9ed7dd086" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 20; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 19; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8736 - hash: "11e31d23d38f163c2c28ca042af7f9f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 18; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8752 - hash: "11e31d23d38f163c2c28ca042af7f9f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 15; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8768 - hash: "11e31d23d38f163c2c28ca042af7f9f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 14; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 13; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8784 - hash: "11e31d23d38f163c2c28ca042af7f9f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 12; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 11; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8800 - hash: "045f891731548aae37090e0cefb62170" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 10; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 8; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8816 - hash: "045f891731548aae37090e0cefb62170" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 6; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 5; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8832 - hash: "3b6f55bc49e7e326e40b0f3faae71a8b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 3; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 2; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8848 - hash: "abc04cd8ca8759f981f8e2c3b30a33ac" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 0; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -1; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8864 - hash: "f96cc6aa0a38639146d8d691d699946b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -2; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -3; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8880 - hash: "483743419cee348e8f6e24fd1e900ae6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -5; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -6; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8896 - hash: "50292f48ceeaee5f55795aea736631d0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -7; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -9; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8912 - hash: "9739b19d1496baabad1a01cf35c90374" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -10; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -11; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8928 - hash: "bcf1719dc1ec19d3cca83e41ffd4ba0d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -12; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -13; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8944 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -14; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -15; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8960 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 8976 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -16; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -17; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8992 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -18; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9008 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9024 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9040 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9056 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9072 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9088 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9104 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9120 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9136 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9152 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9168 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9184 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Frame { - msec: 9200 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -17; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9216 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -16; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9232 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -14; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -13; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9248 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -11; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -10; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9264 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -8; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -7; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9280 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -6; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -5; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9296 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -3; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: -1; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9312 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 1; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 3; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9328 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 4; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 6; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9344 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 7; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 8; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9360 - hash: "192a6cf285d42c7a2996bf0342e69c97" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 10; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 11; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9376 - hash: "b79a6b6b2a670212a0f4310323352862" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 12; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 14; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9392 - hash: "b79a6b6b2a670212a0f4310323352862" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 15; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9408 - hash: "b79a6b6b2a670212a0f4310323352862" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 21; y: 30 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 24; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9424 - hash: "82ad8cef2dc81cf061785c211f1b2233" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 31 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 30; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9440 - hash: "dc5c2e4ac2c51ac7b84a527a77313ff5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 35; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9456 - hash: "dc5c2e4ac2c51ac7b84a527a77313ff5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 38; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 39; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9472 - hash: "dceeee37f46351f54a6dbf9e1d304017" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9488 - hash: "dceeee37f46351f54a6dbf9e1d304017" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9504 - hash: "b5b370f86804d875363c8aa9fa53c0fe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 51; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9520 - hash: "b5b370f86804d875363c8aa9fa53c0fe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9536 - hash: "b5b370f86804d875363c8aa9fa53c0fe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9552 - hash: "8ae0e57709d94c27ecf34f9e76623ba8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 61; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9568 - hash: "8ae0e57709d94c27ecf34f9e76623ba8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 67; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9584 - hash: "a29b5440525c9fbed90096f287396c91" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 74; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9600 - hash: "d1091d48e0875fec9372c382c6961562" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 76; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9616 - image: "usingLineEdit.10.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 77; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 78; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9632 - hash: "d1091d48e0875fec9372c382c6961562" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 79; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9648 - hash: "d1091d48e0875fec9372c382c6961562" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 81; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 84; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9664 - hash: "e1ac646b512dec95946fb52811c269da" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 85; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 88; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9680 - hash: "29dfbe2f8ecee4ff5ecdf358a94f35f8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 89; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9696 - hash: "2ce02f81e21d4f9a3fd8d78fc8182898" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 92; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 94; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9712 - hash: "09e41ca9d2286e99cdecb446a33cbf99" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9728 - hash: "6d780f15bc7597420fc10b1a2f1c7f7f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 98; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9744 - hash: "afb956a94411eba22a0257faa5cbc57f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9760 - hash: "8739d2d2f9d96f0bce61ce95bf1e6062" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 39 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9776 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 39 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9792 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9808 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9824 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 113; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9840 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9856 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 9872 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9888 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 116; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9904 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9920 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9936 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 9952 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 119; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9968 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 9984 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 121; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10000 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10016 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10032 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10048 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10064 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10080 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10096 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10112 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10128 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10144 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10160 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10176 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10192 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10208 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10224 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10240 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 122; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10256 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10272 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10288 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10304 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10320 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10336 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10352 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10368 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10384 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10400 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10416 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10432 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10448 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10464 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10480 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10496 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10512 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10528 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10544 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10560 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10576 - image: "usingLineEdit.11.png" - } - Frame { - msec: 10592 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10608 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10624 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10640 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10656 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10672 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10688 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10704 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10720 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10736 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10752 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10768 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10784 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10800 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10816 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10832 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10848 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10864 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10880 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10896 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10912 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10928 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10944 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10960 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10976 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 10992 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11008 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11024 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11040 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11056 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11072 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11088 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11104 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11120 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11136 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11152 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11168 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11184 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11200 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11216 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11232 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11248 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } - Frame { - msec: 11264 - hash: "4e2cb8e4cedab8df2ff823e18b17e575" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml deleted file mode 100644 index 81f1bcc..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml +++ /dev/null @@ -1,1551 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 32 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 48 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 64 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 80 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 96 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 112 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 128 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 144 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 160 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 176 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 192 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 208 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 224 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 240 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 256 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 272 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 288 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 304 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 320 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 336 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 352 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 368 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 384 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 400 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 416 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 432 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Frame { - msec: 448 - hash: "65bbc5da769f475d1c47bdedb92ba65e" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 464 - hash: "97eff9733db71f7c5d396969582c572b" - } - Frame { - msec: 480 - hash: "97eff9733db71f7c5d396969582c572b" - } - Frame { - msec: 496 - hash: "97eff9733db71f7c5d396969582c572b" - } - Frame { - msec: 512 - hash: "97eff9733db71f7c5d396969582c572b" - } - Frame { - msec: 528 - hash: "87902d32dba1439e71ce5f57f514748e" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "cad95931a38718eb481a9175fdfec305" - } - Frame { - msec: 560 - hash: "1dc99e5c7e4d2fa6b624b6df250b78fc" - } - Frame { - msec: 576 - hash: "5d5739beb039a83bebb2c41489166edf" - } - Frame { - msec: 592 - hash: "6320c9a1c0013f5aa6180992b934ca59" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 608 - hash: "9d9837c1f3779e5dab0dfeb1d11fdea1" - } - Frame { - msec: 624 - hash: "9d868112eaf70ce02ce93603278a565d" - } - Frame { - msec: 640 - hash: "d2bccb3184d3bb42b91017410a8655b6" - } - Frame { - msec: 656 - hash: "68f8be3e16637fd39a35f0cebb62b74a" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 672 - hash: "04f5781b57ed9fee32d5ef80dc33f4ff" - } - Frame { - msec: 688 - hash: "06cc2e24a848d441074de5ddff1c739a" - } - Frame { - msec: 704 - hash: "94526186deb7248ac9c747ede15b106d" - } - Frame { - msec: 720 - hash: "1ac130517df314f4f44b9bde2d3dcc53" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 736 - hash: "270ecf4900e94d60599ded230633aa02" - } - Frame { - msec: 752 - hash: "ef2093584cbce9182b99f297fcd2465d" - } - Frame { - msec: 768 - hash: "c445cf5f56213a712585934681d8af55" - } - Frame { - msec: 784 - hash: "9f0edb3871e015a549622e1b70d1b748" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 800 - hash: "144c51d7aa47ea8cc8d79a97efa4b430" - } - Frame { - msec: 816 - hash: "34f768a7c99dfb3c8f0e1fb1a08a37ac" - } - Frame { - msec: 832 - hash: "4f3970c4ad02b69f96c11610494e8a50" - } - Frame { - msec: 848 - hash: "815a1cf66f0c9eb47e244753eebb83ba" - } - Frame { - msec: 864 - hash: "5db11f795c000b382fdc30726a711c65" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 880 - hash: "67976ee172d0d55992c0e4734fbb7ccf" - } - Frame { - msec: 896 - hash: "c764e4d5317acbbf5118a08565e5d5fd" - } - Frame { - msec: 912 - hash: "a83f566d01b990e91f43bb63a58fb5b8" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 928 - hash: "031282f352e01f23bc5f73bf8ce82c9a" - } - Frame { - msec: 944 - hash: "1f3dc1d3ad0304376eac5d60d3c226ee" - } - Frame { - msec: 960 - image: "cursorDelegate.0.png" - } - Frame { - msec: 976 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 992 - hash: "7bae45481596788afde8866a3c97edd7" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1008 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 1024 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 1040 - hash: "7bae45481596788afde8866a3c97edd7" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1056 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 1072 - hash: "a2ad07326fafcb3012cdb869f39af466" - } - Frame { - msec: 1088 - hash: "8622eb25a6da44926b5161bce213a483" - } - Frame { - msec: 1104 - hash: "ccbd4d1e4865ebd9b0fe923e6ab05e5c" - } - Frame { - msec: 1120 - hash: "775cd79b012f79b773449a0ad8457149" - } - Key { - type: 6 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1136 - hash: "2a4ed061e512c5afd11072c4b707f707" - } - Frame { - msec: 1152 - hash: "c855df7b17811f25fd17e4fb108c02e1" - } - Frame { - msec: 1168 - hash: "46c37d8e67ece5cae4f766acf50f3ca3" - } - Frame { - msec: 1184 - hash: "95a70f14ce01aae61190080ed3d55c77" - } - Frame { - msec: 1200 - hash: "87da182d1285f3613bb2e4673e701757" - } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1216 - hash: "5b97f13f43e713a6fbe96bdca8969191" - } - Frame { - msec: 1232 - hash: "4d003182e7b7b0a05413b80f82a0fc41" - } - Frame { - msec: 1248 - hash: "dba09e038291a8dfdc61911d6b4b9bdf" - } - Frame { - msec: 1264 - hash: "a2ae1e5cc6cd72fae70804e07df5a8a1" - } - Frame { - msec: 1280 - hash: "f1c2a24b6f0ebcf98122e8db1cdcb66f" - } - Frame { - msec: 1296 - hash: "142dade1639655132435ae260b7935a0" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1312 - hash: "e80c0175d947bceef4bf53b60bf7eac0" - } - Key { - type: 6 - key: 16777248 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1328 - hash: "de912cd8bd2fe762ec6b1ec819732507" - } - Frame { - msec: 1344 - hash: "d3fa9dfab37ee26572d25bcbe8c66b72" - } - Frame { - msec: 1360 - hash: "33bdb2817a2858ce430813d0774f0172" - } - Frame { - msec: 1376 - hash: "4f10f0ffb6b1c87155eedd53af36c74f" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1392 - hash: "1b94be0de8412bd9380689895f290af7" - } - Frame { - msec: 1408 - hash: "48b3a5e2b04c86a75f4b6595eb2c1f55" - } - Frame { - msec: 1424 - hash: "d092fabd3dd51c718486e1e7dadaa0dc" - } - Frame { - msec: 1440 - hash: "243359437235563f1a60b8eaf63365b6" - } - Frame { - msec: 1456 - hash: "a986c8ed8ad2d8b6aab2a001906ba2ad" - } - Frame { - msec: 1472 - hash: "da5e06dc481e9cb7d9159a84d0cc150a" - } - Frame { - msec: 1488 - hash: "1d70a05fce3a05477e21d22b127ae96a" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "913448213a07f6c8427c8e310d2026de" - } - Frame { - msec: 1520 - hash: "51bef5ae52977a935b66af4baf1da4e6" - } - Frame { - msec: 1536 - hash: "367bc25f868c23005d7fe903a9ea681b" - } - Frame { - msec: 1552 - hash: "3c25181652e788d128ed571ca4fea0b1" - } - Frame { - msec: 1568 - hash: "0218f939ff2b8c0bc22a537ed0f053f0" - } - Frame { - msec: 1584 - hash: "a3b765a823b2b3811273a1be90850533" - } - Frame { - msec: 1600 - hash: "2a42a29774eb4f962d299f8c2c213d55" - } - Frame { - msec: 1616 - hash: "1f0ad54d0fe8fc27cadbaaeaa37364e0" - } - Frame { - msec: 1632 - hash: "04d6028d1b1a1178e5bf774db8eef2c6" - } - Frame { - msec: 1648 - hash: "c325e46e89e8df04e2c3d8bf111c5f09" - } - Frame { - msec: 1664 - hash: "70e6223ce16a797e2c56e21ad74b188b" - } - Frame { - msec: 1680 - hash: "0fb8762fd28564b84b83c17d749a3645" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1696 - hash: "ef5d19b59792ea8822e2391fe0d91dbd" - } - Frame { - msec: 1712 - hash: "70ad15030164be8afbb4ab22d1ae5f5f" - } - Frame { - msec: 1728 - hash: "a5dfb8bd4b681e0d8d2c082821a2a976" - } - Frame { - msec: 1744 - hash: "864781fbb8673b1e603df015f2d88601" - } - Frame { - msec: 1760 - hash: "0bdb6a155cdd14f4dce9fde3c5116dde" - } - Frame { - msec: 1776 - hash: "5421f521a9bdccc8478fcee97e0dbc99" - } - Frame { - msec: 1792 - hash: "c5f29693dd017932767f37e2fb2f22f2" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1808 - hash: "b5e8abeaec33407e673f8021212528b1" - } - Frame { - msec: 1824 - hash: "917c968e5ee8f0b25fdb175719d7dbfa" - } - Frame { - msec: 1840 - hash: "56495c63676b9f73004e76e38d60567e" - } - Frame { - msec: 1856 - hash: "86f1ccdd7ff408c5b141d79797eea1fa" - } - Key { - type: 7 - key: 16777248 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1872 - hash: "9e9b32a9f71ab1aa4e87ddc323ccda03" - } - Key { - type: 6 - key: 16777248 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1888 - hash: "360aef37452ce8f045659c227285cb82" - } - Frame { - msec: 1904 - hash: "805949377c620fa4310aa4328eba1f23" - } - Frame { - msec: 1920 - image: "cursorDelegate.1.png" - } - Frame { - msec: 1936 - hash: "00df8110a2008ba77b7e0bf2130e5319" - } - Frame { - msec: 1952 - hash: "835f6f723577071461e41da1fd2e990a" - } - Frame { - msec: 1968 - hash: "6876cafa4d6d3a7d387602eba4d26db1" - } - Frame { - msec: 1984 - hash: "5570ae1e700cdf42ba516be69fbaadc0" - } - Frame { - msec: 2000 - hash: "5570ae1e700cdf42ba516be69fbaadc0" - } - Frame { - msec: 2016 - hash: "5570ae1e700cdf42ba516be69fbaadc0" - } - Frame { - msec: 2032 - hash: "5570ae1e700cdf42ba516be69fbaadc0" - } - Key { - type: 7 - key: 16777249 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2048 - hash: "5570ae1e700cdf42ba516be69fbaadc0" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "6876cafa4d6d3a7d387602eba4d26db1" - } - Frame { - msec: 2080 - hash: "835f6f723577071461e41da1fd2e990a" - } - Frame { - msec: 2096 - hash: "00df8110a2008ba77b7e0bf2130e5319" - } - Frame { - msec: 2112 - hash: "627206a252bd6fcbf57d9f1cde0506bb" - } - Frame { - msec: 2128 - hash: "805949377c620fa4310aa4328eba1f23" - } - Frame { - msec: 2144 - hash: "360aef37452ce8f045659c227285cb82" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "0ac33070e0c736bc0fb5ab12fa444b5c" - } - Frame { - msec: 2176 - hash: "520a544fd92f17a14380803e253b396f" - } - Frame { - msec: 2192 - hash: "4a080a5154c517e6bcf24b3a1f1d7f2c" - } - Frame { - msec: 2208 - hash: "e83642b0793f5a790efca65ccf20a720" - } - Frame { - msec: 2224 - hash: "8210b9cbf19f519ee34f4bb1a6afce16" - } - Frame { - msec: 2240 - hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2256 - hash: "ae2a644f96bd7b2662ebcf4ebc33d930" - } - Frame { - msec: 2272 - hash: "718ac9cb5ef2992b06b34e957f987b7a" - } - Frame { - msec: 2288 - hash: "a2e1dea5e5f37697c7ce1a9419b94f65" - } - Frame { - msec: 2304 - hash: "c0eb56c72311263d892ce65331547531" - } - Frame { - msec: 2320 - hash: "585ad3efb7330de889b8cf56a51a0899" - } - Frame { - msec: 2336 - hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" - } - Frame { - msec: 2352 - hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 - key: 16777248 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "1dddd18a4ef66df9d9b431b2860e24d1" - } - Frame { - msec: 2384 - hash: "5b1b45e75f5a829b31c0b6eb0189da7c" - } - Frame { - msec: 2400 - hash: "062091bc7a5f3296c669614318b80fe7" - } - Frame { - msec: 2416 - hash: "836f37fe92a46233640e0bd2c0932fea" - } - Frame { - msec: 2432 - hash: "f14ec1544a380fc9993b39754c23c2f4" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "2d549b5fea734e47682415df1717e6a6" - } - Frame { - msec: 2464 - hash: "824c5960260dd3ed7527709ebfb06d27" - } - Frame { - msec: 2480 - hash: "258f034fe1e71f25a92e667e05f53e82" - } - Frame { - msec: 2496 - hash: "c432e758e19c44d788cb38df6e4c6d69" - } - Frame { - msec: 2512 - hash: "a1856592208f9a00385b13c44e1c4503" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2528 - hash: "2b4d40a0555df0b86f52d13790185459" - } - Frame { - msec: 2544 - hash: "b153143e6b16c47fa06663dc6b1034d6" - } - Frame { - msec: 2560 - hash: "ac52236c5d73aeae7c0834df1e6bd84e" - } - Frame { - msec: 2576 - hash: "136eeb348b0b96edc9aaf9fbea741973" - } - Frame { - msec: 2592 - hash: "4f8a1dfa8906de2bcdfbf5c3b29fbf9b" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2608 - hash: "7dc9726df2d112b46f4d9dbe66d534c7" - } - Frame { - msec: 2624 - hash: "f64086ca0e83fa8bb0fae28065260fdc" - } - Frame { - msec: 2640 - hash: "5237dd2b79d71bbfa0a0d3963a7f42b7" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2656 - hash: "8dd435b577bb258979d33034885a8cd8" - } - Frame { - msec: 2672 - hash: "2609c066b8f102b4189991bf7d01eaad" - } - Frame { - msec: 2688 - hash: "986fab22391264d04df9a55b18aee645" - } - Frame { - msec: 2704 - hash: "0256423680aa0843fe8ec84f5e68fc9b" - } - Frame { - msec: 2720 - hash: "b822bdcad69aa868f48b2bbf2d62e297" - } - Key { - type: 6 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2736 - hash: "14effed70ca60233be9b2f6d0a1b5e6c" - } - Frame { - msec: 2752 - hash: "1abaf2c36a0fb9f04606c0e191d113cf" - } - Frame { - msec: 2768 - hash: "cffb8ca29b0369d183d6461bf9e63fdf" - } - Frame { - msec: 2784 - hash: "9378bebddb09036bec98ff7018dcf7c1" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "0c3823994ee8f838c26040118ba62622" - } - Frame { - msec: 2816 - hash: "d374547f47adc81a18428c7a79cb9cf2" - } - Frame { - msec: 2832 - hash: "449c2996a2d0e74f2300adad619700bc" - } - Frame { - msec: 2848 - hash: "14379a320b6fc36de5d2a6776f1dc963" - } - Frame { - msec: 2864 - hash: "cb010a99ffa3b6df26c6cd263a21cfcd" - } - Frame { - msec: 2880 - image: "cursorDelegate.2.png" - } - Frame { - msec: 2896 - hash: "a445d23288d462009916e31f370a2068" - } - Frame { - msec: 2912 - hash: "8b3f2811300830e837797056f262bec2" - } - Frame { - msec: 2928 - hash: "2303a27e72334cae84b4fe51a62974ba" - } - Frame { - msec: 2944 - hash: "f3a9f3e74d2d83e38aee78cab7209bd6" - } - Frame { - msec: 2960 - hash: "ca4777127a535655f057af57cf3e8c7b" - } - Frame { - msec: 2976 - hash: "de2b65920fa9177a79019f33712c2275" - } - Frame { - msec: 2992 - hash: "de2b65920fa9177a79019f33712c2275" - } - Frame { - msec: 3008 - hash: "de2b65920fa9177a79019f33712c2275" - } - Frame { - msec: 3024 - hash: "de2b65920fa9177a79019f33712c2275" - } - Frame { - msec: 3040 - hash: "de2b65920fa9177a79019f33712c2275" - } - Frame { - msec: 3056 - hash: "de2b65920fa9177a79019f33712c2275" - } - Frame { - msec: 3072 - hash: "ca4777127a535655f057af57cf3e8c7b" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3088 - hash: "83cfb141f6b77fa062443a442a5b2e9e" - } - Frame { - msec: 3104 - hash: "b3e262864238d03f988c9750cc74e48f" - } - Frame { - msec: 3120 - hash: "6ed2086ae01be46f0684bbecc05484c4" - } - Frame { - msec: 3136 - hash: "91f6dad8f05577af6e4f5f0aceb06b4b" - } - Frame { - msec: 3152 - hash: "1bfb0c299c3c0db0518eaa54137c22b0" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3168 - hash: "37cc96ef4b760faadf76cc471f6ba49a" - } - Frame { - msec: 3184 - hash: "67c848bf93e845eaf5eebc9b8e57482c" - } - Frame { - msec: 3200 - hash: "e3906ad9b1dfbd1170364c11ff4b286f" - } - Frame { - msec: 3216 - hash: "24dd59673c5659e3bf6f52723e1bcd07" - } - Frame { - msec: 3232 - hash: "4b694f05f147bcf901a16807d4e3ec7c" - } - Frame { - msec: 3248 - hash: "9d9dbf34f6a67a49210caa249b8a1abb" - } - Key { - type: 6 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3264 - hash: "5381cde4763aa45c97793124e42db6f5" - } - Frame { - msec: 3280 - hash: "0f113c0263faa47428c4d16891ac4d4f" - } - Frame { - msec: 3296 - hash: "cc1767ec13803959333cd35bfb2d9119" - } - Frame { - msec: 3312 - hash: "ec1b4c71f9bd63ccf6d766b0b2f68b30" - } - Frame { - msec: 3328 - hash: "114ad78597ede2afc4dd8bafa1d4df21" - } - Frame { - msec: 3344 - hash: "d08dc22ddc707316483f09b796ea0380" - } - Frame { - msec: 3360 - hash: "135b2b0f4e469b207e673d1e7086cd4f" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3376 - hash: "4267354fe0d24597bdb5ee1a6e9affbb" - } - Frame { - msec: 3392 - hash: "700bd56ecea646bbec2017007bbb5b84" - } - Frame { - msec: 3408 - hash: "874a65c2069f4ba89301c129f884f217" - } - Frame { - msec: 3424 - hash: "b5ec22f95abb43c83533f7dc606667f6" - } - Frame { - msec: 3440 - hash: "445de6663e80d1fe1527ec5acf4ec1de" - } - Frame { - msec: 3456 - hash: "87c129a5bf08536d3fca90375283e26b" - } - Frame { - msec: 3472 - hash: "a63e2438a9cd412c2b119cd42b11009f" - } - Frame { - msec: 3488 - hash: "61a3475bef5fd276b836cf3483526f57" - } - Frame { - msec: 3504 - hash: "097ab9a1a1fe9743f162f57b93599fe7" - } - Key { - type: 7 - key: 16777249 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3520 - hash: "ebae1fb540c6ff6b0bc9a951391e2e94" - } - Frame { - msec: 3536 - hash: "ffc2da2e4c091eadaa9746b42b56d9e4" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3552 - hash: "f243d823fc9977e69a008010d8db8a01" - } - Frame { - msec: 3568 - hash: "592ac5bbf1c4b3a360be4d76c40a2be2" - } - Frame { - msec: 3584 - hash: "bd5b206097f30dfce884a8c74856857d" - } - Frame { - msec: 3600 - hash: "f14ec1544a380fc9993b39754c23c2f4" - } - Frame { - msec: 3616 - hash: "836f37fe92a46233640e0bd2c0932fea" - } - Frame { - msec: 3632 - hash: "062091bc7a5f3296c669614318b80fe7" - } - Frame { - msec: 3648 - hash: "5b1b45e75f5a829b31c0b6eb0189da7c" - } - Frame { - msec: 3664 - hash: "1dddd18a4ef66df9d9b431b2860e24d1" - } - Frame { - msec: 3680 - hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" - } - Frame { - msec: 3696 - hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" - } - Frame { - msec: 3712 - hash: "585ad3efb7330de889b8cf56a51a0899" - } - Frame { - msec: 3728 - hash: "c0eb56c72311263d892ce65331547531" - } - Frame { - msec: 3744 - hash: "a2e1dea5e5f37697c7ce1a9419b94f65" - } - Frame { - msec: 3760 - hash: "718ac9cb5ef2992b06b34e957f987b7a" - } - Frame { - msec: 3776 - hash: "ae2a644f96bd7b2662ebcf4ebc33d930" - } - Frame { - msec: 3792 - hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" - } - Frame { - msec: 3808 - hash: "8210b9cbf19f519ee34f4bb1a6afce16" - } - Frame { - msec: 3824 - hash: "e83642b0793f5a790efca65ccf20a720" - } - Frame { - msec: 3840 - image: "cursorDelegate.3.png" - } - Frame { - msec: 3856 - hash: "520a544fd92f17a14380803e253b396f" - } - Frame { - msec: 3872 - hash: "0ac33070e0c736bc0fb5ab12fa444b5c" - } - Frame { - msec: 3888 - hash: "5ee8c9dc7b238db131b3a078e46a8bbd" - } - Frame { - msec: 3904 - hash: "69720bcca91f99f229aebc74c5e74261" - } - Frame { - msec: 3920 - hash: "41d8f4031223f7c833d50208e231964a" - } - Frame { - msec: 3936 - hash: "6fa8fd3252f367f3fafea4e3c7317a48" - } - Frame { - msec: 3952 - hash: "8a1b63c42867f87a1cf4b47944b3860a" - } - Frame { - msec: 3968 - hash: "8c6052eb4cf03d7742a73874d9f15285" - } - Frame { - msec: 3984 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4000 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4016 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4032 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4048 - hash: "7bae45481596788afde8866a3c97edd7" - } - Frame { - msec: 4064 - hash: "8c6052eb4cf03d7742a73874d9f15285" - } - Frame { - msec: 4080 - hash: "8a1b63c42867f87a1cf4b47944b3860a" - } - Frame { - msec: 4096 - hash: "6fa8fd3252f367f3fafea4e3c7317a48" - } - Frame { - msec: 4112 - hash: "41d8f4031223f7c833d50208e231964a" - } - Frame { - msec: 4128 - hash: "69720bcca91f99f229aebc74c5e74261" - } - Frame { - msec: 4144 - hash: "5ee8c9dc7b238db131b3a078e46a8bbd" - } - Frame { - msec: 4160 - hash: "0ac33070e0c736bc0fb5ab12fa444b5c" - } - Frame { - msec: 4176 - hash: "520a544fd92f17a14380803e253b396f" - } - Frame { - msec: 4192 - hash: "4a080a5154c517e6bcf24b3a1f1d7f2c" - } - Frame { - msec: 4208 - hash: "e83642b0793f5a790efca65ccf20a720" - } - Frame { - msec: 4224 - hash: "8210b9cbf19f519ee34f4bb1a6afce16" - } - Frame { - msec: 4240 - hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" - } - Frame { - msec: 4256 - hash: "ae2a644f96bd7b2662ebcf4ebc33d930" - } - Frame { - msec: 4272 - hash: "718ac9cb5ef2992b06b34e957f987b7a" - } - Frame { - msec: 4288 - hash: "a2e1dea5e5f37697c7ce1a9419b94f65" - } - Frame { - msec: 4304 - hash: "c0eb56c72311263d892ce65331547531" - } - Frame { - msec: 4320 - hash: "585ad3efb7330de889b8cf56a51a0899" - } - Frame { - msec: 4336 - hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" - } - Frame { - msec: 4352 - hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" - } - Frame { - msec: 4368 - hash: "1dddd18a4ef66df9d9b431b2860e24d1" - } - Frame { - msec: 4384 - hash: "5b1b45e75f5a829b31c0b6eb0189da7c" - } - Frame { - msec: 4400 - hash: "062091bc7a5f3296c669614318b80fe7" - } - Frame { - msec: 4416 - hash: "836f37fe92a46233640e0bd2c0932fea" - } - Frame { - msec: 4432 - hash: "f14ec1544a380fc9993b39754c23c2f4" - } - Frame { - msec: 4448 - hash: "bd5b206097f30dfce884a8c74856857d" - } - Frame { - msec: 4464 - hash: "592ac5bbf1c4b3a360be4d76c40a2be2" - } - Frame { - msec: 4480 - hash: "f243d823fc9977e69a008010d8db8a01" - } - Frame { - msec: 4496 - hash: "ffc2da2e4c091eadaa9746b42b56d9e4" - } - Frame { - msec: 4512 - hash: "ebae1fb540c6ff6b0bc9a951391e2e94" - } - Frame { - msec: 4528 - hash: "097ab9a1a1fe9743f162f57b93599fe7" - } - Frame { - msec: 4544 - hash: "61a3475bef5fd276b836cf3483526f57" - } - Frame { - msec: 4560 - hash: "a63e2438a9cd412c2b119cd42b11009f" - } - Frame { - msec: 4576 - hash: "87c129a5bf08536d3fca90375283e26b" - } - Frame { - msec: 4592 - hash: "445de6663e80d1fe1527ec5acf4ec1de" - } - Frame { - msec: 4608 - hash: "b5ec22f95abb43c83533f7dc606667f6" - } - Frame { - msec: 4624 - hash: "874a65c2069f4ba89301c129f884f217" - } - Frame { - msec: 4640 - hash: "700bd56ecea646bbec2017007bbb5b84" - } - Frame { - msec: 4656 - hash: "4267354fe0d24597bdb5ee1a6e9affbb" - } - Frame { - msec: 4672 - hash: "135b2b0f4e469b207e673d1e7086cd4f" - } - Frame { - msec: 4688 - hash: "d08dc22ddc707316483f09b796ea0380" - } - Frame { - msec: 4704 - hash: "114ad78597ede2afc4dd8bafa1d4df21" - } - Frame { - msec: 4720 - hash: "ec1b4c71f9bd63ccf6d766b0b2f68b30" - } - Frame { - msec: 4736 - hash: "cc1767ec13803959333cd35bfb2d9119" - } - Frame { - msec: 4752 - hash: "0f113c0263faa47428c4d16891ac4d4f" - } - Frame { - msec: 4768 - hash: "5381cde4763aa45c97793124e42db6f5" - } - Frame { - msec: 4784 - hash: "99940d6744ac1245f82d62f08c371285" - } - Frame { - msec: 4800 - image: "cursorDelegate.4.png" - } - Frame { - msec: 4816 - hash: "77bbed46c7eb023252cdd80d0a15f38a" - } - Frame { - msec: 4832 - hash: "36ee4da72825e96d5f670c94865a30d8" - } - Frame { - msec: 4848 - hash: "c64d56c1b7df0a5c63ab8ff08ae6daf9" - } - Frame { - msec: 4864 - hash: "942e038a3426fa318212a8f245141225" - } - Frame { - msec: 4880 - hash: "c033ebaee12dd8fe953e91160f986c3d" - } - Frame { - msec: 4896 - hash: "07e64024cf7eda082297f6f83dba8067" - } - Frame { - msec: 4912 - hash: "b33cd5bbb90d435dd7ea3ab67bef88ee" - } - Frame { - msec: 4928 - hash: "90712efd7c17b0ad33d2c2c02e9eaa97" - } - Frame { - msec: 4944 - hash: "7e2e55555ee2c7e172e61ddb6365355d" - } - Frame { - msec: 4960 - hash: "87ca0584879b25336a1023ac3252fc9a" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml deleted file mode 100644 index 707734a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.qml +++ /dev/null @@ -1,1043 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 32 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Key { - type: 6 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 48 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 64 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 80 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 96 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 112 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 128 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 144 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 160 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 176 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 192 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 208 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 224 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 240 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 256 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 272 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 288 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 304 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 320 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 336 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Frame { - msec: 352 - hash: "b73bd9c2fef8812591fff9f43b73da13" - } - Key { - type: 6 - key: 74 - modifiers: 33554432 - text: "4a" - autorep: false - count: 1 - } - Frame { - msec: 368 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 384 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 400 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 416 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 432 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Key { - type: 7 - key: 74 - modifiers: 33554432 - text: "4a" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 464 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 480 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 496 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 512 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 528 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 560 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 576 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 592 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 608 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 624 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 640 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 656 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 672 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Frame { - msec: 688 - hash: "e8b6bdc7d552bb13c5dc2f50b8cf1125" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 704 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Frame { - msec: 720 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Frame { - msec: 736 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Frame { - msec: 752 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Frame { - msec: 768 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 784 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Frame { - msec: 800 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Frame { - msec: 816 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Frame { - msec: 832 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Frame { - msec: 848 - hash: "fbc09d695e0b47aae6e977c13f535bfd" - } - Key { - type: 6 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 864 - hash: "a4b81c526a5bf8902fde9b8721980977" - } - Frame { - msec: 880 - hash: "a4b81c526a5bf8902fde9b8721980977" - } - Frame { - msec: 896 - hash: "a4b81c526a5bf8902fde9b8721980977" - } - Key { - type: 7 - key: 67 - modifiers: 0 - text: "63" - autorep: false - count: 1 - } - Frame { - msec: 912 - hash: "a4b81c526a5bf8902fde9b8721980977" - } - Frame { - msec: 928 - hash: "a4b81c526a5bf8902fde9b8721980977" - } - Frame { - msec: 944 - hash: "a4b81c526a5bf8902fde9b8721980977" - } - Frame { - msec: 960 - image: "echoMode.0.png" - } - Frame { - msec: 976 - hash: "a4b81c526a5bf8902fde9b8721980977" - } - Key { - type: 6 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 992 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1008 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1024 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1040 - hash: "d072aebc2314a149a856634786b208a0" - } - Key { - type: 7 - key: 75 - modifiers: 0 - text: "6b" - autorep: false - count: 1 - } - Frame { - msec: 1056 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1072 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1088 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1104 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1120 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1136 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1152 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1168 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1184 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1200 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1216 - hash: "d072aebc2314a149a856634786b208a0" - } - Frame { - msec: 1232 - hash: "d072aebc2314a149a856634786b208a0" - } - Key { - type: 6 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1248 - hash: "94defec2865529f185d02cfcbfe166cc" - } - Frame { - msec: 1264 - hash: "94defec2865529f185d02cfcbfe166cc" - } - Frame { - msec: 1280 - hash: "94defec2865529f185d02cfcbfe166cc" - } - Key { - type: 7 - key: 68 - modifiers: 0 - text: "64" - autorep: false - count: 1 - } - Frame { - msec: 1296 - hash: "94defec2865529f185d02cfcbfe166cc" - } - Frame { - msec: 1312 - hash: "94defec2865529f185d02cfcbfe166cc" - } - Frame { - msec: 1328 - hash: "94defec2865529f185d02cfcbfe166cc" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1344 - hash: "f625a2a82879df96141000e6931d4487" - } - Frame { - msec: 1360 - hash: "f625a2a82879df96141000e6931d4487" - } - Frame { - msec: 1376 - hash: "f625a2a82879df96141000e6931d4487" - } - Frame { - msec: 1392 - hash: "f625a2a82879df96141000e6931d4487" - } - Frame { - msec: 1408 - hash: "f625a2a82879df96141000e6931d4487" - } - Frame { - msec: 1424 - hash: "f625a2a82879df96141000e6931d4487" - } - Frame { - msec: 1440 - hash: "f625a2a82879df96141000e6931d4487" - } - Frame { - msec: 1456 - hash: "f625a2a82879df96141000e6931d4487" - } - Frame { - msec: 1472 - hash: "f625a2a82879df96141000e6931d4487" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 1488 - hash: "f625a2a82879df96141000e6931d4487" - } - Key { - type: 6 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 1504 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Frame { - msec: 1520 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Frame { - msec: 1536 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Frame { - msec: 1552 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Key { - type: 7 - key: 87 - modifiers: 0 - text: "77" - autorep: false - count: 1 - } - Frame { - msec: 1568 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Frame { - msec: 1584 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Frame { - msec: 1600 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Frame { - msec: 1616 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Frame { - msec: 1632 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Frame { - msec: 1648 - hash: "1cf29837a4ea63bbb06c15382680d1b6" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1680 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1696 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1712 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1728 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1744 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1760 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1776 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1792 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 1808 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1824 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1840 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Frame { - msec: 1856 - hash: "6eabb6d168ecc9ac604dcf2db0075380" - } - Key { - type: 6 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 1872 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Frame { - msec: 1888 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Frame { - msec: 1904 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Frame { - msec: 1920 - image: "echoMode.1.png" - } - Key { - type: 7 - key: 76 - modifiers: 0 - text: "6c" - autorep: false - count: 1 - } - Frame { - msec: 1936 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Frame { - msec: 1952 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Frame { - msec: 1968 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Frame { - msec: 1984 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Frame { - msec: 2000 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Frame { - msec: 2016 - hash: "cb2dc1c4fc4e213841b873561f404a4f" - } - Key { - type: 6 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "c2aff1ebdee69cca7dc67a102fce5e8e" - } - Frame { - msec: 2048 - hash: "c2aff1ebdee69cca7dc67a102fce5e8e" - } - Key { - type: 7 - key: 79 - modifiers: 0 - text: "6f" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "c2aff1ebdee69cca7dc67a102fce5e8e" - } - Frame { - msec: 2080 - hash: "c2aff1ebdee69cca7dc67a102fce5e8e" - } - Key { - type: 6 - key: 86 - modifiers: 0 - text: "76" - autorep: false - count: 1 - } - Frame { - msec: 2096 - hash: "c82441813af6ff577687f29f6a09da38" - } - Frame { - msec: 2112 - hash: "c82441813af6ff577687f29f6a09da38" - } - Frame { - msec: 2128 - hash: "c82441813af6ff577687f29f6a09da38" - } - Frame { - msec: 2144 - hash: "c82441813af6ff577687f29f6a09da38" - } - Key { - type: 6 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Key { - type: 7 - key: 86 - modifiers: 0 - text: "76" - autorep: false - count: 1 - } - Frame { - msec: 2160 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Frame { - msec: 2176 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Frame { - msec: 2192 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Frame { - msec: 2208 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Key { - type: 6 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2224 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Key { - type: 7 - key: 69 - modifiers: 0 - text: "65" - autorep: false - count: 1 - } - Frame { - msec: 2240 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Frame { - msec: 2256 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Frame { - msec: 2272 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Frame { - msec: 2288 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Frame { - msec: 2304 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Key { - type: 7 - key: 32 - modifiers: 0 - text: "20" - autorep: false - count: 1 - } - Frame { - msec: 2320 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Frame { - msec: 2336 - hash: "d7da9862980b99e97a1fcd1b5c4c976f" - } - Key { - type: 6 - key: 77 - modifiers: 0 - text: "6d" - autorep: false - count: 1 - } - Frame { - msec: 2352 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Frame { - msec: 2368 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Frame { - msec: 2384 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Frame { - msec: 2400 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Frame { - msec: 2416 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Frame { - msec: 2432 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Key { - type: 7 - key: 77 - modifiers: 0 - text: "6d" - autorep: false - count: 1 - } - Frame { - msec: 2448 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Frame { - msec: 2464 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Frame { - msec: 2480 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Frame { - msec: 2496 - hash: "8f36e26d8685fe55e7a1dd294188f649" - } - Key { - type: 6 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 2512 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2528 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2544 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Key { - type: 7 - key: 89 - modifiers: 0 - text: "79" - autorep: false - count: 1 - } - Frame { - msec: 2560 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2576 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2592 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2608 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2624 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2640 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2656 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2672 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2688 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2704 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2720 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2736 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2752 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2768 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2784 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2800 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2816 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2832 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2848 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2864 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2880 - image: "echoMode.2.png" - } - Frame { - msec: 2896 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2912 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2928 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2944 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2960 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2976 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 2992 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 3008 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 3024 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 3040 - hash: "316f2ba46d059755576e6822dc77afb2" - } - Frame { - msec: 3056 - hash: "316f2ba46d059755576e6822dc77afb2" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.0.png deleted file mode 100644 index 431bed8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.1.png deleted file mode 100644 index 9708b4f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.2.png deleted file mode 100644 index 7034946..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.3.png deleted file mode 100644 index 7c56f00..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.4.png deleted file mode 100644 index 431bed8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.5.png deleted file mode 100644 index 30b7a08..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.6.png deleted file mode 100644 index 54e13cb..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.7.png deleted file mode 100644 index 34c099b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.qml deleted file mode 100644 index de69c6a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/flickableInput.qml +++ /dev/null @@ -1,3279 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "flickableInput.0.png" - } - Frame { - msec: 32 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 48 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 64 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 80 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 96 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 112 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 128 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 144 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 160 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 176 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 192 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 208 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 224 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 240 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 256 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 272 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 288 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 304 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 320 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 336 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 352 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 368 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 384 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 400 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 416 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 432 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 448 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 464 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 480 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 496 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 512 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 528 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 544 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 560 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 576 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 592 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 608 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 624 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 640 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 656 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 672 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 688 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 704 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 720 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 736 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 752 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 768 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 39; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 784 - hash: "6ef5c0ad42aca699271501f9358d3de6" - } - Frame { - msec: 800 - hash: "6ef5c0ad42aca699271501f9358d3de6" - } - Frame { - msec: 816 - hash: "6ef5c0ad42aca699271501f9358d3de6" - } - Frame { - msec: 832 - hash: "6ef5c0ad42aca699271501f9358d3de6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 43; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 848 - hash: "6ef5c0ad42aca699271501f9358d3de6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 864 - hash: "c54c442eb01186dc8d5be7ff7b242aa1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 53; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 880 - hash: "8eb5252ed783eae4dd998ea5a451c6bb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 62; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 68; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 896 - hash: "f80423adedb40b1c9ed88bb171590626" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 73; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 79; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 912 - hash: "afb2d22b60113d05b038fd09b5966151" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 84; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 90; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 928 - hash: "e0a4a243acd0c4f3960ea77fdb5e30c1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 95; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 944 - hash: "24c5185a748dc4b02fdd40fd2d0420ff" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 8 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 8 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 960 - hash: "e271a2cd9847828da3e39c1e618f828a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 7 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 7 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 976 - image: "flickableInput.1.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 127; y: 7 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 6 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 992 - hash: "3f40064784f716ce75ef9390d90a1eac" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 6 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 6 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1008 - hash: "77a95b3d8d4682eb8e613bd86ea7b3c7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 142; y: 5 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 5 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1024 - hash: "308ea214fc63e47141623bc436df0efc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 5 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 150; y: 5 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1040 - hash: "3e0a860238ab282aebd733a92321f86f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 4 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1056 - hash: "ed4c6a18ed003922f5724ebc8e798c6c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 4 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "ed4c6a18ed003922f5724ebc8e798c6c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 4 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 165; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1088 - hash: "90bc837ada7b6cd08028e790b1a87ae2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 4 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 169; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1104 - hash: "90bc837ada7b6cd08028e790b1a87ae2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 4 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1120 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 173; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1136 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1152 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1168 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1184 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1200 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1216 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1232 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1248 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1264 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1280 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1296 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1312 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1328 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1344 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1360 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1376 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 176; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1392 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1408 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1424 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1440 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1456 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1472 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1488 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1504 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1520 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1536 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1552 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1568 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1584 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1600 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 1616 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1632 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1648 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1664 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1680 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1696 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1712 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1728 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1744 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1760 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1776 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1792 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1808 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1824 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1840 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1856 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1872 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1888 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1904 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1920 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1936 - image: "flickableInput.2.png" - } - Frame { - msec: 1952 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1968 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 1984 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 2000 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 2016 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 2032 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 2048 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 2064 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 2080 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 2096 - hash: "44850466b240778a11644fdea11d26d0" - } - Frame { - msec: 2112 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2128 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2144 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2160 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2176 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2192 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2208 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2224 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2240 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2256 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2272 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Frame { - msec: 2288 - hash: "556d042ec98e01fc1bdb0b2a5032a39e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 17; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2304 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 2320 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 2336 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 2352 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 2368 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 2384 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 2400 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 2416 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 10 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2432 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 13 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 14 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2448 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 15 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 17 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2464 - hash: "6865c870740497e31dfeb91e09737206" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 18 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2480 - hash: "541acf0d74762064d970506a40f6600b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2496 - hash: "956939b887f2bb0d45400214685f1fac" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 21 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2512 - hash: "956939b887f2bb0d45400214685f1fac" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 22 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2528 - hash: "3eff05a088e55df16f0b30546ad8c87f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2544 - hash: "3eff05a088e55df16f0b30546ad8c87f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2560 - hash: "5b0488fc2a7f840f73d4fc9d17a5a738" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 27 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2576 - hash: "e17d039213c12708ff378789705e281a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 28 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 29 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2592 - hash: "2e2eaab559d0dd7543c2e6e17e0f7740" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2608 - hash: "49a9baad5178009409e28618a4132544" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2624 - hash: "49a9baad5178009409e28618a4132544" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2640 - hash: "a867fe835626e562d5e060c0b2bc4ea3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 33 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2656 - hash: "1479e0feffdff866bfd14cbbf76017c7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2672 - hash: "1479e0feffdff866bfd14cbbf76017c7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 36 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2688 - hash: "dfa99d1eee5ed8d2913c0e603be3ad0e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2704 - hash: "b55abbe5e7d2c3f5cdaf6dcf5a12c00a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2720 - hash: "46be0cd1b01d80de8e9d8cd78364fdd4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 41 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2736 - hash: "46be0cd1b01d80de8e9d8cd78364fdd4" - } - Frame { - msec: 2752 - hash: "46be0cd1b01d80de8e9d8cd78364fdd4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 17; y: 42 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2768 - hash: "c9ec87a419171b4d6311a36c952eaef1" - } - Frame { - msec: 2784 - hash: "c9ec87a419171b4d6311a36c952eaef1" - } - Frame { - msec: 2800 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2816 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2832 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2848 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2864 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2880 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2896 - image: "flickableInput.3.png" - } - Frame { - msec: 2912 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2928 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2944 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2960 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2976 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 2992 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 3008 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 17; y: 42 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3024 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 3040 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 3056 - hash: "34cb0a13417b38ff6c78a98a128f1b40" - } - Frame { - msec: 3072 - hash: "09201585ad57e87efda13c469e1bc95d" - } - Frame { - msec: 3088 - hash: "09201585ad57e87efda13c469e1bc95d" - } - Frame { - msec: 3104 - hash: "b816b96270a846ed5776e6f53d507eb8" - } - Frame { - msec: 3120 - hash: "6ee997c78cadb4357b30db81acf4ee40" - } - Frame { - msec: 3136 - hash: "abbab9e07614915a49fc8f30242932a7" - } - Frame { - msec: 3152 - hash: "47f0d0fe751a8ad3dd3f6341d76c929d" - } - Frame { - msec: 3168 - hash: "0304cbed0c52d5486df52312898fe81d" - } - Frame { - msec: 3184 - hash: "6ac82afa8805f1bdb4c67a2f1a1aff32" - } - Frame { - msec: 3200 - hash: "4cc6db0a1dbe6c70d5e2dfe60fe70a51" - } - Frame { - msec: 3216 - hash: "cf04ff1b13f5aa36470fd8ae23523153" - } - Frame { - msec: 3232 - hash: "20fcdfd24f21125d61ac45cbe94e48a7" - } - Frame { - msec: 3248 - hash: "e017109961b5e6c6701c3045f284ebf7" - } - Frame { - msec: 3264 - hash: "e017109961b5e6c6701c3045f284ebf7" - } - Frame { - msec: 3280 - hash: "c2a770b8c95959f4abf91420c0a3e8b2" - } - Frame { - msec: 3296 - hash: "6865c870740497e31dfeb91e09737206" - } - Frame { - msec: 3312 - hash: "6865c870740497e31dfeb91e09737206" - } - Frame { - msec: 3328 - hash: "6865c870740497e31dfeb91e09737206" - } - Frame { - msec: 3344 - hash: "6865c870740497e31dfeb91e09737206" - } - Frame { - msec: 3360 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3376 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3392 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3408 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3424 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3440 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3456 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3472 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3488 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3504 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3520 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3536 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3552 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3568 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3584 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3600 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3616 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3632 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3648 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3664 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3680 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3696 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3712 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3728 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3744 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3760 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3776 - hash: "7b10e4abcc38d2359bb253f8477858e6" - } - Frame { - msec: 3792 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3808 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3824 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3840 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3856 - image: "flickableInput.4.png" - } - Frame { - msec: 3872 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3888 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3904 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3920 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3936 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Frame { - msec: 3952 - hash: "a5480e4c53bbd8c58aa2d574c7644871" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 12; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3968 - hash: "b6dd7639973f6ee654a7ab6dec2fabbe" - } - Frame { - msec: 3984 - hash: "b6dd7639973f6ee654a7ab6dec2fabbe" - } - Frame { - msec: 4000 - hash: "b6dd7639973f6ee654a7ab6dec2fabbe" - } - Frame { - msec: 4016 - hash: "b6dd7639973f6ee654a7ab6dec2fabbe" - } - Frame { - msec: 4032 - hash: "b6dd7639973f6ee654a7ab6dec2fabbe" - } - Frame { - msec: 4048 - hash: "b6dd7639973f6ee654a7ab6dec2fabbe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 13; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4064 - hash: "b6dd7639973f6ee654a7ab6dec2fabbe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 16; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 20; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4080 - hash: "b6dd7639973f6ee654a7ab6dec2fabbe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 23; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 27; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4096 - hash: "ab2ea5988d2b3288d3c57369f68933dc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 31; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 36; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4112 - hash: "986834600427959d170d547a1c5ecce0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 41; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 47; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4128 - hash: "52847e87c1fef2d7357c86abb0944df4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 52; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 58; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4144 - hash: "bc68a47163712646cf8439459fb0d100" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 62; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 66; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4160 - hash: "9e9f66e9545c77a2e7ee02d46acd102e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 72; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 76; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4176 - hash: "4e9e7500185499c5a5f9d65e0e9406a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 80; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 83; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4192 - hash: "550d6c645bf694c544734d67e2ae5ac3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 87; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 90; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4208 - hash: "0736bab3f9c1cec0f944003bebe3d499" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 94; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 97; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4224 - hash: "efffb9f6d6a7dacf297530b1cb68a713" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4240 - hash: "d5458a8dd8a9bf22e67439c9d8d9c366" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4256 - hash: "2d30acf6dc0e186577bd6f7ce858ab92" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 115; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4272 - hash: "e1a926cc5f7a49c9320a8d49c8a1bb3f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 120; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4288 - hash: "cfc9c0bca9e269887ad5c67cc684b753" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 122; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4304 - hash: "7b561e04ef93399460eb3b4b850c3cab" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 126; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 127; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4320 - hash: "1c17d036e08b24b47239f9a38df3d87d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 128; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4336 - hash: "3ec95ad7622048b68a53cfd3fdeac999" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 133; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4352 - hash: "1e20084ed70b7423885a2d0f06fba660" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 134; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4368 - hash: "f19e136b3c3d57d8b8e63c64b17c29e4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4384 - hash: "f19e136b3c3d57d8b8e63c64b17c29e4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4400 - hash: "894d439a8463cf460e5a66fdcf51a1b5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4416 - hash: "894d439a8463cf460e5a66fdcf51a1b5" - } - Frame { - msec: 4432 - hash: "894d439a8463cf460e5a66fdcf51a1b5" - } - Frame { - msec: 4448 - hash: "894d439a8463cf460e5a66fdcf51a1b5" - } - Frame { - msec: 4464 - hash: "03c99addee96254d19db72746f1bef11" - } - Frame { - msec: 4480 - hash: "03c99addee96254d19db72746f1bef11" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4496 - hash: "cb087b0af44fd7e767b3ff5da1f49790" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 142; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4512 - hash: "8c36fa6a9c8bfb66e272c8628aec7077" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4528 - hash: "971154dba58b18b1d82999f5b6a40cc1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4544 - hash: "253397b603f99f7d092dda82d794e944" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4560 - hash: "f8ded9e6f36a35a73fbe2264321838ca" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4576 - hash: "83b9cec7bbe65ba9d68b089211296116" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4592 - hash: "525ffec3a2d2a7a9e0c82f2c98b09ea0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4608 - hash: "c4fb902f66abebb6b7c3489a073e17d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 172; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 173; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4624 - hash: "0f4526d9f840c0a95e9d145c9822d6e1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4640 - hash: "db00d1ba5c8416b3418e9e5ca65be5ea" - } - Frame { - msec: 4656 - hash: "db00d1ba5c8416b3418e9e5ca65be5ea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4672 - hash: "db00d1ba5c8416b3418e9e5ca65be5ea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4688 - hash: "d6f7a50416c3805aeafbdf55905e8276" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4704 - hash: "d6f7a50416c3805aeafbdf55905e8276" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 178; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "7586c3d3f46eba4a1abe2fe223e7fde2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 179; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4736 - hash: "7586c3d3f46eba4a1abe2fe223e7fde2" - } - Frame { - msec: 4752 - hash: "7586c3d3f46eba4a1abe2fe223e7fde2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4768 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4784 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4800 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4816 - image: "flickableInput.5.png" - } - Frame { - msec: 4832 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4848 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4864 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4880 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4896 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4912 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4928 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4944 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 4960 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 4976 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 4992 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5008 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5024 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5040 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5056 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5072 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5088 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5104 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5120 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5136 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5152 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5168 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5184 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5200 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5216 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5232 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5248 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5264 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5280 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5296 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5312 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5328 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5344 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5360 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5376 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5392 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5408 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5424 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5440 - hash: "9fcd1fb769766e6019fd7e85cd3e05dc" - } - Frame { - msec: 5456 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 5472 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 5488 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 5504 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 5520 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Frame { - msec: 5536 - hash: "4f63c550ebf5c52fe55558310b366b11" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5552 - hash: "d6f7a50416c3805aeafbdf55905e8276" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5568 - hash: "db00d1ba5c8416b3418e9e5ca65be5ea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5584 - hash: "c4fb902f66abebb6b7c3489a073e17d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5600 - hash: "04c6accf277b5bca4c53c1817f85bafe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5616 - hash: "8eb14964fea798ceccc150310a12fd4b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5632 - hash: "83b9cec7bbe65ba9d68b089211296116" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5648 - hash: "e59ae71a5636c48e6befa305eba76ec8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5664 - hash: "73e178775ee01d28cf03378f267753b1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 150; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5680 - hash: "253397b603f99f7d092dda82d794e944" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5696 - hash: "971154dba58b18b1d82999f5b6a40cc1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5712 - hash: "5bd30e73b37592c06f735541f802f367" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 142; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5728 - hash: "cb087b0af44fd7e767b3ff5da1f49790" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5744 - hash: "03c99addee96254d19db72746f1bef11" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5760 - hash: "0f76d8a89e383e7e742a3d194d770061" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 133; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - image: "flickableInput.6.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 129; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 127; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5792 - hash: "f047f32822850b2c0fee18b4a8f8a96a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 121; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5808 - hash: "160c8c8447a469291fc2f87c2b6c97ce" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 119; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 116; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5824 - hash: "4a9d610f3fa37336c0cab7b4e575713b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "5a00b185983ad89bcf1ceb036c424dd4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "a578449e7df3994d0806f7ee2e5a7815" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "445cb1ae1934659c3c8b5800bc30fc74" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 26 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "ad22110876a867ca80530ca6d132dfe3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 105; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "7a644a888de5691c69543699229ec8ca" - } - Frame { - msec: 5920 - hash: "7a644a888de5691c69543699229ec8ca" - } - Frame { - msec: 5936 - hash: "41c14cc9ea05712aea8d1feb18ca85f3" - } - Frame { - msec: 5952 - hash: "921d476813711e64b9c2272aeff3ed40" - } - Frame { - msec: 5968 - hash: "2dad691263389dce74c99530f188cd20" - } - Frame { - msec: 5984 - hash: "b426ff8ba6d1c52974b117fb8b912b76" - } - Frame { - msec: 6000 - hash: "bbcae0d0547e1cfe9a4db1a6f86bf4b6" - } - Frame { - msec: 6016 - hash: "b8e54bc1a48d7a225cce25c3735c2933" - } - Frame { - msec: 6032 - hash: "b59e0f6eea3c41cedb10ac7a7e2629ef" - } - Frame { - msec: 6048 - hash: "48add89789f9d1be82aedeecf6fda362" - } - Frame { - msec: 6064 - hash: "3cf7a035a5b7dbc81c3da5e99efa5024" - } - Frame { - msec: 6080 - hash: "ff9c7173f7138e273cdbdfa8c6f5fedf" - } - Frame { - msec: 6096 - hash: "bc5e19862dfb38e687d1bfc37690a3b8" - } - Frame { - msec: 6112 - hash: "6ff97512731fd97d3c540245ffff6205" - } - Frame { - msec: 6128 - hash: "290e8c8bf51ced134e965f72a868e467" - } - Frame { - msec: 6144 - hash: "3a63687a5179896572be2e1e0d00766f" - } - Frame { - msec: 6160 - hash: "80f8d13272a23e8816ef45fbbef922fe" - } - Frame { - msec: 6176 - hash: "7888e0ece9522f751417944855824be8" - } - Frame { - msec: 6192 - hash: "3d81f8cde15b7d0b009fc9b46a1144e1" - } - Frame { - msec: 6208 - hash: "3d81f8cde15b7d0b009fc9b46a1144e1" - } - Frame { - msec: 6224 - hash: "d19f7d7d94695ca307b59ffdfea497d0" - } - Frame { - msec: 6240 - hash: "d19f7d7d94695ca307b59ffdfea497d0" - } - Frame { - msec: 6256 - hash: "d19f7d7d94695ca307b59ffdfea497d0" - } - Frame { - msec: 6272 - hash: "d19f7d7d94695ca307b59ffdfea497d0" - } - Frame { - msec: 6288 - hash: "d19f7d7d94695ca307b59ffdfea497d0" - } - Frame { - msec: 6304 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6320 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6336 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6352 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6368 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6384 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6400 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6416 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6432 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6448 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6464 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6480 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6496 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6512 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6528 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6544 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6560 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6576 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6592 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6608 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6624 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6640 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6656 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6672 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6688 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6704 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6720 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6736 - image: "flickableInput.7.png" - } - Frame { - msec: 6752 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6768 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6784 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6800 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6816 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6832 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6848 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6864 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6880 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6896 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6912 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6928 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6944 - hash: "399526752d472f9379d3d218d5d3fdf8" - } - Frame { - msec: 6960 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6976 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 6992 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7008 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7024 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7040 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7056 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7072 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7088 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7104 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7120 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7136 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7152 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7168 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7184 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7200 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7216 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7232 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7248 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7264 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7280 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } - Frame { - msec: 7296 - hash: "ef425c131e1c80a6d62d777963f3d08f" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml deleted file mode 100644 index a0351e8..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.qml +++ /dev/null @@ -1,107 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 32 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 48 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 64 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 80 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 96 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 112 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 128 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 144 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 160 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 176 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 192 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 208 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 224 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 240 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 256 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 272 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 288 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 304 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 320 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 336 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 352 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 368 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 384 - hash: "7619ed68aca3544f373777e11a4bfefa" - } - Frame { - msec: 400 - hash: "7619ed68aca3544f373777e11a4bfefa" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml deleted file mode 100644 index 83ec088..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/echoMode.qml +++ /dev/null @@ -1,11 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Item { - height: 50; width: 200 - Column { - //Not an exhaustive echo mode test, that's in QLineEdit (since the functionality is in QLineControl) - TestTextInput { id: main; focus: true; echoMode: TextInput.Password; passwordCharacter: '.' } - TestText { text: main.text } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml deleted file mode 100644 index 7af74ac..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/flickableInput.qml +++ /dev/null @@ -1,21 +0,0 @@ -import QtQuick 1.0 - -Flickable { - width: 200 - height: 50 - contentWidth: 400 - contentHeight: 100 - - Column { - anchors.fill: parent - - TextInput { - selectByMouse: true - text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" - } - TextInput { - selectByMouse: false - text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml deleted file mode 100644 index f36a752..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml +++ /dev/null @@ -1,41 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Item{ - width:600; - height:300; - Column { - //Because they have auto width, these three should look the same - TestTextInput { - text: "Jackdaws love my big sphinx of quartz"; - horizontalAlignment: TextInput.AlignLeft; - } - TestTextInput { - text: "Jackdaws love my big sphinx of quartz"; - horizontalAlignment: TextInput.AlignHCenter; - } - TestTextInput { - text: "Jackdaws love my big sphinx of quartz"; - horizontalAlignment: TextInput.AlignRight; - } - Rectangle{ width: 600; height: 10; color: "pink" } - TestTextInput { - height: 30; - width: 600; - text: "Jackdaws love my big sphinx of quartz"; - horizontalAlignment: TextInput.AlignLeft; - } - TestTextInput { - height: 30; - width: 600; - text: "Jackdaws love my big sphinx of quartz"; - horizontalAlignment: TextInput.AlignHCenter; - } - TestTextInput { - height: 30; - width: 600; - text: "Jackdaws love my big sphinx of quartz"; - horizontalAlignment: TextInput.AlignRight; - } - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml deleted file mode 100644 index 59710a4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/qtbug-15818.qml +++ /dev/null @@ -1,13 +0,0 @@ -import QtQuick 1.1 -//Test that doubleclicking on the front of a word only selects that word, and not the word in front - -Item{ - width: 200 - height: 100 - TextInput{ - anchors.fill: parent - readOnly: true - selectByMouse: true - text: "abc a cba test" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml deleted file mode 100644 index 758717e..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/usingLineEdit.qml +++ /dev/null @@ -1,10 +0,0 @@ -import QtQuick 1.0 - -Rectangle{ - width: 600 - height: 200 - Column { - LineEdit {text: 'Hello world'} - LineEdit {text: 'Hello underwhelmingly verbose world'; width: 80; height: 24;} - } -} diff --git a/tests/auto/declarative/qmlvisual/qmlvisual.pro b/tests/auto/declarative/qmlvisual/qmlvisual.pro deleted file mode 100644 index 63bfa44..0000000 --- a/tests/auto/declarative/qmlvisual/qmlvisual.pro +++ /dev/null @@ -1,37 +0,0 @@ -load(qttest_p4) -contains(QT_CONFIG,declarative): QT += declarative -macx:CONFIG -= app_bundle - -SOURCES += tst_qmlvisual.cpp - -symbian: { - importFiles.path = . - importFiles.files = animation \ - fillmode \ - focusscope \ - ListView \ - qdeclarativeborderimage \ - qdeclarativeflickable \ - qdeclarativeflipable \ - qdeclarativegridview \ - qdeclarativemousearea \ - qdeclarativeparticles \ - qdeclarativepathview \ - qdeclarativepositioners \ - qdeclarativesmoothedanimation \ - qdeclarativespringanimation \ - qdeclarativetext \ - qdeclarativetextedit \ - qdeclarativetextinput \ - rect \ - repeater \ - selftest_noimages \ - DEPLOYMENT += importFiles -} else { - DEFINES += QT_TEST_SOURCE_DIR=\"\\\"$$PWD\\\"\" -} - -CONFIG += parallel_test -QT += core-private gui-private declarative-private - -CONFIG+=insignificant_test diff --git a/tests/auto/declarative/qmlvisual/rect/GradientRect.qml b/tests/auto/declarative/qmlvisual/rect/GradientRect.qml deleted file mode 100644 index 5ac7dcf..0000000 --- a/tests/auto/declarative/qmlvisual/rect/GradientRect.qml +++ /dev/null @@ -1,25 +0,0 @@ -import QtQuick 1.0 - -Item { - id: rect - property color color - property color border : Qt.rgba(0,0,0,0) - property int rotation - property int radius - property int borderWidth - property bool smooth: false - - width: 40; height: 40 - Item { - anchors.centerIn: parent; rotation: rect.rotation; - Rectangle { - anchors.centerIn: parent; width: 40; height: 40 - border.color: rect.border; border.width: rect.border != Qt.rgba(0,0,0,0) ? 2 : 0 - radius: rect.radius; smooth: rect.smooth - gradient: Gradient { - GradientStop { position: 0.0; color: rect.color } - GradientStop { position: 1.0; color: "white" } - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/rect/MyRect.qml b/tests/auto/declarative/qmlvisual/rect/MyRect.qml deleted file mode 100644 index 99226d3..0000000 --- a/tests/auto/declarative/qmlvisual/rect/MyRect.qml +++ /dev/null @@ -1,21 +0,0 @@ -import QtQuick 1.0 - -Item { - id: rect - property color color - property color border : Qt.rgba(0,0,0,0) - property int rotation - property int radius - property int borderWidth - property bool smooth: false - - width: 40; height: 40 - Item { - anchors.centerIn: parent; rotation: rect.rotation; - Rectangle { - anchors.centerIn: parent; width: 40; height: 40 - color: rect.color; border.color: rect.border; border.width: rect.border != Qt.rgba(0,0,0,0) ? 2 : 0 - radius: rect.radius; smooth: rect.smooth - } - } -} diff --git a/tests/auto/declarative/qmlvisual/rect/data/GradientRect.0.png b/tests/auto/declarative/qmlvisual/rect/data/GradientRect.0.png deleted file mode 100644 index 2ca5d28..0000000 Binary files a/tests/auto/declarative/qmlvisual/rect/data/GradientRect.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/rect/data/GradientRect.qml b/tests/auto/declarative/qmlvisual/rect/data/GradientRect.qml deleted file mode 100644 index 116ab2a..0000000 --- a/tests/auto/declarative/qmlvisual/rect/data/GradientRect.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "GradientRect.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/rect/data/MyRect.0.png b/tests/auto/declarative/qmlvisual/rect/data/MyRect.0.png deleted file mode 100644 index 3eb9a8d..0000000 Binary files a/tests/auto/declarative/qmlvisual/rect/data/MyRect.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/rect/data/MyRect.qml b/tests/auto/declarative/qmlvisual/rect/data/MyRect.qml deleted file mode 100644 index 72141c8..0000000 --- a/tests/auto/declarative/qmlvisual/rect/data/MyRect.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "MyRect.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.0.png b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.0.png deleted file mode 100644 index 3556dce..0000000 Binary files a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml deleted file mode 100644 index 9fc073c..0000000 --- a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "rect-painting.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/rect/rect-painting.qml b/tests/auto/declarative/qmlvisual/rect/rect-painting.qml deleted file mode 100644 index 2de414d..0000000 --- a/tests/auto/declarative/qmlvisual/rect/rect-painting.qml +++ /dev/null @@ -1,55 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - width: 450; height: 250 - color: "white" - - Rectangle { - anchors.top: parent.verticalCenter - anchors.left: parent.left - anchors.right: parent.right - anchors.bottom: parent.bottom - color: "#eeeeee" - } - - Grid { - anchors.centerIn: parent - columns: 8; rows:4; spacing: 15 - - MyRect { color: "lightsteelblue" } - MyRect { color: "lightsteelblue"; border: "gray" } - MyRect { color: "lightsteelblue"; radius: 10 } - MyRect { color: "lightsteelblue"; radius: 10; border: "gray" } - GradientRect { color: "lightsteelblue" } - GradientRect { color: "lightsteelblue"; border: "gray" } - GradientRect { color: "lightsteelblue"; radius: 10 } - GradientRect { color: "lightsteelblue"; radius: 10; border: "gray" } - - MyRect { color: "thistle"; rotation: 10 } - MyRect { color: "thistle"; border: "gray"; rotation: 10 } - MyRect { color: "thistle"; radius: 10; rotation: 10 } - MyRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10 } - GradientRect { color: "thistle"; rotation: 10 } - GradientRect { color: "thistle"; border: "gray"; rotation: 10 } - GradientRect { color: "thistle"; radius: 10; rotation: 10 } - GradientRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10 } - - MyRect { color: "lightsteelblue"; smooth: true } - MyRect { color: "lightsteelblue"; border: "gray"; smooth: true } - MyRect { color: "lightsteelblue"; radius: 10; smooth: true } - MyRect { color: "lightsteelblue"; radius: 10; border: "gray"; smooth: true } - GradientRect { color: "lightsteelblue"; smooth: true } - GradientRect { color: "lightsteelblue"; border: "gray"; smooth: true } - GradientRect { color: "lightsteelblue"; radius: 10; smooth: true } - GradientRect { color: "lightsteelblue"; radius: 10; border: "gray"; smooth: true } - - MyRect { color: "thistle"; rotation: 10; smooth: true } - MyRect { color: "thistle"; border: "gray"; rotation: 10; smooth: true } - MyRect { color: "thistle"; radius: 10; rotation: 10; smooth: true } - MyRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10; smooth: true } - GradientRect { color: "thistle"; rotation: 10; smooth: true } - GradientRect { color: "thistle"; border: "gray"; rotation: 10; smooth: true } - GradientRect { color: "thistle"; radius: 10; rotation: 10; smooth: true } - GradientRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10; smooth: true } - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/basic1.qml deleted file mode 100644 index 5d994b9..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/basic1.qml +++ /dev/null @@ -1,31 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "white" - width: 120 - height: 240 - id: page - Column{ - Repeater{ - delegate: Rectangle { - color: "thistle" - width: 100 - height: 100 - Rectangle { - anchors.centerIn: parent - width: 60 - height: 60 - color: name - } - } - model: ListModel { - ListElement { - name: "palegoldenrod" - } - ListElement { - name: "lightsteelblue" - } - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/basic2.qml deleted file mode 100644 index ea14e92..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/basic2.qml +++ /dev/null @@ -1,35 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "white" - width: 120 - height: 240 - id: page - Component { - id: delegate - Rectangle { - color: "thistle" - width: 100 - height: 100 - Rectangle { - anchors.centerIn: parent - width: 60 - height: 60 - color: name - } - } - } - Column{ - Repeater{ - delegate: delegate - model: ListModel { - ListElement { - name: "palegoldenrod" - } - ListElement { - name: "lightsteelblue" - } - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/basic3.qml deleted file mode 100644 index 0193db3..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/basic3.qml +++ /dev/null @@ -1,33 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "white" - width: 120 - height: 240 - id: page - ListModel { - id: model - ListElement { - name: "palegoldenrod" - } - ListElement { - name: "lightsteelblue" - } - } - Column{ - Repeater{ - model: model - delegate: Rectangle { - color: "thistle" - width: 100 - height: 100 - Rectangle { - anchors.centerIn: parent - width: 60 - height: 60 - color: name - } - } - } - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/basic4.qml deleted file mode 100644 index c7c0d29..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/basic4.qml +++ /dev/null @@ -1,37 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "white" - width: 120 - height: 240 - id: page - ListModel { - id: model - ListElement { - name: "palegoldenrod" - } - ListElement { - name: "lightsteelblue" - } - } - Component { - id: delegate - Rectangle { - color: "thistle" - width: 100 - height: 100 - Rectangle { - anchors.centerIn: parent - width: 60 - height: 60 - color: name - } - } - } - Column{ - Repeater{ - model: model - delegate: delegate - } - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic1.0.png b/tests/auto/declarative/qmlvisual/repeater/data/basic1.0.png deleted file mode 100644 index 3e8043a..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data/basic1.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml deleted file mode 100644 index aad4858..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "basic1.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic2.0.png b/tests/auto/declarative/qmlvisual/repeater/data/basic2.0.png deleted file mode 100644 index 3e8043a..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data/basic2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml deleted file mode 100644 index 373ad27..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "basic2.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic3.0.png b/tests/auto/declarative/qmlvisual/repeater/data/basic3.0.png deleted file mode 100644 index 3e8043a..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data/basic3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml deleted file mode 100644 index f5dbf65..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "basic3.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic4.0.png b/tests/auto/declarative/qmlvisual/repeater/data/basic4.0.png deleted file mode 100644 index 3e8043a..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data/basic4.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml deleted file mode 100644 index 5e494d1..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml +++ /dev/null @@ -1,11 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - image: "basic4.0.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml b/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml deleted file mode 100644 index ccadea0..0000000 --- a/tests/auto/declarative/qmlvisual/selftest_noimages/data/selftest_noimages.qml +++ /dev/null @@ -1,356 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - } - Frame { - msec: 32 - } - Frame { - msec: 48 - } - Frame { - msec: 64 - } - Frame { - msec: 80 - } - Frame { - msec: 96 - } - Frame { - msec: 112 - } - Frame { - msec: 128 - } - Frame { - msec: 144 - } - Frame { - msec: 160 - } - Frame { - msec: 176 - } - Frame { - msec: 192 - } - Frame { - msec: 208 - } - Frame { - msec: 224 - } - Frame { - msec: 240 - } - Frame { - msec: 256 - } - Frame { - msec: 272 - } - Frame { - msec: 288 - } - Frame { - msec: 304 - } - Frame { - msec: 320 - } - Frame { - msec: 336 - } - Frame { - msec: 352 - } - Frame { - msec: 368 - } - Frame { - msec: 384 - } - Frame { - msec: 400 - } - Frame { - msec: 416 - } - Frame { - msec: 432 - } - Frame { - msec: 448 - } - Frame { - msec: 464 - } - Frame { - msec: 480 - } - Frame { - msec: 496 - } - Frame { - msec: 512 - } - Frame { - msec: 528 - } - Frame { - msec: 544 - } - Frame { - msec: 560 - } - Frame { - msec: 576 - } - Frame { - msec: 592 - } - Frame { - msec: 608 - } - Frame { - msec: 624 - } - Frame { - msec: 640 - } - Frame { - msec: 656 - } - Frame { - msec: 672 - } - Frame { - msec: 688 - } - Frame { - msec: 704 - } - Frame { - msec: 720 - } - Frame { - msec: 736 - } - Frame { - msec: 752 - } - Frame { - msec: 768 - } - Frame { - msec: 784 - } - Frame { - msec: 800 - } - Frame { - msec: 816 - } - Frame { - msec: 832 - } - Frame { - msec: 848 - } - Frame { - msec: 864 - } - Frame { - msec: 880 - } - Frame { - msec: 896 - } - Frame { - msec: 912 - } - Frame { - msec: 928 - } - Frame { - msec: 944 - } - Frame { - msec: 960 - } - Frame { - msec: 976 - } - Frame { - msec: 992 - } - Frame { - msec: 1008 - } - Frame { - msec: 1024 - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 53; y: 47 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1040 - } - Frame { - msec: 1056 - } - Frame { - msec: 1072 - } - Frame { - msec: 1088 - } - Frame { - msec: 1104 - } - Frame { - msec: 1120 - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 53; y: 47 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1136 - } - Frame { - msec: 1152 - } - Frame { - msec: 1168 - } - Frame { - msec: 1184 - } - Frame { - msec: 1200 - } - Frame { - msec: 1216 - } - Frame { - msec: 1232 - } - Frame { - msec: 1248 - } - Frame { - msec: 1264 - } - Frame { - msec: 1280 - } - Frame { - msec: 1296 - } - Frame { - msec: 1312 - } - Frame { - msec: 1328 - } - Frame { - msec: 1344 - } - Frame { - msec: 1360 - } - Frame { - msec: 1376 - } - Frame { - msec: 1392 - } - Frame { - msec: 1408 - } - Frame { - msec: 1424 - } - Frame { - msec: 1440 - } - Frame { - msec: 1456 - } - Frame { - msec: 1472 - } - Frame { - msec: 1488 - } - Frame { - msec: 1504 - } - Frame { - msec: 1520 - } - Frame { - msec: 1536 - } - Frame { - msec: 1552 - } - Frame { - msec: 1568 - } - Frame { - msec: 1584 - } - Frame { - msec: 1600 - } - Frame { - msec: 1616 - } - Frame { - msec: 1632 - } - Frame { - msec: 1648 - } - Frame { - msec: 1664 - } - Frame { - msec: 1680 - } - Frame { - msec: 1696 - } - Frame { - msec: 1712 - } - Frame { - msec: 1728 - } - Frame { - msec: 1744 - } - Frame { - msec: 1760 - } - Frame { - msec: 1776 - } -} diff --git a/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml b/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml deleted file mode 100644 index 3ef2a66..0000000 --- a/tests/auto/declarative/qmlvisual/selftest_noimages/selftest_noimages.qml +++ /dev/null @@ -1,9 +0,0 @@ -import QtQuick 1.0 -Text { - property string error: "not pressed" - text: (new Date()).valueOf() - MouseArea { - anchors.fill: parent - onPressed: error="" - } -} diff --git a/tests/auto/declarative/qmlvisual/shared/DejaVuSansMono.ttf b/tests/auto/declarative/qmlvisual/shared/DejaVuSansMono.ttf deleted file mode 100644 index 029fcac..0000000 Binary files a/tests/auto/declarative/qmlvisual/shared/DejaVuSansMono.ttf and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/shared/README b/tests/auto/declarative/qmlvisual/shared/README deleted file mode 100644 index 56a88ae..0000000 --- a/tests/auto/declarative/qmlvisual/shared/README +++ /dev/null @@ -1,7 +0,0 @@ -These components provide a standard set of what would otherwise be system dependant settings. These are --default font --default fontSize --cursor blink time (unblinking cursor) - -This should probably be replaced with a Test Style/Theme once QtComponents is done. -Note that having multiple font loaders is probably quite inefficient, so don't use these for performance tests. diff --git a/tests/auto/declarative/qmlvisual/shared/TestText.qml b/tests/auto/declarative/qmlvisual/shared/TestText.qml deleted file mode 100644 index ab624c3..0000000 --- a/tests/auto/declarative/qmlvisual/shared/TestText.qml +++ /dev/null @@ -1,8 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -Text{ - FontLoader { id: fixedFont; source: "DejaVuSansMono.ttf" } - font.family: fixedFont.name - font.pixelSize: 12 -} diff --git a/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml b/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml deleted file mode 100644 index e7c5bc1..0000000 --- a/tests/auto/declarative/qmlvisual/shared/TestTextEdit.qml +++ /dev/null @@ -1,14 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -TextEdit { - id: edit - FontLoader { id: fixedFont; source: "DejaVuSansMono.ttf" } - font.family: fixedFont.name - font.pixelSize: 12 - cursorDelegate: Rectangle { - width: 1; - color: "black"; - visible: edit.cursorVisible - } -} diff --git a/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml b/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml deleted file mode 100644 index 64938e0..0000000 --- a/tests/auto/declarative/qmlvisual/shared/TestTextInput.qml +++ /dev/null @@ -1,14 +0,0 @@ -import QtQuick 1.0 -import "../shared" 1.0 - -TextInput { - id: inp - FontLoader { id: fixedFont; source: "DejaVuSansMono.ttf" } - font.family: fixedFont.name - font.pixelSize: 12 - cursorDelegate: Rectangle { - width: 1; - color: "black"; - visible: parent.cursorVisible//bug that 'inp' doesn't seem to work? - } -} diff --git a/tests/auto/declarative/qmlvisual/shared/qmldir b/tests/auto/declarative/qmlvisual/shared/qmldir deleted file mode 100644 index 4aebb39..0000000 --- a/tests/auto/declarative/qmlvisual/shared/qmldir +++ /dev/null @@ -1,3 +0,0 @@ -TestText 1.0 TestText.qml -TestTextEdit 1.0 TestTextEdit.qml -TestTextInput 1.0 TestTextInput.qml diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp deleted file mode 100644 index 61e1883..0000000 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ /dev/null @@ -1,422 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the test suite of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ -#include -#include -#include -#include -#include -#include -#include -#include - -#ifdef Q_OS_SYMBIAN -// In Symbian OS test data is located in applications private dir -#define QT_TEST_SOURCE_DIR "." -#endif - -enum Mode { Record, RecordNoVisuals, RecordSnapshot, Play, TestVisuals, RemoveVisuals, UpdateVisuals, UpdatePlatformVisuals, Test }; - -static QString testdir; -class tst_qmlvisual : public QObject -{ - Q_OBJECT -public: - tst_qmlvisual(); - - static QString toTestScript(const QString &, Mode=Test); - static QString viewer(); - - static QStringList findQmlFiles(const QDir &d); -private slots: - void visual_data(); - void visual(); - -private: - QString qmlruntime; -}; - - -tst_qmlvisual::tst_qmlvisual() -{ - qmlruntime = viewer(); -} - -QString tst_qmlvisual::viewer() -{ - QString binaries = QLibraryInfo::location(QLibraryInfo::BinariesPath); - - QString qmlruntime; - -#if defined(Q_WS_MAC) - qmlruntime = QDir(binaries).absoluteFilePath("QMLViewer.app/Contents/MacOS/QMLViewer"); -#elif defined(Q_WS_WIN) || defined(Q_WS_S60) - qmlruntime = QDir(binaries).absoluteFilePath("qmlviewer.exe"); -#else - qmlruntime = QDir(binaries).absoluteFilePath("qmlviewer"); -#endif - - return qmlruntime; -} - -void tst_qmlvisual::visual_data() -{ - QTest::addColumn("file"); - QTest::addColumn("testdata"); - - QStringList files; - files << findQmlFiles(QDir(QT_TEST_SOURCE_DIR)); - if (qgetenv("QMLVISUAL_ALL") != "1") { -#if defined(Q_WS_MAC) - //Text on Mac varies per version. Only check the text on 10.6 - if(QSysInfo::MacintoshVersion != QSysInfo::MV_10_6) - foreach(const QString &str, files.filter(QRegExp(".*text.*"))) - files.removeAll(str); -#endif -#if defined(Q_WS_QWS) - //We don't want QWS test results to mire down the CI system - files.clear(); - //Needs at least one test data or it fails anyways - files << QT_TEST_SOURCE_DIR "/selftest_noimages/selftest_noimages.qml"; -#endif - } - - foreach (const QString &file, files) { - QString testdata = toTestScript(file); - if (testdata.isEmpty()) - continue; - - QTest::newRow(file.toLatin1().constData()) << file << testdata; - } -} - -void tst_qmlvisual::visual() -{ - QFETCH(QString, file); - QFETCH(QString, testdata); - - QStringList arguments; -#ifdef Q_WS_MAC - arguments << "-no-opengl"; -#endif - arguments << "-script" << testdata - << "-scriptopts" << "play,testimages,testerror,testskip,exitoncomplete,exitonfailure" - << file; -#ifdef Q_WS_QWS - arguments << "-qws"; -#endif - - QProcess p; - p.start(qmlruntime, arguments); - bool finished = p.waitForFinished(); - QByteArray output = p.readAllStandardOutput() + p.readAllStandardError(); - QVERIFY2(finished, output.data()); - if (p.exitCode() != 0) - qDebug() << output; - QCOMPARE(p.exitStatus(), QProcess::NormalExit); - QCOMPARE(p.exitCode(), 0); -} - -QString tst_qmlvisual::toTestScript(const QString &file, Mode mode) -{ - if (!file.endsWith(".qml")) - return QString(); - - int index = file.lastIndexOf(QDir::separator()); - if (index == -1) - index = file.lastIndexOf('/'); - if (index == -1) - return QString(); - - const char* platformsuffix=0; // platforms with different fonts -#if defined(Q_WS_MACX) - platformsuffix = "-MAC"; -#elif defined(Q_WS_X11) - platformsuffix = "-X11"; -#elif defined(Q_WS_WIN32) - platformsuffix = "-WIN"; -#elif defined(Q_WS_QWS) - platformsuffix = "-QWS"; -#elif defined(Q_WS_S60) - platformsuffix = "-S60"; -#endif - - QString testdata = file.left(index + 1) + - QString("data"); - QString testname = file.mid(index + 1, file.length() - index - 5); - - if (platformsuffix && (mode == UpdatePlatformVisuals || QFile::exists(testdata+QLatin1String(platformsuffix)+QDir::separator()+testname+".qml"))) { - QString platformdir = testdata + QLatin1String(platformsuffix); - if (mode == UpdatePlatformVisuals) { - if (!QDir().mkpath(platformdir)) { - qFatal("Cannot make path %s", qPrintable(platformdir)); - } - // Copy from base - QDir dir(testdata,testname+".*"); - dir.setFilter(QDir::Files); - QFileInfoList list = dir.entryInfoList(); - for (int i = 0; i < list.size(); ++i) { - QFile in(list.at(i).filePath()); - if (!in.open(QIODevice::ReadOnly)) { - qFatal("Cannot open file %s: %s", qPrintable(in.fileName()), qPrintable(in.errorString())); - } - QFile out(platformdir + QDir::separator() + list.at(i).fileName()); - if (!out.open(QIODevice::WriteOnly)) { - qFatal("Cannot open file %s: %s", qPrintable(out.fileName()), qPrintable(out.errorString())); - } - out.write(in.readAll()); - } - } - testdata = platformdir; - } - - testdata += QDir::separator() + testname; - - return testdata; -} - -QStringList tst_qmlvisual::findQmlFiles(const QDir &d) -{ - QStringList rv; - - QStringList files = d.entryList(QStringList() << QLatin1String("*.qml"), - QDir::Files); - foreach (const QString &file, files) { - if (file.at(0).isLower()) { - rv << d.absoluteFilePath(file); - } - } - - QStringList dirs = d.entryList(QDir::Dirs | QDir::NoDotAndDotDot | - QDir::NoSymLinks); - foreach (const QString &dir, dirs) { - if (dir.left(4) == "data") - continue; - - QDir sub = d; - sub.cd(dir); - rv << findQmlFiles(sub); - } - - return rv; -} - -void action(Mode mode, const QString &file) -{ - QString testdata = tst_qmlvisual::toTestScript(file,mode); - - QStringList arguments; -#ifdef Q_WS_MAC - arguments << "-no-opengl"; -#endif - switch (mode) { - case Test: - // Don't run qml - break; - case Record: - arguments << "-script" << testdata - << "-scriptopts" << "record,testimages,saveonexit" - << file; - break; - case RecordNoVisuals: - arguments << "-script" << testdata - << "-scriptopts" << "record,saveonexit" - << file; - break; - case RecordSnapshot: - arguments << "-script" << testdata - << "-scriptopts" << "record,testimages,snapshot,saveonexit" - << file; - break; - case Play: - arguments << "-script" << testdata - << "-scriptopts" << "play,testimages,testerror,testskip,exitoncomplete" - << file; - break; - case TestVisuals: - arguments << "-script" << testdata - << "-scriptopts" << "play" - << file; - break; - case UpdateVisuals: - case UpdatePlatformVisuals: - arguments << "-script" << testdata - << "-scriptopts" << "play,record,testimages,exitoncomplete,saveonexit" - << file; - break; - case RemoveVisuals: - arguments << "-script" << testdata - << "-scriptopts" << "play,record,exitoncomplete,saveonexit" - << file; - break; - } - if (!arguments.isEmpty()) { - QProcess p; - p.setProcessChannelMode(QProcess::ForwardedChannels); - p.start(tst_qmlvisual::viewer(), arguments); - p.waitForFinished(); - } -} - -void usage() -{ - fprintf(stderr, "\n"); - fprintf(stderr, "QML related options\n"); - fprintf(stderr, " -listtests : list all the tests seen by tst_qmlvisual, and then exit immediately\n"); - fprintf(stderr, " -record file : record new test data for file\n"); - fprintf(stderr, " -recordnovisuals file : record new test data for file, but ignore visuals\n"); - fprintf(stderr, " -recordsnapshot file : record new snapshot for file (like record but only records a single frame and then exits)\n"); - fprintf(stderr, " -play file : playback test data for file, printing errors\n"); - fprintf(stderr, " -testvisuals file : playback test data for file, without errors\n"); - fprintf(stderr, " -updatevisuals file : playback test data for file, accept new visuals for file\n"); - fprintf(stderr, " -updateplatformvisuals file : playback test data for file, accept new visuals for file only on current platform (MacOSX/Win32/X11/QWS/S60)\n"); - fprintf(stderr, "\n" - "Visual tests are recordings of manual interactions with a QML test,\n" - "that can then be run automatically. To record a new test, run:\n" - "\n" - " tst_qmlvisual -record yourtestdir/yourtest.qml\n" - "\n" - "This records everything you do (try to keep it short).\n" - "To play back a test, run:\n" - "\n" - " tst_qmlvisual -play yourtestdir/yourtest.qml\n" - "\n" - "Your test may include QML code to test itself, reporting any error to an\n" - "'error' property on the root object - the test will fail if this property\n" - "gets set to anything non-empty.\n" - "\n" - "If your test changes slightly but is still correct (check with -play), you\n" - "can update the visuals by running:\n" - "\n" - " tst_qmlvisual -updatevisuals yourtestdir/yourtest.qml\n" - "\n" - "If your test includes platform-sensitive visuals (eg. text in system fonts),\n" - "you should create platform-specific visuals, using -updateplatformvisuals\n" - "instead.\n" - "\n" - "If you ONLY wish to use the 'error' property, you can record your test with\n" - "-recordnovisuals, or discard existing visuals with -removevisuals; the test\n" - "will then only fail on a syntax error, crash, or non-empty 'error' property.\n" - "\n" - "If your test has anything set to the 'skip' property on the root object then\n" - "test failures will be ignored. This allows for an opt-out of automated\n" - "aggregation of test results. The value of the 'skip' property (usually a\n" - "string) will then be printed to stdout when the test is run as part of the\n" - "message saying the test has been skipped.\n" - ); -} - -int main(int argc, char **argv) -{ - QApplication app(argc, argv); - - Mode mode = Test; - QString file; - bool showHelp = false; - - int newArgc = 1; - char **newArgv = new char*[argc]; - newArgv[0] = argv[0]; - - for (int ii = 1; ii < argc; ++ii) { - QString arg(argv[ii]); - if (arg == "-play" && (ii + 1) < argc) { - mode = Play; - file = argv[++ii]; - } else if (arg == "-record" && (ii + 1) < argc) { - mode = Record; - file = argv[++ii]; - } else if (arg == "-recordnovisuals" && (ii + 1) < argc) { - mode = RecordNoVisuals; - file = argv[++ii]; - } else if (arg == "-recordsnapshot" && (ii + 1) < argc) { - mode = RecordSnapshot; - file = argv[++ii]; - } else if (arg == "-testvisuals" && (ii + 1) < argc) { - mode = TestVisuals; - file = argv[++ii]; - } else if (arg == "-removevisuals" && (ii + 1) < argc) { - mode = RemoveVisuals; - file = argv[++ii]; - } else if (arg == "-updatevisuals" && (ii + 1) < argc) { - mode = UpdateVisuals; - file = argv[++ii]; - } else if (arg == "-updateplatformvisuals" && (ii + 1) < argc) { - mode = UpdatePlatformVisuals; - file = argv[++ii]; - } else { - newArgv[newArgc++] = argv[ii]; - } - - if (arg == "-help" || arg == "-?" || arg == "--help") { - atexit(usage); - showHelp = true; - } - - if (arg == "-listtests") { - QStringList list = tst_qmlvisual::findQmlFiles(QDir(QT_TEST_SOURCE_DIR)); - foreach (QString test, list) { - qWarning() << qPrintable(test); - } - return 0; - } - } - - if (mode == Test || showHelp) { - tst_qmlvisual tc; - return QTest::qExec(&tc, newArgc, newArgv); - } else { - if (!file.endsWith(QLatin1String(".qml"))) { - qWarning() << "Error: Invalid file name (must end in .qml)"; - return -1; - } - QDir d = QDir::current(); - QString absFile = d.absoluteFilePath(file); - if (!QFile::exists(absFile)) { - qWarning() << "Error: File does not exist"; - return -1; - } - - action(mode, absFile); - return 0; - } -} - -#include "tst_qmlvisual.moc"