diff options
author | Bea Lam <bea.lam@nokia.com> | 2009-11-11 02:27:29 (GMT) |
---|---|---|
committer | Bea Lam <bea.lam@nokia.com> | 2009-11-11 02:27:29 (GMT) |
commit | 22fe9474b01c577337e43416666a8f90d0ad6064 (patch) | |
tree | f55624c92fc63db9e9fbba43c07ce5f9df59a25b /tests | |
parent | b8b5ad641a5977651e61b5e572918f90248d8851 (diff) | |
parent | b6b0b5d7f211e10beb76711fcecdf068af34fdfd (diff) | |
download | Qt-22fe9474b01c577337e43416666a8f90d0ad6064.zip Qt-22fe9474b01c577337e43416666a8f90d0ad6064.tar.gz Qt-22fe9474b01c577337e43416666a8f90d0ad6064.tar.bz2 |
Merge branch 'kinetic-declarativeui' of scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'tests')
141 files changed, 8212 insertions, 9240 deletions
diff --git a/tests/auto/declarative/anchors/data/anchors.qml b/tests/auto/declarative/anchors/data/anchors.qml index b3fba30..b880762 100644 --- a/tests/auto/declarative/anchors/data/anchors.qml +++ b/tests/auto/declarative/anchors/data/anchors.qml @@ -97,7 +97,7 @@ Rectangle { id: rect18; objectName: "rect18" x: 180; width: 10 anchors.top: masterRect.bottom - anchors.bottom: Rect12.top + anchors.bottom: rect12.top } Rectangle { id: rect19; objectName: "rect19" diff --git a/tests/auto/declarative/animatedimage/data/colors.gif b/tests/auto/declarative/animatedimage/data/colors.gif Binary files differnew file mode 100644 index 0000000..1270bfa --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/colors.gif diff --git a/tests/auto/declarative/animatedimage/data/colors.qml b/tests/auto/declarative/animatedimage/data/colors.qml new file mode 100644 index 0000000..5bada34 --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/colors.qml @@ -0,0 +1,5 @@ +import Qt 4.6 + +AnimatedImage { + source: "colors.gif" +} diff --git a/tests/auto/declarative/animatedimage/data/stickmanstopped.qml b/tests/auto/declarative/animatedimage/data/stickmanstopped.qml new file mode 100644 index 0000000..53b0c3a --- /dev/null +++ b/tests/auto/declarative/animatedimage/data/stickmanstopped.qml @@ -0,0 +1,6 @@ +import Qt 4.6 + +AnimatedImage { + source: "stickman.gif" + playing: false +} diff --git a/tests/auto/declarative/animatedimage/tst_animatedimage.cpp b/tests/auto/declarative/animatedimage/tst_animatedimage.cpp index 262ddda..484fd1a 100644 --- a/tests/auto/declarative/animatedimage/tst_animatedimage.cpp +++ b/tests/auto/declarative/animatedimage/tst_animatedimage.cpp @@ -44,7 +44,7 @@ #include <QtDeclarative/qmlview.h> #include <private/qmlgraphicsrectangle_p.h> #include <private/qmlgraphicsimage_p.h> -#include <private/qmlgraphicsanimatedimageitem_p.h> +#include <private/qmlgraphicsanimatedimage_p.h> class tst_animatedimage : public QObject { @@ -55,6 +55,7 @@ public: private slots: void play(); void pause(); + void stopped(); void setFrame(); void frameCount(); }; @@ -63,34 +64,61 @@ void tst_animatedimage::play() { QmlEngine engine; QmlComponent component(&engine, QUrl("file://" SRCDIR "/data/stickman.qml")); - QmlGraphicsAnimatedImageItem *anim = qobject_cast<QmlGraphicsAnimatedImageItem *>(component.create()); + QmlGraphicsAnimatedImage *anim = qobject_cast<QmlGraphicsAnimatedImage *>(component.create()); QVERIFY(anim); QVERIFY(anim->isPlaying()); + + delete anim; } void tst_animatedimage::pause() { QmlEngine engine; QmlComponent component(&engine, QUrl("file://" SRCDIR "/data/stickmanpause.qml")); - QmlGraphicsAnimatedImageItem *anim = qobject_cast<QmlGraphicsAnimatedImageItem *>(component.create()); + QmlGraphicsAnimatedImage *anim = qobject_cast<QmlGraphicsAnimatedImage *>(component.create()); QVERIFY(anim); QVERIFY(anim->isPlaying()); QVERIFY(anim->isPaused()); + + delete anim; +} + +void tst_animatedimage::stopped() +{ + QmlEngine engine; + QmlComponent component(&engine, QUrl("file://" SRCDIR "/data/stickmanstopped.qml")); + QmlGraphicsAnimatedImage *anim = qobject_cast<QmlGraphicsAnimatedImage *>(component.create()); + QVERIFY(anim); + QVERIFY(!anim->isPlaying()); + QCOMPARE(anim->currentFrame(), 0); + + delete anim; } void tst_animatedimage::setFrame() { QmlEngine engine; QmlComponent component(&engine, QUrl("file://" SRCDIR "/data/stickmanpause.qml")); - QmlGraphicsAnimatedImageItem *anim = qobject_cast<QmlGraphicsAnimatedImageItem *>(component.create()); + QmlGraphicsAnimatedImage *anim = qobject_cast<QmlGraphicsAnimatedImage *>(component.create()); QVERIFY(anim); QVERIFY(anim->isPlaying()); QCOMPARE(anim->currentFrame(), 2); + + delete anim; } void tst_animatedimage::frameCount() { - // GIF doesn't support frameCount until first pass through + QmlEngine engine; + QmlComponent component(&engine, QUrl("file://" SRCDIR "/data/colors.qml")); + QmlGraphicsAnimatedImage *anim = qobject_cast<QmlGraphicsAnimatedImage *>(component.create()); + QVERIFY(anim); + QVERIFY(anim->isPlaying()); + QCOMPARE(anim->frameCount(), 0); // GIF doesn't support frameCount until first pass through + QTest::qWait(600 + 100); + QCOMPARE(anim->frameCount(), 3); + + delete anim; } QTEST_MAIN(tst_animatedimage) diff --git a/tests/auto/declarative/datetimeformatter/tst_datetimeformatter.cpp b/tests/auto/declarative/datetimeformatter/tst_datetimeformatter.cpp index 5899d8d..e9b4879 100644 --- a/tests/auto/declarative/datetimeformatter/tst_datetimeformatter.cpp +++ b/tests/auto/declarative/datetimeformatter/tst_datetimeformatter.cpp @@ -81,6 +81,8 @@ void tst_datetimeformatter::date() QVERIFY(formatter->timeText().isEmpty()); QVERIFY(formatter->dateTimeText().isEmpty()); + + delete formatter; } void tst_datetimeformatter::time() @@ -111,6 +113,8 @@ void tst_datetimeformatter::time() QVERIFY(formatter->dateText().isEmpty()); QVERIFY(formatter->dateTimeText().isEmpty()); + + delete formatter; } void tst_datetimeformatter::dateTime() @@ -134,6 +138,8 @@ void tst_datetimeformatter::dateTime() formatter->setDateTimeFormat("M/d/yy H:m:s a"); QCOMPARE(formatter->dateTimeFormat(), QLatin1String("M/d/yy H:m:s a")); QCOMPARE(formatter->dateTimeText(),dateTime.toString("M/d/yy H:m:s a")); + + delete formatter; } QTEST_MAIN(tst_datetimeformatter) diff --git a/tests/auto/declarative/declarative.pro b/tests/auto/declarative/declarative.pro index 3106f90..8a3a06c 100644 --- a/tests/auto/declarative/declarative.pro +++ b/tests/auto/declarative/declarative.pro @@ -8,12 +8,9 @@ SUBDIRS += \ debugger \ # Cover examples \ layouts \ # Cover - qmlgraphicslistview \ # Cover - qmlgraphicsgridview \ # Cover numberformatter \ # Cover parserstress \ # Cover pathview \ # Cover - qmlgraphicsloader \ # Cover qmetaobjectbuilder \ # Cover qmlbinding \ # Cover qmlconnection \ # Cover @@ -22,10 +19,13 @@ SUBDIRS += \ qmlecmascript \ # Cover qmlerror \ # Cover qmlfontloader \ # Cover - qmlgraphicsitem \ # Cover qmlgraphicsborderimage \ # Cover qmlgraphicsflickable \ # Cover qmlgraphicsflipable \ # Cover + qmlgraphicsgridview \ # Cover + qmlgraphicsitem \ # Cover + qmlgraphicslistview \ # Cover + qmlgraphicsloader \ # Cover qmlgraphicsparticles \ # Cover qmlgraphicspositioners \ # Cover qmlgraphicstext \ # Cover @@ -36,11 +36,13 @@ SUBDIRS += \ qmllanguage \ # Cover qmllist \ # Cover qmllistaccessor \ # Cover + qmllistmodel \ # Cover qmlmetaproperty \ # Cover qmlmetatype \ # Cover qmlpixmapcache \ # Cover qmlpropertymap \ # Cover qmlqt \ # Cover + qmlspringfollow \ # Cover qmlsystempalette \ # Cover qmltimer \ # Cover qmlxmllistmodel \ # Cover diff --git a/tests/auto/declarative/qmlspringfollow/data/springfollow1.qml b/tests/auto/declarative/qmlspringfollow/data/springfollow1.qml new file mode 100644 index 0000000..959d206 --- /dev/null +++ b/tests/auto/declarative/qmlspringfollow/data/springfollow1.qml @@ -0,0 +1,4 @@ +import Qt 4.6 + +SpringFollow { +} diff --git a/tests/auto/declarative/qmlspringfollow/data/springfollow2.qml b/tests/auto/declarative/qmlspringfollow/data/springfollow2.qml new file mode 100644 index 0000000..7c81fb5 --- /dev/null +++ b/tests/auto/declarative/qmlspringfollow/data/springfollow2.qml @@ -0,0 +1,8 @@ +import Qt 4.6 + +SpringFollow { + source: 1.44; velocity: 0.9 + spring: 1.0; damping: 0.5 + epsilon: 0.25; modulus: 360.0 + mass: 2.0; enabled: true +} diff --git a/tests/auto/declarative/qmlspringfollow/data/springfollow3.qml b/tests/auto/declarative/qmlspringfollow/data/springfollow3.qml new file mode 100644 index 0000000..6fec55b --- /dev/null +++ b/tests/auto/declarative/qmlspringfollow/data/springfollow3.qml @@ -0,0 +1,8 @@ +import Qt 4.6 + +SpringFollow { + source: 1.44; velocity: 0.9 + spring: 1.0; damping: 0.5 + epsilon: 0.25; modulus: 360.0 + mass: 2.0; enabled: false +} diff --git a/tests/auto/declarative/qmlspringfollow/qmlspringfollow.pro b/tests/auto/declarative/qmlspringfollow/qmlspringfollow.pro new file mode 100644 index 0000000..ffaa97f --- /dev/null +++ b/tests/auto/declarative/qmlspringfollow/qmlspringfollow.pro @@ -0,0 +1,8 @@ +load(qttest_p4) +contains(QT_CONFIG,declarative): QT += declarative gui +macx:CONFIG -= app_bundle + +SOURCES += tst_qmlspringfollow.cpp + +# Define SRCDIR equal to test's source directory +DEFINES += SRCDIR=\\\"$$PWD\\\" diff --git a/tests/auto/declarative/qmlspringfollow/tst_qmlspringfollow.cpp b/tests/auto/declarative/qmlspringfollow/tst_qmlspringfollow.cpp new file mode 100644 index 0000000..fe3a53a --- /dev/null +++ b/tests/auto/declarative/qmlspringfollow/tst_qmlspringfollow.cpp @@ -0,0 +1,137 @@ +/**************************************************************************** +** +** Copyright (C) 2009 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 <qtest.h> +#include <QtDeclarative/qmlengine.h> +#include <QtDeclarative/qmlcomponent.h> +#include <private/qmlspringfollow_p.h> +#include <private/qmlvaluetype_p.h> +#include "../../../shared/util.h" + +class tst_qmlspringfollow : public QObject +{ + Q_OBJECT +public: + tst_qmlspringfollow(); + +private slots: + void defaultValues(); + void values(); + void disabled(); + +private: + QmlEngine engine; +}; + +tst_qmlspringfollow::tst_qmlspringfollow() +{ +} + +void tst_qmlspringfollow::defaultValues() +{ + QmlEngine engine; + QmlComponent c(&engine, QUrl("file://" SRCDIR "/data/springfollow1.qml")); + QmlSpringFollow *obj = qobject_cast<QmlSpringFollow*>(c.create()); + + QVERIFY(obj != 0); + + QCOMPARE(obj->sourceValue(), 0.); + QCOMPARE(obj->velocity(), 0.); + QCOMPARE(obj->spring(), 0.); + QCOMPARE(obj->damping(), 0.); + QCOMPARE(obj->epsilon(), 0.01); + QCOMPARE(obj->modulus(), 0.); + QCOMPARE(obj->value(), 0.); + QCOMPARE(obj->mass(), 1.); + QCOMPARE(obj->enabled(), true); + QCOMPARE(obj->inSync(), true); + + delete obj; +} + +void tst_qmlspringfollow::values() +{ + QmlEngine engine; + QmlComponent c(&engine, QUrl("file://" SRCDIR "/data/springfollow2.qml")); + QmlSpringFollow *obj = qobject_cast<QmlSpringFollow*>(c.create()); + + QVERIFY(obj != 0); + + QCOMPARE(obj->sourceValue(), 1.44); + QCOMPARE(obj->velocity(), 0.9); + QCOMPARE(obj->spring(), 1.0); + QCOMPARE(obj->damping(), 0.5); + QCOMPARE(obj->epsilon(), 0.25); + QCOMPARE(obj->modulus(), 360.0); + QCOMPARE(obj->mass(), 2.0); + QCOMPARE(obj->enabled(), true); + + QTRY_COMPARE(obj->value(), 1.44); + QTRY_COMPARE(obj->inSync(), true); + + delete obj; +} + +void tst_qmlspringfollow::disabled() +{ + QmlEngine engine; + QmlComponent c(&engine, QUrl("file://" SRCDIR "/data/springfollow3.qml")); + QmlSpringFollow *obj = qobject_cast<QmlSpringFollow*>(c.create()); + + QVERIFY(obj != 0); + + QCOMPARE(obj->sourceValue(), 1.44); + QCOMPARE(obj->velocity(), 0.9); + QCOMPARE(obj->spring(), 1.0); + QCOMPARE(obj->damping(), 0.5); + QCOMPARE(obj->epsilon(), 0.25); + QCOMPARE(obj->modulus(), 360.0); + QCOMPARE(obj->mass(), 2.0); + QCOMPARE(obj->enabled(), false); + + QCOMPARE(obj->value(), 0.0); + QCOMPARE(obj->inSync(), false); + + delete obj; +} + +QTEST_MAIN(tst_qmlspringfollow) + +#include "tst_qmlspringfollow.moc" diff --git a/tests/auto/declarative/shared/testhttpserver.cpp b/tests/auto/declarative/shared/testhttpserver.cpp new file mode 100644 index 0000000..c7b7f25 --- /dev/null +++ b/tests/auto/declarative/shared/testhttpserver.cpp @@ -0,0 +1,298 @@ +/**************************************************************************** +** +** Copyright (C) 2009 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 "testhttpserver.h" +#include <QTcpSocket> +#include <QDebug> +#include <QFile> +#include <QTimer> + +/*! +\internal +\class TestHTTPServer +\brief provides a very, very basic HTTP server for testing. + +Inside the test case, an instance of TestHTTPServer should be created, with the +appropriate port to listen on. The server will listen on the localhost interface. + +Directories to serve can then be added to server, which will be added as "roots". +Each root can be added as a Normal, Delay or Disconnect root. Requests for files +within a Normal root are returned immediately. Request for files within a Delay +root are delayed for 500ms, and then served. Requests for files within a Disconnect +directory cause the server to disconnect immediately. A request for a file that isn't +found in any root will return a 404 error. + +If you have the following directory structure: + +\code +disconnect/disconnectTest.qml +files/main.qml +files/Button.qml +files/content/WebView.qml +slowFiles/slowMain.qml +\endcode +it can be added like this: +\code +TestHTTPServer server(14445); +server.serveDirectory("disconnect", TestHTTPServer::Disconnect); +server.serveDirectory("files"); +server.serveDirectory("slowFiles", TestHTTPServer::Delay); +\endcode + +The following request urls will then result in the appropriate action: +\table +\header \o URL \o Action +\row \o http://localhost:14445/disconnectTest.qml \o Disconnection +\row \o http://localhost:14445/main.qml \o main.qml returned immediately +\row \o http://localhost:14445/Button.qml \o Button.qml returned immediately +\row \o http://localhost:14445/content/WebView.qml \o content/WebView.qml returned immediately +\row \o http://localhost:14445/slowMain.qml \o slowMain.qml returned after 500ms +\endtable +*/ +TestHTTPServer::TestHTTPServer(quint16 port) +: m_hasFailed(false) +{ + QObject::connect(&server, SIGNAL(newConnection()), this, SLOT(newConnection())); + + server.listen(QHostAddress::LocalHost, port); +} + +bool TestHTTPServer::isValid() const +{ + return server.isListening(); +} + +bool TestHTTPServer::serveDirectory(const QString &dir, Mode mode) +{ + dirs.append(qMakePair(dir, mode)); + return true; +} + +bool TestHTTPServer::wait(const QUrl &expect, const QUrl &reply, const QUrl &body) +{ + m_hasFailed = false; + + QFile expectFile(expect.toLocalFile()); + if (!expectFile.open(QIODevice::ReadOnly)) return false; + + QFile replyFile(reply.toLocalFile()); + if (!replyFile.open(QIODevice::ReadOnly)) return false; + + bodyData = QByteArray(); + if (body.isValid()) { + QFile bodyFile(body.toLocalFile()); + if (!bodyFile.open(QIODevice::ReadOnly)) return false; + bodyData = bodyFile.readAll(); + } + + waitData = expectFile.readAll(); + /* + while (waitData.endsWith('\n')) + waitData = waitData.left(waitData.count() - 1); + */ + + replyData = replyFile.readAll(); + + if (!replyData.endsWith('\n')) + replyData.append("\n"); + replyData.append("Content-length: " + QByteArray::number(bodyData.length())); + replyData .append("\n\n"); + + for (int ii = 0; ii < replyData.count(); ++ii) { + if (replyData.at(ii) == '\n' && (!ii || replyData.at(ii - 1) != '\r')) { + replyData.insert(ii, '\r'); + ++ii; + } + } + replyData.append(bodyData); + + return true; +} + +bool TestHTTPServer::hasFailed() const +{ + return m_hasFailed; +} + +void TestHTTPServer::newConnection() +{ + QTcpSocket *socket = server.nextPendingConnection(); + if (!socket) return; + + if (!dirs.isEmpty()) + dataCache.insert(socket, QByteArray()); + + QObject::connect(socket, SIGNAL(disconnected()), this, SLOT(disconnected())); + QObject::connect(socket, SIGNAL(readyRead()), this, SLOT(readyRead())); +} + +void TestHTTPServer::disconnected() +{ + QTcpSocket *socket = qobject_cast<QTcpSocket *>(sender()); + if (!socket) return; + + dataCache.remove(socket); + for (int ii = 0; ii < toSend.count(); ++ii) { + if (toSend.at(ii).first == socket) { + toSend.removeAt(ii); + --ii; + } + } + socket->deleteLater(); +} + +void TestHTTPServer::readyRead() +{ + QTcpSocket *socket = qobject_cast<QTcpSocket *>(sender()); + if (!socket) return; + + QByteArray ba = socket->readAll(); + + if (!dirs.isEmpty()) { + serveGET(socket, ba); + return; + } + + if (m_hasFailed || waitData.isEmpty()) { + qWarning() << "TestHTTPServer: Unexpected data" << ba; + return; + } + + for (int ii = 0; ii < ba.count(); ++ii) { + const char c = ba.at(ii); + if (c == '\r' && waitData.isEmpty()) + continue; + else if (!waitData.isEmpty() && c == waitData.at(0)) + waitData = waitData.mid(1); + else if (c == '\r') + continue; + else { + QByteArray data = ba.mid(ii); + qWarning() << "TestHTTPServer: Unexpected data" << data; + m_hasFailed = true; + socket->disconnect(); + return; + } + } + + if (waitData.isEmpty()) { + socket->write(replyData); + socket->disconnect(); + } +} + +bool TestHTTPServer::reply(QTcpSocket *socket, const QByteArray &fileName) +{ + for (int ii = 0; ii < dirs.count(); ++ii) { + QString dir = dirs.at(ii).first; + Mode mode = dirs.at(ii).second; + + QString dirFile = dir + QLatin1String("/") + QLatin1String(fileName); + + QFile file(dirFile); + if (file.open(QIODevice::ReadOnly)) { + + if (mode == Disconnect) + return true; + + QByteArray data = file.readAll(); + + QByteArray response = "HTTP/1.0 200 OK\r\nContent-type: text/html; charset=UTF-8\r\nContent-length: "; + response += QByteArray::number(data.count()); + response += "\r\n\r\n"; + response += data; + + if (mode == Delay) { + toSend.append(qMakePair(socket, response)); + QTimer::singleShot(500, this, SLOT(sendOne())); + return false; + } else { + socket->write(response); + return true; + } + } + } + + + QByteArray response = "HTTP/1.0 404 Not found\r\nContent-type: text/html; charset=UTF-8\r\n\r\n"; + socket->write(response); + + return true; +} + +void TestHTTPServer::sendOne() +{ + if (!toSend.isEmpty()) { + toSend.first().first->write(toSend.first().second); + toSend.first().first->close(); + toSend.removeFirst(); + } +} + +void TestHTTPServer::serveGET(QTcpSocket *socket, const QByteArray &data) +{ + if (!dataCache.contains(socket)) + return; + + QByteArray total = dataCache[socket] + data; + dataCache[socket] = total; + + if (total.contains("\n\r\n")) { + + bool close = true; + + if (total.startsWith("GET /")) { + + int space = total.indexOf(' ', 4); + if (space != -1) { + + QByteArray req = total.mid(5, space - 5); + close = reply(socket, req); + + } + } + dataCache.remove(socket); + + if (close) + socket->close(); + } +} + diff --git a/tests/auto/declarative/xmlhttprequest/testhttpserver.h b/tests/auto/declarative/shared/testhttpserver.h index 709532e..62fe7b4 100644 --- a/tests/auto/declarative/xmlhttprequest/testhttpserver.h +++ b/tests/auto/declarative/shared/testhttpserver.h @@ -45,6 +45,7 @@ #include <QObject> #include <QTcpServer> #include <QUrl> +#include <QPair> class TestHTTPServer : public QObject { @@ -54,6 +55,9 @@ public: bool isValid() const; + enum Mode { Normal, Delay, Disconnect }; + bool serveDirectory(const QString &, Mode = Normal); + bool wait(const QUrl &expect, const QUrl &reply, const QUrl &body); bool hasFailed() const; @@ -61,8 +65,16 @@ private slots: void newConnection(); void disconnected(); void readyRead(); + void sendOne(); private: + void serveGET(QTcpSocket *, const QByteArray &); + bool reply(QTcpSocket *, const QByteArray &); + + QList<QPair<QString, Mode> > dirs; + QHash<QTcpSocket *, QByteArray> dataCache; + QList<QPair<QTcpSocket *, QByteArray> > toSend; + QByteArray waitData; QByteArray replyData; QByteArray bodyData; diff --git a/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.0.png b/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.0.png Binary files differindex 6419082..f4a6cfd 100644 --- a/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.0.png +++ b/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.0.png diff --git a/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.1.png b/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.1.png Binary files differindex adf62e7..f4a6cfd 100644 --- a/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.1.png +++ b/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.1.png diff --git a/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.qml b/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.qml index 6654021..900bf5c 100644 --- a/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.qml +++ b/tests/auto/declarative/visual/colorAnimation/data/colorAnimation.qml @@ -170,91 +170,91 @@ VisualTest { } Frame { msec: 608 - hash: "acc736435c9f84aa82941ba561bc5dbc" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 624 - hash: "e5bda0daf98288ce18db6ce06eda3ba0" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 640 - hash: "d35008f75b8c992f80fb16ba7203649d" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 656 - hash: "14f43e0784ddf42ea8550db88c501bf1" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 672 - hash: "02276e158b5391480b1bdeaadf1fb903" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 688 - hash: "35d9513eb97a2c482b7cd197de910934" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 704 - hash: "faf0fd681e60bb2489099f5df772b6cd" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 720 - hash: "a863d3e346f94785a3a392fdc91526eb" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 736 - hash: "fdf328d3f6eb8410da59a91345e41a44" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 752 - hash: "83514a3b10d5be8f6c3b128d0f3e0b1c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 768 - hash: "ead0eae76cd00189075964671effbaea" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 784 - hash: "24d2457fcd51490fda23071bf9929d12" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 800 - hash: "1478683446cf543dacbe31d0b76a98a6" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 816 - hash: "99f7da1f31fe920f6c02add4042ae925" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 832 - hash: "22def892006cf66667770b0f17baf6c0" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 848 - hash: "6a36d5a77099bfd58baf285478ff04e4" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 864 - hash: "6258150666b59b20ab476724c07fc20c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 880 - hash: "f1636315bc950a6dd400d9c7ed263b88" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 896 - hash: "18447ea8dc2e8da956788e5b3cf3790a" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 912 - hash: "1d2a6e65997a73e9e670356c8e8b63b2" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 928 - hash: "bed0242c0f9ef229d1392835286d5782" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 944 - hash: "88923c190e9e5beadef8a409c06df9d6" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 960 @@ -262,239 +262,239 @@ VisualTest { } Frame { msec: 976 - hash: "85b1821cc50f2a9f3ed6944f792b7a2f" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 992 - hash: "395195716d76bc0be7b2033ed37a7a1c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1008 - hash: "243dbffcf416926242bbcb7348974c4c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1024 - hash: "a755068679616d8ac65c2aa7431f2a19" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1040 - hash: "e8249b35a47eb492cbdf2d91cc8426f0" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1056 - hash: "15f3da1c0e6f0779b96859d51171dd27" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1072 - hash: "258c0c756aac3de743b43051f2aace6b" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1088 - hash: "a58b9fdf301d72b2cc5c93934cc8927b" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1104 - hash: "a9181d30870d472521f8904818ce520f" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1120 - hash: "7f9e94069ccf3897c26a71bd7becd903" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1136 - hash: "bdf305c2f46cdb86dbf57b1e0cc5a65b" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1152 - hash: "fe5b6865d7e4fc7d1d42c1e74f8666f7" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1168 - hash: "734f0de45a6e34c9eab7ef606196f96a" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1184 - hash: "02a361c4534fdf7f286dc3e6dc23275c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1200 - hash: "e649155ad69999c14b92f6561e4d1185" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1216 - hash: "01af177084fab755d622973f64b92018" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1232 - hash: "097cc4a082dfab995d213a3a73883c97" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1248 - hash: "d7b4239a3280b1eb8e885e3f422df8e9" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1264 - hash: "59893977994e34e83f91e7ce3ad65d6d" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1280 - hash: "b68e3fbb5cdcd6bd96df7dec558db42b" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1296 - hash: "94ad0580648f36a1e18a9ea7e249b04d" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1312 - hash: "750a4c01d2f5806a89a1c6cc6a9b9a68" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1328 - hash: "4f109f50f388f1bfa4bc6b03b3e6e514" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1344 - hash: "c6168d5cf27a533e8ee636637667be47" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1360 - hash: "f8120547bed987aa34c00da5a01a4d1e" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1376 - hash: "cbff526136fa2c128c8b898fbbef9e5c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1392 - hash: "f29e52398fab1a239a63df4c32f2fc69" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1408 - hash: "7178bfe86fd2fd513218b33760460f8d" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1424 - hash: "ca83285bc8ac633403896fe976896eb0" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1440 - hash: "96ba486c09cc69d5aa38c46c00df1181" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1456 - hash: "b88eab335842787869f4a14824c19dd8" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1472 - hash: "065aa59012729e1e1a246a2083142690" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1488 - hash: "dd0e98c8398861002c5f178c5f9f612d" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1504 - hash: "04192c2b545948048eccf4d81bbde198" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1520 - hash: "bb7502c7208281ef9fd41714ab88a1a8" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1536 - hash: "5397195471890d08b703dca101e5bc7c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1552 - hash: "4c678cdbebb2ffd2cbf012ca77800cde" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1568 - hash: "0d7a34ecd0c7f52b2c015037bf1902c6" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1584 - hash: "fd9d5048be749ac4369fda2d018b43ae" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1600 - hash: "93ee03795cd57ae6f7fe3a020b039ad4" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1616 - hash: "5e1118963f219c39761ca7fbf564a9ca" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1632 - hash: "8f40038741903150136170503649d941" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1648 - hash: "b087b7d0aa6224821f8e18718ff5e77d" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1664 - hash: "aa46b04a3c67dc772265ed2901955565" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1680 - hash: "ac024bf2aeb4becdf31a09fe0a6db8f3" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1696 - hash: "13745a174e4d06e2108a5bf125ba50cc" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1712 - hash: "bd972f0d8e230eca0b3fea1b8c960c08" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1728 - hash: "cbdbec802a58e7ced0cf45b3ab0bc0ba" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1744 - hash: "5128584c50305c7d218b81b8367fa3d5" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1760 - hash: "a71461d3593f3685620668916de870bd" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1776 - hash: "74ebac8f32cf044b58d9883dbcd9a722" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1792 - hash: "fedc5b638f339b90fe59b478721e65b7" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1808 - hash: "bcb8c7159f54c353551dd3bff3203966" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1824 - hash: "4e9b083075bc5e9287a8abc982778b56" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1840 - hash: "1d6f02aa99afa47d77fc49ab894b365a" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1856 - hash: "a204feec783b3b05de4c209c21745826" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1872 - hash: "665a2a8ff00b9663157802767f504754" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1888 - hash: "624fb09ebe60cb87d767faf8d2420b1e" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1904 - hash: "e5af0cdc33f3275a25abb09e9165f310" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1920 @@ -502,171 +502,171 @@ VisualTest { } Frame { msec: 1936 - hash: "e7aa6374c73832e57ceb2427a1e258aa" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1952 - hash: "b5abd0dff1ab076faac7cc226e83f5d0" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1968 - hash: "b759acc35bccff8efc2e6fe276ddc0f7" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 1984 - hash: "ce52e18c1f7732768779863b45314ff5" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2000 - hash: "99d30652559dd6931e0c95543eeaa149" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2016 - hash: "ffbd9a00e05e085b89296d19d5caec57" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2032 - hash: "9c9d658b9c25602816b8066bf19105db" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2048 - hash: "2b7fd058e6601e22a30bb7106b1c683b" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2064 - hash: "f4c7e26b19ee0a3e7c9688685eb7bd05" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2080 - hash: "0dc6d593bceff56b7f81f2a49d37fefb" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2096 - hash: "9bfd7ad5091ccbdde43c593e133a7b10" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2112 - hash: "2703b617937914a90ea42ebf249d79ee" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2128 - hash: "b77e2983138254016c4cca53100f46fa" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2144 - hash: "60c4dd24187d1281081479e586f02b37" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2160 - hash: "62f2511abd99ef1231c9fa4b91d4abfe" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2176 - hash: "e309b3353fd174e883d309571caddc98" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2192 - hash: "1e2d6a134c7b12dde551b148ef4f088c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2208 - hash: "e5dc5450604a491cc24a0dcf5c278b58" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2224 - hash: "c8dae97c10e1962c1e6a51ab3ab8579e" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2240 - hash: "4e1b7e06f55fb084080689b474f1fe1d" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2256 - hash: "b4639c907fa937bf15fac62421170cd8" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2272 - hash: "c250208a0caeb5f6cb4d3aac3d7d350b" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2288 - hash: "a73351eabecf0d71149efe31f197413e" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2304 - hash: "479425f1b7aff79e4dfb7fca534af018" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2320 - hash: "046d0f0040a52d1f26ba9f7c5de06ef4" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2336 - hash: "655778bf13c6080903150b0eb43a7edc" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2352 - hash: "72da0bbe81514870655fdd3354adac60" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2368 - hash: "defe0bdf675c65fff55aaaced1e4dae7" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2384 - hash: "c988628b6c3d3780e9a865c7694926cd" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2400 - hash: "5ab17563655231089edd986ff13d6012" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2416 - hash: "c1adff1d2e5800ed466d1691d3b17382" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2432 - hash: "70129ba01fbb19592b9dc0d0a3b3e7df" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2448 - hash: "0000829ef7ed908bf430d42904d59cc2" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2464 - hash: "843d2927f50ab87b4a86b7a6aaeed91f" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2480 - hash: "da86d21756025e7de8050586d5e2a1f8" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2496 - hash: "48dd1bd6580133b0793fee327ea4f1e6" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2512 - hash: "f0618193dcd0ba2837249515a1898b1c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2528 - hash: "a530184e57251065286c0cbba7301e9c" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2544 - hash: "64a1d7203973d65dd342793007a61c58" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2560 - hash: "5b830dfc6ba442772de87d75d5a578de" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2576 - hash: "5563b056b0409b65f60dd16dd0dd890e" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2592 - hash: "b8bcf9ad2ca8720c11563a23d8280804" + hash: "8c0fcda4f8956394c53fc4ba18caa850" } Frame { msec: 2608 @@ -931,7 +931,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 67108864 + modifiers: 0 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/easing/data/easing.0.png b/tests/auto/declarative/visual/easing/data/easing.0.png Binary files differindex 2f1b5f6..4f75bfd 100644 --- a/tests/auto/declarative/visual/easing/data/easing.0.png +++ b/tests/auto/declarative/visual/easing/data/easing.0.png diff --git a/tests/auto/declarative/visual/easing/data/easing.1.png b/tests/auto/declarative/visual/easing/data/easing.1.png Binary files differindex 59083bd..dc17765 100644 --- a/tests/auto/declarative/visual/easing/data/easing.1.png +++ b/tests/auto/declarative/visual/easing/data/easing.1.png diff --git a/tests/auto/declarative/visual/easing/data/easing.2.png b/tests/auto/declarative/visual/easing/data/easing.2.png Binary files differindex 20c73c8..7f83548 100644 --- a/tests/auto/declarative/visual/easing/data/easing.2.png +++ b/tests/auto/declarative/visual/easing/data/easing.2.png diff --git a/tests/auto/declarative/visual/easing/data/easing.qml b/tests/auto/declarative/visual/easing/data/easing.qml index d5beeef..d8e8688 100644 --- a/tests/auto/declarative/visual/easing/data/easing.qml +++ b/tests/auto/declarative/visual/easing/data/easing.qml @@ -86,255 +86,255 @@ VisualTest { } Frame { msec: 304 - hash: "bb8e2ba14526dc5ad74f74e8ff3d96a5" + hash: "8f4c40d2e2b4f064bcb77c5ae43928c6" } Frame { msec: 320 - hash: "8f4c40d2e2b4f064bcb77c5ae43928c6" + hash: "8b65094a9b7d5394fc67f92ea058627f" } Frame { msec: 336 - hash: "8b65094a9b7d5394fc67f92ea058627f" + hash: "da450826b471a60ba98dabc581631ba1" } Frame { msec: 352 - hash: "da450826b471a60ba98dabc581631ba1" + hash: "e820fb4f1bc97152aa940b07db549f1b" } Frame { msec: 368 - hash: "e820fb4f1bc97152aa940b07db549f1b" + hash: "b7d8186beca2fa0e37099f72419350f4" } Frame { msec: 384 - hash: "b7d8186beca2fa0e37099f72419350f4" + hash: "8500b93774f214e5e4789e25500262b8" } Frame { msec: 400 - hash: "8500b93774f214e5e4789e25500262b8" + hash: "277e1dff70285cca536b3e1fc2590688" } Frame { msec: 416 - hash: "277e1dff70285cca536b3e1fc2590688" + hash: "b05b18f92c2089c681661566117ae0f5" } Frame { msec: 432 - hash: "b05b18f92c2089c681661566117ae0f5" + hash: "6fec9c6b6ac3e3ea4126e3824a8d7566" } Frame { msec: 448 - hash: "6fec9c6b6ac3e3ea4126e3824a8d7566" + hash: "53c6c90dd1eb7ca47721fc116474aebf" } Frame { msec: 464 - hash: "53c6c90dd1eb7ca47721fc116474aebf" + hash: "cf729c4a31414af3d2705878ba615738" } Frame { msec: 480 - hash: "cf729c4a31414af3d2705878ba615738" + hash: "f146b8a68960d507f893ef001189220e" } Frame { msec: 496 - hash: "f146b8a68960d507f893ef001189220e" + hash: "18ff56b870bb048af246f928ee42a9b0" } Frame { msec: 512 - hash: "18ff56b870bb048af246f928ee42a9b0" + hash: "beee98f73fe7e878ada37b3070fa0c1d" } Frame { msec: 528 - hash: "beee98f73fe7e878ada37b3070fa0c1d" + hash: "435d389082912950a0be2b5dff480319" } Frame { msec: 544 - hash: "435d389082912950a0be2b5dff480319" + hash: "dc39b080eaddeaf4e309b90b7d97a835" } Frame { msec: 560 - hash: "dc39b080eaddeaf4e309b90b7d97a835" + hash: "666b1cde53f78d7db9c81e21adbe406a" } Frame { msec: 576 - hash: "666b1cde53f78d7db9c81e21adbe406a" + hash: "c5c9627f4329e48aa96ebfbc982b6ba6" } Frame { msec: 592 - hash: "c5c9627f4329e48aa96ebfbc982b6ba6" + hash: "a583042052e5da7e80a4956337d6d1ff" } Frame { msec: 608 - hash: "a583042052e5da7e80a4956337d6d1ff" + hash: "a4a5df787e15da6f28275a12898e7620" } Frame { msec: 624 - hash: "a4a5df787e15da6f28275a12898e7620" + hash: "02cacec2ccc803ebc03c5540484cbcaa" } Frame { msec: 640 - hash: "02cacec2ccc803ebc03c5540484cbcaa" + hash: "00600df1f006f358feaf43bfae9d32a5" } Frame { msec: 656 - hash: "00600df1f006f358feaf43bfae9d32a5" + hash: "737c884ba0d6d38b66252f4b97a36c33" } Frame { msec: 672 - hash: "737c884ba0d6d38b66252f4b97a36c33" + hash: "7eeeade8100c84a6b56efa51cf597baf" } Frame { msec: 688 - hash: "7eeeade8100c84a6b56efa51cf597baf" + hash: "18ab79d495097f0103dcf14db1897a88" } Frame { msec: 704 - hash: "18ab79d495097f0103dcf14db1897a88" + hash: "21d3b0da00c46a101e09048928cd8027" } Frame { msec: 720 - hash: "21d3b0da00c46a101e09048928cd8027" + hash: "a5995b0341872c275ffbc5aaee6eb853" } Frame { msec: 736 - hash: "a5995b0341872c275ffbc5aaee6eb853" + hash: "bb4a37c1bd5e412ebce54d9539017723" } Frame { msec: 752 - hash: "bb4a37c1bd5e412ebce54d9539017723" + hash: "63dcde9e2751ca94ed7d739feb359221" } Frame { msec: 768 - hash: "63dcde9e2751ca94ed7d739feb359221" + hash: "5790c8407e2e4d1a6a937d86d57d8edb" } Frame { msec: 784 - hash: "5790c8407e2e4d1a6a937d86d57d8edb" + hash: "3a1c77abf6822030db60a036027dc86e" } Frame { msec: 800 - hash: "3a1c77abf6822030db60a036027dc86e" + hash: "2a13c573ab9846cce60384dd7138b2b4" } Frame { msec: 816 - hash: "2a13c573ab9846cce60384dd7138b2b4" + hash: "98983c2525265830033495b61071a5aa" } Frame { msec: 832 - hash: "98983c2525265830033495b61071a5aa" + hash: "26d2bba3d77053b410715afb497d4063" } Frame { msec: 848 - hash: "26d2bba3d77053b410715afb497d4063" + hash: "fd65d954c16acee425d9de65af68ef40" } Frame { msec: 864 - hash: "fd65d954c16acee425d9de65af68ef40" + hash: "094fcc18d28b19ac6b452dd8106d813b" } Frame { msec: 880 - hash: "094fcc18d28b19ac6b452dd8106d813b" + hash: "160105f6f99a960763535e4d51990ef6" } Frame { msec: 896 - hash: "160105f6f99a960763535e4d51990ef6" + hash: "0d5d1e6a66fc1f49f1106f01fb5a1c52" } Frame { msec: 912 - hash: "0d5d1e6a66fc1f49f1106f01fb5a1c52" + hash: "f6abc32680865783a4d94ecb738f9ff6" } Frame { msec: 928 - hash: "f6abc32680865783a4d94ecb738f9ff6" + hash: "350509eceb134d5b18647e5ad07dbb47" } Frame { msec: 944 - hash: "350509eceb134d5b18647e5ad07dbb47" + hash: "a84e4e7c5385dc1f24ca219f45d529a5" } Frame { msec: 960 - image: "/home/wallison/qt/kinetic/tests/auto/declarative/visual/easing/data/easing.0.png" + image: "easing.0.png" } Frame { msec: 976 - hash: "4c9de74276d32c5b2787cf75e612f97d" + hash: "efcc5ae79da3fa2f4c7d6eaa35e32d33" } Frame { msec: 992 - hash: "efcc5ae79da3fa2f4c7d6eaa35e32d33" + hash: "ff4afce604c8ecb4f08d1ddef8552534" } Frame { msec: 1008 - hash: "ff4afce604c8ecb4f08d1ddef8552534" + hash: "e2e63e12e9a5f8459720dd8b023ed17b" } Frame { msec: 1024 - hash: "e2e63e12e9a5f8459720dd8b023ed17b" + hash: "991a01f92bcfa9cd9fe98e3f39d192fc" } Frame { msec: 1040 - hash: "991a01f92bcfa9cd9fe98e3f39d192fc" + hash: "bc3d2f0f3fac650c981457f3694c2518" } Frame { msec: 1056 - hash: "bc3d2f0f3fac650c981457f3694c2518" + hash: "ee39fc9b1a602bf813d9118aa21901ac" } Frame { msec: 1072 - hash: "ee39fc9b1a602bf813d9118aa21901ac" + hash: "42120d098f2adf1e331332b33442dd3e" } Frame { msec: 1088 - hash: "42120d098f2adf1e331332b33442dd3e" + hash: "1660c69b77b800d1ab57b93f0fc12aa5" } Frame { msec: 1104 - hash: "1660c69b77b800d1ab57b93f0fc12aa5" + hash: "0630a3d6b8cb5dece5dc660f05036ec6" } Frame { msec: 1120 - hash: "0630a3d6b8cb5dece5dc660f05036ec6" + hash: "9163f0bd9c5888794d7a09d3359bf1e5" } Frame { msec: 1136 - hash: "9163f0bd9c5888794d7a09d3359bf1e5" + hash: "e0b7ad4883f679948c852ff152ba7907" } Frame { msec: 1152 - hash: "e0b7ad4883f679948c852ff152ba7907" + hash: "f748fc44f99b706e42b899cb18dbaaf7" } Frame { msec: 1168 - hash: "f748fc44f99b706e42b899cb18dbaaf7" + hash: "c84442f0cb1cf0bb50dae7d1c701aaf8" } Frame { msec: 1184 - hash: "c84442f0cb1cf0bb50dae7d1c701aaf8" + hash: "d7b41567e3f3aa9576fe2793872134b7" } Frame { msec: 1200 - hash: "d7b41567e3f3aa9576fe2793872134b7" + hash: "a1d10ff1adb85000902486fc8e4faa8d" } Frame { msec: 1216 - hash: "a1d10ff1adb85000902486fc8e4faa8d" + hash: "44b7b5d77068e360ead3af84e7d80232" } Frame { msec: 1232 - hash: "44b7b5d77068e360ead3af84e7d80232" + hash: "486c0b19c1379d9eefdf575a085e2875" } Frame { msec: 1248 - hash: "486c0b19c1379d9eefdf575a085e2875" + hash: "1d474472856d4740d960eb2f788ca5a6" } Frame { msec: 1264 - hash: "1d474472856d4740d960eb2f788ca5a6" + hash: "c74082553ab0f4ee00f5044e3369580b" } Frame { msec: 1280 - hash: "c74082553ab0f4ee00f5044e3369580b" + hash: "89fcd5514f336075ad32cae69518c1e5" } Frame { msec: 1296 - hash: "89fcd5514f336075ad32cae69518c1e5" + hash: "9dd235eb98998d9bdd92e01300297257" } Frame { msec: 1312 @@ -426,255 +426,255 @@ VisualTest { } Frame { msec: 1632 - hash: "9dd235eb98998d9bdd92e01300297257" + hash: "b77240f32e83d4f332d815c626f1e560" } Frame { msec: 1648 - hash: "b77240f32e83d4f332d815c626f1e560" + hash: "7d89669231224cf8e02d75338c37c278" } Frame { msec: 1664 - hash: "7d89669231224cf8e02d75338c37c278" + hash: "a8cf7c179011ee8187a8e1111683e52e" } Frame { msec: 1680 - hash: "a8cf7c179011ee8187a8e1111683e52e" + hash: "3e87a57e05da09a8260801320431b922" } Frame { msec: 1696 - hash: "3e87a57e05da09a8260801320431b922" + hash: "a2b0d99c8a232715fe03e8772a36634c" } Frame { msec: 1712 - hash: "a2b0d99c8a232715fe03e8772a36634c" + hash: "5b4634cd495ae7bb9c69a5c9c346189e" } Frame { msec: 1728 - hash: "5b4634cd495ae7bb9c69a5c9c346189e" + hash: "492f8f2b84af355ef41c1a7cda3a8a73" } Frame { msec: 1744 - hash: "492f8f2b84af355ef41c1a7cda3a8a73" + hash: "88e4eb08520fb5acc3d88ac4f0900542" } Frame { msec: 1760 - hash: "88e4eb08520fb5acc3d88ac4f0900542" + hash: "0c09cdcb906b4ce9840fd7502c39e5b9" } Frame { msec: 1776 - hash: "0c09cdcb906b4ce9840fd7502c39e5b9" + hash: "b054083bdd212cc03167a90df2d7eac5" } Frame { msec: 1792 - hash: "b054083bdd212cc03167a90df2d7eac5" + hash: "83971c2d37616ab92680364d6ac288a6" } Frame { msec: 1808 - hash: "83971c2d37616ab92680364d6ac288a6" + hash: "a73951d25e2cb7c1d04c88c86dfa0e4d" } Frame { msec: 1824 - hash: "a73951d25e2cb7c1d04c88c86dfa0e4d" + hash: "31fc8b20302abac97e506c37a14bbb7e" } Frame { msec: 1840 - hash: "31fc8b20302abac97e506c37a14bbb7e" + hash: "f760ccd7339e01a9423da7b592498291" } Frame { msec: 1856 - hash: "f760ccd7339e01a9423da7b592498291" + hash: "24dfcd5553f854908396de751fb15b88" } Frame { msec: 1872 - hash: "24dfcd5553f854908396de751fb15b88" + hash: "1daf38a6e6199f980e9494a3eb480047" } Frame { msec: 1888 - hash: "1daf38a6e6199f980e9494a3eb480047" + hash: "a39e2de1090209e5dbc8cc26577ec97d" } Frame { msec: 1904 - hash: "a39e2de1090209e5dbc8cc26577ec97d" + hash: "f4edc780b063e34461263ed3b753be88" } Frame { msec: 1920 - image: "/home/wallison/qt/kinetic/tests/auto/declarative/visual/easing/data/easing.1.png" + image: "easing.1.png" } Frame { msec: 1936 - hash: "2d2ce71a074f045916a207044abd055a" + hash: "a19b0353604491f56f72be0d20d76955" } Frame { msec: 1952 - hash: "a19b0353604491f56f72be0d20d76955" + hash: "9a70f109eebfcede2311ef77ceb50a44" } Frame { msec: 1968 - hash: "9a70f109eebfcede2311ef77ceb50a44" + hash: "7b28313d6860aeefd4a4e136d38d62f8" } Frame { msec: 1984 - hash: "7b28313d6860aeefd4a4e136d38d62f8" + hash: "95d84f38473159fe6b38f84ffe371714" } Frame { msec: 2000 - hash: "95d84f38473159fe6b38f84ffe371714" + hash: "07f91261794edb0ac1fde9bb4ff36011" } Frame { msec: 2016 - hash: "07f91261794edb0ac1fde9bb4ff36011" + hash: "f9a4a6b92a9c2d265688f1bfac18fa0a" } Frame { msec: 2032 - hash: "f9a4a6b92a9c2d265688f1bfac18fa0a" + hash: "cdec7cc00380fde4f73be997a992251a" } Frame { msec: 2048 - hash: "cdec7cc00380fde4f73be997a992251a" + hash: "a52b34f84e98fcd8babb1d39979fc9c7" } Frame { msec: 2064 - hash: "a52b34f84e98fcd8babb1d39979fc9c7" + hash: "bf05b3c79a9616f2e6c33d348b30e0ba" } Frame { msec: 2080 - hash: "bf05b3c79a9616f2e6c33d348b30e0ba" + hash: "c5931785685b4f4854d3ddfff5dd5466" } Frame { msec: 2096 - hash: "c5931785685b4f4854d3ddfff5dd5466" + hash: "bae163e02b860a9ca19d1bcb60ac1f8e" } Frame { msec: 2112 - hash: "bae163e02b860a9ca19d1bcb60ac1f8e" + hash: "a36295a1ebb35e538f8899ae3ae3b36a" } Frame { msec: 2128 - hash: "a36295a1ebb35e538f8899ae3ae3b36a" + hash: "b6448d61803d9b2c05b438aa8ce8bcd5" } Frame { msec: 2144 - hash: "b6448d61803d9b2c05b438aa8ce8bcd5" + hash: "631bf4caff2d93ef96a426100ffc5b32" } Frame { msec: 2160 - hash: "631bf4caff2d93ef96a426100ffc5b32" + hash: "a8777c84a03996493f719f5fcfc80d00" } Frame { msec: 2176 - hash: "a8777c84a03996493f719f5fcfc80d00" + hash: "86e1759df103ef776bb03f24941f49da" } Frame { msec: 2192 - hash: "86e1759df103ef776bb03f24941f49da" + hash: "01a790ea60adeaf368c66bd53aa8fcb3" } Frame { msec: 2208 - hash: "01a790ea60adeaf368c66bd53aa8fcb3" + hash: "79e5aca8ef6b9764f7f99cdfb51222ae" } Frame { msec: 2224 - hash: "79e5aca8ef6b9764f7f99cdfb51222ae" + hash: "82d10cc01b9be4683c5aa76096bd462c" } Frame { msec: 2240 - hash: "82d10cc01b9be4683c5aa76096bd462c" + hash: "95d961a92c597e432611947f7480796a" } Frame { msec: 2256 - hash: "95d961a92c597e432611947f7480796a" + hash: "e8ee89b5313c7e2c66741fe1c2090029" } Frame { msec: 2272 - hash: "e8ee89b5313c7e2c66741fe1c2090029" + hash: "2e3e8cf25dc1a3f09e7bf2a086f8e3bb" } Frame { msec: 2288 - hash: "2e3e8cf25dc1a3f09e7bf2a086f8e3bb" + hash: "68ca8ad381f48db23d2bc5da9da0c17a" } Frame { msec: 2304 - hash: "68ca8ad381f48db23d2bc5da9da0c17a" + hash: "e29f2411667049e8fae6c080f61c5869" } Frame { msec: 2320 - hash: "e29f2411667049e8fae6c080f61c5869" + hash: "5b0a6fadedf3024e8ecb7f2c73a2277d" } Frame { msec: 2336 - hash: "5b0a6fadedf3024e8ecb7f2c73a2277d" + hash: "af2eac625ef1fd928093ccd60bc0058e" } Frame { msec: 2352 - hash: "af2eac625ef1fd928093ccd60bc0058e" + hash: "8a1ff780ebdc9e416e60ea0940e8f2d6" } Frame { msec: 2368 - hash: "8a1ff780ebdc9e416e60ea0940e8f2d6" + hash: "7eb316c51cfd8ad972b7040247a651eb" } Frame { msec: 2384 - hash: "7eb316c51cfd8ad972b7040247a651eb" + hash: "1bac7075c10c87a69e71c3859f0db41d" } Frame { msec: 2400 - hash: "1bac7075c10c87a69e71c3859f0db41d" + hash: "0f16f40567729065cf9ecfcc15395a7b" } Frame { msec: 2416 - hash: "0f16f40567729065cf9ecfcc15395a7b" + hash: "719f4e776776f0db5c68ae7c6177e9b7" } Frame { msec: 2432 - hash: "719f4e776776f0db5c68ae7c6177e9b7" + hash: "75172dbf31fd8d706f54748c59099845" } Frame { msec: 2448 - hash: "75172dbf31fd8d706f54748c59099845" + hash: "d730b550e05167b05350e0e6636dd97d" } Frame { msec: 2464 - hash: "d730b550e05167b05350e0e6636dd97d" + hash: "e1f33eb5f023d9d42a99f8bc23223c45" } Frame { msec: 2480 - hash: "e1f33eb5f023d9d42a99f8bc23223c45" + hash: "8a4b0df5bed6c7be73c194ce2bb6a271" } Frame { msec: 2496 - hash: "8a4b0df5bed6c7be73c194ce2bb6a271" + hash: "44a9ea371f12d4ac3a569121a995ae16" } Frame { msec: 2512 - hash: "44a9ea371f12d4ac3a569121a995ae16" + hash: "14747e2e9e072210b9d6db50b4f704a1" } Frame { msec: 2528 - hash: "14747e2e9e072210b9d6db50b4f704a1" + hash: "eea52abf430f8cc1adc37e7180036584" } Frame { msec: 2544 - hash: "eea52abf430f8cc1adc37e7180036584" + hash: "0a9f6b14bc02e929a45bf4ebb736f9d3" } Frame { msec: 2560 - hash: "0a9f6b14bc02e929a45bf4ebb736f9d3" + hash: "a68a6eef0fc8754564c47c88b60d9a2a" } Frame { msec: 2576 - hash: "a68a6eef0fc8754564c47c88b60d9a2a" + hash: "eeb469e2fbda131d83538055e88ecdf7" } Frame { msec: 2592 - hash: "eeb469e2fbda131d83538055e88ecdf7" + hash: "0f7b673472050e807c9d935fde5afd83" } Frame { msec: 2608 - hash: "0f7b673472050e807c9d935fde5afd83" + hash: "80c90cce66bdd2324ca98bc591c22b44" } Frame { msec: 2624 - hash: "80c90cce66bdd2324ca98bc591c22b44" + hash: "bb8e2ba14526dc5ad74f74e8ff3d96a5" } Frame { msec: 2640 @@ -738,7 +738,7 @@ VisualTest { } Frame { msec: 2880 - image: "/home/wallison/qt/kinetic/tests/auto/declarative/visual/easing/data/easing.2.png" + image: "easing.2.png" } Frame { msec: 2896 diff --git a/tests/auto/declarative/visual/fillmode/data-MAC/fillmode.0.png b/tests/auto/declarative/visual/fillmode/data-MAC/fillmode.0.png Binary files differdeleted file mode 100644 index 9c9ceae..0000000 --- a/tests/auto/declarative/visual/fillmode/data-MAC/fillmode.0.png +++ /dev/null diff --git a/tests/auto/declarative/visual/fillmode/data-MAC/fillmode.qml b/tests/auto/declarative/visual/fillmode/data-MAC/fillmode.qml deleted file mode 100644 index 7ac6f51..0000000 --- a/tests/auto/declarative/visual/fillmode/data-MAC/fillmode.qml +++ /dev/null @@ -1,279 +0,0 @@ -import Qt.VisualTest 4.6 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 32 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 48 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 64 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 80 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 96 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 112 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 128 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 144 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 160 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 176 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 192 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 208 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 224 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 240 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 256 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 272 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 288 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 304 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 320 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 336 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 352 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 368 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 384 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 400 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 416 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 432 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 448 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 464 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 480 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 496 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 512 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 528 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 544 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 560 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 576 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 592 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 608 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 624 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 640 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 656 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 672 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 688 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 704 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 720 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 736 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 752 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 768 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 784 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 800 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 816 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 832 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 848 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 864 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 880 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 896 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 912 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 928 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 944 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 960 - image: "fillmode.0.png" - } - Frame { - msec: 976 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 992 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 1008 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 1024 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 1040 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } - Frame { - msec: 1056 - hash: "c8cb8d51ca04231dc272133faaf2fb6d" - } -} diff --git a/tests/auto/declarative/visual/fillmode/data/fillmode.qml b/tests/auto/declarative/visual/fillmode/data/fillmode.qml index 58af8e8..7ac6f51 100644 --- a/tests/auto/declarative/visual/fillmode/data/fillmode.qml +++ b/tests/auto/declarative/visual/fillmode/data/fillmode.qml @@ -183,7 +183,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 67108864 + modifiers: 0 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test.0.png b/tests/auto/declarative/visual/focusscope/data-MAC/test.0.png Binary files differnew file mode 100644 index 0000000..0f33d99 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test.0.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test.1.png b/tests/auto/declarative/visual/focusscope/data-MAC/test.1.png Binary files differnew file mode 100644 index 0000000..0f33d99 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test.1.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test.2.png b/tests/auto/declarative/visual/focusscope/data-MAC/test.2.png Binary files differnew file mode 100644 index 0000000..06a3dbd --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test.2.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test.3.png b/tests/auto/declarative/visual/focusscope/data-MAC/test.3.png Binary files differnew file mode 100644 index 0000000..e0d02d6 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test.3.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test.4.png b/tests/auto/declarative/visual/focusscope/data-MAC/test.4.png Binary files differnew file mode 100644 index 0000000..e0d02d6 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test.4.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test.5.png b/tests/auto/declarative/visual/focusscope/data-MAC/test.5.png Binary files differnew file mode 100644 index 0000000..e0d02d6 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test.5.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test.qml b/tests/auto/declarative/visual/focusscope/data-MAC/test.qml new file mode 100644 index 0000000..44900fc --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test.qml @@ -0,0 +1,1599 @@ +import Qt.VisualTest 4.6 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 32 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 48 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 64 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 80 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 96 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 112 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 128 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 144 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 160 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 176 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 192 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 208 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 224 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 240 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 256 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 272 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 288 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 304 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 320 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 336 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 352 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 368 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 384 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 400 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 416 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 432 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 448 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 464 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 480 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 496 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 512 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 528 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 544 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 560 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 576 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 592 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 608 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 624 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 640 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 656 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 672 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 688 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 704 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 720 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 736 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 752 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 768 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 784 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 800 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 816 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 832 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 848 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 864 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 880 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 896 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 912 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 928 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 944 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 960 + image: "test.0.png" + } + Frame { + msec: 976 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 992 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1008 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1024 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1040 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1056 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1072 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1088 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1104 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1120 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1136 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1152 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1168 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1184 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1200 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1216 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1232 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1248 + hash: "70f4ce2881f2340167f314b49716707a" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 1264 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1280 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1296 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1312 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1328 + hash: "715a587be7a5803af2827e882236d187" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 1344 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1360 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1376 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1392 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1408 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1424 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1440 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1456 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1472 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1488 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1504 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1520 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1536 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1552 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1568 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1584 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1600 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1616 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1632 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1648 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1664 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1680 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1696 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1712 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1728 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1744 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1760 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1776 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1792 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 1808 + hash: "715a587be7a5803af2827e882236d187" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 1824 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1840 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1856 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1872 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1888 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1904 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1920 + image: "test.1.png" + } + Frame { + msec: 1936 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1952 + hash: "70f4ce2881f2340167f314b49716707a" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 1968 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 1984 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2000 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2016 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2032 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2048 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2064 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2080 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2096 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2112 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2128 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2144 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2160 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2176 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2192 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2208 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2224 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2240 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2256 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2272 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2288 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2304 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2320 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2336 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 2352 + hash: "70f4ce2881f2340167f314b49716707a" + } + Key { + type: 6 + key: 16777237 + modifiers: 536870912 + text: "1f" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2384 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2400 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2416 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2432 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2448 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2464 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Key { + type: 7 + key: 16777237 + modifiers: 536870912 + text: "1f" + autorep: false + count: 1 + } + Frame { + msec: 2480 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2496 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2512 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2528 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2544 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2560 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2576 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2592 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2608 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2624 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2640 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2656 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2672 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2688 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2704 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2720 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2736 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2752 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2768 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2784 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2800 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2816 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2832 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2848 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2864 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2880 + image: "test.2.png" + } + Frame { + msec: 2896 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2912 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2928 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2944 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2960 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 2976 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Key { + type: 6 + key: 16777235 + modifiers: 536870912 + text: "1e" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3008 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3024 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3040 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3056 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3072 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3088 + hash: "70f4ce2881f2340167f314b49716707a" + } + Key { + type: 7 + key: 16777235 + modifiers: 536870912 + text: "1e" + autorep: false + count: 1 + } + Frame { + msec: 3104 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3120 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3136 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3152 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3168 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3184 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3200 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3216 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3232 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3248 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3264 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3280 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3296 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3312 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3328 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3344 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3360 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3376 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3392 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3408 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3424 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3440 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3456 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3472 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3488 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3504 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3520 + hash: "70f4ce2881f2340167f314b49716707a" + } + Frame { + msec: 3536 + hash: "70f4ce2881f2340167f314b49716707a" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 3552 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3568 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3584 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3600 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3616 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3632 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3648 + hash: "715a587be7a5803af2827e882236d187" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 3664 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3680 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3696 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3712 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3728 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3744 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3760 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3776 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3792 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3808 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3824 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3840 + image: "test.3.png" + } + Frame { + msec: 3856 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3872 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3888 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3904 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3920 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3936 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3952 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3968 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 3984 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4000 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4016 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4032 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4048 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4064 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4080 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4096 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4112 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4128 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4144 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4160 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4176 + hash: "715a587be7a5803af2827e882236d187" + } + Key { + type: 6 + key: 16777237 + modifiers: 536870912 + text: "1f" + autorep: false + count: 1 + } + Frame { + msec: 4192 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4208 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4224 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4240 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4256 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4272 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Key { + type: 7 + key: 16777237 + modifiers: 536870912 + text: "1f" + autorep: false + count: 1 + } + Frame { + msec: 4288 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4304 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4320 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4336 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4352 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4368 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4384 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4400 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4416 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4432 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4448 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4464 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4480 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4496 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4512 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4528 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4544 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4560 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4576 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4592 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4608 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4624 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4640 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4656 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4672 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4688 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4704 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4720 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4736 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4752 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4768 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Frame { + msec: 4784 + hash: "773f573d4b37181f7a784597a30cd73d" + } + Key { + type: 6 + key: 16777235 + modifiers: 536870912 + text: "1e" + autorep: false + count: 1 + } + Frame { + msec: 4800 + image: "test.4.png" + } + Frame { + msec: 4816 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4832 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4848 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4864 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4880 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4896 + hash: "715a587be7a5803af2827e882236d187" + } + Key { + type: 7 + key: 16777235 + modifiers: 536870912 + text: "1e" + autorep: false + count: 1 + } + Frame { + msec: 4912 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4928 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4944 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4960 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4976 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 4992 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5008 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5024 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5040 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5056 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5072 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5088 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5104 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5120 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5136 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5152 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5168 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5184 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5200 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5216 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5232 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5248 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5264 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5280 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5296 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5312 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5328 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5344 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5360 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5376 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5392 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5408 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5424 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5440 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5456 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5472 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5488 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5504 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5520 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5536 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5552 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5568 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5584 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5600 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5616 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5632 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5648 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5664 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5680 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5696 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5712 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5728 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5744 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5760 + image: "test.5.png" + } + Frame { + msec: 5776 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5792 + hash: "715a587be7a5803af2827e882236d187" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5808 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5824 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5840 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5856 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5872 + hash: "715a587be7a5803af2827e882236d187" + } + Frame { + msec: 5888 + hash: "715a587be7a5803af2827e882236d187" + } +} diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test2.0.png b/tests/auto/declarative/visual/focusscope/data-MAC/test2.0.png Binary files differnew file mode 100644 index 0000000..fa711c1 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test2.0.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test2.1.png b/tests/auto/declarative/visual/focusscope/data-MAC/test2.1.png Binary files differnew file mode 100644 index 0000000..fa711c1 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test2.1.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test2.qml b/tests/auto/declarative/visual/focusscope/data-MAC/test2.qml new file mode 100644 index 0000000..7837ad9 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test2.qml @@ -0,0 +1,607 @@ +import Qt.VisualTest 4.6 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 32 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 48 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 64 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 80 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 96 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 112 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 128 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 144 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 160 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 176 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 192 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 208 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 224 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 240 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 256 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 272 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 288 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 304 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 320 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 336 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 352 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 368 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 384 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 400 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 416 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 432 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 448 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 464 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 480 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 496 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 512 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 528 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 544 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 560 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 576 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 592 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 608 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 624 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 640 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 656 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 672 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 688 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 704 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 720 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 736 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 752 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 768 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 784 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 800 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 816 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 832 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 848 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 864 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 880 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 896 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 912 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 928 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 944 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 960 + image: "test2.0.png" + } + Frame { + msec: 976 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 992 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1008 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1024 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1040 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1056 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1072 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1088 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1104 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1120 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1136 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1152 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1168 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1184 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1200 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1216 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1232 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1248 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1264 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1280 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1296 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1312 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1328 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1344 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1360 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1376 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1392 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1408 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1424 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1440 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1456 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1472 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1488 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1504 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1520 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1536 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1552 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1568 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1584 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1600 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1616 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1632 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1648 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1664 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1680 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1696 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1712 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1728 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1744 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1760 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1776 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1792 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1808 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1824 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1840 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1856 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1872 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1888 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1904 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1920 + image: "test2.1.png" + } + Frame { + msec: 1936 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1952 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1968 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 1984 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2000 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2016 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2032 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2048 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2064 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2080 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2096 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2112 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2128 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2144 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2160 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2176 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2192 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2208 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2224 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2240 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2256 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2272 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2288 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2304 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2320 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2336 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2352 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } + Frame { + msec: 2368 + hash: "9ecdd4addcaea53cdca16f3496ceb15c" + } +} diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.0.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.0.png Binary files differnew file mode 100644 index 0000000..9309e37 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.0.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.1.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.1.png Binary files differnew file mode 100644 index 0000000..20e6c8e --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.1.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.2.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.2.png Binary files differnew file mode 100644 index 0000000..c7559ac --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.2.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.3.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.3.png Binary files differnew file mode 100644 index 0000000..bf2844b --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.3.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.4.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.4.png Binary files differnew file mode 100644 index 0000000..beef0bf --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.4.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.5.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.5.png Binary files differnew file mode 100644 index 0000000..1847dc7 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.5.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.6.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.6.png Binary files differnew file mode 100644 index 0000000..c7559ac --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.6.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.7.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.7.png Binary files differnew file mode 100644 index 0000000..20e6c8e --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.7.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.8.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.8.png Binary files differnew file mode 100644 index 0000000..9309e37 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.8.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.9.png b/tests/auto/declarative/visual/focusscope/data-MAC/test3.9.png Binary files differnew file mode 100644 index 0000000..7ac879b --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.9.png diff --git a/tests/auto/declarative/visual/focusscope/data-MAC/test3.qml b/tests/auto/declarative/visual/focusscope/data-MAC/test3.qml new file mode 100644 index 0000000..7308a23 --- /dev/null +++ b/tests/auto/declarative/visual/focusscope/data-MAC/test3.qml @@ -0,0 +1,2879 @@ +import Qt.VisualTest 4.6 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 32 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 48 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 64 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 80 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 96 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 112 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 128 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 144 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 160 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 176 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 192 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 208 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 224 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 240 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 256 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 272 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 288 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 304 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 320 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 336 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 352 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 368 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 384 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 400 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 416 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 432 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 448 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 464 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 480 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 496 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 512 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 528 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 544 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 560 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 576 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 592 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 608 + hash: "ce962a38caeb7bf7eef05112fbb52f91" + } + Frame { + msec: 624 + hash: "779f0660ce5bc2c2fc9f05d8b86158a8" + } + Frame { + msec: 640 + hash: "615e07a3c83539321befb44aa8fac811" + } + Frame { + msec: 656 + hash: "8a00b9f66ca7fdb0e4975f547025f873" + } + Frame { + msec: 672 + hash: "43bbe82799b1d8453f89a7ef928b1e54" + } + Frame { + msec: 688 + hash: "2cc468d6e14c27ff1c0bd6064ae47509" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 704 + hash: "1dc9d1b95016ccbeaca5b7a867a5cc3a" + } + Frame { + msec: 720 + hash: "f36734c91fe41a7947965dac97393ad4" + } + Frame { + msec: 736 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 752 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 768 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 784 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 800 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 816 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 832 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 848 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 864 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 880 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 896 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 912 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 928 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 944 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 960 + image: "test3.0.png" + } + Frame { + msec: 976 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 992 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 1008 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 1024 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 1040 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 1056 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 1072 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 1088 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 1104 + hash: "1c29b3d1086b261c2a9e94d49567484f" + } + Frame { + msec: 1120 + hash: "6ab17a210b45dae1ed99fd1689bb3e46" + } + Frame { + msec: 1136 + hash: "feb504605f7f27ca3a2bf080c1fb1e19" + } + Frame { + msec: 1152 + hash: "bec2d2e2222587a379af12a30e078886" + } + Frame { + msec: 1168 + hash: "39cb2bdc44273023b557a0f56df61d85" + } + Frame { + msec: 1184 + hash: "2cda045b452c4645be1cdb4efd238532" + } + Frame { + msec: 1200 + hash: "1f3efbfadd22734b5fd656596c11885b" + } + Frame { + msec: 1216 + hash: "7277c05a06e481a5af13e4fe39e322f8" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 1232 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1248 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1264 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1280 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1296 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1312 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1328 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1344 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1360 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1376 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1392 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1408 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1424 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1440 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1456 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1472 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1488 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1504 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 1520 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 1536 + hash: "c5f88e95ead1f4542b766577d80e70fd" + } + Frame { + msec: 1552 + hash: "d38118f26b9c2b68dc8fdb8d2a959134" + } + Frame { + msec: 1568 + hash: "44c483c899220f040aa7808f15fac429" + } + Frame { + msec: 1584 + hash: "02a63967944c8c53a9741318e99a326e" + } + Frame { + msec: 1600 + hash: "7fc10e91212af979e09c8d3b98625c1b" + } + Frame { + msec: 1616 + hash: "d14b69d18adc548dfb68dae1559effdb" + } + Frame { + msec: 1632 + hash: "cb9bce7fa14a367197fa34ad3acc4cdd" + } + Frame { + msec: 1648 + hash: "105a0e3d36296eba16077c4cf93547ae" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 1664 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1680 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1696 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1712 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1728 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1744 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1760 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1776 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1792 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1808 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1824 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1840 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1856 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1872 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1888 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1904 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1920 + image: "test3.1.png" + } + Frame { + msec: 1936 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1952 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1968 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 1984 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 2000 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 2016 + hash: "6e4e4321cda32abab394419a9e6494dc" + } + Frame { + msec: 2032 + hash: "45b79c56379afa7243547fedfa3260db" + } + Frame { + msec: 2048 + hash: "4635555c632f325a151d340a3eb742b9" + } + Frame { + msec: 2064 + hash: "0255da44fa95548427139073c994234c" + } + Frame { + msec: 2080 + hash: "eac0c428ea7b7aa55a469562d2cb3fd6" + } + Frame { + msec: 2096 + hash: "06ab23a83a5900cfdde98d4563414511" + } + Frame { + msec: 2112 + hash: "808e4a745c58872d52ec6a3e669aea5c" + } + Frame { + msec: 2128 + hash: "e6231b43f93fd6ae3e0990def1168c39" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 2144 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2160 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2176 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2192 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2208 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2224 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2240 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2256 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2272 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2288 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2304 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2320 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2336 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2352 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2368 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2384 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2400 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2416 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2432 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2448 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2464 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2480 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2496 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 2512 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 2528 + hash: "e1c32968e36cb95be250121187ddf13e" + } + Frame { + msec: 2544 + hash: "70498453babe3ab5e0fec62bcd0ff332" + } + Frame { + msec: 2560 + hash: "76fc1b1e6b22771bf08dfdd16b3f24e9" + } + Frame { + msec: 2576 + hash: "c6be4f26750b8bc1a5b71ff381e462c6" + } + Frame { + msec: 2592 + hash: "986f738d0f0f70b88f951d9f028ef61b" + } + Frame { + msec: 2608 + hash: "2201ad4f92bcf24ab62d0ddb8b2a64c1" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 2624 + hash: "27e9a18cb70c8f2ab9e4dd7af321e8e4" + } + Frame { + msec: 2640 + hash: "3a352127f49f8c589b7b7da1232caf6b" + } + Frame { + msec: 2656 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2672 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2688 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2704 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2720 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2736 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2752 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2768 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2784 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2800 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2816 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2832 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2848 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2864 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2880 + image: "test3.2.png" + } + Frame { + msec: 2896 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2912 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2928 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2944 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2960 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 2976 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "20f96d3fbef9d51d8b8a28a6d58fabb2" + } + Frame { + msec: 3008 + hash: "1e5d888fd4685960b8ae0a79e2287e89" + } + Frame { + msec: 3024 + hash: "2115c2e6689ce6669abf9f3741eb5df1" + } + Frame { + msec: 3040 + hash: "c67949eb5f2210c6b2dad4ff352831ed" + } + Frame { + msec: 3056 + hash: "d982500bee0a6f6fb0861fb3c32319eb" + } + Frame { + msec: 3072 + hash: "ffb111084712d5ecf072ade52103b985" + } + Frame { + msec: 3088 + hash: "e5d594c8f08b9d283a3998648a383332" + } + Frame { + msec: 3104 + hash: "20632ba6a4c14386eb01167059f7b617" + } + Frame { + msec: 3120 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 3136 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3152 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3168 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3184 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3200 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3216 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3232 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3248 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3264 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3280 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3296 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3312 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3328 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3344 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3360 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3376 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3392 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3408 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3424 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3440 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3456 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3472 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 3488 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 3504 + hash: "f60a72dd52f6f319706dc97f873a484f" + } + Frame { + msec: 3520 + hash: "a21fbcbb3c0ede708f2862959b84654f" + } + Frame { + msec: 3536 + hash: "40e5f7530391e7641498c7870ce986c9" + } + Frame { + msec: 3552 + hash: "809daf15ad3e9f981f1306da18dd6872" + } + Frame { + msec: 3568 + hash: "4b053d234c8c9a5afb7800abe28ea96f" + } + Frame { + msec: 3584 + hash: "e011e3aaf143befc8e207945fdfc9f47" + } + Frame { + msec: 3600 + hash: "55539d51f833b8a98fc14031a4a70c4c" + } + Frame { + msec: 3616 + hash: "07c2b526c022d0deae61acba26d7ea24" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 3632 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3648 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3664 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3680 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3696 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3712 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3728 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3744 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3760 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3776 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3792 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3808 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3824 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3840 + image: "test3.3.png" + } + Frame { + msec: 3856 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3872 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3888 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3904 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3920 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3936 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3952 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3968 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 3984 + hash: "cc0ab553f98262662e52191e0b370486" + } + Key { + type: 6 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 4000 + hash: "7d2f24d5a68397bedc2f9e3652715126" + } + Frame { + msec: 4016 + hash: "55ff9205bb36d8f8965fb122a8686203" + } + Frame { + msec: 4032 + hash: "8968377cbbdf7a46b6f13690826ac711" + } + Frame { + msec: 4048 + hash: "8ce9afffac571f1a2cc6986d79dd2c8f" + } + Frame { + msec: 4064 + hash: "f75c375cdf8e1b83398e9b18e7c39852" + } + Frame { + msec: 4080 + hash: "20c8db7fb344c056465175ed0fa9518a" + } + Frame { + msec: 4096 + hash: "8135c2cae0dcf8ee6eccbfdd7b711bc0" + } + Frame { + msec: 4112 + hash: "659fc24d328058eb118be5613ea25257" + } + Key { + type: 7 + key: 16777236 + modifiers: 536870912 + text: "1d" + autorep: false + count: 1 + } + Frame { + msec: 4128 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4144 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4160 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4176 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4192 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4208 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4224 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4240 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4256 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4272 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4288 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4304 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4320 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4336 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4352 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4368 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4384 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4400 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4416 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4432 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4448 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4464 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4480 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4496 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4512 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4528 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4544 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4560 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4576 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4592 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4608 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4624 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4640 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4656 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4672 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4688 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4704 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4720 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4736 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4752 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4768 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4784 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4800 + image: "test3.4.png" + } + Frame { + msec: 4816 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4832 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4848 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4864 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4880 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4896 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4912 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4928 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4944 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4960 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4976 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 4992 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 5008 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 5024 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 5040 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 5056 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 5072 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 5088 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Frame { + msec: 5104 + hash: "ef9a34bf49c632be0f88f6658196dfe6" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 5120 + hash: "f01088d95d8409f98ae19b7970ecf3ad" + } + Frame { + msec: 5136 + hash: "393987a9e22db77233465e3d08cfb244" + } + Frame { + msec: 5152 + hash: "40e58eac132aa3b5f66f244ab7b189be" + } + Frame { + msec: 5168 + hash: "d60c98c5fafe6bfa73a3d0c55f8f6716" + } + Frame { + msec: 5184 + hash: "775733a71bb1d39f51b9fbc7e28d9ffe" + } + Frame { + msec: 5200 + hash: "a343457f584c6e63aaec36b5db4fb7d0" + } + Frame { + msec: 5216 + hash: "7c416bd1be54135056b037642026251f" + } + Frame { + msec: 5232 + hash: "42813b6c3ef437a7b3ea8f03bb8b1894" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 5248 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5264 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5280 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5296 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5312 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5328 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5344 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5360 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5376 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5392 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5408 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5424 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5440 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5456 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5472 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5488 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5504 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5520 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5536 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5552 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5568 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5584 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5600 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5616 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5632 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5648 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5664 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5680 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5696 + hash: "cc0ab553f98262662e52191e0b370486" + } + Frame { + msec: 5712 + hash: "cc0ab553f98262662e52191e0b370486" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 5728 + hash: "b3af171ca40a5f081e2bfc984b8da551" + } + Frame { + msec: 5744 + hash: "aadbc8c960fbe2e8aac184a99ba818bd" + } + Frame { + msec: 5760 + image: "test3.5.png" + } + Frame { + msec: 5776 + hash: "99fc06589f09cd10cfdf748f032eacbd" + } + Frame { + msec: 5792 + hash: "f7915b1a8b9f7188263180a97c8b355f" + } + Frame { + msec: 5808 + hash: "7fb30728fb764b659bad5bb6c4e71e2c" + } + Frame { + msec: 5824 + hash: "4882459350feffaed89c2296c74b839d" + } + Frame { + msec: 5840 + hash: "917a368858e431bebcd8f2fda67401f8" + } + Frame { + msec: 5856 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 5872 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 5888 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 5904 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 5920 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 5936 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 5952 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 5968 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 5984 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6000 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6016 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6032 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6048 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6064 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6080 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6096 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6112 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6128 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6144 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6160 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6176 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6192 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6208 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6224 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6240 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6256 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Frame { + msec: 6272 + hash: "bfd0497c6505d42aefe6341adb850d89" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 6288 + hash: "ada3c3558261701c705ecf79716df56a" + } + Frame { + msec: 6304 + hash: "81c73fd3dd69eb767d8899a54c3088bb" + } + Frame { + msec: 6320 + hash: "d54e7dd1e876666f64b5904240bf8764" + } + Frame { + msec: 6336 + hash: "32bdeac66a43a967d549ca2ad8c59bbd" + } + Frame { + msec: 6352 + hash: "04eec62cc40c8b31d989bead64909f9e" + } + Frame { + msec: 6368 + hash: "cfffdd4edc35303ee260ed32956238b7" + } + Frame { + msec: 6384 + hash: "fb562c38b9d2360517160f8a8ab29ced" + } + Frame { + msec: 6400 + hash: "ba8ec8f0663bf1e62ff426b0c7d0d3b2" + } + Frame { + msec: 6416 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 6432 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6448 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6464 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6480 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6496 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6512 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6528 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6544 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6560 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6576 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6592 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6608 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6624 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6640 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6656 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6672 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6688 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6704 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6720 + image: "test3.6.png" + } + Frame { + msec: 6736 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6752 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6768 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6784 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6800 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6816 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6832 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Frame { + msec: 6848 + hash: "e3b2de8a4e3229880971d2144e55de1b" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 6864 + hash: "e6292a001405924f6d5f1a4051c3f6cb" + } + Frame { + msec: 6880 + hash: "0d8a6b740cc7b33659aa0a1cc2bd2aa9" + } + Frame { + msec: 6896 + hash: "07c4267ff499c46977420d4be7529e04" + } + Frame { + msec: 6912 + hash: "f69cd14d97de3ca8d21ace1df1d5a523" + } + Frame { + msec: 6928 + hash: "1572b31fd3ae917d5701d0b8f1d2a2bc" + } + Frame { + msec: 6944 + hash: "e3953027fe269a5d4c6581717d516c65" + } + Frame { + msec: 6960 + hash: "e35e8a5dfa7309696fa20c6f5480ac50" + } + Frame { + msec: 6976 + hash: "77e75e66118f911c8fff084e1a825d77" + } + Frame { + msec: 6992 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 7008 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7024 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7040 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7056 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7072 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7088 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7104 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7120 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7136 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7152 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7168 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7184 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7200 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7216 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7232 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7248 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7264 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7280 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7296 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7312 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7328 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7344 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7360 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7376 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7392 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7408 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7424 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Frame { + msec: 7440 + hash: "e97f921f1c34246fc229c48a4b66466c" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 7456 + hash: "8588c30394737cebc5580fe024589b08" + } + Frame { + msec: 7472 + hash: "ca150a32b22cad95696ecfbad0ed3e67" + } + Frame { + msec: 7488 + hash: "7f980e0cf67927918b1244456c38c7c0" + } + Frame { + msec: 7504 + hash: "2bc38fb34a6875aabddce0f460914612" + } + Frame { + msec: 7520 + hash: "328257a4691f341db39ee5ca677693eb" + } + Frame { + msec: 7536 + hash: "05e0d8c986ff81e23f253d56ebdef46e" + } + Frame { + msec: 7552 + hash: "be95d74a42318c52ab73ce694436a58b" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 7568 + hash: "eba8512746494f3602d24dab86fb2559" + } + Frame { + msec: 7584 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7600 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7616 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7632 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7648 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7664 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7680 + image: "test3.7.png" + } + Frame { + msec: 7696 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7712 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7728 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7744 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7760 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7776 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7792 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7808 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7824 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7840 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7856 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7872 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7888 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7904 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7920 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7936 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7952 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Frame { + msec: 7968 + hash: "8f443766efd0f74e96e79ed3c267892c" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 7984 + hash: "7b2b3a84e9649370ce282383a820c39b" + } + Frame { + msec: 8000 + hash: "08547adce7e02eec593fa636af004257" + } + Frame { + msec: 8016 + hash: "29789cfbd1b648ce705cf17d03298ffe" + } + Frame { + msec: 8032 + hash: "9e89ef84c86b1fc0531f0bd5ee530ba5" + } + Frame { + msec: 8048 + hash: "21b437a318c5ef87c38f9199772eafa6" + } + Frame { + msec: 8064 + hash: "70c8c8fbcf2d0331ca7ede8641a6068b" + } + Frame { + msec: 8080 + hash: "c277e9d4f89e99d974d03dcfe41a1755" + } + Frame { + msec: 8096 + hash: "54c7a72a3f814e707777c16ddd4532b8" + } + Frame { + msec: 8112 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 8128 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8144 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8160 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8176 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8192 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8208 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8224 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8240 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8256 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8272 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8288 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8304 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8320 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8336 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8352 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8368 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8384 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8400 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8416 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8432 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8448 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8464 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8480 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Frame { + msec: 8496 + hash: "bdf37518633a43d8dc47245f5b68550b" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 8512 + hash: "7992512c72fe530fdd92866c96de29a0" + } + Frame { + msec: 8528 + hash: "ad29d3653790efb998ac137538b4ce09" + } + Frame { + msec: 8544 + hash: "f6daf0ad7f7c970ece3dc1898ab9f092" + } + Frame { + msec: 8560 + hash: "417143caa8ed86082ea4e40aca7ca26e" + } + Frame { + msec: 8576 + hash: "5215943d1fbffd5ef7c16d4ca6587628" + } + Frame { + msec: 8592 + hash: "d143c87d3cf7560f911e98869983efef" + } + Frame { + msec: 8608 + hash: "1fcb9b3d3b4c888c65334b88e240d79c" + } + Frame { + msec: 8624 + hash: "61cec1c227eafafe6c03a33591b1825e" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 8640 + image: "test3.8.png" + } + Frame { + msec: 8656 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8672 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8688 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8704 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8720 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8736 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8752 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8768 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8784 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8800 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8816 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8832 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8848 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8864 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8880 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8896 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8912 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8928 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8944 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8960 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8976 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 8992 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 9008 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 9024 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 9040 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Frame { + msec: 9056 + hash: "57e009de047c348d3ae14a6271b2e6f2" + } + Key { + type: 6 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 9072 + hash: "fcbb907bcf41602a5c30e2843a4b1fff" + } + Frame { + msec: 9088 + hash: "5fee95daaa629bbf0cec3e41cd693502" + } + Frame { + msec: 9104 + hash: "b9d721d2a8b0867bab29817b99b8ec2d" + } + Frame { + msec: 9120 + hash: "e518e9872a502d3b2ff74d209626c9ee" + } + Frame { + msec: 9136 + hash: "9c535d7da59ed2f2ce116e70c3e165cf" + } + Frame { + msec: 9152 + hash: "e54fbcb23e01d5842885b92d4493535b" + } + Frame { + msec: 9168 + hash: "7ac2467f24cef06c8842460ffe813ee0" + } + Frame { + msec: 9184 + hash: "276293e289db5c9c7cd9612c73ef7792" + } + Frame { + msec: 9200 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Key { + type: 7 + key: 16777234 + modifiers: 536870912 + text: "1c" + autorep: false + count: 1 + } + Frame { + msec: 9216 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9232 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9248 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9264 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9280 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9296 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9312 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9328 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9344 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9360 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9376 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9392 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9408 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9424 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9440 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9456 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9472 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9488 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9504 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9520 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9536 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9552 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9568 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9584 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9600 + image: "test3.9.png" + } + Frame { + msec: 9616 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9632 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9648 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9664 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9680 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9696 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9712 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9728 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9744 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9760 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9776 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9792 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9808 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9824 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9840 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9856 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9872 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9888 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9904 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9920 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9936 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9952 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9968 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 9984 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10000 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10016 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10032 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10048 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10064 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10080 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10096 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10112 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10128 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10144 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10160 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10176 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10192 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10208 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10224 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10240 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10256 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10272 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10288 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10304 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10320 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10336 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10352 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10368 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10384 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10400 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10416 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } + Frame { + msec: 10432 + hash: "d38da3f61cd2944eec8bdfbef70c928f" + } +} diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.0.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.0.png Binary files differdeleted file mode 100644 index 9a6b079..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.0.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.1.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.1.png Binary files differdeleted file mode 100644 index 1f960e5..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.1.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.2.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.2.png Binary files differdeleted file mode 100644 index 85a2729..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.2.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.3.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.3.png Binary files differdeleted file mode 100644 index de6ff7c..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.3.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.4.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.4.png Binary files differdeleted file mode 100644 index fe7d3dd..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.4.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.5.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.5.png Binary files differdeleted file mode 100644 index e73bef5..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.5.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.6.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.6.png Binary files differdeleted file mode 100644 index 0c75422..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.6.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.qml b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.qml deleted file mode 100644 index 96adb73..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated-smooth.qml +++ /dev/null @@ -1,1823 +0,0 @@ -import Qt.VisualTest 4.6 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 32 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 48 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 64 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 80 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 96 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 112 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 128 - hash: "cd2180be80101c2aa4350b51b7a6f502" - } - Frame { - msec: 144 - hash: "de471829f8ad3b43bf1b4df9d1d65a4d" - } - Frame { - msec: 160 - hash: "ed9f2ca797894612600bc4b7fbaecb84" - } - Frame { - msec: 176 - hash: "59470d71fa4426d0283e86371f2bfc2a" - } - Frame { - msec: 192 - hash: "9a2f92efb51bcc6293d6a8e82d5314ea" - } - Frame { - msec: 208 - hash: "7b66e21652a7d0982226e281a48411a9" - } - Frame { - msec: 224 - hash: "a716c8d2c94433dee719f92f0822c8ec" - } - Frame { - msec: 240 - hash: "f22a47b846cfee96ebdf39bbce2e6d51" - } - Frame { - msec: 256 - hash: "5a8932d13d624932a65694fd19ec05cd" - } - Frame { - msec: 272 - hash: "48e62dd171f5da82b5aa26c765e4042c" - } - Frame { - msec: 288 - hash: "63d3c47f7dec1236440a05e0a8380900" - } - Frame { - msec: 304 - hash: "323af110731b7af0c30f8862ff59b833" - } - Frame { - msec: 320 - hash: "83c029e328e80af83158c37089cf0ece" - } - Frame { - msec: 336 - hash: "3f9a09ae19be34348bb2552915360cf7" - } - Frame { - msec: 352 - hash: "df624d70cae1bcefda8d69c0ff055d83" - } - Frame { - msec: 368 - hash: "d671a3b971468e1d8aa30ab655e020a9" - } - Frame { - msec: 384 - hash: "74c837b29f7f05b615123f0e608b523f" - } - Frame { - msec: 400 - hash: "277ef98ea859fb7685fe6cd44a538a7d" - } - Frame { - msec: 416 - hash: "0a8da7a3f57c3e06e4be5ea1d8a83ae9" - } - Frame { - msec: 432 - hash: "456be9c208d690c479ba12bf6325dde0" - } - Frame { - msec: 448 - hash: "10307beea6d99ab0ff5863f8e35555ed" - } - Frame { - msec: 464 - hash: "170a1d5fe3422cf5223a78015a6a45fd" - } - Frame { - msec: 480 - hash: "64ecb03aa538e74d0b99c6dec7751401" - } - Frame { - msec: 496 - hash: "f3a7e74a1839f9366f9eeec4d2b80d1e" - } - Frame { - msec: 512 - hash: "37c3f25e5cfdb48d7e3ab0cf8ffb9154" - } - Frame { - msec: 528 - hash: "0af81ee0d76ff8335a0e347dc086ca37" - } - Frame { - msec: 544 - hash: "061406edcbd2d4930ab89c3fcab63c7f" - } - Frame { - msec: 560 - hash: "31d65134f340d82dd40f2401bda3fb7e" - } - Frame { - msec: 576 - hash: "16c16c77c65b36d1e0954d5ead2642be" - } - Frame { - msec: 592 - hash: "61c16009b65a55bffb63e27727e1615e" - } - Frame { - msec: 608 - hash: "e1474c2cdd8768ca1ef45bf3bc5234ca" - } - Frame { - msec: 624 - hash: "89c159ef00d273ecfe61332e1bf7244d" - } - Frame { - msec: 640 - hash: "f4d0d3bca25e67908b38910f47b4757e" - } - Frame { - msec: 656 - hash: "0e0c40f8e11a7bd499c80562ac6f8a82" - } - Frame { - msec: 672 - hash: "4310a4c3037d845f088f21ad608f366a" - } - Frame { - msec: 688 - hash: "3d518cd0348d6202243364af1dd6ce89" - } - Frame { - msec: 704 - hash: "41987e6b4248d7944c0dbc6eb3862023" - } - Frame { - msec: 720 - hash: "3e81338d38723d56f2d6c428271f81c1" - } - Frame { - msec: 736 - hash: "902683d72f789399e9d99d1cea1bf177" - } - Frame { - msec: 752 - hash: "efc119983701908a904deb24108c59cb" - } - Frame { - msec: 768 - hash: "3a77785cfd7755f567619d8e04583f6a" - } - Frame { - msec: 784 - hash: "fd85d1dd931033973283a408b5e328a8" - } - Frame { - msec: 800 - hash: "5d3e85acabe5e5ff802eb7731676274f" - } - Frame { - msec: 816 - hash: "ae12f1f37a746e16b06e6b869c89fac1" - } - Frame { - msec: 832 - hash: "a15f19f374bbfb6a922b69d080a91eaa" - } - Frame { - msec: 848 - hash: "84ef6dda8318b623832f58c46d762e89" - } - Frame { - msec: 864 - hash: "b699285764f5e8866a9996f4a0dccc69" - } - Frame { - msec: 880 - hash: "ddd8a006ef048c8d929144aa9fcd7c5a" - } - Frame { - msec: 896 - hash: "177666cb3bb784c83196886b2c6cf6b6" - } - Frame { - msec: 912 - hash: "9cd29b4b023a8b92573575fb3c3dda83" - } - Frame { - msec: 928 - hash: "adc670a9aa0326744cb23e4f5912e6c7" - } - Frame { - msec: 944 - hash: "48db9a5e6aad9a9563a3cd35fb7fa9b6" - } - Frame { - msec: 960 - image: "animated-smooth.0.png" - } - Frame { - msec: 976 - hash: "64b21b89576fdd0083f60a26f57b9c11" - } - Frame { - msec: 992 - hash: "0d407ee07692d0e5a480a60952807b3c" - } - Frame { - msec: 1008 - hash: "845170815a87565dc4229792032b3357" - } - Frame { - msec: 1024 - hash: "8b8120cfc14de03e048632fdea61be21" - } - Frame { - msec: 1040 - hash: "b0070117f1c24a4da87434725d4bb989" - } - Frame { - msec: 1056 - hash: "0239d697642ca1d1b1d1daa3ea048e1e" - } - Frame { - msec: 1072 - hash: "3df54504f8891306fa8f1e9e2075a5e2" - } - Frame { - msec: 1088 - hash: "853429387cc639496c7338244de7e1b7" - } - Frame { - msec: 1104 - hash: "bd70500fbdfe5aa2fe4362a97a1dee2d" - } - Frame { - msec: 1120 - hash: "b375e723b2396b13b8f55cfc0c81c3c3" - } - Frame { - msec: 1136 - hash: "53f05993ba3b426949badd2e4cd66d84" - } - Frame { - msec: 1152 - hash: "23291a0239c69ea07db959e709b1ff5f" - } - Frame { - msec: 1168 - hash: "2192094410e2d7c8d9d4aa5f8deacff5" - } - Frame { - msec: 1184 - hash: "d6615fc345831a3cc5b9a7196284b632" - } - Frame { - msec: 1200 - hash: "92176cce4836dcae4dfca94e49b041a8" - } - Frame { - msec: 1216 - hash: "2a1fcfb753ca237b518da26e67c928e5" - } - Frame { - msec: 1232 - hash: "42be5d26afb9f066dd27cc9fbaf6ce20" - } - Frame { - msec: 1248 - hash: "bd045f4532d78bba0ef1b64118fd9f24" - } - Frame { - msec: 1264 - hash: "7f9999a9c87af43b9703323efab31770" - } - Frame { - msec: 1280 - hash: "0640fcb0b24d3ba4ab8695f78271a438" - } - Frame { - msec: 1296 - hash: "7c9a98e2101c33e17c1bd7e6c2d921ff" - } - Frame { - msec: 1312 - hash: "fce2648975106bc5c0ca9a4530f7f748" - } - Frame { - msec: 1328 - hash: "39cc17ee2e889f17dd07179fda99e431" - } - Frame { - msec: 1344 - hash: "39c46d85d20f7ef3eca1d09c7eb6a068" - } - Frame { - msec: 1360 - hash: "d65d50fbb920e683b041a1c72238225b" - } - Frame { - msec: 1376 - hash: "49a1df977b0494c7c72ca0b65c394e13" - } - Frame { - msec: 1392 - hash: "05cbce0eaa80b4610a9067af8c40f819" - } - Frame { - msec: 1408 - hash: "00ab7798bcd77a99886dff0414f35382" - } - Frame { - msec: 1424 - hash: "5cc90d798786c270ddd2616512f4459f" - } - Frame { - msec: 1440 - hash: "e5df07ea21e8e415c3ec82560f2d0f34" - } - Frame { - msec: 1456 - hash: "ddf1f5c0b97fe4821719ec5bf4bd091b" - } - Frame { - msec: 1472 - hash: "c61d2aa7f934fb5a9f9f7883e063b51c" - } - Frame { - msec: 1488 - hash: "29ddde3300d0520a4c01b5536d8b9e7a" - } - Frame { - msec: 1504 - hash: "2fede2f5d871654f3f8a6e9d890adeac" - } - Frame { - msec: 1520 - hash: "deed4c06c9b713834490832b88e7acaf" - } - Frame { - msec: 1536 - hash: "c2edb016cfdd47c192d1c48281ee76ed" - } - Frame { - msec: 1552 - hash: "a261be47ae89e6b53e6bc1c1197154ae" - } - Frame { - msec: 1568 - hash: "e860e97ebd73b7d1d5d5d90458b34bfe" - } - Frame { - msec: 1584 - hash: "a087b532ecb2f28e4ee60819228c2522" - } - Frame { - msec: 1600 - hash: "64df51b4c1bf744b2aae1c6d908c2cc3" - } - Frame { - msec: 1616 - hash: "4520003d4b221a3de6834b2729b3026d" - } - Frame { - msec: 1632 - hash: "d1110817827c318ceb0c112e8c2bfc1d" - } - Frame { - msec: 1648 - hash: "83d49474db15d5779923972ff5f55917" - } - Frame { - msec: 1664 - hash: "3bae40654ec551d69e7c8c72f631c7a5" - } - Frame { - msec: 1680 - hash: "774740a393f3e9b8f12b81cce8da8280" - } - Frame { - msec: 1696 - hash: "d8e398a1ce9ca45c19951e93bd5c932a" - } - Frame { - msec: 1712 - hash: "2b7eb8a9fe26b032be8b4b9c00995912" - } - Frame { - msec: 1728 - hash: "47e920e3884ccf2f0f49e78070af6929" - } - Frame { - msec: 1744 - hash: "fc913807eb1069d611495fbd5d43ee3d" - } - Frame { - msec: 1760 - hash: "5d9ee853f083d514fbe51d6953d8e000" - } - Frame { - msec: 1776 - hash: "5736362b42bc2d801e02edabb983663a" - } - Frame { - msec: 1792 - hash: "e3a2b5c7247acfc1b30825233fbfd56b" - } - Frame { - msec: 1808 - hash: "48952ffa5e300778eafa768b9fe7df0c" - } - Frame { - msec: 1824 - hash: "fe04cae65aeec18697eca4f3f83a40e9" - } - Frame { - msec: 1840 - hash: "382d454f2366c1fb4ca472faa3bfa5e9" - } - Frame { - msec: 1856 - hash: "89022a8e2feb3dcb845de69aafc333ad" - } - Frame { - msec: 1872 - hash: "25506557c853a0020e98cf3992956989" - } - Frame { - msec: 1888 - hash: "9a64706c52c9e962816953e32950b8ba" - } - Frame { - msec: 1904 - hash: "3cbfded47413172ada64095e65c55e8a" - } - Frame { - msec: 1920 - image: "animated-smooth.1.png" - } - Frame { - msec: 1936 - hash: "c5e399e29b988148913e62ee208b3326" - } - Frame { - msec: 1952 - hash: "3991bc7760b7981d80665e3a7654c9f4" - } - Frame { - msec: 1968 - hash: "05312f9529c94d3331ace7d73c544284" - } - Frame { - msec: 1984 - hash: "a94de4e90a8f8eb4ec33fe902afd226c" - } - Frame { - msec: 2000 - hash: "723f87da7e5b002a2e9b0bcbc81f9458" - } - Frame { - msec: 2016 - hash: "6b8ded0d9386a3fff0601a100c513080" - } - Frame { - msec: 2032 - hash: "f976cd5046ef5391536859e63db905bd" - } - Frame { - msec: 2048 - hash: "a94de4e90a8f8eb4ec33fe902afd226c" - } - Frame { - msec: 2064 - hash: "05312f9529c94d3331ace7d73c544284" - } - Frame { - msec: 2080 - hash: "b980703c1d0018937e83a8ba8862469e" - } - Frame { - msec: 2096 - hash: "c5e399e29b988148913e62ee208b3326" - } - Frame { - msec: 2112 - hash: "3b7b83e97d17440b42e6ef4b962076d8" - } - Frame { - msec: 2128 - hash: "3cbfded47413172ada64095e65c55e8a" - } - Frame { - msec: 2144 - hash: "9a64706c52c9e962816953e32950b8ba" - } - Frame { - msec: 2160 - hash: "25506557c853a0020e98cf3992956989" - } - Frame { - msec: 2176 - hash: "89022a8e2feb3dcb845de69aafc333ad" - } - Frame { - msec: 2192 - hash: "382d454f2366c1fb4ca472faa3bfa5e9" - } - Frame { - msec: 2208 - hash: "fe04cae65aeec18697eca4f3f83a40e9" - } - Frame { - msec: 2224 - hash: "48952ffa5e300778eafa768b9fe7df0c" - } - Frame { - msec: 2240 - hash: "e3a2b5c7247acfc1b30825233fbfd56b" - } - Frame { - msec: 2256 - hash: "5736362b42bc2d801e02edabb983663a" - } - Frame { - msec: 2272 - hash: "5d9ee853f083d514fbe51d6953d8e000" - } - Frame { - msec: 2288 - hash: "fe899138116774df4c4441687e3019c5" - } - Frame { - msec: 2304 - hash: "47e920e3884ccf2f0f49e78070af6929" - } - Frame { - msec: 2320 - hash: "2b7eb8a9fe26b032be8b4b9c00995912" - } - Frame { - msec: 2336 - hash: "64cd225202ed6c91b02c368a9160a656" - } - Frame { - msec: 2352 - hash: "774740a393f3e9b8f12b81cce8da8280" - } - Frame { - msec: 2368 - hash: "3bae40654ec551d69e7c8c72f631c7a5" - } - Frame { - msec: 2384 - hash: "83d49474db15d5779923972ff5f55917" - } - Frame { - msec: 2400 - hash: "d1110817827c318ceb0c112e8c2bfc1d" - } - Frame { - msec: 2416 - hash: "4520003d4b221a3de6834b2729b3026d" - } - Frame { - msec: 2432 - hash: "64df51b4c1bf744b2aae1c6d908c2cc3" - } - Frame { - msec: 2448 - hash: "a087b532ecb2f28e4ee60819228c2522" - } - Frame { - msec: 2464 - hash: "e860e97ebd73b7d1d5d5d90458b34bfe" - } - Frame { - msec: 2480 - hash: "a261be47ae89e6b53e6bc1c1197154ae" - } - Frame { - msec: 2496 - hash: "c2edb016cfdd47c192d1c48281ee76ed" - } - Frame { - msec: 2512 - hash: "deed4c06c9b713834490832b88e7acaf" - } - Frame { - msec: 2528 - hash: "2fede2f5d871654f3f8a6e9d890adeac" - } - Frame { - msec: 2544 - hash: "29ddde3300d0520a4c01b5536d8b9e7a" - } - Frame { - msec: 2560 - hash: "c61d2aa7f934fb5a9f9f7883e063b51c" - } - Frame { - msec: 2576 - hash: "ddf1f5c0b97fe4821719ec5bf4bd091b" - } - Frame { - msec: 2592 - hash: "e5df07ea21e8e415c3ec82560f2d0f34" - } - Frame { - msec: 2608 - hash: "5cc90d798786c270ddd2616512f4459f" - } - Frame { - msec: 2624 - hash: "00ab7798bcd77a99886dff0414f35382" - } - Frame { - msec: 2640 - hash: "05cbce0eaa80b4610a9067af8c40f819" - } - Frame { - msec: 2656 - hash: "a676f45d946aeb9fa577c0e862735b01" - } - Frame { - msec: 2672 - hash: "d65d50fbb920e683b041a1c72238225b" - } - Frame { - msec: 2688 - hash: "39c46d85d20f7ef3eca1d09c7eb6a068" - } - Frame { - msec: 2704 - hash: "39cc17ee2e889f17dd07179fda99e431" - } - Frame { - msec: 2720 - hash: "fce2648975106bc5c0ca9a4530f7f748" - } - Frame { - msec: 2736 - hash: "7c9a98e2101c33e17c1bd7e6c2d921ff" - } - Frame { - msec: 2752 - hash: "0640fcb0b24d3ba4ab8695f78271a438" - } - Frame { - msec: 2768 - hash: "2084ccc60ddd493399c128717816d33b" - } - Frame { - msec: 2784 - hash: "bd045f4532d78bba0ef1b64118fd9f24" - } - Frame { - msec: 2800 - hash: "42be5d26afb9f066dd27cc9fbaf6ce20" - } - Frame { - msec: 2816 - hash: "2a1fcfb753ca237b518da26e67c928e5" - } - Frame { - msec: 2832 - hash: "92176cce4836dcae4dfca94e49b041a8" - } - Frame { - msec: 2848 - hash: "d6615fc345831a3cc5b9a7196284b632" - } - Frame { - msec: 2864 - hash: "85ef33fcb3f91e4fc20391bf94455984" - } - Frame { - msec: 2880 - image: "animated-smooth.2.png" - } - Frame { - msec: 2896 - hash: "53f05993ba3b426949badd2e4cd66d84" - } - Frame { - msec: 2912 - hash: "b375e723b2396b13b8f55cfc0c81c3c3" - } - Frame { - msec: 2928 - hash: "bd70500fbdfe5aa2fe4362a97a1dee2d" - } - Frame { - msec: 2944 - hash: "853429387cc639496c7338244de7e1b7" - } - Frame { - msec: 2960 - hash: "3df54504f8891306fa8f1e9e2075a5e2" - } - Frame { - msec: 2976 - hash: "0239d697642ca1d1b1d1daa3ea048e1e" - } - Frame { - msec: 2992 - hash: "b0070117f1c24a4da87434725d4bb989" - } - Frame { - msec: 3008 - hash: "8b8120cfc14de03e048632fdea61be21" - } - Frame { - msec: 3024 - hash: "845170815a87565dc4229792032b3357" - } - Frame { - msec: 3040 - hash: "0d407ee07692d0e5a480a60952807b3c" - } - Frame { - msec: 3056 - hash: "64b21b89576fdd0083f60a26f57b9c11" - } - Frame { - msec: 3072 - hash: "d7e96278583f83ab636ed68fa130e4d2" - } - Frame { - msec: 3088 - hash: "48db9a5e6aad9a9563a3cd35fb7fa9b6" - } - Frame { - msec: 3104 - hash: "adc670a9aa0326744cb23e4f5912e6c7" - } - Frame { - msec: 3120 - hash: "9cd29b4b023a8b92573575fb3c3dda83" - } - Frame { - msec: 3136 - hash: "177666cb3bb784c83196886b2c6cf6b6" - } - Frame { - msec: 3152 - hash: "ddd8a006ef048c8d929144aa9fcd7c5a" - } - Frame { - msec: 3168 - hash: "b699285764f5e8866a9996f4a0dccc69" - } - Frame { - msec: 3184 - hash: "84ef6dda8318b623832f58c46d762e89" - } - Frame { - msec: 3200 - hash: "a15f19f374bbfb6a922b69d080a91eaa" - } - Frame { - msec: 3216 - hash: "ae12f1f37a746e16b06e6b869c89fac1" - } - Frame { - msec: 3232 - hash: "5d3e85acabe5e5ff802eb7731676274f" - } - Frame { - msec: 3248 - hash: "fd85d1dd931033973283a408b5e328a8" - } - Frame { - msec: 3264 - hash: "3a77785cfd7755f567619d8e04583f6a" - } - Frame { - msec: 3280 - hash: "efc119983701908a904deb24108c59cb" - } - Frame { - msec: 3296 - hash: "902683d72f789399e9d99d1cea1bf177" - } - Frame { - msec: 3312 - hash: "3e81338d38723d56f2d6c428271f81c1" - } - Frame { - msec: 3328 - hash: "41987e6b4248d7944c0dbc6eb3862023" - } - Frame { - msec: 3344 - hash: "3d518cd0348d6202243364af1dd6ce89" - } - Frame { - msec: 3360 - hash: "4310a4c3037d845f088f21ad608f366a" - } - Frame { - msec: 3376 - hash: "0e0c40f8e11a7bd499c80562ac6f8a82" - } - Frame { - msec: 3392 - hash: "f4d0d3bca25e67908b38910f47b4757e" - } - Frame { - msec: 3408 - hash: "f602e3eda1889d1a7e49560f0dfb5d4c" - } - Frame { - msec: 3424 - hash: "e1474c2cdd8768ca1ef45bf3bc5234ca" - } - Frame { - msec: 3440 - hash: "c8312ede0998636a6bd6451d13636577" - } - Frame { - msec: 3456 - hash: "16c16c77c65b36d1e0954d5ead2642be" - } - Frame { - msec: 3472 - hash: "31d65134f340d82dd40f2401bda3fb7e" - } - Frame { - msec: 3488 - hash: "061406edcbd2d4930ab89c3fcab63c7f" - } - Frame { - msec: 3504 - hash: "0af81ee0d76ff8335a0e347dc086ca37" - } - Frame { - msec: 3520 - hash: "0f347763f25350ebb62dda1536372b45" - } - Frame { - msec: 3536 - hash: "f3a7e74a1839f9366f9eeec4d2b80d1e" - } - Frame { - msec: 3552 - hash: "64ecb03aa538e74d0b99c6dec7751401" - } - Frame { - msec: 3568 - hash: "170a1d5fe3422cf5223a78015a6a45fd" - } - Frame { - msec: 3584 - hash: "10307beea6d99ab0ff5863f8e35555ed" - } - Frame { - msec: 3600 - hash: "456be9c208d690c479ba12bf6325dde0" - } - Frame { - msec: 3616 - hash: "0a8da7a3f57c3e06e4be5ea1d8a83ae9" - } - Frame { - msec: 3632 - hash: "277ef98ea859fb7685fe6cd44a538a7d" - } - Frame { - msec: 3648 - hash: "74c837b29f7f05b615123f0e608b523f" - } - Frame { - msec: 3664 - hash: "d671a3b971468e1d8aa30ab655e020a9" - } - Frame { - msec: 3680 - hash: "df624d70cae1bcefda8d69c0ff055d83" - } - Frame { - msec: 3696 - hash: "3f9a09ae19be34348bb2552915360cf7" - } - Frame { - msec: 3712 - hash: "83c029e328e80af83158c37089cf0ece" - } - Frame { - msec: 3728 - hash: "323af110731b7af0c30f8862ff59b833" - } - Frame { - msec: 3744 - hash: "63d3c47f7dec1236440a05e0a8380900" - } - Frame { - msec: 3760 - hash: "48e62dd171f5da82b5aa26c765e4042c" - } - Frame { - msec: 3776 - hash: "5a8932d13d624932a65694fd19ec05cd" - } - Frame { - msec: 3792 - hash: "8419b295f67cae133760da79dfc26505" - } - Frame { - msec: 3808 - hash: "a716c8d2c94433dee719f92f0822c8ec" - } - Frame { - msec: 3824 - hash: "7b66e21652a7d0982226e281a48411a9" - } - Frame { - msec: 3840 - image: "animated-smooth.3.png" - } - Frame { - msec: 3856 - hash: "59470d71fa4426d0283e86371f2bfc2a" - } - Frame { - msec: 3872 - hash: "d56ba74d38c1889a278929d1c1b7f17a" - } - Frame { - msec: 3888 - hash: "de471829f8ad3b43bf1b4df9d1d65a4d" - } - Frame { - msec: 3904 - hash: "cd2180be80101c2aa4350b51b7a6f502" - } - Frame { - msec: 3920 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 3936 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 3952 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 3968 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 3984 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4000 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4016 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4032 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4048 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4064 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4080 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4096 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4112 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4128 - hash: "cd2180be80101c2aa4350b51b7a6f502" - } - Frame { - msec: 4144 - hash: "de471829f8ad3b43bf1b4df9d1d65a4d" - } - Frame { - msec: 4160 - hash: "ed9f2ca797894612600bc4b7fbaecb84" - } - Frame { - msec: 4176 - hash: "59470d71fa4426d0283e86371f2bfc2a" - } - Frame { - msec: 4192 - hash: "9a2f92efb51bcc6293d6a8e82d5314ea" - } - Frame { - msec: 4208 - hash: "7b66e21652a7d0982226e281a48411a9" - } - Frame { - msec: 4224 - hash: "a716c8d2c94433dee719f92f0822c8ec" - } - Frame { - msec: 4240 - hash: "f22a47b846cfee96ebdf39bbce2e6d51" - } - Frame { - msec: 4256 - hash: "5a8932d13d624932a65694fd19ec05cd" - } - Frame { - msec: 4272 - hash: "48e62dd171f5da82b5aa26c765e4042c" - } - Frame { - msec: 4288 - hash: "63d3c47f7dec1236440a05e0a8380900" - } - Frame { - msec: 4304 - hash: "323af110731b7af0c30f8862ff59b833" - } - Frame { - msec: 4320 - hash: "83c029e328e80af83158c37089cf0ece" - } - Frame { - msec: 4336 - hash: "3f9a09ae19be34348bb2552915360cf7" - } - Frame { - msec: 4352 - hash: "df624d70cae1bcefda8d69c0ff055d83" - } - Frame { - msec: 4368 - hash: "d671a3b971468e1d8aa30ab655e020a9" - } - Frame { - msec: 4384 - hash: "74c837b29f7f05b615123f0e608b523f" - } - Frame { - msec: 4400 - hash: "277ef98ea859fb7685fe6cd44a538a7d" - } - Frame { - msec: 4416 - hash: "0a8da7a3f57c3e06e4be5ea1d8a83ae9" - } - Frame { - msec: 4432 - hash: "456be9c208d690c479ba12bf6325dde0" - } - Frame { - msec: 4448 - hash: "10307beea6d99ab0ff5863f8e35555ed" - } - Frame { - msec: 4464 - hash: "170a1d5fe3422cf5223a78015a6a45fd" - } - Frame { - msec: 4480 - hash: "64ecb03aa538e74d0b99c6dec7751401" - } - Frame { - msec: 4496 - hash: "f3a7e74a1839f9366f9eeec4d2b80d1e" - } - Frame { - msec: 4512 - hash: "37c3f25e5cfdb48d7e3ab0cf8ffb9154" - } - Frame { - msec: 4528 - hash: "0af81ee0d76ff8335a0e347dc086ca37" - } - Frame { - msec: 4544 - hash: "061406edcbd2d4930ab89c3fcab63c7f" - } - Frame { - msec: 4560 - hash: "31d65134f340d82dd40f2401bda3fb7e" - } - Frame { - msec: 4576 - hash: "16c16c77c65b36d1e0954d5ead2642be" - } - Frame { - msec: 4592 - hash: "61c16009b65a55bffb63e27727e1615e" - } - Frame { - msec: 4608 - hash: "e1474c2cdd8768ca1ef45bf3bc5234ca" - } - Frame { - msec: 4624 - hash: "89c159ef00d273ecfe61332e1bf7244d" - } - Frame { - msec: 4640 - hash: "f4d0d3bca25e67908b38910f47b4757e" - } - Frame { - msec: 4656 - hash: "0e0c40f8e11a7bd499c80562ac6f8a82" - } - Frame { - msec: 4672 - hash: "4310a4c3037d845f088f21ad608f366a" - } - Frame { - msec: 4688 - hash: "3d518cd0348d6202243364af1dd6ce89" - } - Frame { - msec: 4704 - hash: "41987e6b4248d7944c0dbc6eb3862023" - } - Frame { - msec: 4720 - hash: "3e81338d38723d56f2d6c428271f81c1" - } - Frame { - msec: 4736 - hash: "902683d72f789399e9d99d1cea1bf177" - } - Frame { - msec: 4752 - hash: "efc119983701908a904deb24108c59cb" - } - Frame { - msec: 4768 - hash: "3a77785cfd7755f567619d8e04583f6a" - } - Frame { - msec: 4784 - hash: "fd85d1dd931033973283a408b5e328a8" - } - Frame { - msec: 4800 - image: "animated-smooth.4.png" - } - Frame { - msec: 4816 - hash: "ae12f1f37a746e16b06e6b869c89fac1" - } - Frame { - msec: 4832 - hash: "a15f19f374bbfb6a922b69d080a91eaa" - } - Frame { - msec: 4848 - hash: "84ef6dda8318b623832f58c46d762e89" - } - Frame { - msec: 4864 - hash: "b699285764f5e8866a9996f4a0dccc69" - } - Frame { - msec: 4880 - hash: "ddd8a006ef048c8d929144aa9fcd7c5a" - } - Frame { - msec: 4896 - hash: "177666cb3bb784c83196886b2c6cf6b6" - } - Frame { - msec: 4912 - hash: "9cd29b4b023a8b92573575fb3c3dda83" - } - Frame { - msec: 4928 - hash: "adc670a9aa0326744cb23e4f5912e6c7" - } - Frame { - msec: 4944 - hash: "48db9a5e6aad9a9563a3cd35fb7fa9b6" - } - Frame { - msec: 4960 - hash: "d7e96278583f83ab636ed68fa130e4d2" - } - Frame { - msec: 4976 - hash: "64b21b89576fdd0083f60a26f57b9c11" - } - Frame { - msec: 4992 - hash: "0d407ee07692d0e5a480a60952807b3c" - } - Frame { - msec: 5008 - hash: "845170815a87565dc4229792032b3357" - } - Frame { - msec: 5024 - hash: "8b8120cfc14de03e048632fdea61be21" - } - Frame { - msec: 5040 - hash: "b0070117f1c24a4da87434725d4bb989" - } - Frame { - msec: 5056 - hash: "0239d697642ca1d1b1d1daa3ea048e1e" - } - Frame { - msec: 5072 - hash: "3df54504f8891306fa8f1e9e2075a5e2" - } - Frame { - msec: 5088 - hash: "853429387cc639496c7338244de7e1b7" - } - Frame { - msec: 5104 - hash: "bd70500fbdfe5aa2fe4362a97a1dee2d" - } - Frame { - msec: 5120 - hash: "b375e723b2396b13b8f55cfc0c81c3c3" - } - Frame { - msec: 5136 - hash: "53f05993ba3b426949badd2e4cd66d84" - } - Frame { - msec: 5152 - hash: "23291a0239c69ea07db959e709b1ff5f" - } - Frame { - msec: 5168 - hash: "2192094410e2d7c8d9d4aa5f8deacff5" - } - Frame { - msec: 5184 - hash: "d6615fc345831a3cc5b9a7196284b632" - } - Frame { - msec: 5200 - hash: "92176cce4836dcae4dfca94e49b041a8" - } - Frame { - msec: 5216 - hash: "2a1fcfb753ca237b518da26e67c928e5" - } - Frame { - msec: 5232 - hash: "42be5d26afb9f066dd27cc9fbaf6ce20" - } - Frame { - msec: 5248 - hash: "bd045f4532d78bba0ef1b64118fd9f24" - } - Frame { - msec: 5264 - hash: "7f9999a9c87af43b9703323efab31770" - } - Frame { - msec: 5280 - hash: "0640fcb0b24d3ba4ab8695f78271a438" - } - Frame { - msec: 5296 - hash: "7c9a98e2101c33e17c1bd7e6c2d921ff" - } - Frame { - msec: 5312 - hash: "fce2648975106bc5c0ca9a4530f7f748" - } - Frame { - msec: 5328 - hash: "39cc17ee2e889f17dd07179fda99e431" - } - Frame { - msec: 5344 - hash: "39c46d85d20f7ef3eca1d09c7eb6a068" - } - Frame { - msec: 5360 - hash: "d65d50fbb920e683b041a1c72238225b" - } - Frame { - msec: 5376 - hash: "49a1df977b0494c7c72ca0b65c394e13" - } - Frame { - msec: 5392 - hash: "05cbce0eaa80b4610a9067af8c40f819" - } - Frame { - msec: 5408 - hash: "00ab7798bcd77a99886dff0414f35382" - } - Frame { - msec: 5424 - hash: "5cc90d798786c270ddd2616512f4459f" - } - Frame { - msec: 5440 - hash: "e5df07ea21e8e415c3ec82560f2d0f34" - } - Frame { - msec: 5456 - hash: "ddf1f5c0b97fe4821719ec5bf4bd091b" - } - Frame { - msec: 5472 - hash: "c61d2aa7f934fb5a9f9f7883e063b51c" - } - Frame { - msec: 5488 - hash: "29ddde3300d0520a4c01b5536d8b9e7a" - } - Frame { - msec: 5504 - hash: "2fede2f5d871654f3f8a6e9d890adeac" - } - Frame { - msec: 5520 - hash: "deed4c06c9b713834490832b88e7acaf" - } - Frame { - msec: 5536 - hash: "c2edb016cfdd47c192d1c48281ee76ed" - } - Frame { - msec: 5552 - hash: "a261be47ae89e6b53e6bc1c1197154ae" - } - Frame { - msec: 5568 - hash: "e860e97ebd73b7d1d5d5d90458b34bfe" - } - Frame { - msec: 5584 - hash: "a087b532ecb2f28e4ee60819228c2522" - } - Frame { - msec: 5600 - hash: "64df51b4c1bf744b2aae1c6d908c2cc3" - } - Frame { - msec: 5616 - hash: "4520003d4b221a3de6834b2729b3026d" - } - Frame { - msec: 5632 - hash: "d1110817827c318ceb0c112e8c2bfc1d" - } - Frame { - msec: 5648 - hash: "83d49474db15d5779923972ff5f55917" - } - Frame { - msec: 5664 - hash: "3bae40654ec551d69e7c8c72f631c7a5" - } - Frame { - msec: 5680 - hash: "774740a393f3e9b8f12b81cce8da8280" - } - Frame { - msec: 5696 - hash: "d8e398a1ce9ca45c19951e93bd5c932a" - } - Frame { - msec: 5712 - hash: "2b7eb8a9fe26b032be8b4b9c00995912" - } - Frame { - msec: 5728 - hash: "47e920e3884ccf2f0f49e78070af6929" - } - Frame { - msec: 5744 - hash: "fc913807eb1069d611495fbd5d43ee3d" - } - Frame { - msec: 5760 - image: "animated-smooth.5.png" - } - Frame { - msec: 5776 - hash: "5736362b42bc2d801e02edabb983663a" - } - Frame { - msec: 5792 - hash: "e3a2b5c7247acfc1b30825233fbfd56b" - } - Frame { - msec: 5808 - hash: "48952ffa5e300778eafa768b9fe7df0c" - } - Frame { - msec: 5824 - hash: "fe04cae65aeec18697eca4f3f83a40e9" - } - Frame { - msec: 5840 - hash: "382d454f2366c1fb4ca472faa3bfa5e9" - } - Frame { - msec: 5856 - hash: "89022a8e2feb3dcb845de69aafc333ad" - } - Frame { - msec: 5872 - hash: "25506557c853a0020e98cf3992956989" - } - Frame { - msec: 5888 - hash: "9a64706c52c9e962816953e32950b8ba" - } - Frame { - msec: 5904 - hash: "3cbfded47413172ada64095e65c55e8a" - } - Frame { - msec: 5920 - hash: "ec7e1190dd4fe122545e6ce6c8740500" - } - Frame { - msec: 5936 - hash: "c5e399e29b988148913e62ee208b3326" - } - Frame { - msec: 5952 - hash: "3991bc7760b7981d80665e3a7654c9f4" - } - Frame { - msec: 5968 - hash: "05312f9529c94d3331ace7d73c544284" - } - Frame { - msec: 5984 - hash: "a94de4e90a8f8eb4ec33fe902afd226c" - } - Frame { - msec: 6000 - hash: "723f87da7e5b002a2e9b0bcbc81f9458" - } - Frame { - msec: 6016 - hash: "6b8ded0d9386a3fff0601a100c513080" - } - Frame { - msec: 6032 - hash: "f976cd5046ef5391536859e63db905bd" - } - Frame { - msec: 6048 - hash: "a94de4e90a8f8eb4ec33fe902afd226c" - } - Frame { - msec: 6064 - hash: "05312f9529c94d3331ace7d73c544284" - } - Frame { - msec: 6080 - hash: "b980703c1d0018937e83a8ba8862469e" - } - Frame { - msec: 6096 - hash: "c5e399e29b988148913e62ee208b3326" - } - Frame { - msec: 6112 - hash: "3b7b83e97d17440b42e6ef4b962076d8" - } - Frame { - msec: 6128 - hash: "3cbfded47413172ada64095e65c55e8a" - } - Frame { - msec: 6144 - hash: "9a64706c52c9e962816953e32950b8ba" - } - Frame { - msec: 6160 - hash: "25506557c853a0020e98cf3992956989" - } - Frame { - msec: 6176 - hash: "89022a8e2feb3dcb845de69aafc333ad" - } - Frame { - msec: 6192 - hash: "382d454f2366c1fb4ca472faa3bfa5e9" - } - Frame { - msec: 6208 - hash: "fe04cae65aeec18697eca4f3f83a40e9" - } - Frame { - msec: 6224 - hash: "48952ffa5e300778eafa768b9fe7df0c" - } - Frame { - msec: 6240 - hash: "e3a2b5c7247acfc1b30825233fbfd56b" - } - Frame { - msec: 6256 - hash: "5736362b42bc2d801e02edabb983663a" - } - Frame { - msec: 6272 - hash: "5d9ee853f083d514fbe51d6953d8e000" - } - Frame { - msec: 6288 - hash: "fe899138116774df4c4441687e3019c5" - } - Frame { - msec: 6304 - hash: "47e920e3884ccf2f0f49e78070af6929" - } - Frame { - msec: 6320 - hash: "2b7eb8a9fe26b032be8b4b9c00995912" - } - Frame { - msec: 6336 - hash: "64cd225202ed6c91b02c368a9160a656" - } - Frame { - msec: 6352 - hash: "774740a393f3e9b8f12b81cce8da8280" - } - Frame { - msec: 6368 - hash: "3bae40654ec551d69e7c8c72f631c7a5" - } - Frame { - msec: 6384 - hash: "83d49474db15d5779923972ff5f55917" - } - Frame { - msec: 6400 - hash: "d1110817827c318ceb0c112e8c2bfc1d" - } - Frame { - msec: 6416 - hash: "4520003d4b221a3de6834b2729b3026d" - } - Frame { - msec: 6432 - hash: "64df51b4c1bf744b2aae1c6d908c2cc3" - } - Frame { - msec: 6448 - hash: "a087b532ecb2f28e4ee60819228c2522" - } - Frame { - msec: 6464 - hash: "e860e97ebd73b7d1d5d5d90458b34bfe" - } - Frame { - msec: 6480 - hash: "a261be47ae89e6b53e6bc1c1197154ae" - } - Frame { - msec: 6496 - hash: "c2edb016cfdd47c192d1c48281ee76ed" - } - Frame { - msec: 6512 - hash: "deed4c06c9b713834490832b88e7acaf" - } - Frame { - msec: 6528 - hash: "2fede2f5d871654f3f8a6e9d890adeac" - } - Frame { - msec: 6544 - hash: "29ddde3300d0520a4c01b5536d8b9e7a" - } - Frame { - msec: 6560 - hash: "c61d2aa7f934fb5a9f9f7883e063b51c" - } - Frame { - msec: 6576 - hash: "ddf1f5c0b97fe4821719ec5bf4bd091b" - } - Frame { - msec: 6592 - hash: "e5df07ea21e8e415c3ec82560f2d0f34" - } - Frame { - msec: 6608 - hash: "5cc90d798786c270ddd2616512f4459f" - } - Frame { - msec: 6624 - hash: "00ab7798bcd77a99886dff0414f35382" - } - Frame { - msec: 6640 - hash: "05cbce0eaa80b4610a9067af8c40f819" - } - Frame { - msec: 6656 - hash: "a676f45d946aeb9fa577c0e862735b01" - } - Frame { - msec: 6672 - hash: "d65d50fbb920e683b041a1c72238225b" - } - Frame { - msec: 6688 - hash: "39c46d85d20f7ef3eca1d09c7eb6a068" - } - Frame { - msec: 6704 - hash: "39cc17ee2e889f17dd07179fda99e431" - } - Frame { - msec: 6720 - image: "animated-smooth.6.png" - } - Frame { - msec: 6736 - hash: "7c9a98e2101c33e17c1bd7e6c2d921ff" - } - Frame { - msec: 6752 - hash: "0640fcb0b24d3ba4ab8695f78271a438" - } - Frame { - msec: 6768 - hash: "2084ccc60ddd493399c128717816d33b" - } - Frame { - msec: 6784 - hash: "bd045f4532d78bba0ef1b64118fd9f24" - } - Frame { - msec: 6800 - hash: "42be5d26afb9f066dd27cc9fbaf6ce20" - } - Frame { - msec: 6816 - hash: "2a1fcfb753ca237b518da26e67c928e5" - } - Frame { - msec: 6832 - hash: "92176cce4836dcae4dfca94e49b041a8" - } - Frame { - msec: 6848 - hash: "d6615fc345831a3cc5b9a7196284b632" - } - Frame { - msec: 6864 - hash: "85ef33fcb3f91e4fc20391bf94455984" - } - Frame { - msec: 6880 - hash: "23291a0239c69ea07db959e709b1ff5f" - } - Frame { - msec: 6896 - hash: "53f05993ba3b426949badd2e4cd66d84" - } - Frame { - msec: 6912 - hash: "b375e723b2396b13b8f55cfc0c81c3c3" - } - Frame { - msec: 6928 - hash: "bd70500fbdfe5aa2fe4362a97a1dee2d" - } - Frame { - msec: 6944 - hash: "853429387cc639496c7338244de7e1b7" - } - Frame { - msec: 6960 - hash: "3df54504f8891306fa8f1e9e2075a5e2" - } - Frame { - msec: 6976 - hash: "0239d697642ca1d1b1d1daa3ea048e1e" - } - Frame { - msec: 6992 - hash: "b0070117f1c24a4da87434725d4bb989" - } - Frame { - msec: 7008 - hash: "8b8120cfc14de03e048632fdea61be21" - } - Frame { - msec: 7024 - hash: "845170815a87565dc4229792032b3357" - } - Frame { - msec: 7040 - hash: "0d407ee07692d0e5a480a60952807b3c" - } - Frame { - msec: 7056 - hash: "64b21b89576fdd0083f60a26f57b9c11" - } - Frame { - msec: 7072 - hash: "d7e96278583f83ab636ed68fa130e4d2" - } - Frame { - msec: 7088 - hash: "48db9a5e6aad9a9563a3cd35fb7fa9b6" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7104 - hash: "adc670a9aa0326744cb23e4f5912e6c7" - } - Frame { - msec: 7120 - hash: "9cd29b4b023a8b92573575fb3c3dda83" - } - Frame { - msec: 7136 - hash: "177666cb3bb784c83196886b2c6cf6b6" - } - Frame { - msec: 7152 - hash: "ddd8a006ef048c8d929144aa9fcd7c5a" - } - Frame { - msec: 7168 - hash: "b699285764f5e8866a9996f4a0dccc69" - } - Frame { - msec: 7184 - hash: "84ef6dda8318b623832f58c46d762e89" - } - Frame { - msec: 7200 - hash: "a15f19f374bbfb6a922b69d080a91eaa" - } - Frame { - msec: 7216 - hash: "ae12f1f37a746e16b06e6b869c89fac1" - } - Frame { - msec: 7232 - hash: "5d3e85acabe5e5ff802eb7731676274f" - } -} diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.0.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.0.png Binary files differdeleted file mode 100644 index 99228f9..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.0.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.1.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.1.png Binary files differdeleted file mode 100644 index a2dcd00..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.1.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.2.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.2.png Binary files differdeleted file mode 100644 index 8a80020..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.2.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.3.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.3.png Binary files differdeleted file mode 100644 index 02b57ef..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.3.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.4.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.4.png Binary files differdeleted file mode 100644 index df0f6cc..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.4.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.5.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.5.png Binary files differdeleted file mode 100644 index 0add64d..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.5.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.6.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.6.png Binary files differdeleted file mode 100644 index 0886207..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.6.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.7.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.7.png Binary files differdeleted file mode 100644 index bc1a7b0..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.7.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.qml b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.qml deleted file mode 100644 index 29e591a..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/animated.qml +++ /dev/null @@ -1,2091 +0,0 @@ -import Qt.VisualTest 4.6 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 32 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 48 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 64 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 80 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 96 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 112 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 128 - hash: "4c60d345821f515c7811f3b69eb94607" - } - Frame { - msec: 144 - hash: "aacf9ae3c23d174a1c1cda493600e355" - } - Frame { - msec: 160 - hash: "228d5312c261d1a5455faf69ec2f2520" - } - Frame { - msec: 176 - hash: "465ec993948f7b75aeb5759976f4620d" - } - Frame { - msec: 192 - hash: "755cfccc38bababc468fe6e1076804bb" - } - Frame { - msec: 208 - hash: "b63e4d1686057828fd8781f1c33585f5" - } - Frame { - msec: 224 - hash: "c5b3dede34b0d1d78135e39c41d117c6" - } - Frame { - msec: 240 - hash: "4d45d70f997c2c67166905c97a900d2e" - } - Frame { - msec: 256 - hash: "7b4d12e5a877507e7454aa1b8ed87c2d" - } - Frame { - msec: 272 - hash: "08b9be66e23c7b6f6f629c7470394601" - } - Frame { - msec: 288 - hash: "3dac1d9632378bd18c1c938a4868e3fb" - } - Frame { - msec: 304 - hash: "406224b535b4425d2708df0083acdc8e" - } - Frame { - msec: 320 - hash: "482bb92d4f0ad5d7c7e379b9e1ad326e" - } - Frame { - msec: 336 - hash: "8419f1d75b14130730bcfec4e3a9b058" - } - Frame { - msec: 352 - hash: "a85ee8be6a47bbd1b14137803ce606ec" - } - Frame { - msec: 368 - hash: "c1936628aec13e08e9581dcd2c6d5717" - } - Frame { - msec: 384 - hash: "75c9bf83ca3fe24612c245698c089430" - } - Frame { - msec: 400 - hash: "8c66a33d26eec2a1133f4362710a5fab" - } - Frame { - msec: 416 - hash: "2266df495ab5265e7514a506d3bf5bc6" - } - Frame { - msec: 432 - hash: "01947e631c3db43f7c5b4427229bc0c8" - } - Frame { - msec: 448 - hash: "3f62f032239d412d3637198f5e3e83d6" - } - Frame { - msec: 464 - hash: "06d8d8a1a41893d4e27725948a75caf4" - } - Frame { - msec: 480 - hash: "6b48bfd0c7993f746d6301c2a0f61d23" - } - Frame { - msec: 496 - hash: "ac8f096e8c7cc23bfb01de69cf3e266e" - } - Frame { - msec: 512 - hash: "dd4c9e63001bc6e0e63ea4db2d85301f" - } - Frame { - msec: 528 - hash: "2a7bed775824968e318c3d40fbc5b1c2" - } - Frame { - msec: 544 - hash: "3152e5f29015ece423fbdd11a2b382b8" - } - Frame { - msec: 560 - hash: "f1a7a4a67a21f5025294af4bea3f8998" - } - Frame { - msec: 576 - hash: "a40014d842471784e1222eb205395f6f" - } - Frame { - msec: 592 - hash: "18c2f321a149e38b258ac264d40c2376" - } - Frame { - msec: 608 - hash: "4ae120bb6dc2bd5ff81cc99ae03c191e" - } - Frame { - msec: 624 - hash: "19d05a96f3ae7388e854bbf1075b51c1" - } - Frame { - msec: 640 - hash: "e418b5f54705515dce5ce3b4cbc45d19" - } - Frame { - msec: 656 - hash: "554e1d360463871e7c05cfe6f8abe1dd" - } - Frame { - msec: 672 - hash: "153237f8cf37e29ad2f32f7a8a6aecdb" - } - Frame { - msec: 688 - hash: "60f158382f75103c78e2b9b408e0fe65" - } - Frame { - msec: 704 - hash: "4e60300cfab8634e04dcd1b556251d31" - } - Frame { - msec: 720 - hash: "6a521f952e05d91b86ad78fd6f5de4f9" - } - Frame { - msec: 736 - hash: "b74521d6ac531414aeeca0fb28379d11" - } - Frame { - msec: 752 - hash: "a6f17da2dd581bdc249ff62f833dc025" - } - Frame { - msec: 768 - hash: "93d9f0a7c387cbe653a9a088f8f4ef2b" - } - Frame { - msec: 784 - hash: "1ea07ee309ce2c52cbc36370b75a872f" - } - Frame { - msec: 800 - hash: "593a8a45c3a0cd7ce1cb6bd1913136ba" - } - Frame { - msec: 816 - hash: "c7eb7837dce71c914186326216214eeb" - } - Frame { - msec: 832 - hash: "0cba07ca38c7f0483244832a42d9ac53" - } - Frame { - msec: 848 - hash: "93cf31eabb454ec536c638a506be0648" - } - Frame { - msec: 864 - hash: "e8a61d3858244127cb2b2812f04f5ce9" - } - Frame { - msec: 880 - hash: "1ac8c393f084aa1894c26610b7f40ea6" - } - Frame { - msec: 896 - hash: "8861bf848da5c96b35addff736b01520" - } - Frame { - msec: 912 - hash: "f04e84ad3579d6334077abe73101d206" - } - Frame { - msec: 928 - hash: "eac4600372f0fdfadee88896ac915a48" - } - Frame { - msec: 944 - hash: "ff0928dfd16b2da9811a172c19817a97" - } - Frame { - msec: 960 - image: "animated.0.png" - } - Frame { - msec: 976 - hash: "7383209c80b403b93da3264eadbc047f" - } - Frame { - msec: 992 - hash: "86360bd58bba5fdd901c105ddb2e3ade" - } - Frame { - msec: 1008 - hash: "bc747167dfb3388ac63e9e68a86b9a03" - } - Frame { - msec: 1024 - hash: "bccb4b8a494bd45bd70c2524a02a9dc3" - } - Frame { - msec: 1040 - hash: "ae48da4a66f93c806725ce749700aac8" - } - Frame { - msec: 1056 - hash: "c763f56728e17fc119539a4d45dfccc3" - } - Frame { - msec: 1072 - hash: "956429472da133324c970774f77784f5" - } - Frame { - msec: 1088 - hash: "a4ddb4956d71fd642d54757938100cf3" - } - Frame { - msec: 1104 - hash: "ec0aea8dc8c269d1f0aee5817347ac55" - } - Frame { - msec: 1120 - hash: "68dae343cf324391ec6721cea14575f7" - } - Frame { - msec: 1136 - hash: "81d2fc6727dc7449d1a87b4abea9b704" - } - Frame { - msec: 1152 - hash: "c3a1f12febc979150028737722d6d045" - } - Frame { - msec: 1168 - hash: "80ebac4d923f67fb8dba3d133ce657ba" - } - Frame { - msec: 1184 - hash: "7c22fc3e30377cc14326833bdd23ddd8" - } - Frame { - msec: 1200 - hash: "5359f5e45e5467c62c2d9521c8199c48" - } - Frame { - msec: 1216 - hash: "30f84a7f67b13a945ba6d5935ea92da5" - } - Frame { - msec: 1232 - hash: "08f55088cdce741c67539f73291e53ab" - } - Frame { - msec: 1248 - hash: "93128906d054e44bfd126fc22bdc3102" - } - Frame { - msec: 1264 - hash: "97f7a2175dcf9ac2581a92d614d72f88" - } - Frame { - msec: 1280 - hash: "587cb6e05048579088e88e0180e3ad48" - } - Frame { - msec: 1296 - hash: "985868869ef2c332da379460a2f3a71b" - } - Frame { - msec: 1312 - hash: "94084ca4998fcda408f6987f52c34185" - } - Frame { - msec: 1328 - hash: "e91bb914c1eb63cd4269b30a220a128a" - } - Frame { - msec: 1344 - hash: "e880d93963c80e4fab5173554c9600fc" - } - Frame { - msec: 1360 - hash: "84c94704c16e246df1048f958cc8cefb" - } - Frame { - msec: 1376 - hash: "4f1eace868a6688e5b24ce48a1f0fd18" - } - Frame { - msec: 1392 - hash: "99de44f74f8e1f79652ab46afb4bb59e" - } - Frame { - msec: 1408 - hash: "44072400ca3f0237d1aebae28a94becc" - } - Frame { - msec: 1424 - hash: "a1bd4e995365e79389dba80f9e3b7af8" - } - Frame { - msec: 1440 - hash: "95d776c84fe155617fc4ee51bdb45b7e" - } - Frame { - msec: 1456 - hash: "3b95eb8cbfc831e1ebee2e456b026ab4" - } - Frame { - msec: 1472 - hash: "826c7741ba0c51de407bb799e8f360b5" - } - Frame { - msec: 1488 - hash: "11673a112566a64aca3c7010b9cc9c4d" - } - Frame { - msec: 1504 - hash: "e1e6c7a7f51bcccd749710dbbf9e97f6" - } - Frame { - msec: 1520 - hash: "5b027815ea3c1ea54e1a02c798c468db" - } - Frame { - msec: 1536 - hash: "65c514c9e926affe1da0b4826d2754c7" - } - Frame { - msec: 1552 - hash: "73c5f23f51797a33f4d2898738e6356e" - } - Frame { - msec: 1568 - hash: "acd9a2e76b22ab0ff809fd3ec3a018ec" - } - Frame { - msec: 1584 - hash: "fb17df681d99d5de05f6329bba697ea5" - } - Frame { - msec: 1600 - hash: "1bf7a98884b506b38326f59f85a53f41" - } - Frame { - msec: 1616 - hash: "0b1a741975e3d9ef8f5e78f371c89441" - } - Frame { - msec: 1632 - hash: "a6937ee49648ed0cb409063bf1da3b87" - } - Frame { - msec: 1648 - hash: "a790f0e884ab85f7802dd094e4ef550f" - } - Frame { - msec: 1664 - hash: "3b644aac161f0a75bfb64f5075373190" - } - Frame { - msec: 1680 - hash: "b12faa76c07adc21634cd8f8cb8436ae" - } - Frame { - msec: 1696 - hash: "3fb20f9dbd40b4729235e13af9643afc" - } - Frame { - msec: 1712 - hash: "f57727419bb51fb1e589b960ddeb20ae" - } - Frame { - msec: 1728 - hash: "7b78cba247f2c209ed81e003ca25d0a5" - } - Frame { - msec: 1744 - hash: "8172e076b05d95248d89e815fde820ef" - } - Frame { - msec: 1760 - hash: "a88d6fc324ef48aa52c642a1662ec679" - } - Frame { - msec: 1776 - hash: "74c1e71378b502bc1b732a55806a10f1" - } - Frame { - msec: 1792 - hash: "6eae517ad33f0609c31ef1f8f80ba899" - } - Frame { - msec: 1808 - hash: "a67e9a0f55512fb1c55f13c6b483923b" - } - Frame { - msec: 1824 - hash: "4887cd34d9926a361f3ca2e75be53ea6" - } - Frame { - msec: 1840 - hash: "13ca95adab171d9fad9ee8b75d0226bc" - } - Frame { - msec: 1856 - hash: "affab9fb48c889a2680eb81458d400f9" - } - Frame { - msec: 1872 - hash: "7aa0cbf73f7999be7cde4ec739efbc33" - } - Frame { - msec: 1888 - hash: "36c054064c9a76f4072492e55c70fb6c" - } - Frame { - msec: 1904 - hash: "d1ed4916cb1ecff60277d74369ff311b" - } - Frame { - msec: 1920 - image: "animated.1.png" - } - Frame { - msec: 1936 - hash: "29245946cbd811fe6bf6b2b41cc13002" - } - Frame { - msec: 1952 - hash: "8a9dd7a2d10771633e6896f3f4a722ae" - } - Frame { - msec: 1968 - hash: "058c918e83bfdd665cd836566b53959b" - } - Frame { - msec: 1984 - hash: "fdf3b7a0391119e2fe77be8d6a17481d" - } - Frame { - msec: 2000 - hash: "ed5d80c33dbf72624385b1cf43784626" - } - Frame { - msec: 2016 - hash: "911591db1519ba264847f09868e38e0e" - } - Frame { - msec: 2032 - hash: "ed5d80c33dbf72624385b1cf43784626" - } - Frame { - msec: 2048 - hash: "fdf3b7a0391119e2fe77be8d6a17481d" - } - Frame { - msec: 2064 - hash: "058c918e83bfdd665cd836566b53959b" - } - Frame { - msec: 2080 - hash: "8a9dd7a2d10771633e6896f3f4a722ae" - } - Frame { - msec: 2096 - hash: "29245946cbd811fe6bf6b2b41cc13002" - } - Frame { - msec: 2112 - hash: "63ebaa4869728f5e2891d068e4b0091c" - } - Frame { - msec: 2128 - hash: "d1ed4916cb1ecff60277d74369ff311b" - } - Frame { - msec: 2144 - hash: "36c054064c9a76f4072492e55c70fb6c" - } - Frame { - msec: 2160 - hash: "7aa0cbf73f7999be7cde4ec739efbc33" - } - Frame { - msec: 2176 - hash: "affab9fb48c889a2680eb81458d400f9" - } - Frame { - msec: 2192 - hash: "13ca95adab171d9fad9ee8b75d0226bc" - } - Frame { - msec: 2208 - hash: "4887cd34d9926a361f3ca2e75be53ea6" - } - Frame { - msec: 2224 - hash: "a67e9a0f55512fb1c55f13c6b483923b" - } - Frame { - msec: 2240 - hash: "6eae517ad33f0609c31ef1f8f80ba899" - } - Frame { - msec: 2256 - hash: "74c1e71378b502bc1b732a55806a10f1" - } - Frame { - msec: 2272 - hash: "a88d6fc324ef48aa52c642a1662ec679" - } - Frame { - msec: 2288 - hash: "8172e076b05d95248d89e815fde820ef" - } - Frame { - msec: 2304 - hash: "7b78cba247f2c209ed81e003ca25d0a5" - } - Frame { - msec: 2320 - hash: "f57727419bb51fb1e589b960ddeb20ae" - } - Frame { - msec: 2336 - hash: "3fb20f9dbd40b4729235e13af9643afc" - } - Frame { - msec: 2352 - hash: "b12faa76c07adc21634cd8f8cb8436ae" - } - Frame { - msec: 2368 - hash: "3b644aac161f0a75bfb64f5075373190" - } - Frame { - msec: 2384 - hash: "a790f0e884ab85f7802dd094e4ef550f" - } - Frame { - msec: 2400 - hash: "a6937ee49648ed0cb409063bf1da3b87" - } - Frame { - msec: 2416 - hash: "0b1a741975e3d9ef8f5e78f371c89441" - } - Frame { - msec: 2432 - hash: "1bf7a98884b506b38326f59f85a53f41" - } - Frame { - msec: 2448 - hash: "fb17df681d99d5de05f6329bba697ea5" - } - Frame { - msec: 2464 - hash: "acd9a2e76b22ab0ff809fd3ec3a018ec" - } - Frame { - msec: 2480 - hash: "73c5f23f51797a33f4d2898738e6356e" - } - Frame { - msec: 2496 - hash: "65c514c9e926affe1da0b4826d2754c7" - } - Frame { - msec: 2512 - hash: "5b027815ea3c1ea54e1a02c798c468db" - } - Frame { - msec: 2528 - hash: "e1e6c7a7f51bcccd749710dbbf9e97f6" - } - Frame { - msec: 2544 - hash: "11673a112566a64aca3c7010b9cc9c4d" - } - Frame { - msec: 2560 - hash: "826c7741ba0c51de407bb799e8f360b5" - } - Frame { - msec: 2576 - hash: "3b95eb8cbfc831e1ebee2e456b026ab4" - } - Frame { - msec: 2592 - hash: "95d776c84fe155617fc4ee51bdb45b7e" - } - Frame { - msec: 2608 - hash: "a1bd4e995365e79389dba80f9e3b7af8" - } - Frame { - msec: 2624 - hash: "44072400ca3f0237d1aebae28a94becc" - } - Frame { - msec: 2640 - hash: "99de44f74f8e1f79652ab46afb4bb59e" - } - Frame { - msec: 2656 - hash: "4f1eace868a6688e5b24ce48a1f0fd18" - } - Frame { - msec: 2672 - hash: "84c94704c16e246df1048f958cc8cefb" - } - Frame { - msec: 2688 - hash: "e880d93963c80e4fab5173554c9600fc" - } - Frame { - msec: 2704 - hash: "e91bb914c1eb63cd4269b30a220a128a" - } - Frame { - msec: 2720 - hash: "94084ca4998fcda408f6987f52c34185" - } - Frame { - msec: 2736 - hash: "985868869ef2c332da379460a2f3a71b" - } - Frame { - msec: 2752 - hash: "587cb6e05048579088e88e0180e3ad48" - } - Frame { - msec: 2768 - hash: "97f7a2175dcf9ac2581a92d614d72f88" - } - Frame { - msec: 2784 - hash: "93128906d054e44bfd126fc22bdc3102" - } - Frame { - msec: 2800 - hash: "08f55088cdce741c67539f73291e53ab" - } - Frame { - msec: 2816 - hash: "30f84a7f67b13a945ba6d5935ea92da5" - } - Frame { - msec: 2832 - hash: "5359f5e45e5467c62c2d9521c8199c48" - } - Frame { - msec: 2848 - hash: "7c22fc3e30377cc14326833bdd23ddd8" - } - Frame { - msec: 2864 - hash: "80ebac4d923f67fb8dba3d133ce657ba" - } - Frame { - msec: 2880 - image: "animated.2.png" - } - Frame { - msec: 2896 - hash: "81d2fc6727dc7449d1a87b4abea9b704" - } - Frame { - msec: 2912 - hash: "68dae343cf324391ec6721cea14575f7" - } - Frame { - msec: 2928 - hash: "ec0aea8dc8c269d1f0aee5817347ac55" - } - Frame { - msec: 2944 - hash: "a4ddb4956d71fd642d54757938100cf3" - } - Frame { - msec: 2960 - hash: "956429472da133324c970774f77784f5" - } - Frame { - msec: 2976 - hash: "c763f56728e17fc119539a4d45dfccc3" - } - Frame { - msec: 2992 - hash: "ae48da4a66f93c806725ce749700aac8" - } - Frame { - msec: 3008 - hash: "bccb4b8a494bd45bd70c2524a02a9dc3" - } - Frame { - msec: 3024 - hash: "bc747167dfb3388ac63e9e68a86b9a03" - } - Frame { - msec: 3040 - hash: "86360bd58bba5fdd901c105ddb2e3ade" - } - Frame { - msec: 3056 - hash: "7383209c80b403b93da3264eadbc047f" - } - Frame { - msec: 3072 - hash: "280288a7988736e30a2a3e4289ac3b0c" - } - Frame { - msec: 3088 - hash: "ff0928dfd16b2da9811a172c19817a97" - } - Frame { - msec: 3104 - hash: "eac4600372f0fdfadee88896ac915a48" - } - Frame { - msec: 3120 - hash: "f04e84ad3579d6334077abe73101d206" - } - Frame { - msec: 3136 - hash: "8861bf848da5c96b35addff736b01520" - } - Frame { - msec: 3152 - hash: "1ac8c393f084aa1894c26610b7f40ea6" - } - Frame { - msec: 3168 - hash: "e8a61d3858244127cb2b2812f04f5ce9" - } - Frame { - msec: 3184 - hash: "93cf31eabb454ec536c638a506be0648" - } - Frame { - msec: 3200 - hash: "0cba07ca38c7f0483244832a42d9ac53" - } - Frame { - msec: 3216 - hash: "c7eb7837dce71c914186326216214eeb" - } - Frame { - msec: 3232 - hash: "593a8a45c3a0cd7ce1cb6bd1913136ba" - } - Frame { - msec: 3248 - hash: "1ea07ee309ce2c52cbc36370b75a872f" - } - Frame { - msec: 3264 - hash: "93d9f0a7c387cbe653a9a088f8f4ef2b" - } - Frame { - msec: 3280 - hash: "a6f17da2dd581bdc249ff62f833dc025" - } - Frame { - msec: 3296 - hash: "b74521d6ac531414aeeca0fb28379d11" - } - Frame { - msec: 3312 - hash: "6a521f952e05d91b86ad78fd6f5de4f9" - } - Frame { - msec: 3328 - hash: "4e60300cfab8634e04dcd1b556251d31" - } - Frame { - msec: 3344 - hash: "60f158382f75103c78e2b9b408e0fe65" - } - Frame { - msec: 3360 - hash: "153237f8cf37e29ad2f32f7a8a6aecdb" - } - Frame { - msec: 3376 - hash: "554e1d360463871e7c05cfe6f8abe1dd" - } - Frame { - msec: 3392 - hash: "e418b5f54705515dce5ce3b4cbc45d19" - } - Frame { - msec: 3408 - hash: "19d05a96f3ae7388e854bbf1075b51c1" - } - Frame { - msec: 3424 - hash: "4ae120bb6dc2bd5ff81cc99ae03c191e" - } - Frame { - msec: 3440 - hash: "18c2f321a149e38b258ac264d40c2376" - } - Frame { - msec: 3456 - hash: "a40014d842471784e1222eb205395f6f" - } - Frame { - msec: 3472 - hash: "f1a7a4a67a21f5025294af4bea3f8998" - } - Frame { - msec: 3488 - hash: "3152e5f29015ece423fbdd11a2b382b8" - } - Frame { - msec: 3504 - hash: "2a7bed775824968e318c3d40fbc5b1c2" - } - Frame { - msec: 3520 - hash: "dd4c9e63001bc6e0e63ea4db2d85301f" - } - Frame { - msec: 3536 - hash: "ac8f096e8c7cc23bfb01de69cf3e266e" - } - Frame { - msec: 3552 - hash: "6b48bfd0c7993f746d6301c2a0f61d23" - } - Frame { - msec: 3568 - hash: "06d8d8a1a41893d4e27725948a75caf4" - } - Frame { - msec: 3584 - hash: "3f62f032239d412d3637198f5e3e83d6" - } - Frame { - msec: 3600 - hash: "01947e631c3db43f7c5b4427229bc0c8" - } - Frame { - msec: 3616 - hash: "2266df495ab5265e7514a506d3bf5bc6" - } - Frame { - msec: 3632 - hash: "8c66a33d26eec2a1133f4362710a5fab" - } - Frame { - msec: 3648 - hash: "75c9bf83ca3fe24612c245698c089430" - } - Frame { - msec: 3664 - hash: "c1936628aec13e08e9581dcd2c6d5717" - } - Frame { - msec: 3680 - hash: "a85ee8be6a47bbd1b14137803ce606ec" - } - Frame { - msec: 3696 - hash: "8419f1d75b14130730bcfec4e3a9b058" - } - Frame { - msec: 3712 - hash: "482bb92d4f0ad5d7c7e379b9e1ad326e" - } - Frame { - msec: 3728 - hash: "406224b535b4425d2708df0083acdc8e" - } - Frame { - msec: 3744 - hash: "3dac1d9632378bd18c1c938a4868e3fb" - } - Frame { - msec: 3760 - hash: "08b9be66e23c7b6f6f629c7470394601" - } - Frame { - msec: 3776 - hash: "7b4d12e5a877507e7454aa1b8ed87c2d" - } - Frame { - msec: 3792 - hash: "4d45d70f997c2c67166905c97a900d2e" - } - Frame { - msec: 3808 - hash: "c5b3dede34b0d1d78135e39c41d117c6" - } - Frame { - msec: 3824 - hash: "b63e4d1686057828fd8781f1c33585f5" - } - Frame { - msec: 3840 - image: "animated.3.png" - } - Frame { - msec: 3856 - hash: "465ec993948f7b75aeb5759976f4620d" - } - Frame { - msec: 3872 - hash: "228d5312c261d1a5455faf69ec2f2520" - } - Frame { - msec: 3888 - hash: "aacf9ae3c23d174a1c1cda493600e355" - } - Frame { - msec: 3904 - hash: "4c60d345821f515c7811f3b69eb94607" - } - Frame { - msec: 3920 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 3936 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 3952 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 3968 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 3984 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4000 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4016 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4032 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4048 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4064 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4080 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4096 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4112 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 4128 - hash: "4c60d345821f515c7811f3b69eb94607" - } - Frame { - msec: 4144 - hash: "aacf9ae3c23d174a1c1cda493600e355" - } - Frame { - msec: 4160 - hash: "228d5312c261d1a5455faf69ec2f2520" - } - Frame { - msec: 4176 - hash: "465ec993948f7b75aeb5759976f4620d" - } - Frame { - msec: 4192 - hash: "755cfccc38bababc468fe6e1076804bb" - } - Frame { - msec: 4208 - hash: "b63e4d1686057828fd8781f1c33585f5" - } - Frame { - msec: 4224 - hash: "c5b3dede34b0d1d78135e39c41d117c6" - } - Frame { - msec: 4240 - hash: "4d45d70f997c2c67166905c97a900d2e" - } - Frame { - msec: 4256 - hash: "7b4d12e5a877507e7454aa1b8ed87c2d" - } - Frame { - msec: 4272 - hash: "08b9be66e23c7b6f6f629c7470394601" - } - Frame { - msec: 4288 - hash: "3dac1d9632378bd18c1c938a4868e3fb" - } - Frame { - msec: 4304 - hash: "406224b535b4425d2708df0083acdc8e" - } - Frame { - msec: 4320 - hash: "482bb92d4f0ad5d7c7e379b9e1ad326e" - } - Frame { - msec: 4336 - hash: "8419f1d75b14130730bcfec4e3a9b058" - } - Frame { - msec: 4352 - hash: "a85ee8be6a47bbd1b14137803ce606ec" - } - Frame { - msec: 4368 - hash: "c1936628aec13e08e9581dcd2c6d5717" - } - Frame { - msec: 4384 - hash: "75c9bf83ca3fe24612c245698c089430" - } - Frame { - msec: 4400 - hash: "8c66a33d26eec2a1133f4362710a5fab" - } - Frame { - msec: 4416 - hash: "2266df495ab5265e7514a506d3bf5bc6" - } - Frame { - msec: 4432 - hash: "01947e631c3db43f7c5b4427229bc0c8" - } - Frame { - msec: 4448 - hash: "3f62f032239d412d3637198f5e3e83d6" - } - Frame { - msec: 4464 - hash: "06d8d8a1a41893d4e27725948a75caf4" - } - Frame { - msec: 4480 - hash: "6b48bfd0c7993f746d6301c2a0f61d23" - } - Frame { - msec: 4496 - hash: "ac8f096e8c7cc23bfb01de69cf3e266e" - } - Frame { - msec: 4512 - hash: "dd4c9e63001bc6e0e63ea4db2d85301f" - } - Frame { - msec: 4528 - hash: "2a7bed775824968e318c3d40fbc5b1c2" - } - Frame { - msec: 4544 - hash: "3152e5f29015ece423fbdd11a2b382b8" - } - Frame { - msec: 4560 - hash: "f1a7a4a67a21f5025294af4bea3f8998" - } - Frame { - msec: 4576 - hash: "a40014d842471784e1222eb205395f6f" - } - Frame { - msec: 4592 - hash: "18c2f321a149e38b258ac264d40c2376" - } - Frame { - msec: 4608 - hash: "4ae120bb6dc2bd5ff81cc99ae03c191e" - } - Frame { - msec: 4624 - hash: "19d05a96f3ae7388e854bbf1075b51c1" - } - Frame { - msec: 4640 - hash: "e418b5f54705515dce5ce3b4cbc45d19" - } - Frame { - msec: 4656 - hash: "554e1d360463871e7c05cfe6f8abe1dd" - } - Frame { - msec: 4672 - hash: "153237f8cf37e29ad2f32f7a8a6aecdb" - } - Frame { - msec: 4688 - hash: "60f158382f75103c78e2b9b408e0fe65" - } - Frame { - msec: 4704 - hash: "4e60300cfab8634e04dcd1b556251d31" - } - Frame { - msec: 4720 - hash: "6a521f952e05d91b86ad78fd6f5de4f9" - } - Frame { - msec: 4736 - hash: "b74521d6ac531414aeeca0fb28379d11" - } - Frame { - msec: 4752 - hash: "a6f17da2dd581bdc249ff62f833dc025" - } - Frame { - msec: 4768 - hash: "93d9f0a7c387cbe653a9a088f8f4ef2b" - } - Frame { - msec: 4784 - hash: "1ea07ee309ce2c52cbc36370b75a872f" - } - Frame { - msec: 4800 - image: "animated.4.png" - } - Frame { - msec: 4816 - hash: "c7eb7837dce71c914186326216214eeb" - } - Frame { - msec: 4832 - hash: "0cba07ca38c7f0483244832a42d9ac53" - } - Frame { - msec: 4848 - hash: "93cf31eabb454ec536c638a506be0648" - } - Frame { - msec: 4864 - hash: "e8a61d3858244127cb2b2812f04f5ce9" - } - Frame { - msec: 4880 - hash: "1ac8c393f084aa1894c26610b7f40ea6" - } - Frame { - msec: 4896 - hash: "8861bf848da5c96b35addff736b01520" - } - Frame { - msec: 4912 - hash: "f04e84ad3579d6334077abe73101d206" - } - Frame { - msec: 4928 - hash: "eac4600372f0fdfadee88896ac915a48" - } - Frame { - msec: 4944 - hash: "ff0928dfd16b2da9811a172c19817a97" - } - Frame { - msec: 4960 - hash: "280288a7988736e30a2a3e4289ac3b0c" - } - Frame { - msec: 4976 - hash: "7383209c80b403b93da3264eadbc047f" - } - Frame { - msec: 4992 - hash: "86360bd58bba5fdd901c105ddb2e3ade" - } - Frame { - msec: 5008 - hash: "bc747167dfb3388ac63e9e68a86b9a03" - } - Frame { - msec: 5024 - hash: "bccb4b8a494bd45bd70c2524a02a9dc3" - } - Frame { - msec: 5040 - hash: "ae48da4a66f93c806725ce749700aac8" - } - Frame { - msec: 5056 - hash: "c763f56728e17fc119539a4d45dfccc3" - } - Frame { - msec: 5072 - hash: "956429472da133324c970774f77784f5" - } - Frame { - msec: 5088 - hash: "a4ddb4956d71fd642d54757938100cf3" - } - Frame { - msec: 5104 - hash: "ec0aea8dc8c269d1f0aee5817347ac55" - } - Frame { - msec: 5120 - hash: "68dae343cf324391ec6721cea14575f7" - } - Frame { - msec: 5136 - hash: "81d2fc6727dc7449d1a87b4abea9b704" - } - Frame { - msec: 5152 - hash: "c3a1f12febc979150028737722d6d045" - } - Frame { - msec: 5168 - hash: "80ebac4d923f67fb8dba3d133ce657ba" - } - Frame { - msec: 5184 - hash: "7c22fc3e30377cc14326833bdd23ddd8" - } - Frame { - msec: 5200 - hash: "5359f5e45e5467c62c2d9521c8199c48" - } - Frame { - msec: 5216 - hash: "30f84a7f67b13a945ba6d5935ea92da5" - } - Frame { - msec: 5232 - hash: "08f55088cdce741c67539f73291e53ab" - } - Frame { - msec: 5248 - hash: "93128906d054e44bfd126fc22bdc3102" - } - Frame { - msec: 5264 - hash: "97f7a2175dcf9ac2581a92d614d72f88" - } - Frame { - msec: 5280 - hash: "587cb6e05048579088e88e0180e3ad48" - } - Frame { - msec: 5296 - hash: "985868869ef2c332da379460a2f3a71b" - } - Frame { - msec: 5312 - hash: "94084ca4998fcda408f6987f52c34185" - } - Frame { - msec: 5328 - hash: "e91bb914c1eb63cd4269b30a220a128a" - } - Frame { - msec: 5344 - hash: "e880d93963c80e4fab5173554c9600fc" - } - Frame { - msec: 5360 - hash: "84c94704c16e246df1048f958cc8cefb" - } - Frame { - msec: 5376 - hash: "4f1eace868a6688e5b24ce48a1f0fd18" - } - Frame { - msec: 5392 - hash: "99de44f74f8e1f79652ab46afb4bb59e" - } - Frame { - msec: 5408 - hash: "44072400ca3f0237d1aebae28a94becc" - } - Frame { - msec: 5424 - hash: "a1bd4e995365e79389dba80f9e3b7af8" - } - Frame { - msec: 5440 - hash: "95d776c84fe155617fc4ee51bdb45b7e" - } - Frame { - msec: 5456 - hash: "3b95eb8cbfc831e1ebee2e456b026ab4" - } - Frame { - msec: 5472 - hash: "826c7741ba0c51de407bb799e8f360b5" - } - Frame { - msec: 5488 - hash: "11673a112566a64aca3c7010b9cc9c4d" - } - Frame { - msec: 5504 - hash: "e1e6c7a7f51bcccd749710dbbf9e97f6" - } - Frame { - msec: 5520 - hash: "5b027815ea3c1ea54e1a02c798c468db" - } - Frame { - msec: 5536 - hash: "65c514c9e926affe1da0b4826d2754c7" - } - Frame { - msec: 5552 - hash: "73c5f23f51797a33f4d2898738e6356e" - } - Frame { - msec: 5568 - hash: "acd9a2e76b22ab0ff809fd3ec3a018ec" - } - Frame { - msec: 5584 - hash: "fb17df681d99d5de05f6329bba697ea5" - } - Frame { - msec: 5600 - hash: "1bf7a98884b506b38326f59f85a53f41" - } - Frame { - msec: 5616 - hash: "0b1a741975e3d9ef8f5e78f371c89441" - } - Frame { - msec: 5632 - hash: "a6937ee49648ed0cb409063bf1da3b87" - } - Frame { - msec: 5648 - hash: "a790f0e884ab85f7802dd094e4ef550f" - } - Frame { - msec: 5664 - hash: "3b644aac161f0a75bfb64f5075373190" - } - Frame { - msec: 5680 - hash: "b12faa76c07adc21634cd8f8cb8436ae" - } - Frame { - msec: 5696 - hash: "3fb20f9dbd40b4729235e13af9643afc" - } - Frame { - msec: 5712 - hash: "f57727419bb51fb1e589b960ddeb20ae" - } - Frame { - msec: 5728 - hash: "7b78cba247f2c209ed81e003ca25d0a5" - } - Frame { - msec: 5744 - hash: "8172e076b05d95248d89e815fde820ef" - } - Frame { - msec: 5760 - image: "animated.5.png" - } - Frame { - msec: 5776 - hash: "74c1e71378b502bc1b732a55806a10f1" - } - Frame { - msec: 5792 - hash: "6eae517ad33f0609c31ef1f8f80ba899" - } - Frame { - msec: 5808 - hash: "a67e9a0f55512fb1c55f13c6b483923b" - } - Frame { - msec: 5824 - hash: "4887cd34d9926a361f3ca2e75be53ea6" - } - Frame { - msec: 5840 - hash: "13ca95adab171d9fad9ee8b75d0226bc" - } - Frame { - msec: 5856 - hash: "affab9fb48c889a2680eb81458d400f9" - } - Frame { - msec: 5872 - hash: "7aa0cbf73f7999be7cde4ec739efbc33" - } - Frame { - msec: 5888 - hash: "36c054064c9a76f4072492e55c70fb6c" - } - Frame { - msec: 5904 - hash: "d1ed4916cb1ecff60277d74369ff311b" - } - Frame { - msec: 5920 - hash: "63ebaa4869728f5e2891d068e4b0091c" - } - Frame { - msec: 5936 - hash: "29245946cbd811fe6bf6b2b41cc13002" - } - Frame { - msec: 5952 - hash: "8a9dd7a2d10771633e6896f3f4a722ae" - } - Frame { - msec: 5968 - hash: "058c918e83bfdd665cd836566b53959b" - } - Frame { - msec: 5984 - hash: "fdf3b7a0391119e2fe77be8d6a17481d" - } - Frame { - msec: 6000 - hash: "ed5d80c33dbf72624385b1cf43784626" - } - Frame { - msec: 6016 - hash: "911591db1519ba264847f09868e38e0e" - } - Frame { - msec: 6032 - hash: "ed5d80c33dbf72624385b1cf43784626" - } - Frame { - msec: 6048 - hash: "fdf3b7a0391119e2fe77be8d6a17481d" - } - Frame { - msec: 6064 - hash: "058c918e83bfdd665cd836566b53959b" - } - Frame { - msec: 6080 - hash: "8a9dd7a2d10771633e6896f3f4a722ae" - } - Frame { - msec: 6096 - hash: "29245946cbd811fe6bf6b2b41cc13002" - } - Frame { - msec: 6112 - hash: "63ebaa4869728f5e2891d068e4b0091c" - } - Frame { - msec: 6128 - hash: "d1ed4916cb1ecff60277d74369ff311b" - } - Frame { - msec: 6144 - hash: "36c054064c9a76f4072492e55c70fb6c" - } - Frame { - msec: 6160 - hash: "7aa0cbf73f7999be7cde4ec739efbc33" - } - Frame { - msec: 6176 - hash: "affab9fb48c889a2680eb81458d400f9" - } - Frame { - msec: 6192 - hash: "13ca95adab171d9fad9ee8b75d0226bc" - } - Frame { - msec: 6208 - hash: "4887cd34d9926a361f3ca2e75be53ea6" - } - Frame { - msec: 6224 - hash: "a67e9a0f55512fb1c55f13c6b483923b" - } - Frame { - msec: 6240 - hash: "6eae517ad33f0609c31ef1f8f80ba899" - } - Frame { - msec: 6256 - hash: "74c1e71378b502bc1b732a55806a10f1" - } - Frame { - msec: 6272 - hash: "a88d6fc324ef48aa52c642a1662ec679" - } - Frame { - msec: 6288 - hash: "8172e076b05d95248d89e815fde820ef" - } - Frame { - msec: 6304 - hash: "7b78cba247f2c209ed81e003ca25d0a5" - } - Frame { - msec: 6320 - hash: "f57727419bb51fb1e589b960ddeb20ae" - } - Frame { - msec: 6336 - hash: "3fb20f9dbd40b4729235e13af9643afc" - } - Frame { - msec: 6352 - hash: "b12faa76c07adc21634cd8f8cb8436ae" - } - Frame { - msec: 6368 - hash: "3b644aac161f0a75bfb64f5075373190" - } - Frame { - msec: 6384 - hash: "a790f0e884ab85f7802dd094e4ef550f" - } - Frame { - msec: 6400 - hash: "a6937ee49648ed0cb409063bf1da3b87" - } - Frame { - msec: 6416 - hash: "0b1a741975e3d9ef8f5e78f371c89441" - } - Frame { - msec: 6432 - hash: "1bf7a98884b506b38326f59f85a53f41" - } - Frame { - msec: 6448 - hash: "fb17df681d99d5de05f6329bba697ea5" - } - Frame { - msec: 6464 - hash: "acd9a2e76b22ab0ff809fd3ec3a018ec" - } - Frame { - msec: 6480 - hash: "73c5f23f51797a33f4d2898738e6356e" - } - Frame { - msec: 6496 - hash: "65c514c9e926affe1da0b4826d2754c7" - } - Frame { - msec: 6512 - hash: "5b027815ea3c1ea54e1a02c798c468db" - } - Frame { - msec: 6528 - hash: "e1e6c7a7f51bcccd749710dbbf9e97f6" - } - Frame { - msec: 6544 - hash: "11673a112566a64aca3c7010b9cc9c4d" - } - Frame { - msec: 6560 - hash: "826c7741ba0c51de407bb799e8f360b5" - } - Frame { - msec: 6576 - hash: "3b95eb8cbfc831e1ebee2e456b026ab4" - } - Frame { - msec: 6592 - hash: "95d776c84fe155617fc4ee51bdb45b7e" - } - Frame { - msec: 6608 - hash: "a1bd4e995365e79389dba80f9e3b7af8" - } - Frame { - msec: 6624 - hash: "44072400ca3f0237d1aebae28a94becc" - } - Frame { - msec: 6640 - hash: "99de44f74f8e1f79652ab46afb4bb59e" - } - Frame { - msec: 6656 - hash: "4f1eace868a6688e5b24ce48a1f0fd18" - } - Frame { - msec: 6672 - hash: "84c94704c16e246df1048f958cc8cefb" - } - Frame { - msec: 6688 - hash: "e880d93963c80e4fab5173554c9600fc" - } - Frame { - msec: 6704 - hash: "e91bb914c1eb63cd4269b30a220a128a" - } - Frame { - msec: 6720 - image: "animated.6.png" - } - Frame { - msec: 6736 - hash: "985868869ef2c332da379460a2f3a71b" - } - Frame { - msec: 6752 - hash: "587cb6e05048579088e88e0180e3ad48" - } - Frame { - msec: 6768 - hash: "97f7a2175dcf9ac2581a92d614d72f88" - } - Frame { - msec: 6784 - hash: "93128906d054e44bfd126fc22bdc3102" - } - Frame { - msec: 6800 - hash: "08f55088cdce741c67539f73291e53ab" - } - Frame { - msec: 6816 - hash: "30f84a7f67b13a945ba6d5935ea92da5" - } - Frame { - msec: 6832 - hash: "5359f5e45e5467c62c2d9521c8199c48" - } - Frame { - msec: 6848 - hash: "7c22fc3e30377cc14326833bdd23ddd8" - } - Frame { - msec: 6864 - hash: "80ebac4d923f67fb8dba3d133ce657ba" - } - Frame { - msec: 6880 - hash: "c3a1f12febc979150028737722d6d045" - } - Frame { - msec: 6896 - hash: "81d2fc6727dc7449d1a87b4abea9b704" - } - Frame { - msec: 6912 - hash: "68dae343cf324391ec6721cea14575f7" - } - Frame { - msec: 6928 - hash: "ec0aea8dc8c269d1f0aee5817347ac55" - } - Frame { - msec: 6944 - hash: "a4ddb4956d71fd642d54757938100cf3" - } - Frame { - msec: 6960 - hash: "956429472da133324c970774f77784f5" - } - Frame { - msec: 6976 - hash: "c763f56728e17fc119539a4d45dfccc3" - } - Frame { - msec: 6992 - hash: "ae48da4a66f93c806725ce749700aac8" - } - Frame { - msec: 7008 - hash: "bccb4b8a494bd45bd70c2524a02a9dc3" - } - Frame { - msec: 7024 - hash: "bc747167dfb3388ac63e9e68a86b9a03" - } - Frame { - msec: 7040 - hash: "86360bd58bba5fdd901c105ddb2e3ade" - } - Frame { - msec: 7056 - hash: "7383209c80b403b93da3264eadbc047f" - } - Frame { - msec: 7072 - hash: "280288a7988736e30a2a3e4289ac3b0c" - } - Frame { - msec: 7088 - hash: "ff0928dfd16b2da9811a172c19817a97" - } - Frame { - msec: 7104 - hash: "eac4600372f0fdfadee88896ac915a48" - } - Frame { - msec: 7120 - hash: "f04e84ad3579d6334077abe73101d206" - } - Frame { - msec: 7136 - hash: "8861bf848da5c96b35addff736b01520" - } - Frame { - msec: 7152 - hash: "1ac8c393f084aa1894c26610b7f40ea6" - } - Frame { - msec: 7168 - hash: "e8a61d3858244127cb2b2812f04f5ce9" - } - Frame { - msec: 7184 - hash: "93cf31eabb454ec536c638a506be0648" - } - Frame { - msec: 7200 - hash: "0cba07ca38c7f0483244832a42d9ac53" - } - Frame { - msec: 7216 - hash: "c7eb7837dce71c914186326216214eeb" - } - Frame { - msec: 7232 - hash: "593a8a45c3a0cd7ce1cb6bd1913136ba" - } - Frame { - msec: 7248 - hash: "1ea07ee309ce2c52cbc36370b75a872f" - } - Frame { - msec: 7264 - hash: "93d9f0a7c387cbe653a9a088f8f4ef2b" - } - Frame { - msec: 7280 - hash: "a6f17da2dd581bdc249ff62f833dc025" - } - Frame { - msec: 7296 - hash: "b74521d6ac531414aeeca0fb28379d11" - } - Frame { - msec: 7312 - hash: "6a521f952e05d91b86ad78fd6f5de4f9" - } - Frame { - msec: 7328 - hash: "4e60300cfab8634e04dcd1b556251d31" - } - Frame { - msec: 7344 - hash: "60f158382f75103c78e2b9b408e0fe65" - } - Frame { - msec: 7360 - hash: "153237f8cf37e29ad2f32f7a8a6aecdb" - } - Frame { - msec: 7376 - hash: "554e1d360463871e7c05cfe6f8abe1dd" - } - Frame { - msec: 7392 - hash: "e418b5f54705515dce5ce3b4cbc45d19" - } - Frame { - msec: 7408 - hash: "19d05a96f3ae7388e854bbf1075b51c1" - } - Frame { - msec: 7424 - hash: "4ae120bb6dc2bd5ff81cc99ae03c191e" - } - Frame { - msec: 7440 - hash: "18c2f321a149e38b258ac264d40c2376" - } - Frame { - msec: 7456 - hash: "a40014d842471784e1222eb205395f6f" - } - Frame { - msec: 7472 - hash: "f1a7a4a67a21f5025294af4bea3f8998" - } - Frame { - msec: 7488 - hash: "3152e5f29015ece423fbdd11a2b382b8" - } - Frame { - msec: 7504 - hash: "2a7bed775824968e318c3d40fbc5b1c2" - } - Frame { - msec: 7520 - hash: "dd4c9e63001bc6e0e63ea4db2d85301f" - } - Frame { - msec: 7536 - hash: "ac8f096e8c7cc23bfb01de69cf3e266e" - } - Frame { - msec: 7552 - hash: "6b48bfd0c7993f746d6301c2a0f61d23" - } - Frame { - msec: 7568 - hash: "06d8d8a1a41893d4e27725948a75caf4" - } - Frame { - msec: 7584 - hash: "3f62f032239d412d3637198f5e3e83d6" - } - Frame { - msec: 7600 - hash: "01947e631c3db43f7c5b4427229bc0c8" - } - Frame { - msec: 7616 - hash: "2266df495ab5265e7514a506d3bf5bc6" - } - Frame { - msec: 7632 - hash: "8c66a33d26eec2a1133f4362710a5fab" - } - Frame { - msec: 7648 - hash: "75c9bf83ca3fe24612c245698c089430" - } - Frame { - msec: 7664 - hash: "c1936628aec13e08e9581dcd2c6d5717" - } - Frame { - msec: 7680 - image: "animated.7.png" - } - Frame { - msec: 7696 - hash: "8419f1d75b14130730bcfec4e3a9b058" - } - Frame { - msec: 7712 - hash: "482bb92d4f0ad5d7c7e379b9e1ad326e" - } - Frame { - msec: 7728 - hash: "406224b535b4425d2708df0083acdc8e" - } - Frame { - msec: 7744 - hash: "3dac1d9632378bd18c1c938a4868e3fb" - } - Frame { - msec: 7760 - hash: "08b9be66e23c7b6f6f629c7470394601" - } - Frame { - msec: 7776 - hash: "7b4d12e5a877507e7454aa1b8ed87c2d" - } - Frame { - msec: 7792 - hash: "4d45d70f997c2c67166905c97a900d2e" - } - Frame { - msec: 7808 - hash: "c5b3dede34b0d1d78135e39c41d117c6" - } - Frame { - msec: 7824 - hash: "b63e4d1686057828fd8781f1c33585f5" - } - Frame { - msec: 7840 - hash: "755cfccc38bababc468fe6e1076804bb" - } - Frame { - msec: 7856 - hash: "465ec993948f7b75aeb5759976f4620d" - } - Frame { - msec: 7872 - hash: "228d5312c261d1a5455faf69ec2f2520" - } - Frame { - msec: 7888 - hash: "aacf9ae3c23d174a1c1cda493600e355" - } - Frame { - msec: 7904 - hash: "4c60d345821f515c7811f3b69eb94607" - } - Frame { - msec: 7920 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 7936 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 7952 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 7968 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 7984 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8000 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8016 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8032 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8048 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8064 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8080 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8096 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8112 - hash: "aec13bcab337e55832b0a02fb5c6b526" - } - Frame { - msec: 8128 - hash: "4c60d345821f515c7811f3b69eb94607" - } - Frame { - msec: 8144 - hash: "aacf9ae3c23d174a1c1cda493600e355" - } - Frame { - msec: 8160 - hash: "228d5312c261d1a5455faf69ec2f2520" - } - Frame { - msec: 8176 - hash: "465ec993948f7b75aeb5759976f4620d" - } - Frame { - msec: 8192 - hash: "755cfccc38bababc468fe6e1076804bb" - } - Frame { - msec: 8208 - hash: "b63e4d1686057828fd8781f1c33585f5" - } - Frame { - msec: 8224 - hash: "c5b3dede34b0d1d78135e39c41d117c6" - } - Frame { - msec: 8240 - hash: "4d45d70f997c2c67166905c97a900d2e" - } - Frame { - msec: 8256 - hash: "7b4d12e5a877507e7454aa1b8ed87c2d" - } - Frame { - msec: 8272 - hash: "08b9be66e23c7b6f6f629c7470394601" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8288 - hash: "3dac1d9632378bd18c1c938a4868e3fb" - } - Frame { - msec: 8304 - hash: "406224b535b4425d2708df0083acdc8e" - } -} diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.0.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.0.png Binary files differdeleted file mode 100644 index 80cbd26..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.0.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.1.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.1.png Binary files differdeleted file mode 100644 index 80cbd26..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.1.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.2.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.2.png Binary files differdeleted file mode 100644 index 80cbd26..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.2.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.3.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.3.png Binary files differdeleted file mode 100644 index 80cbd26..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.3.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.4.png b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.4.png Binary files differdeleted file mode 100644 index 80cbd26..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.4.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.qml b/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.qml deleted file mode 100644 index 16cd5e9..0000000 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data-MAC/borders.qml +++ /dev/null @@ -1,1359 +0,0 @@ -import Qt.VisualTest 4.6 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 32 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 48 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 64 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 80 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 96 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 112 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 128 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 144 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 160 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 176 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 192 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 208 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 224 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 240 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 256 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 272 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 288 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 304 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 320 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 336 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 352 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 368 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 384 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 400 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 416 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 432 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 448 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 464 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 480 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 496 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 512 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 528 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 544 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 560 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 576 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 592 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 608 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 624 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 640 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 656 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 672 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 688 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 704 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 720 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 736 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 752 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 768 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 784 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 800 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 816 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 832 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 848 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 864 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 880 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 896 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 912 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 928 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 944 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 960 - image: "borders.0.png" - } - Frame { - msec: 976 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 992 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1008 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1024 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1040 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1056 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1072 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1088 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1104 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1120 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1136 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1152 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1168 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1184 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1200 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1216 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1232 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1248 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1264 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1280 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1296 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1312 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1328 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1344 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1360 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1376 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1392 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1408 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1424 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1440 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1456 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1472 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1488 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1504 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1520 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1536 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1552 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1568 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1584 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1600 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1616 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1632 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1648 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1664 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1680 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1696 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1712 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1728 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1744 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1760 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1776 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1792 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1808 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1824 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1840 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1856 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1872 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1888 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1904 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1920 - image: "borders.1.png" - } - Frame { - msec: 1936 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1952 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1968 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 1984 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2000 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2016 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2032 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2048 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2064 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2080 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2096 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2112 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2128 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2144 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2160 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2176 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2192 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2208 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2224 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2240 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2256 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2272 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2288 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2304 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2320 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2336 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2352 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2368 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2384 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2400 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2416 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2432 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2448 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2464 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2480 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2496 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2512 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2528 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2544 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2560 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2576 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2592 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2608 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2624 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2640 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2656 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2672 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2688 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2704 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2720 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2736 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2752 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2768 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2784 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2800 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2816 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2832 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2848 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2864 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2880 - image: "borders.2.png" - } - Frame { - msec: 2896 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2912 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2928 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2944 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2960 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2976 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 2992 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3008 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3024 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3040 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3056 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3072 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3088 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3104 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3120 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3136 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3152 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3168 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3184 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3200 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3216 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3232 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3248 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3264 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3280 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3296 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3312 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3328 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3344 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3360 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3376 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3392 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3408 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3424 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3440 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3456 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3472 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3488 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3504 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3520 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3536 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3552 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3568 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3584 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3600 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3616 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3632 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3648 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3664 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3680 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3696 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3712 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3728 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3744 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3760 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3776 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3792 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3808 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3824 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3840 - image: "borders.3.png" - } - Frame { - msec: 3856 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3872 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3888 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3904 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3920 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3936 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3952 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3968 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 3984 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4000 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4016 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4032 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4048 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4064 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4080 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4096 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4112 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4128 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4144 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4160 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4176 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4192 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4208 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4224 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4240 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4256 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4272 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4288 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4304 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4320 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4336 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4352 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4368 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4384 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4400 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4416 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4432 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4448 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4464 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4480 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4496 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4512 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4528 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4544 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4560 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4576 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4592 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4608 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4624 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4640 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4656 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4672 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4688 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4704 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4720 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4736 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4752 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4768 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4784 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4800 - image: "borders.4.png" - } - Frame { - msec: 4816 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4832 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4848 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4864 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4880 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4896 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4912 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4928 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4944 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4960 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4976 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 4992 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5008 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5024 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5040 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5056 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5072 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5088 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5104 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5120 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5136 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5152 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5168 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5184 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5200 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5216 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5232 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5248 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5264 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5280 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5296 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5312 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5328 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5344 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5360 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5376 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5392 - hash: "ab9753116e289c932064144bb0845857" - } - Frame { - msec: 5408 - hash: "ab9753116e289c932064144bb0845857" - } -} diff --git a/tests/auto/declarative/visual/qmlgraphicsborderimage/data/animated.qml b/tests/auto/declarative/visual/qmlgraphicsborderimage/data/animated.qml index e25728c..29e591a 100644 --- a/tests/auto/declarative/visual/qmlgraphicsborderimage/data/animated.qml +++ b/tests/auto/declarative/visual/qmlgraphicsborderimage/data/animated.qml @@ -2075,7 +2075,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 67108864 + modifiers: 0 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.0.png b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.0.png Binary files differindex d58afd8..016902b 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.0.png +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.0.png diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.1.png b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.1.png Binary files differindex 6271bfb..a654936 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.1.png +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.1.png diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.2.png b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.2.png Binary files differindex b6f0241..cfd5517 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.2.png +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.2.png diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.3.png b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.3.png Binary files differindex d58afd8..016902b 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.3.png +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.3.png diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.qml b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.qml index d5f67bf..46086f9 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.qml +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-horizontal.qml @@ -1167,7 +1167,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 0 + modifiers: 67108864 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.0.png b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.0.png Binary files differindex 2187f8e..475e2f5 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.0.png +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.0.png diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.1.png b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.1.png Binary files differindex cf3e770..5c47eb8 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.1.png +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.1.png diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.2.png b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.2.png Binary files differindex 8a1554a..bef8cd7 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.2.png +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.2.png diff --git a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.qml b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.qml index cb8df62..20df167 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.qml +++ b/tests/auto/declarative/visual/qmlgraphicsflickable/data/flickable-vertical.qml @@ -1067,7 +1067,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 0 + modifiers: 67108864 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/qmlgraphicsflipable/data/test-flipable.qml b/tests/auto/declarative/visual/qmlgraphicsflipable/data/test-flipable.qml index 4df180f..520d9a2 100644 --- a/tests/auto/declarative/visual/qmlgraphicsflipable/data/test-flipable.qml +++ b/tests/auto/declarative/visual/qmlgraphicsflipable/data/test-flipable.qml @@ -1559,7 +1559,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 0 + modifiers: 67108864 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.0.png b/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.0.png Binary files differindex 4cc937d..7321d95 100644 --- a/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.0.png +++ b/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.0.png diff --git a/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.1.png b/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.1.png Binary files differindex ea04224..49d2a5a 100644 --- a/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.1.png +++ b/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.1.png diff --git a/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.2.png b/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.2.png Binary files differindex 241fd20..6fe14b7 100644 --- a/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.2.png +++ b/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.2.png diff --git a/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.qml b/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.qml index a4339f8..d766dc6 100644 --- a/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.qml +++ b/tests/auto/declarative/visual/qmlgraphicsparticles/data/particles.qml @@ -10,235 +10,235 @@ VisualTest { } Frame { msec: 32 - hash: "71e690f8339f1829efc113d88d1a9023" + hash: "43c0ad5826e8058260951f063f0851ab" } Frame { msec: 48 - hash: "856a757f3e83e1ede00854d2dacd856a" + hash: "55eb2c9939514338e7ef58c9276fc223" } Frame { msec: 64 - hash: "2a7926b693b9950aabc4e3a1ebe4b2d0" + hash: "6a1bbb91bf450547d6100b6e61a98f6d" } Frame { msec: 80 - hash: "0564ce95b47a7c3314a56921855b9244" + hash: "bdb9b8cab70c72d99aba830eb8e8913b" } Frame { msec: 96 - hash: "bf207596dd69e7a872a23448621100cc" + hash: "71a0e046bc68183b830df9dafd8fa147" } Frame { msec: 112 - hash: "a0bb920166e777ea96afb811353a3488" + hash: "e7228e0ed77e05c661282c2d2fe88b3e" } Frame { msec: 128 - hash: "3d6297c684562d099fdb9c413b3e93a3" + hash: "93a4c3e501b05844f687a2dd1754aad2" } Frame { msec: 144 - hash: "29139f93cbd55faa0ea18f11db364d56" + hash: "1856ac86313c16bf4874130d9a48ff45" } Frame { msec: 160 - hash: "f3637e44bf1b6c3fd030898e14a15443" + hash: "3637d8dad4f44c938f91b0800bd9fb2f" } Frame { msec: 176 - hash: "d687ef38c1d0e8d12c03a2e7b462a5e5" + hash: "c5ace4ede38d29363d69c6b4b2f9349f" } Frame { msec: 192 - hash: "0f1f227bbce76122d081759752edf47e" + hash: "a5d832d02f4a635052817654df90caba" } Frame { msec: 208 - hash: "1112e4f9ec18958caa4efadbf8b369bd" + hash: "9ebf8bea8abe7ac209d47214a87f8fc0" } Frame { msec: 224 - hash: "5bb7fd7dc06d79aa5ca35fa551753a38" + hash: "35b8f5cb18284867be8d27d601394a2b" } Frame { msec: 240 - hash: "c59e159877613eb09ba353bc0ef46086" + hash: "a2c4a6063f219af6f2b29b2d21a4265d" } Frame { msec: 256 - hash: "b7c583f85d89c833861324b3d06a6c8b" + hash: "27f25ace7b8e93c55638ed99f49b821c" } Frame { msec: 272 - hash: "147641f03d92a48f49e0cfb4972bc1c7" + hash: "4f6511bfbbd8113195a7597eb6dfb219" } Frame { msec: 288 - hash: "1627827cd3733d1177f111c6c347ab49" + hash: "6a696159cdbb51a67064c600124535d1" } Frame { msec: 304 - hash: "0edccffd718ef10a0ea476201fc00c39" + hash: "6cd667eb352256dbb728532634e7ffd0" } Frame { msec: 320 - hash: "4b7f426aaa31bdabc6c065b298e59c9e" + hash: "28fa16c8936bf86a8426ded306aa2b8c" } Frame { msec: 336 - hash: "4814f77f57bbae8d3c20995e37ec95fb" + hash: "061fecdb88733e3e51c5823571bc4d19" } Frame { msec: 352 - hash: "030092297087df89ab40e894a01f0ee2" + hash: "f64530f638b3d18d56593e0b7c884f5d" } Frame { msec: 368 - hash: "30b0d547b580daee9b1c49f5069570c5" + hash: "8530cf40739890dc7401fad65a6325bf" } Frame { msec: 384 - hash: "eaee106eaa1505e7d79ed21c36f381fd" + hash: "0abc555552e7256dbc424b2eac5c95f2" } Frame { msec: 400 - hash: "6527d1d44a75015d7eb163a660e15b0b" + hash: "64aeae59a8c958dfc62d92636b2f5217" } Frame { msec: 416 - hash: "3a3a7b7b36ede4aa1261b5f28c99984c" + hash: "3e0f50f5bee017220b129d06b2acde2c" } Frame { msec: 432 - hash: "d2349319b0feeceaa7ef9301ae87d348" + hash: "e676c01ff2e35bdfe674be67d49945b1" } Frame { msec: 448 - hash: "f483ae316491e367922f6ef7ebfa0298" + hash: "bc060b480aab94fd440fd27f5beb7383" } Frame { msec: 464 - hash: "3d94b3e9b409a4ca2200df226a25b2d5" + hash: "79c79f723de72315e63da8a7cbe1b425" } Frame { msec: 480 - hash: "ce289f478dafd295ba82ef0c9e13ff3d" + hash: "7bf93c2697af75d0f862a47d57cd6a7f" } Frame { msec: 496 - hash: "6d618658faa9403ff9909f6c6a677cb2" + hash: "7641b9e233f4aabd99bcd985ce1d51ae" } Frame { msec: 512 - hash: "9e12eda314483bc5ef5a14a1b1ac26d7" + hash: "b596a28cb67617d37408bd25d947d088" } Frame { msec: 528 - hash: "ed34b0d26a18145028a5ec4c99e9b569" + hash: "f2c5cdf15c27b05c0ea97675ddc41757" } Frame { msec: 544 - hash: "ea91dc7e837fa540af260f75c0f8ba49" + hash: "eae5eb8c41a1d6d75446618518490f20" } Frame { msec: 560 - hash: "a5b277747454ddeda3d66f3702f45a53" + hash: "0be5e9a6d857fe1a262524801c69490d" } Frame { msec: 576 - hash: "7601784afb80a79267ade99961122186" + hash: "65478b8c4d932c10924f70462a662254" } Frame { msec: 592 - hash: "e52696c37cc3a245a555c98038b51e76" + hash: "7b034f3c98e8eb38eec11cf3c2aa0804" } Frame { msec: 608 - hash: "7d94071d225e0105c794a238eaa8117e" + hash: "5bbc8eed41500ccbc820cfb38794232f" } Frame { msec: 624 - hash: "60ebfb611c6f7515568574aecdfdcb57" + hash: "1b39d555ca8932b40efd769c4ba74d3f" } Frame { msec: 640 - hash: "0ea41ef8a82e97e62ed7507606ab6bf4" + hash: "f9a38e12becbce400191e22f1d22427c" } Frame { msec: 656 - hash: "009a12491a5f6e4b30942062f93a3f8c" + hash: "cbc27c72517d76edfc2d3692cd83f151" } Frame { msec: 672 - hash: "2fa053880413fc76b53b26b733b2168f" + hash: "4a883a5aed05f0bbcefcefea6ef56df6" } Frame { msec: 688 - hash: "fb53a57559de18a5b6f13f21d1daf098" + hash: "7a30ea30c0619c87c96bcaba916c64df" } Frame { msec: 704 - hash: "f65a62bf7d5e8fbd996f7151398109a6" + hash: "33cd0797b6d229592ed53117fcaaa898" } Frame { msec: 720 - hash: "b0802484661f6fe4606f4ff915c03f81" + hash: "21178ef9366c8a65ecb9e21d584573b0" } Frame { msec: 736 - hash: "b63c61e63cb23147a8377d3428d5a4fa" + hash: "fe75beac8681fdac8a2b79c9c7267128" } Frame { msec: 752 - hash: "a320dcfa3907c85fa983035953b79ba3" + hash: "df26a23d394e053417de86309683c5e0" } Frame { msec: 768 - hash: "6b94696073ab8e1ef6be1f0b5cb22720" + hash: "411594a1ed7c351cb872e0a6f3081b1b" } Frame { msec: 784 - hash: "5ed4ff5011c421e40bd0e1d021974efc" + hash: "b4b639f204cfed9e1fec872e4de115c2" } Frame { msec: 800 - hash: "b183261aca9e8f887f4d489d8c81f583" + hash: "4d801e2f4848399c011d60264720b912" } Frame { msec: 816 - hash: "c4672d92bb4f0e8cb8e10fcef11a36e2" + hash: "4f28c7b154853ff78cdefb5a5ac9d2b7" } Frame { msec: 832 - hash: "beb2c18162ea197b486b217f15f784e7" + hash: "cc6d4283b0d7bf9f579637575d5e1fef" } Frame { msec: 848 - hash: "9f5198e08dc16e80f500804ba8ae7afb" + hash: "8edc371d23d01be547990074b5e640af" } Frame { msec: 864 - hash: "d892706fd28d55adcdacdf72a2f7ad83" + hash: "874845d7178e6cd8369f21379060f561" } Frame { msec: 880 - hash: "1ed182b5b27ed7ed59c56c450a73975d" + hash: "98fb6d79990775385603fb1a50ab5186" } Frame { msec: 896 - hash: "74756064676c5d5c9eacaea31a7b357d" + hash: "d15539efc27baabb5a74f464b152d266" } Frame { msec: 912 - hash: "64f79b420b38bda6e102163b90be5f4f" + hash: "fc44d091d6689e8870162a6d29b6d287" } Frame { msec: 928 - hash: "0d1f92cafc507af799953771cee7c265" + hash: "a3c964f4bf524e22092b1650df43375a" } Frame { msec: 944 - hash: "887ef63951fb56fd50f4de9afe8db1a8" + hash: "ca203fd630ec1eadea37cf36bd30ba40" } Frame { msec: 960 @@ -246,239 +246,239 @@ VisualTest { } Frame { msec: 976 - hash: "f09fc1e1ebc8c627c89c741ac263e3f4" + hash: "2e0630818c04fc6c259eec8561c645cd" } Frame { msec: 992 - hash: "30bb26df58c83ff70d767e01f0df5140" + hash: "a7b1f6305ddcf4a338e1a96ea31a5341" } Frame { msec: 1008 - hash: "dbd83b1749a42edd6d26097ade1c67ba" + hash: "23a5013a8f9407d06ac6fd0c1e961743" } Frame { msec: 1024 - hash: "7fa50f111158dc6a3e245eb23e57a3f3" + hash: "9de73decddaab4269bd33efdb21278a3" } Frame { msec: 1040 - hash: "267ef8b555a62abb44e8b5cf88c83110" + hash: "7582c26b45dd11c262f51b387af89cb2" } Frame { msec: 1056 - hash: "78b2d13be078f2e7e94d685994b6488e" + hash: "650e0d395f1d1f2ddda8711089d85511" } Frame { msec: 1072 - hash: "1d47caf40c85bc1e23bf8d22160d333d" + hash: "9ff84e81219aa6bb7ab534b2a47a3930" } Frame { msec: 1088 - hash: "abeaf0a9bedfd62e56f12fa612bf287f" + hash: "11e255273e8ca4716047fb52636f0c3e" } Frame { msec: 1104 - hash: "0f66d12b082398c9f43ef868632529ab" + hash: "b2fcbefd13db3c765183b1eefc2ca0bc" } Frame { msec: 1120 - hash: "957340efea7ce168889c2ae1b867c6d0" + hash: "7150aff523c0d480702f6a326699cb65" } Frame { msec: 1136 - hash: "4d83e6160f5d9097a4b73bf4104fa11b" + hash: "63886c15107a2a7d639069cd81c3cd07" } Frame { msec: 1152 - hash: "d2811de76d3c0cc8ebd67583e50deaae" + hash: "1ec1fc30bbb5f43a1d6d36bce345f569" } Frame { msec: 1168 - hash: "cb13f2d6985e841b2da453860d7ddd65" + hash: "34060cbc31ce1fbf406cbb595312c609" } Frame { msec: 1184 - hash: "1e48b355ff1e136bcd982a749ba49089" + hash: "6f3a04c7f411785956e640aa630f7ac4" } Frame { msec: 1200 - hash: "9f9abd7b167a834449510a02d368155b" + hash: "d7bdb7e170b6f193eaf4b07c01b4dc6b" } Frame { msec: 1216 - hash: "6a75c81527b3bb85f70c08f669d46139" + hash: "6ca02c0d9cfeb4b1932f7ad1feac9850" } Frame { msec: 1232 - hash: "eafd6f87fb88f6f51cf27d5dd4faa7c8" + hash: "d446c7b185361de5c615a17ac1fee607" } Frame { msec: 1248 - hash: "ba43e681c7f2677b81fa4fe87a5e612c" + hash: "bc2faf5b7b2972f155954e4e685e80ae" } Frame { msec: 1264 - hash: "f83f06320c3e7c2352dd8e8839d63063" + hash: "2bf26cedc76aea4a6d9744b7dd935db8" } Frame { msec: 1280 - hash: "713afe22640941e9ea4925158099c514" + hash: "accbee9d0f8cf73ef72aa7bfb49b3fa5" } Frame { msec: 1296 - hash: "53766caa0ab92bbd2e3d69e6ab9a8fe7" + hash: "933eb2e46f42e212bdfc515d30f663d3" } Frame { msec: 1312 - hash: "af98650b68d48fd3776d0334904b9e75" + hash: "7495318c893dbb22771b53e93c7614e8" } Frame { msec: 1328 - hash: "62439fba28fbc0d4a129ccd5edf81b8b" + hash: "894fe23c1b3543451293c047b640c4bb" } Frame { msec: 1344 - hash: "75c67b227f23a3ef5c01aca285f3617c" + hash: "9b7179ef059ee82ca4a383f536f47a42" } Frame { msec: 1360 - hash: "3a5e1fe4a9454e9636fbebdfb005e3ac" + hash: "5ec1a5bfac2473efdcad7dba0da4015c" } Frame { msec: 1376 - hash: "2e4cdc140a9faedc8fbc9a0ec20b1a4c" + hash: "2bd64528e83260a80e7f2843e2c34a19" } Frame { msec: 1392 - hash: "f937d5b14fb0360afb14dbcce1b0ad9a" + hash: "16bf64a9bf6b4bc09b108c65d074b5f2" } Frame { msec: 1408 - hash: "20cb9e30c1a89bae3081427328887361" + hash: "c33eaa717ba63655f375499058b1be55" } Frame { msec: 1424 - hash: "67f19061f97630a35b59357dcba9c5f0" + hash: "d080f4591f9fd59745bf850525590849" } Frame { msec: 1440 - hash: "f1b4041797873b7ff9e318542186eaf8" + hash: "921585c88ec133c83c07650745bb4441" } Frame { msec: 1456 - hash: "ecbdc77e1b58decad29a6dfc654fba20" + hash: "f037b28137b22a0c91fc71fc6626475a" } Frame { msec: 1472 - hash: "6d0b821c08b024aa8fc71ec5c0e98c53" + hash: "e10b3c432a230d5509c2fa7df48b56c9" } Frame { msec: 1488 - hash: "5137c7ee6879b98478a4edb1b5a0d79c" + hash: "ac02c7b7e68ee8cfad1fe556020e93d8" } Frame { msec: 1504 - hash: "17c80c758e9d0721a3b791dbabe0d34f" + hash: "12d59e70dedfa0c741afed9b98cb9a3a" } Frame { msec: 1520 - hash: "abc1fe8d97b87f891ac53673fe64bf0d" + hash: "a9aa635ccde26829d7e1cdc29fcce8d1" } Frame { msec: 1536 - hash: "fe8c8ce5f0cf676310e4ce85c1755f0f" + hash: "f571b3da827b884ad036dade8ad2fe37" } Frame { msec: 1552 - hash: "40eff7ab7370e7a3de28a55e200812ca" + hash: "1ffa8d7512e9001cbc78b28451133b44" } Frame { msec: 1568 - hash: "8ff86cc730f4b7877ed7890f62dd8f17" + hash: "2ef4b10f2eafd71dfde15f7f00e923c6" } Frame { msec: 1584 - hash: "a87e34b8d9e75d03493c94a96ef97c25" + hash: "09b3bc232a134eae5ae14c0336f508ba" } Frame { msec: 1600 - hash: "807a4b4652ed228084660bfdf98efd50" + hash: "ebadb5c6b4986c865f7f8ef232680b7e" } Frame { msec: 1616 - hash: "ca245fcf490c3bc17bef1a38d793f573" + hash: "26621991073510e9a95e3b208e3ee56e" } Frame { msec: 1632 - hash: "6662d0e4e7778f560c8956e9fe4aa079" + hash: "f18e97f13c06f3c5368edf851f19f401" } Frame { msec: 1648 - hash: "c47d90df3dbb1656ef425209f1b528b1" + hash: "3c322dbbf5ecfe1de56595dcb7d949e1" } Frame { msec: 1664 - hash: "c9dbf06207cf9b8d03cf20f4e4131979" + hash: "50058d1bb992a6d0601c9d5490149936" } Frame { msec: 1680 - hash: "dfab00fee3cf9f0f76d66f64eed6de84" + hash: "4cc78f56f13478ec21a4a0d6b22f956b" } Frame { msec: 1696 - hash: "b38a29a29bf30c197e5434a942e805cf" + hash: "d765cd86560dff3faa5a3c902512c74c" } Frame { msec: 1712 - hash: "589496ebac7f7ea699b869291db7ed45" + hash: "ad983068c2149b0c06da3b89a5d94d24" } Frame { msec: 1728 - hash: "c7a037e3e755c1c8fecd17db7596a9cd" + hash: "e6da7260001771fc00c472bccae641fe" } Frame { msec: 1744 - hash: "faca2e1e88556ffd1f71bbc5ceae5cb1" + hash: "71778ad8a61ecb0f78f7234ecf0d1d97" } Frame { msec: 1760 - hash: "5837a888d83513fb4c0bce11a34fc3df" + hash: "6b2209ea5f7f17c2cd868986f0c907d9" } Frame { msec: 1776 - hash: "07f8fe9ded8271396db503c3927244bb" + hash: "6513c82829ef7e7c9461dcf5b50f675f" } Frame { msec: 1792 - hash: "345fffbc210b55a4bd78cb8a4e12d025" + hash: "0172c5bdf96c8bceab25a6c82bdbe527" } Frame { msec: 1808 - hash: "7b9aa96eb9a1fe77fbb8b607140885b7" + hash: "64b53bf1c1988d3a799b564089f8e63f" } Frame { msec: 1824 - hash: "d66748cc52a364231ac8a6a677d9bdc6" + hash: "a1bdea4771ec9719cfe88f4e827bd005" } Frame { msec: 1840 - hash: "40cf9aece08870358aef6c9836013472" + hash: "263de376cee2ba7701a7ca116bc1be81" } Frame { msec: 1856 - hash: "2015ab3c133862222b1375c775af743b" + hash: "9795dada7f09d7d4d40df858dea8bc70" } Frame { msec: 1872 - hash: "41e519acb18ed9f7cda2d3cd88fddd2c" + hash: "85ea4c63fc31f79423cb509f6c6d4faa" } Frame { msec: 1888 - hash: "8e583b74b2b90d7f5c78357f66801358" + hash: "c86d8c4460d1e3c2f26b723dc628fe84" } Frame { msec: 1904 - hash: "3a6755e25045d937743371a98792a546" + hash: "6bf6ef1fd377bfcf0b93baa7f28e1d3d" } Frame { msec: 1920 @@ -486,239 +486,239 @@ VisualTest { } Frame { msec: 1936 - hash: "f80a8f65def55d556732bfefe3debe72" + hash: "57b8a48bed9375b74391950c28e611da" } Frame { msec: 1952 - hash: "308cbe6344b9aea4c6b7ad2ef606de59" + hash: "70203655bc832998529071d7f665ecbe" } Frame { msec: 1968 - hash: "fd2d31f6f4a3b4ce1aec1e309c48ae94" + hash: "9ab9808d495f907a255d85fbd82491e2" } Frame { msec: 1984 - hash: "a02ed4aa3783049ffbf7ef6dfb4e8926" + hash: "297570136b058ba43e883b0aef20d82f" } Frame { msec: 2000 - hash: "dde64769b3affc776fe0e747a4d621ef" + hash: "0c2f15ce83e2d961ec36299b13890709" } Frame { msec: 2016 - hash: "3fa830b629939520c071b3e6fe94156e" + hash: "6d57b6dcb1dbfa35245d79ef36ca49b2" } Frame { msec: 2032 - hash: "ae582350cba12ce47306f2a967e396fd" + hash: "12a71804fd71991706d8a39b676d1628" } Frame { msec: 2048 - hash: "a4483eadd2bf3e3e9fae51279b50e18a" + hash: "f6a9e1b0b498fc576f3eadeb86c08fe9" } Frame { msec: 2064 - hash: "742fc008fab89087b1bceee33889db19" + hash: "051c2ed34cbef82d44aec4841a33f086" } Frame { msec: 2080 - hash: "5da9546b147737dd671813725cb196f7" + hash: "12b89590b20fff8d6c94dde40a5d6185" } Frame { msec: 2096 - hash: "c979bccf2603c400b4c93d1be6f698d1" + hash: "7a29cd11ddb042203465a9522ff951ce" } Frame { msec: 2112 - hash: "b7c6391ce59e054ae53e3731788dfc05" + hash: "4853f364261ab8e1c9d35cfe42efb385" } Frame { msec: 2128 - hash: "0371e17fdaa7be7af0cff132f164d6b4" + hash: "7149ab3ed649cac9cf662be7c434056f" } Frame { msec: 2144 - hash: "6973ce2af671f4d500da3c5a37534693" + hash: "bbe199700474dda156355d31ac09be39" } Frame { msec: 2160 - hash: "f9128da47afa801c6b3670752847a8d1" + hash: "a3f3fbbe844b8c6fb8cb8bbcc17120e3" } Frame { msec: 2176 - hash: "2e4a7001c3c1bb7153f631da1b273aa1" + hash: "e9a04cfe9e8c50f74978fbd4ecce536a" } Frame { msec: 2192 - hash: "65d41139c27a4a94a817e1b5c8aa765d" + hash: "0df1d4211f770cdd7b8a98ea476c6f42" } Frame { msec: 2208 - hash: "36652e407957b59bad2e0e9b2fa5a8fe" + hash: "a6837afb43663b9473db2378b1a9f989" } Frame { msec: 2224 - hash: "c0fe78ff8fc3119b30a1d9e5b98fafbb" + hash: "691ea67f3b84b8dda449c2a8e86b1087" } Frame { msec: 2240 - hash: "41b798eac11e696e5e690d13e8ce88b1" + hash: "16d18947637c63662b9a502c493f06ec" } Frame { msec: 2256 - hash: "20efbef05b6eed5a916e55ba25c10a59" + hash: "8f9207d404da08706e150f3b64d0088d" } Frame { msec: 2272 - hash: "dc897fb0d232a39215d5d004e322cb2a" + hash: "48ad430e38cdc34845a834cfb9ea70ef" } Frame { msec: 2288 - hash: "33c1f9bb344a31a1a0973a527c22edac" + hash: "1252cfb294ae99c40b03dd021160553f" } Frame { msec: 2304 - hash: "0b54b02eedc60e8d7b147092b9bd6bca" + hash: "b1d5e752fbe03c95ee0dc7bbdf6fb9f6" } Frame { msec: 2320 - hash: "02cb9a222c9b109cbff956238a61b31b" + hash: "2282cb42ef0c812ba27e33ed0f962a84" } Frame { msec: 2336 - hash: "bfb067d4519861b22e20847083447a22" + hash: "42fc82c8d40d383b3cf31a741a4358c5" } Frame { msec: 2352 - hash: "86f599f6844c2046148c682abfe6c417" + hash: "368c1ffa2deb1911929f1769e31c8017" } Frame { msec: 2368 - hash: "fa07ac104183fe94fd3a381595582d76" + hash: "8693bdbde404e36970943ac6b650ca00" } Frame { msec: 2384 - hash: "8ee792f06fa7e877ce0b160bcf170e70" + hash: "57609613c336029b60da428d48842a4e" } Frame { msec: 2400 - hash: "bb39f4374215e9b4eafbc3320d4144b6" + hash: "b61dafe9e87421d3fcf8cb9ff0e7a41b" } Frame { msec: 2416 - hash: "d91f778ced58466dd6b79f50cdbfe1a8" + hash: "c8c34d1d82bef418ef97f52cb9773cf4" } Frame { msec: 2432 - hash: "0fd47896c9d9d74e40c38d0f532aa537" + hash: "aa756c09717dc02e81e76511b4c58f60" } Frame { msec: 2448 - hash: "0b7ec227fc884616bd17439bf0d40ac1" + hash: "96e75c5ce1b5393f6cc46fbbe0a67689" } Frame { msec: 2464 - hash: "e88d4e76d353701c738120e169ccf2a8" + hash: "fb5febae411f43a6cd218b03b36f5018" } Frame { msec: 2480 - hash: "1564432d4aea1826e543f41dfc9a8113" + hash: "889870fa67784261e7b73b7d0a53324e" } Frame { msec: 2496 - hash: "02825fa9174c0a45e19c564030ba9ad0" + hash: "fb124d4ebee6457f2137f07954619912" } Frame { msec: 2512 - hash: "c7671a2bb3f0dcb2be48805ef1970dbd" + hash: "258ae87f78805c555e0ed802c5123eeb" } Frame { msec: 2528 - hash: "2fa407b026edbb8b9e0edc263fd9ecc5" + hash: "2e730872c37f118a03864d23ebf7bab3" } Frame { msec: 2544 - hash: "211f3c82cff939cd1ed324180d40aab2" + hash: "381386302f210932bc7d44247a48f13c" } Frame { msec: 2560 - hash: "0fb3de6e1865e49ac281ac12e2032f07" + hash: "306f8e6d183eb080da3375d65f2491f0" } Frame { msec: 2576 - hash: "a08e0127a0b6172715aa6a10d6e0799e" + hash: "39862f236aabf362d0a07ba64eb212e1" } Frame { msec: 2592 - hash: "57a3d1530042f0d6a6dbf84059a8d730" + hash: "57452ecfea80ebd4d9fd23f8efbb34f2" } Frame { msec: 2608 - hash: "9aae6364941f988409b8db63db72fccb" + hash: "64bd12d4f6e32f19abef79289673c2fe" } Frame { msec: 2624 - hash: "9e466ce9c8b54dc95960d21b0b41fdd1" + hash: "56340d636f4df7e5f68e84c1d8388429" } Frame { msec: 2640 - hash: "189e0f3c60cd521a6bf52054fa6039c6" + hash: "795cd97d4be294fa6157f23793861ec3" } Frame { msec: 2656 - hash: "1020f18d41a4d83e0b5ae387b486b5ff" + hash: "4be9fd5314ad6721a0ddf5a5dc51ccee" } Frame { msec: 2672 - hash: "26fcea12cc2de8c8cb8caf049937d7c6" + hash: "3349b775c329db022bf0414b9ed57466" } Frame { msec: 2688 - hash: "e5b9e752dc668cd4f6803ea772bbb7b0" + hash: "587b7070836063f9d138c4a4ee8da8bb" } Frame { msec: 2704 - hash: "a0df9360ed11207076fc77810c1d8605" + hash: "5bb078819bef7695c9af1bd4b544a26a" } Frame { msec: 2720 - hash: "56dea4551a9532e80dfd6c79031ec08b" + hash: "799c05999713e8b29f7d2917f515d2c2" } Frame { msec: 2736 - hash: "900c62773477b2843464b75f67d50c90" + hash: "41bb926661acd8e21300f4933734748a" } Frame { msec: 2752 - hash: "177de9647549a276256a5e74d5ef7134" + hash: "2ead23d38a2f1834c7688a9657d9d7cc" } Frame { msec: 2768 - hash: "cb3eb956096de4f6b51ab249d184a6dd" + hash: "196309eac81adea21630dda19947ef5e" } Frame { msec: 2784 - hash: "6671e46d013f72bef5e3d0d95ba70301" + hash: "cf414b2004712581f11f27890745c761" } Frame { msec: 2800 - hash: "33910dc69eff13f9c144b7ff84187a59" + hash: "6b2a6837da878fa8f3811b2045e098b1" } Frame { msec: 2816 - hash: "dfa20711b0821b66cb2bdd2806e34d03" + hash: "7390cfdef1d4bc194b86854b1947f15d" } Frame { msec: 2832 - hash: "16e2674c2449bf059aa2a0add077e040" + hash: "9e4543fcf65a56edfbcaf46805343071" } Frame { msec: 2848 - hash: "cdd2a820076cfa9529d93787de61267e" + hash: "3a886e2ed813eb7d44d0cd67eb5dee31" } Frame { msec: 2864 - hash: "a851a1e017e90877d6d8027633401bcc" + hash: "625baed6cbf3a58b32060810be53d0b6" } Frame { msec: 2880 @@ -726,50 +726,50 @@ VisualTest { } Frame { msec: 2896 - hash: "f159f17caa8df7ae09141462cd9b75ab" + hash: "484666ad104cee644c6a7e8ec0c4b10e" } Frame { msec: 2912 - hash: "f6a8787008d24bffa6813799042a0d69" + hash: "41abe2e2d92b293407141d0333d7d04a" } Frame { msec: 2928 - hash: "18e79f454a628098c41ff8882b663a53" + hash: "953c03834bd3b50798b77c0c6bb0f4a8" } Frame { msec: 2944 - hash: "74676f4f2d8612bc02f72e3bf855c060" + hash: "a076463868003c62df3ee5147ffd4660" } Frame { msec: 2960 - hash: "8276c61e080635dd37954837998a14a6" + hash: "b389b5c9ed31816dd562a8f1332d28c9" } Frame { msec: 2976 - hash: "4cceb2274ce5584315109ac45ef8fce7" + hash: "246706829939a2619d64fad63e424fdb" } Frame { msec: 2992 - hash: "c4e87037c2265f85fef3b681b840c6f9" + hash: "d5e644f16bde52c566191a054a1279e5" } Frame { msec: 3008 - hash: "aed160bb820dc5cdf1ee320b019436c4" + hash: "10b2e99d2e08939b75c24a6bbf481858" } Frame { msec: 3024 - hash: "593acf3e67bc3428f61b723996093d8d" + hash: "732a7bb0009f394f0039e09594362c75" } Frame { msec: 3040 - hash: "694d197caff9144204a82a682d47724c" + hash: "261f38ce42a8a8c86daadd497ecfad07" } Frame { msec: 3056 - hash: "12519eda928f8aef0e2a21e9fc0f8756" + hash: "8b66ae6261db386d6c4e88d0146db090" } Frame { msec: 3072 - hash: "ae8cba17b25e9567211f4cd20080cb09" + hash: "dc8dba79e4466059c29725084cf801bb" } } diff --git a/tests/auto/declarative/visual/qmlgraphicspathview/data/test-pathview.1.png b/tests/auto/declarative/visual/qmlgraphicspathview/data/test-pathview.1.png Binary files differindex fa689f7..a9ff20f 100644 --- a/tests/auto/declarative/visual/qmlgraphicspathview/data/test-pathview.1.png +++ b/tests/auto/declarative/visual/qmlgraphicspathview/data/test-pathview.1.png diff --git a/tests/auto/declarative/visual/qmlgraphicspathview/data/test-pathview.qml b/tests/auto/declarative/visual/qmlgraphicspathview/data/test-pathview.qml index 837e0cc..8cff5c6 100644 --- a/tests/auto/declarative/visual/qmlgraphicspathview/data/test-pathview.qml +++ b/tests/auto/declarative/visual/qmlgraphicspathview/data/test-pathview.qml @@ -426,147 +426,147 @@ VisualTest { } Frame { msec: 1344 - hash: "098176f48a148eb2bc5ef67c307baa1c" + hash: "f838ab4301bf9d3106cec529f855cecd" } Frame { msec: 1360 - hash: "f838ab4301bf9d3106cec529f855cecd" + hash: "9725322067a04f83717b059d4970d610" } Frame { msec: 1376 - hash: "9725322067a04f83717b059d4970d610" + hash: "3605cfbebc3a9eb4460efb2d4b9b6da2" } Frame { msec: 1392 - hash: "3605cfbebc3a9eb4460efb2d4b9b6da2" + hash: "4503a368d8db25d112503dbc3934541d" } Frame { msec: 1408 - hash: "4503a368d8db25d112503dbc3934541d" + hash: "80894cc06c82264bf527398ea235da12" } Frame { msec: 1424 - hash: "80894cc06c82264bf527398ea235da12" + hash: "d4f9b90f886fc667309b33c9a296410c" } Frame { msec: 1440 - hash: "d4f9b90f886fc667309b33c9a296410c" + hash: "889d01025cff679b61bff182a1ac9cbc" } Frame { msec: 1456 - hash: "889d01025cff679b61bff182a1ac9cbc" + hash: "6147bc4455e7cb5ae55cd47be8dc4ad6" } Frame { msec: 1472 - hash: "6147bc4455e7cb5ae55cd47be8dc4ad6" + hash: "ddd10a294eb6b19698c4e9fe4f1508fe" } Frame { msec: 1488 - hash: "ddd10a294eb6b19698c4e9fe4f1508fe" + hash: "748e8d9c1971f6258acee5133b7f114b" } Frame { msec: 1504 - hash: "748e8d9c1971f6258acee5133b7f114b" + hash: "1ef3f32ec9ef950588266bacbe3554a0" } Frame { msec: 1520 - hash: "1ef3f32ec9ef950588266bacbe3554a0" + hash: "57853ff47b65aba9e76f90b2efec4f8f" } Frame { msec: 1536 - hash: "57853ff47b65aba9e76f90b2efec4f8f" + hash: "3985fea21d89d223c1461d5e96364c76" } Frame { msec: 1552 - hash: "3985fea21d89d223c1461d5e96364c76" + hash: "cb5f6a3caeeaed12e91efe43867f2c1f" } Frame { msec: 1568 - hash: "cb5f6a3caeeaed12e91efe43867f2c1f" + hash: "cdd4176776d5969373e0fc9a117e3c87" } Frame { msec: 1584 - hash: "cdd4176776d5969373e0fc9a117e3c87" + hash: "3bac2e7506472db2ae11734240f1c3f4" } Frame { msec: 1600 - hash: "3bac2e7506472db2ae11734240f1c3f4" + hash: "bb572659d79ebda7134c039e40cf2633" } Frame { msec: 1616 - hash: "bb572659d79ebda7134c039e40cf2633" + hash: "e610181bfa17a85281f9c7417088f04f" } Frame { msec: 1632 - hash: "e610181bfa17a85281f9c7417088f04f" + hash: "eb23ff021909589b6d8ce47ebff2c3ed" } Frame { msec: 1648 - hash: "eb23ff021909589b6d8ce47ebff2c3ed" + hash: "c321dda3878c4b97cc63246c47368224" } Frame { msec: 1664 - hash: "c321dda3878c4b97cc63246c47368224" + hash: "6a65cdfd50e1455356040d4cbc09905e" } Frame { msec: 1680 - hash: "6a65cdfd50e1455356040d4cbc09905e" + hash: "f2a44b12e4e5bae8283c4d227949e4e8" } Frame { msec: 1696 - hash: "f2a44b12e4e5bae8283c4d227949e4e8" + hash: "55418d661f3257b5b79a7dbb172b5b70" } Frame { msec: 1712 - hash: "55418d661f3257b5b79a7dbb172b5b70" + hash: "483d7111c86951918746d6ebe0dd9655" } Frame { msec: 1728 - hash: "483d7111c86951918746d6ebe0dd9655" + hash: "85c83ac3a294a9320bb04a6721ecf7d5" } Frame { msec: 1744 - hash: "85c83ac3a294a9320bb04a6721ecf7d5" + hash: "0d658b897b8e03397ddd8ffe475c2fc0" } Frame { msec: 1760 - hash: "0d658b897b8e03397ddd8ffe475c2fc0" + hash: "6ed9d7ea344b3c1b1d9196ee36b2f89a" } Frame { msec: 1776 - hash: "6ed9d7ea344b3c1b1d9196ee36b2f89a" + hash: "6a1e7f6c03769c2c88e6343fb6c1a2a4" } Frame { msec: 1792 - hash: "6a1e7f6c03769c2c88e6343fb6c1a2a4" + hash: "9dc51f46e072eac4494d7318f2ecb39b" } Frame { msec: 1808 - hash: "9dc51f46e072eac4494d7318f2ecb39b" + hash: "59e833981c3fcd8a71f4a16d1c454b3a" } Frame { msec: 1824 - hash: "59e833981c3fcd8a71f4a16d1c454b3a" + hash: "29b953efdda00548d8cf6fb49fa60d13" } Frame { msec: 1840 - hash: "29b953efdda00548d8cf6fb49fa60d13" + hash: "fd4611f703f94ebefcc64781993ca85c" } Frame { msec: 1856 - hash: "fd4611f703f94ebefcc64781993ca85c" + hash: "aa4789ede618963157b40f099ce84987" } Frame { msec: 1872 - hash: "aa4789ede618963157b40f099ce84987" + hash: "8a326b46ec536a67626ee2d2bc06aa9f" } Frame { msec: 1888 - hash: "8a326b46ec536a67626ee2d2bc06aa9f" + hash: "011ff557672d47591e4f0f5c5ee418f1" } Frame { msec: 1904 - hash: "011ff557672d47591e4f0f5c5ee418f1" + hash: "d72fba857bdc128ddcb5971b86aadcb2" } Frame { msec: 1920 @@ -574,123 +574,123 @@ VisualTest { } Frame { msec: 1936 - hash: "69e854e8ac7f1bc1972588ffa01728b6" + hash: "49182b7ae9ef5fb4b9234969abd05960" } Frame { msec: 1952 - hash: "49182b7ae9ef5fb4b9234969abd05960" + hash: "53de60f682574b7a9e6ffaee175fc9ff" } Frame { msec: 1968 - hash: "53de60f682574b7a9e6ffaee175fc9ff" + hash: "2de74fe5b8848c5c781b796146871f45" } Frame { msec: 1984 - hash: "2de74fe5b8848c5c781b796146871f45" + hash: "33c87146d8c24dd9c2271d16a8ff5b53" } Frame { msec: 2000 - hash: "33c87146d8c24dd9c2271d16a8ff5b53" + hash: "fdb29214e20d744d9776907061f50358" } Frame { msec: 2016 - hash: "fdb29214e20d744d9776907061f50358" + hash: "8c7c920416c9b775e790e6da24c32927" } Frame { msec: 2032 - hash: "8c7c920416c9b775e790e6da24c32927" + hash: "86b456059e4701379447fffaf9e072f0" } Frame { msec: 2048 - hash: "86b456059e4701379447fffaf9e072f0" + hash: "f92cc485ee03ef5bce3c4cdc35e00318" } Frame { msec: 2064 - hash: "f92cc485ee03ef5bce3c4cdc35e00318" + hash: "2fad58883cb20273cfd79ebca345a66d" } Frame { msec: 2080 - hash: "2fad58883cb20273cfd79ebca345a66d" + hash: "84505ebbc6e12817f11f64aa6f61a0bf" } Frame { msec: 2096 - hash: "84505ebbc6e12817f11f64aa6f61a0bf" + hash: "ded83cacb89838cc0f3ba14bcc69b66b" } Frame { msec: 2112 - hash: "ded83cacb89838cc0f3ba14bcc69b66b" + hash: "5bb37e75bb45eaa6067c604b83ae13d7" } Frame { msec: 2128 - hash: "5bb37e75bb45eaa6067c604b83ae13d7" + hash: "4ee9e4c90c40dbc25a0ce884d9c2c37f" } Frame { msec: 2144 - hash: "4ee9e4c90c40dbc25a0ce884d9c2c37f" + hash: "cb7148ff6f611038c29af36c8552b8c2" } Frame { msec: 2160 - hash: "cb7148ff6f611038c29af36c8552b8c2" + hash: "a591d8cb42570272dd264d5f1ce595ab" } Frame { msec: 2176 - hash: "a591d8cb42570272dd264d5f1ce595ab" + hash: "4e61657405d32dbcd39d3637f8af0958" } Frame { msec: 2192 - hash: "4e61657405d32dbcd39d3637f8af0958" + hash: "9c7c1411dd5d3c1c8fb78e63e14061fe" } Frame { msec: 2208 - hash: "9c7c1411dd5d3c1c8fb78e63e14061fe" + hash: "ae83a37e99b578fa0872ed6bc2776bc0" } Frame { msec: 2224 - hash: "ae83a37e99b578fa0872ed6bc2776bc0" + hash: "e8cb5a8a40c1e78c87c616f77d8de270" } Frame { msec: 2240 - hash: "e8cb5a8a40c1e78c87c616f77d8de270" + hash: "9df093e4bcfa32be5924a0ca70bdaa3b" } Frame { msec: 2256 - hash: "9df093e4bcfa32be5924a0ca70bdaa3b" + hash: "40c358066d508143bee1446d12fe7b89" } Frame { msec: 2272 - hash: "40c358066d508143bee1446d12fe7b89" + hash: "a929ed6efc7fc68b38635f3c74242f52" } Frame { msec: 2288 - hash: "a929ed6efc7fc68b38635f3c74242f52" + hash: "86ff721a3178b689ea47b6bc274a2b41" } Frame { msec: 2304 - hash: "86ff721a3178b689ea47b6bc274a2b41" + hash: "ed1f680f6d05f54ceb75c9bae3a0716a" } Frame { msec: 2320 - hash: "ed1f680f6d05f54ceb75c9bae3a0716a" + hash: "3f09a565df2beb51f366a1b3fb6adfe9" } Frame { msec: 2336 - hash: "3f09a565df2beb51f366a1b3fb6adfe9" + hash: "13468347bd26bab60f1db826fb17631c" } Frame { msec: 2352 - hash: "13468347bd26bab60f1db826fb17631c" + hash: "9f7d085fea5788a457098973f17c36cb" } Frame { msec: 2368 - hash: "9f7d085fea5788a457098973f17c36cb" + hash: "4114b93246155b3434200831b2995330" } Frame { msec: 2384 - hash: "4114b93246155b3434200831b2995330" + hash: "487171bd1430f74e3d51b5e215c34b5c" } Frame { msec: 2400 - hash: "487171bd1430f74e3d51b5e215c34b5c" + hash: "7ba9783ce63db6ad6b5f725a4ecd4eb8" } Frame { msec: 2416 @@ -1419,7 +1419,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 67108864 + modifiers: 0 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/qmlgraphicstext/elide/data-MAC/elide.0.png b/tests/auto/declarative/visual/qmlgraphicstext/elide/data-MAC/elide.0.png Binary files differnew file mode 100644 index 0000000..ed5a626 --- /dev/null +++ b/tests/auto/declarative/visual/qmlgraphicstext/elide/data-MAC/elide.0.png diff --git a/tests/auto/declarative/visual/qmlgraphicstext/elide/data-MAC/elide.qml b/tests/auto/declarative/visual/qmlgraphicstext/elide/data-MAC/elide.qml new file mode 100644 index 0000000..281660f --- /dev/null +++ b/tests/auto/declarative/visual/qmlgraphicstext/elide/data-MAC/elide.qml @@ -0,0 +1,279 @@ +import Qt.VisualTest 4.6 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 32 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 48 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 64 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 80 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 96 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 112 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 128 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 144 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 160 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 176 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 192 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 208 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 224 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 240 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 256 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 272 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 288 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 304 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 320 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 336 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 352 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 368 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 384 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 400 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 416 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 432 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 448 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 464 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 480 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 496 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 512 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 528 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 544 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 560 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 576 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 592 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 608 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 624 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 640 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 656 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 672 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 688 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 704 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 720 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 736 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 752 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 768 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 784 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 800 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 816 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 832 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 848 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 864 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 880 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 896 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 912 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 928 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 944 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 960 + image: "elide.0.png" + } + Frame { + msec: 976 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 992 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 1008 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 1024 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 1040 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } + Frame { + msec: 1056 + hash: "0ae463f7afb8f41d6c972592ab6124e4" + } +} diff --git a/tests/auto/declarative/visual/qmlgraphicstext/font/data-MAC/plaintext.qml b/tests/auto/declarative/visual/qmlgraphicstext/font/data-MAC/plaintext.qml index 7e591c8..045dda0 100644 --- a/tests/auto/declarative/visual/qmlgraphicstext/font/data-MAC/plaintext.qml +++ b/tests/auto/declarative/visual/qmlgraphicstext/font/data-MAC/plaintext.qml @@ -303,7 +303,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 67108864 + modifiers: 0 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/qmlgraphicstext/font/data-MAC/richtext.qml b/tests/auto/declarative/visual/qmlgraphicstext/font/data-MAC/richtext.qml index 4414c1c..72499b9 100644 --- a/tests/auto/declarative/visual/qmlgraphicstext/font/data-MAC/richtext.qml +++ b/tests/auto/declarative/visual/qmlgraphicstext/font/data-MAC/richtext.qml @@ -295,7 +295,7 @@ VisualTest { Key { type: 6 key: 16777249 - modifiers: 67108864 + modifiers: 0 text: "" autorep: false count: 1 diff --git a/tests/auto/declarative/visual/qmlspringfollow/clock.qml b/tests/auto/declarative/visual/qmlspringfollow/clock.qml new file mode 100644 index 0000000..04bbabc --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/clock.qml @@ -0,0 +1,64 @@ +import Qt 4.6 + +Rectangle { + id: clock + color: "gray" + width: 200; height: 200 + + property var hours: 10 + property var minutes: 28 + property var 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" + smooth: true + transform: Rotation { + id: hourRotation + origin.x: 7.5; origin.y: 73; angle: 0 + angle: SpringFollow { + spring: 2; damping: 0.2; modulus: 360 + source: (clock.hours * 30) + (clock.minutes * 0.5) + } + } + } + + Image { + x: 93.5; y: 17 + source: "content/minute.png" + smooth: true + transform: Rotation { + id: minuteRotation + origin.x: 6.5; origin.y: 83; angle: 0 + angle: SpringFollow { + spring: 2; damping: 0.2; modulus: 360 + source: clock.minutes * 6 + } + } + } + + Image { + x: 97.5; y: 20 + source: "content/second.png" + smooth: true + transform: Rotation { + id: secondRotation + origin.x: 2.5; origin.y: 80; angle: 0 + angle: SpringFollow { + spring: 5; damping: 0.25; modulus: 360 + source: clock.seconds * 6 + } + } + } + + Image { + anchors.centerIn: background; source: "content/center.png" + } +} diff --git a/tests/auto/declarative/visual/qmlspringfollow/content/background.png b/tests/auto/declarative/visual/qmlspringfollow/content/background.png Binary files differnew file mode 100644 index 0000000..a885950 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/content/background.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/content/center.png b/tests/auto/declarative/visual/qmlspringfollow/content/center.png Binary files differnew file mode 100755 index 0000000..7fbd802 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/content/center.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/content/clock.png b/tests/auto/declarative/visual/qmlspringfollow/content/clock.png Binary files differnew file mode 100755 index 0000000..462edac --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/content/clock.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/content/hour.png b/tests/auto/declarative/visual/qmlspringfollow/content/hour.png Binary files differnew file mode 100755 index 0000000..f8061a1 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/content/hour.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/content/minute.png b/tests/auto/declarative/visual/qmlspringfollow/content/minute.png Binary files differnew file mode 100755 index 0000000..1297ec7 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/content/minute.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/content/second.png b/tests/auto/declarative/visual/qmlspringfollow/content/second.png Binary files differnew file mode 100755 index 0000000..4aa9fb5 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/content/second.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.0.png b/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.0.png Binary files differdeleted file mode 100644 index d753c97..0000000 --- a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.0.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.1.png b/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.1.png Binary files differdeleted file mode 100644 index 98fc111..0000000 --- a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.1.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.2.png b/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.2.png Binary files differdeleted file mode 100644 index b1d109e..0000000 --- a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.2.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.3.png b/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.3.png Binary files differdeleted file mode 100644 index 595d92e..0000000 --- a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.3.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.4.png b/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.4.png Binary files differdeleted file mode 100644 index 93e1536..0000000 --- a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.4.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.5.png b/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.5.png Binary files differdeleted file mode 100644 index b27cc9f..0000000 --- a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.5.png +++ /dev/null diff --git a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.qml b/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.qml deleted file mode 100644 index 3c0dad8..0000000 --- a/tests/auto/declarative/visual/qmlspringfollow/data-MAC/follow.qml +++ /dev/null @@ -1,1691 +0,0 @@ -import Qt.VisualTest 4.6 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "ea677d128f47343d81a081c438aa2f6c" - } - Frame { - msec: 32 - hash: "ea677d128f47343d81a081c438aa2f6c" - } - Frame { - msec: 48 - hash: "403e130b7cf0a41d8348a227293d98d1" - } - Frame { - msec: 64 - hash: "d2250ca93235b6a087b5e582f7e941d6" - } - Frame { - msec: 80 - hash: "3e95bdb5546de8ed7bb33de704d2890e" - } - Frame { - msec: 96 - hash: "438612a44780d6587f99a44c943eb60f" - } - Frame { - msec: 112 - hash: "057d47c73edcd149c0b1e6274f98deae" - } - Frame { - msec: 128 - hash: "c15ca80f3efb55d067e38bd92f360b14" - } - Frame { - msec: 144 - hash: "9f1b15db2eb172d97eef4f7c78d11e4f" - } - Frame { - msec: 160 - hash: "a81514d058846ae1c60575534ad47b21" - } - Frame { - msec: 176 - hash: "48d0f3971ed369d6a82b06ca9febc435" - } - Frame { - msec: 192 - hash: "8277eb954d0ca9293f3d05b979db3fe3" - } - Frame { - msec: 208 - hash: "edb64bdcb13f67813fcd3cbedb608cf3" - } - Frame { - msec: 224 - hash: "3a51a89e15b0709fcf6591ce4096c52d" - } - Frame { - msec: 240 - hash: "ffe486e038988cea3ff2ec6b2fcc516f" - } - Frame { - msec: 256 - hash: "1267aa3970ac861827e84c5da93523c7" - } - Frame { - msec: 272 - hash: "c5c0d501f102876a0b06f6d100f19a77" - } - Frame { - msec: 288 - hash: "b78207cb082771fc608a084c69c38399" - } - Frame { - msec: 304 - hash: "86cc014a4601ddf84478c8a0f44de7ed" - } - Frame { - msec: 320 - hash: "fbe34a8c894aa1c1ddb26171069c92f6" - } - Frame { - msec: 336 - hash: "c916a45687baa73e1023cdb03be42669" - } - Frame { - msec: 352 - hash: "1157f5c96e49fdc0afeb126453e19260" - } - Frame { - msec: 368 - hash: "c7528a6f57f4241dc2f5867436c44fd9" - } - Frame { - msec: 384 - hash: "054ac7e1cd4448fdd12f0175b3bdff90" - } - Frame { - msec: 400 - hash: "4ccf29d6ce92332683f6b49b89357579" - } - Frame { - msec: 416 - hash: "c46e42accdeba8b32bd4d6d43894c61c" - } - Frame { - msec: 432 - hash: "2ab2e8d8a3d58ac1c17932b9485cbc67" - } - Frame { - msec: 448 - hash: "347092c3876535e41e8368be2cd19aed" - } - Frame { - msec: 464 - hash: "311b1c44074b0e55a990e971f877c898" - } - Frame { - msec: 480 - hash: "198908af8468b4500fac85262eb82596" - } - Frame { - msec: 496 - hash: "202c33e301ad850a888223d3abdd06e6" - } - Frame { - msec: 512 - hash: "f3e0ce1386571c9e6be2656d402b4960" - } - Frame { - msec: 528 - hash: "b9c900bfedc7159ee2c0b0af6e66fc92" - } - Frame { - msec: 544 - hash: "f978850a8977c3c32e4ae9a43b7a3a8b" - } - Frame { - msec: 560 - hash: "637e5d9580d783864134b403e49cb47b" - } - Frame { - msec: 576 - hash: "8082c1e1eccb8588ebdbb739e31bda49" - } - Frame { - msec: 592 - hash: "c513f544df3d94223bb4fbf06befa2d7" - } - Frame { - msec: 608 - hash: "e7f589e64d3cd054349161971d4ef42e" - } - Frame { - msec: 624 - hash: "bb375339d4155f13c353bc90eb9b9cbf" - } - Frame { - msec: 640 - hash: "924368c60be4be048a19af942a8e402c" - } - Frame { - msec: 656 - hash: "c0142a6872bf5a445302952aaa6daa0d" - } - Frame { - msec: 672 - hash: "fab2a7e79b235f6432cd4c48740e3020" - } - Frame { - msec: 688 - hash: "fda751a9b20100007c33669bdb6f7f23" - } - Frame { - msec: 704 - hash: "d97d2d108dba9aefd36b0f6b2f160f23" - } - Frame { - msec: 720 - hash: "bf3683eb4308904de61fb3fb59802e37" - } - Frame { - msec: 736 - hash: "908f34ec52d59027f65c673c17077ca6" - } - Frame { - msec: 752 - hash: "19ae0ec52c077eff92451c9924be2c23" - } - Frame { - msec: 768 - hash: "898277481841e4c4f8992fd755784e5a" - } - Frame { - msec: 784 - hash: "9613da2dcdf470561d20a982777f50f6" - } - Frame { - msec: 800 - hash: "fdfc54fa3657be02c2ee65d787e8c7a5" - } - Frame { - msec: 816 - hash: "1d3b6cff6e62890db90213ebab88dca3" - } - Frame { - msec: 832 - hash: "713e9c0f768f6cc8cc6c78c72b41b47c" - } - Frame { - msec: 848 - hash: "9068d912a8d3e6e0b5b458c12ddad126" - } - Frame { - msec: 864 - hash: "e85192393e4911dbaf9c734d2e386bbf" - } - Frame { - msec: 880 - hash: "4f2374e6c8763e1e5b3b7cebdf5b8ebc" - } - Frame { - msec: 896 - hash: "986a32decb18065294356fb85953891e" - } - Frame { - msec: 912 - hash: "faa36d337589c59761814e3065874aa3" - } - Frame { - msec: 928 - hash: "9c823d92cd71932f0ad1d247fdd8c66e" - } - Frame { - msec: 944 - hash: "3ebcf592e427bcbc8a92dc1bee903845" - } - Frame { - msec: 960 - image: "follow.0.png" - } - Frame { - msec: 976 - hash: "b1a205f75f5ab7b69f4d9bd0582d7896" - } - Frame { - msec: 992 - hash: "0cf4ce09fd895a174271e3cb37c72de6" - } - Frame { - msec: 1008 - hash: "e6487b45fc20afc4c1a24c8669919611" - } - Frame { - msec: 1024 - hash: "fe2a4eb899611495fa5ad88b7c5f4c7e" - } - Frame { - msec: 1040 - hash: "07b880170d1ba41e4d1a1277e8184089" - } - Frame { - msec: 1056 - hash: "27afbfb4b961570f8844e05595b11d4f" - } - Frame { - msec: 1072 - hash: "1b6cfd4c2c2c007837cfb9746f44ec20" - } - Frame { - msec: 1088 - hash: "8f82c7f1cb2ded469a7cb3a0827e919e" - } - Frame { - msec: 1104 - hash: "d8581781550c21bc0fa6b75fc6de3f57" - } - Frame { - msec: 1120 - hash: "104a6c18b4a16732de9dba9bfb92eb5a" - } - Frame { - msec: 1136 - hash: "ebbdeb2de19644aeb41c03f852d1fc15" - } - Frame { - msec: 1152 - hash: "a8cc1328eb65fed5ca75d79c6e628ec1" - } - Frame { - msec: 1168 - hash: "a1192d371ffd3e9f8a23abca6a8b4d98" - } - Frame { - msec: 1184 - hash: "06b7749eace5d149bd35f668c4df9811" - } - Frame { - msec: 1200 - hash: "de1f7eb2c3224754a75d0a953ee24a76" - } - Frame { - msec: 1216 - hash: "1bc3c2cf2058ab5f8d491ad35605c6d7" - } - Frame { - msec: 1232 - hash: "4c2b7e3f7cad28a424f3fdb574d732b6" - } - Frame { - msec: 1248 - hash: "ebb9c07b34f4acd9ee2652324c81e5d1" - } - Frame { - msec: 1264 - hash: "fef63629bdae6f1d744633916c6b0852" - } - Frame { - msec: 1280 - hash: "aacb966d803ed6986db40e51d2a63dff" - } - Frame { - msec: 1296 - hash: "796bb7137a909d524b1cec022c1be6ea" - } - Frame { - msec: 1312 - hash: "d88526b472d9ba58b93f868a150154f3" - } - Frame { - msec: 1328 - hash: "d6a24e9f446565c0d0d0bf25db80e88e" - } - Frame { - msec: 1344 - hash: "08902af1f5ba7566f2fef79200ac0362" - } - Frame { - msec: 1360 - hash: "b655edf8bd25f5e05fcb1cce64aaad89" - } - Frame { - msec: 1376 - hash: "5f526a0e92c1846ca7099c5640208dd0" - } - Frame { - msec: 1392 - hash: "c354f31e4e75d6ccf4c284113c54377b" - } - Frame { - msec: 1408 - hash: "2f8143ead16b7c65c8f43469754c09dd" - } - Frame { - msec: 1424 - hash: "b486f4056d300e22860fa995b6f09f92" - } - Frame { - msec: 1440 - hash: "4a24f651b8ad911b04426a07b4663a3d" - } - Frame { - msec: 1456 - hash: "aad02861a66647d27ea3746d9b455e91" - } - Frame { - msec: 1472 - hash: "ce4225df7a187919c91cc2dd950e11f0" - } - Frame { - msec: 1488 - hash: "5479a97041b64406883100567df4b9b7" - } - Frame { - msec: 1504 - hash: "76e67f9c5b552f1ff47c3c7b23eb1b76" - } - Frame { - msec: 1520 - hash: "8c3e1d2fd58eaf2a8da16bb0349b1e5e" - } - Frame { - msec: 1536 - hash: "4642a396f4a4bb3b97845782e1d1ce93" - } - Frame { - msec: 1552 - hash: "4d3e8c9ea7c8c1407db564a3a6e430ff" - } - Frame { - msec: 1568 - hash: "e041300f1d2956f35baebed6c7c9c750" - } - Frame { - msec: 1584 - hash: "b20e241906a2b9e38b03c0991d21160e" - } - Frame { - msec: 1600 - hash: "cb5c32ad57d1931a69c20328f8f2d060" - } - Frame { - msec: 1616 - hash: "021ba4fc38e1652afeab73047e126a17" - } - Frame { - msec: 1632 - hash: "d27728f36491ba432e3655850402ee6b" - } - Frame { - msec: 1648 - hash: "20a87f4d9afd2039e44c2b5b539d0298" - } - Frame { - msec: 1664 - hash: "46c4016acfe390495307d3d64b93902d" - } - Frame { - msec: 1680 - hash: "a356b011266d901d7148e662393e5f72" - } - Frame { - msec: 1696 - hash: "43b4a8e0d73ab2c6be5db2b48c3e7013" - } - Frame { - msec: 1712 - hash: "b7a5bfbecabbf0f20b0e2c0959051b66" - } - Frame { - msec: 1728 - hash: "8eff269aeb6f3bc540dd8cf6491d53b8" - } - Frame { - msec: 1744 - hash: "9c524c30ef7cd6dbfb911ec1c75d0e32" - } - Frame { - msec: 1760 - hash: "a064e420983d68f2f2baca9ea9119236" - } - Frame { - msec: 1776 - hash: "99739628a95e72704e503ed6d1dea712" - } - Frame { - msec: 1792 - hash: "1f0f916ed7382f10c23eb63052377fe1" - } - Frame { - msec: 1808 - hash: "d99f731943018a50e8738bf638ca3b31" - } - Frame { - msec: 1824 - hash: "10182c1206e73d5a59b377f5d6061bef" - } - Frame { - msec: 1840 - hash: "a272abb9905b17e4bdd717db87514c11" - } - Frame { - msec: 1856 - hash: "81ffae766d85d829d7e16071ac44fcc1" - } - Frame { - msec: 1872 - hash: "4e2402d3eafa149d0b8ad9238c3b985d" - } - Frame { - msec: 1888 - hash: "70ad42fd0824ce00181514bac4b6b0f4" - } - Frame { - msec: 1904 - hash: "6d1ff46bd1606662fec47f14152bfd4a" - } - Frame { - msec: 1920 - image: "follow.1.png" - } - Frame { - msec: 1936 - hash: "9a37d437b9476375b3a34ac293a0789a" - } - Frame { - msec: 1952 - hash: "0a5fa0cd8bc22d274b00d32383ffc486" - } - Frame { - msec: 1968 - hash: "1a284b36906f0adcef2ed66c0cfb5a9d" - } - Frame { - msec: 1984 - hash: "049ca635405f3f88f85629f559919569" - } - Frame { - msec: 2000 - hash: "d8d3d7b55f2a04dbf187d2296e8da84a" - } - Frame { - msec: 2016 - hash: "57a04352e211d888d8182449b8f970e0" - } - Frame { - msec: 2032 - hash: "48229fc62e5ea19c54f961d3b0bb5b26" - } - Frame { - msec: 2048 - hash: "8c5d645cdbbb343789fc6ac27482b76e" - } - Frame { - msec: 2064 - hash: "3c4d50a07778ae5105f2e7514bff37ca" - } - Frame { - msec: 2080 - hash: "ce97d094ede43b3e74e81fa63e04dad7" - } - Frame { - msec: 2096 - hash: "2b2e4e9681bbc672b51148c10b183ec8" - } - Frame { - msec: 2112 - hash: "0421ac4f53c050bfffb2c8de16aafd46" - } - Frame { - msec: 2128 - hash: "953bdaacefe42a841bf1cdd7da3b442a" - } - Frame { - msec: 2144 - hash: "7209f7d812af5bdbca4b15f303cb5ff7" - } - Frame { - msec: 2160 - hash: "3f64635e9c43b8b6a402c5d6fe26e648" - } - Frame { - msec: 2176 - hash: "92926b4cf66b15cd0ddb468f2bd8bd62" - } - Frame { - msec: 2192 - hash: "ee0810fe7509d2d61d9306908816bba4" - } - Frame { - msec: 2208 - hash: "55249aae2bb6db6c363ecb4b89f56270" - } - Frame { - msec: 2224 - hash: "73ea66c3c61e8105ac61d26c8cfdbba3" - } - Frame { - msec: 2240 - hash: "f75b56ced71167a1bc1800b0d2f0f249" - } - Frame { - msec: 2256 - hash: "e0d09e7a8007bfbc1efd4bd89f49847a" - } - Frame { - msec: 2272 - hash: "159e98e8340375c6700015288660cbf8" - } - Frame { - msec: 2288 - hash: "b7aa76fced5c78eb8e55ce9f36d081e2" - } - Frame { - msec: 2304 - hash: "ac87e65a58914c1984b2dc95cf6de76d" - } - Frame { - msec: 2320 - hash: "7a0131b0a9ec395a2286438625881bee" - } - Frame { - msec: 2336 - hash: "84da8fd2b435b3ac9bad3350cd3a9ec0" - } - Frame { - msec: 2352 - hash: "1ed376000e60129b4bcf06ea73cb5819" - } - Frame { - msec: 2368 - hash: "8c713e210143ab5f19bdddd918f86ef3" - } - Frame { - msec: 2384 - hash: "269b595c5691747b56be58d5b92ae497" - } - Frame { - msec: 2400 - hash: "486d80316c88da4adc736df72fc86f45" - } - Frame { - msec: 2416 - hash: "b67cc78a3bfcd026264cfb9b7146c4d5" - } - Frame { - msec: 2432 - hash: "9d2cdecf3e9f067e68b81b202c8f62b2" - } - Frame { - msec: 2448 - hash: "02748271316f8382f4788322fda807c1" - } - Frame { - msec: 2464 - hash: "669986c581c162b8d3160336b92b2479" - } - Frame { - msec: 2480 - hash: "5dc604aaa95f45eba0dfc7aa3a73bca4" - } - Frame { - msec: 2496 - hash: "2199d6e809fc1e1879861fbbd63974e8" - } - Frame { - msec: 2512 - hash: "335a5561620f779a4fd0c1f33da2fc05" - } - Frame { - msec: 2528 - hash: "3e312b8de56c902ca20aba259c8559b2" - } - Frame { - msec: 2544 - hash: "37634addfe0cb2efdd9d6a1a134fae1e" - } - Frame { - msec: 2560 - hash: "a3cdb1d331845e268e393dd493a71613" - } - Frame { - msec: 2576 - hash: "ccfb90a921e74f4e172ea1fba8c38eb5" - } - Frame { - msec: 2592 - hash: "370f60a35849b7a8221f9474cbdaa201" - } - Frame { - msec: 2608 - hash: "e1b8d1d7298a3d3ade82493fb6f99909" - } - Frame { - msec: 2624 - hash: "e1b8d1d7298a3d3ade82493fb6f99909" - } - Frame { - msec: 2640 - hash: "74ecfaced66f630d1863c04000fa7f01" - } - Frame { - msec: 2656 - hash: "74ecfaced66f630d1863c04000fa7f01" - } - Frame { - msec: 2672 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" - } - Frame { - msec: 2688 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" - } - Frame { - msec: 2704 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" - } - Frame { - msec: 2720 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" - } - Frame { - msec: 2736 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" - } - Frame { - msec: 2752 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 2768 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 2784 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 2800 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 2816 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 2832 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 2848 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 2864 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 2880 - image: "follow.2.png" - } - Frame { - msec: 2896 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 2912 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 2928 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 2944 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 2960 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 2976 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 2992 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3008 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3024 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3040 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3056 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3072 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3088 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3104 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3120 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3136 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3152 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3168 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3184 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 3200 - hash: "20dd4407adca55737dd4231405c38cff" - } - Frame { - msec: 3216 - hash: "20dd4407adca55737dd4231405c38cff" - } - Frame { - msec: 3232 - hash: "20dd4407adca55737dd4231405c38cff" - } - Frame { - msec: 3248 - hash: "20dd4407adca55737dd4231405c38cff" - } - Frame { - msec: 3264 - hash: "20dd4407adca55737dd4231405c38cff" - } - Frame { - msec: 3280 - hash: "20dd4407adca55737dd4231405c38cff" - } - Frame { - msec: 3296 - hash: "20dd4407adca55737dd4231405c38cff" - } - Frame { - msec: 3312 - hash: "20dd4407adca55737dd4231405c38cff" - } - Frame { - msec: 3328 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 3344 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3360 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3376 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3392 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3408 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3424 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3440 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3456 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3472 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3488 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3504 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 3520 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" - } - Frame { - msec: 3536 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" - } - Frame { - msec: 3552 - hash: "60b86cce6d76291148c7c49a5eabcf55" - } - Frame { - msec: 3568 - hash: "b0dadf051b5b328f56fab390a2c33052" - } - Frame { - msec: 3584 - hash: "b6b75a9723b46aa072bf7c779dc84e64" - } - Frame { - msec: 3600 - hash: "ef4e8b36b5afc762e1f8f714eee61240" - } - Frame { - msec: 3616 - hash: "a322a2446fd3506c243766233ec9303e" - } - Frame { - msec: 3632 - hash: "5723527da987b29f74502e5abd25a5f7" - } - Frame { - msec: 3648 - hash: "d9f98fa248099936c6307457c935326f" - } - Frame { - msec: 3664 - hash: "54224ce16b717d0accb9cca7dc5e94d3" - } - Frame { - msec: 3680 - hash: "cb036f8c7e3c464d0210fca8b21b2d5f" - } - Frame { - msec: 3696 - hash: "729ff15f4b129e1bd7a522007c96d49b" - } - Frame { - msec: 3712 - hash: "6c3791f76fbed468ce6e23938d321874" - } - Frame { - msec: 3728 - hash: "970eebc8fa4fd8d92db49450ed3474a7" - } - Frame { - msec: 3744 - hash: "4c97641854bb6997fc5106d7981e4ac9" - } - Frame { - msec: 3760 - hash: "adb4c29247d0bf785be36ccdf74f4293" - } - Frame { - msec: 3776 - hash: "5133846ed6886846426495aba011ab6f" - } - Frame { - msec: 3792 - hash: "010771e4dea5c93de852bead35fc6a1e" - } - Frame { - msec: 3808 - hash: "6115a50835cbc196ae322ad2727d1b68" - } - Frame { - msec: 3824 - hash: "4e37fde35f4f577c3b62881fa526e369" - } - Frame { - msec: 3840 - image: "follow.3.png" - } - Frame { - msec: 3856 - hash: "1ea7000fd392a0799775b6783ffe332c" - } - Frame { - msec: 3872 - hash: "40e69b98954b40ce8dc78d60eac882d7" - } - Frame { - msec: 3888 - hash: "690b93596e7fb7c1f7de4ca81b96ce48" - } - Frame { - msec: 3904 - hash: "6e8910061829e1111227a9854e18e742" - } - Frame { - msec: 3920 - hash: "f6f60ef03e3f2829510c325effde9f39" - } - Frame { - msec: 3936 - hash: "6c3d2d3903cd20969f8f2994f6a22592" - } - Frame { - msec: 3952 - hash: "10febc71c9120a591510e123955424c1" - } - Frame { - msec: 3968 - hash: "c06b52a3814791a56fc2cefa1544a693" - } - Frame { - msec: 3984 - hash: "ca3a6e577490b5e88cf0c3d63bd69b76" - } - Frame { - msec: 4000 - hash: "a4ebd4f687d38bd803aa61fc247e88e9" - } - Frame { - msec: 4016 - hash: "099b8d7fea937bba6092a5c8ad1cc395" - } - Frame { - msec: 4032 - hash: "c04384eb7d5c172a529d682ae7e916bf" - } - Frame { - msec: 4048 - hash: "d0131c92bd3a2a7fa8cd83e3818370ed" - } - Frame { - msec: 4064 - hash: "62e721f0344142fb7742675f644748f8" - } - Frame { - msec: 4080 - hash: "5bddfcb4cb01efa0dc8603f3c4f4f553" - } - Frame { - msec: 4096 - hash: "d31e44ad6cdfbd4076c66d41bb1d957e" - } - Frame { - msec: 4112 - hash: "35126d01091d50a41dd073d2a5ae974a" - } - Frame { - msec: 4128 - hash: "2c876aaf36e4d2a8d94bf3c3f4b934eb" - } - Frame { - msec: 4144 - hash: "f75683d97c9d1f33a918c68f4651f31b" - } - Frame { - msec: 4160 - hash: "f372de89a29d19b5c234f39a8ce85ed2" - } - Frame { - msec: 4176 - hash: "fe2cd973de16bf92c552829d89332048" - } - Frame { - msec: 4192 - hash: "bbcb60bd8b845e8fd2c885d3f42d9a91" - } - Frame { - msec: 4208 - hash: "28addd32d7c28198425d41f42f1f7f38" - } - Frame { - msec: 4224 - hash: "82cee6bac4d343adb86d02836728ccd7" - } - Frame { - msec: 4240 - hash: "b0eeb40c5f7e7e5bb17566772686c8df" - } - Frame { - msec: 4256 - hash: "e5372f9fe3dbe6b111da81de6e2088b8" - } - Frame { - msec: 4272 - hash: "d6e476458ad03a13c7f14bdb2b530394" - } - Frame { - msec: 4288 - hash: "4a5185a2cf033ca6f9250ab9e995dc7a" - } - Frame { - msec: 4304 - hash: "6fd086e35b33ca714f31c1a50f64ccba" - } - Frame { - msec: 4320 - hash: "ae8cae69a702811a897e7d5790c806cc" - } - Frame { - msec: 4336 - hash: "073e2e1af434447c3000b03e3a89925a" - } - Frame { - msec: 4352 - hash: "3c75c7586c1dca2fd21266395ccc8ac4" - } - Frame { - msec: 4368 - hash: "aa36ac379ac9953bd165b5164cd047da" - } - Frame { - msec: 4384 - hash: "09d6ab311429cfe29a68c428669b5d5a" - } - Frame { - msec: 4400 - hash: "11ebcb0a744bc3faa746560d9c1a824d" - } - Frame { - msec: 4416 - hash: "aa01ba99122f89bff8fc45ef88326f6a" - } - Frame { - msec: 4432 - hash: "6980292ba8a4bf8ead3581e5899f5d78" - } - Frame { - msec: 4448 - hash: "65fa1a0fe53b9a0580c14e96d42fe993" - } - Frame { - msec: 4464 - hash: "7837c0a533839f94629be4e64294b89f" - } - Frame { - msec: 4480 - hash: "5edbf632047ae4130f580e4a0ece8e57" - } - Frame { - msec: 4496 - hash: "0a5fdc57898cb56f00a76ecaa3a6b9e0" - } - Frame { - msec: 4512 - hash: "58d1b36e738042af44dab04a8c842259" - } - Frame { - msec: 4528 - hash: "2efb1f742d7f823d13b9724c1c10ce1a" - } - Frame { - msec: 4544 - hash: "e0286eb0b3fbb17e422554a8ef25489c" - } - Frame { - msec: 4560 - hash: "8252caa2841f07d29802a7b822388253" - } - Frame { - msec: 4576 - hash: "eaabd4b3610c0bcbbdc113f86bc52e6c" - } - Frame { - msec: 4592 - hash: "55b17d049e1c791d33094f64717bca06" - } - Frame { - msec: 4608 - hash: "1bd607f6d0658f46b1f0df51e8a9a9fe" - } - Frame { - msec: 4624 - hash: "4a52ea4de14098978931155f11168f68" - } - Frame { - msec: 4640 - hash: "343df8fb45e1e70183bb61a1111909a5" - } - Frame { - msec: 4656 - hash: "bcf1363d9912a3d626ef933387b4e01b" - } - Frame { - msec: 4672 - hash: "67709ea579481537e532120de35619b2" - } - Frame { - msec: 4688 - hash: "a7542255a10a120812880b1243bd573d" - } - Frame { - msec: 4704 - hash: "b4f3e597e489d32a473bb2ad6bb92fc4" - } - Frame { - msec: 4720 - hash: "f0df46d1b819edda5a616e858ed9171c" - } - Frame { - msec: 4736 - hash: "2416564198b4b853d9c4f5ad55ee5db5" - } - Frame { - msec: 4752 - hash: "342e5adcd2fca99c88c33cd8b56b8650" - } - Frame { - msec: 4768 - hash: "01806799adce1d0069cfdd739f383a7f" - } - Frame { - msec: 4784 - hash: "c045fdefdd4606d2c68c8cde2a7a40f4" - } - Frame { - msec: 4800 - image: "follow.4.png" - } - Frame { - msec: 4816 - hash: "c7371c0594fb9f4de0a7f8a3cdce061a" - } - Frame { - msec: 4832 - hash: "6df0c2a27c672e36a3d7eb5b4e0c46bf" - } - Frame { - msec: 4848 - hash: "97fa050a5790b1f722d25dbee9efba95" - } - Frame { - msec: 4864 - hash: "85c26ed45e79793fc5b7521a8157d3a2" - } - Frame { - msec: 4880 - hash: "9ff5d272ec8deed3e70164b78bc425c6" - } - Frame { - msec: 4896 - hash: "d1e3f6d51d6b8e96261b902e6f88576d" - } - Frame { - msec: 4912 - hash: "02c12e50ed6b7111f301e142a2fbc5db" - } - Frame { - msec: 4928 - hash: "5177873aa73342ada32d7ebfe3f26e0e" - } - Frame { - msec: 4944 - hash: "05d0364f67f317ee617f1a64d9543fe2" - } - Frame { - msec: 4960 - hash: "20e50922d7763c7572776fc98d0e007b" - } - Frame { - msec: 4976 - hash: "f449eb14e0c0e08a79a220cb13551c4f" - } - Frame { - msec: 4992 - hash: "defe5fa356688a25ed2b8174d9baf2ce" - } - Frame { - msec: 5008 - hash: "f1697f95d67a0a15088c3f934dfc466f" - } - Frame { - msec: 5024 - hash: "7a962dad8227d367b4af7dee6ea09c20" - } - Frame { - msec: 5040 - hash: "49a806b0bee9e3145395fb68cb85dbaf" - } - Frame { - msec: 5056 - hash: "d0e4ffd3e12dd4b8e5553e613119ef86" - } - Frame { - msec: 5072 - hash: "41270d843d00eaabf2f95f051541013e" - } - Frame { - msec: 5088 - hash: "e8fd158c923d389a2d87db0023522934" - } - Frame { - msec: 5104 - hash: "9cfa7783d37010c10271d680d205ebc4" - } - Frame { - msec: 5120 - hash: "5e81c936f9627cf537f96a1674c920be" - } - Frame { - msec: 5136 - hash: "28679a61a44bf0d81d6a93d8ea301b97" - } - Frame { - msec: 5152 - hash: "ef41d71b99f078abe8a2a8326ed236c9" - } - Frame { - msec: 5168 - hash: "b0c77c16e9d13360992d3781d389a773" - } - Frame { - msec: 5184 - hash: "fe053081bc92e2a16322e6839749c49c" - } - Frame { - msec: 5200 - hash: "fdde556b8d7b31510b9b07686e3bf81f" - } - Frame { - msec: 5216 - hash: "f3f9c7ad55f4cabdcc9ff4a515163523" - } - Frame { - msec: 5232 - hash: "8ae1b429bcb1d7698efaca4abbe91d3f" - } - Frame { - msec: 5248 - hash: "c741a05290271260b8b916faa480e3aa" - } - Frame { - msec: 5264 - hash: "eebc4a70e557084577fb93f4b71da41c" - } - Frame { - msec: 5280 - hash: "4926f2fa2728d80f0799e67f06ae8be3" - } - Frame { - msec: 5296 - hash: "cf8ea67beade2f31d6ddd257578ef191" - } - Frame { - msec: 5312 - hash: "d041cad9a659449da739470ce03d6152" - } - Frame { - msec: 5328 - hash: "eae75c3364a13697c79aec42c221181d" - } - Frame { - msec: 5344 - hash: "2db70310d6a3b4900e749975e52d5f78" - } - Frame { - msec: 5360 - hash: "609838796118ab89566fe2fe664dfcb4" - } - Frame { - msec: 5376 - hash: "ae66ff91af5924e99231a811d0d00549" - } - Frame { - msec: 5392 - hash: "2b5ba8d8c340a92d4d6ef76dbd88c4b8" - } - Frame { - msec: 5408 - hash: "6b4ce7512194d65b7c8679822cb58274" - } - Frame { - msec: 5424 - hash: "36a58e3b3a057969c8a6b1ba4e704ec7" - } - Frame { - msec: 5440 - hash: "a2164ae8f60b27534392077358e057e2" - } - Frame { - msec: 5456 - hash: "9ceb838f32b76cc267283ef829a64f95" - } - Frame { - msec: 5472 - hash: "a372e42839d42e9f7dac83ae3b845be4" - } - Frame { - msec: 5488 - hash: "9e1226a6cb6585694a0b44b356f0b6d2" - } - Frame { - msec: 5504 - hash: "7bdfe1d332fdd3b8b241a3fb9dafa584" - } - Frame { - msec: 5520 - hash: "e7f3ef39c35f7bca75ae049a25790509" - } - Frame { - msec: 5536 - hash: "5bfcd4c96095d66825df5d94f8936659" - } - Frame { - msec: 5552 - hash: "d47fc61cedde2748d1c35d65c4278ce9" - } - Frame { - msec: 5568 - hash: "ee86ff1ea3a447ebf749a5b31ff147c9" - } - Frame { - msec: 5584 - hash: "05a3b141e33596e88ff3a6a3e09b13b9" - } - Frame { - msec: 5600 - hash: "2294c4c9f84c4398918524c41fe08317" - } - Frame { - msec: 5616 - hash: "2e19dc61944aa7671ac18303949e1c9e" - } - Frame { - msec: 5632 - hash: "37b4864ed528a3be221d7abb4106ec3a" - } - Frame { - msec: 5648 - hash: "c2bf99e089bc984abea63b8b43270859" - } - Frame { - msec: 5664 - hash: "c2bf99e089bc984abea63b8b43270859" - } - Frame { - msec: 5680 - hash: "d8de63e15f1f6e9c0cf0dd43afa03c42" - } - Frame { - msec: 5696 - hash: "3643a50c30b6d6f9b724155e49db7276" - } - Frame { - msec: 5712 - hash: "582e871460fe3056f7f3df97d5939d69" - } - Frame { - msec: 5728 - hash: "e46da1072974efc1c4df89d9c6243609" - } - Frame { - msec: 5744 - hash: "705ac82bb7a03eb5843aae7292739851" - } - Frame { - msec: 5760 - image: "follow.5.png" - } - Frame { - msec: 5776 - hash: "b2949af515524933f740057cae6d8c40" - } - Frame { - msec: 5792 - hash: "72a3526dbfeb42935a737f7876c86499" - } - Frame { - msec: 5808 - hash: "43907b91dec1412d0e6c8b53cec8e06f" - } - Frame { - msec: 5824 - hash: "66db45ca42d42e8a6eb279b892493af9" - } - Frame { - msec: 5840 - hash: "1f2d69898b90d344f337ac37a000e797" - } - Frame { - msec: 5856 - hash: "9c09edc9541d69e7565ef05fbe58fadf" - } - Frame { - msec: 5872 - hash: "0d68b6d05150981eff443cd7437b3d95" - } - Frame { - msec: 5888 - hash: "85558e393a1e0483ba27844cf409af47" - } - Frame { - msec: 5904 - hash: "83a73b6b3eb1052a9b1a12fb78326b26" - } - Frame { - msec: 5920 - hash: "4839882ecc497916b4ac964a5cc71d1b" - } - Frame { - msec: 5936 - hash: "28d6f5066f186a0d9ab7f4781374d3eb" - } - Frame { - msec: 5952 - hash: "d89148926c6dd636de953a55082e50f1" - } - Frame { - msec: 5968 - hash: "dbab902e252561849dba5551fc8f07d3" - } - Frame { - msec: 5984 - hash: "84a3a891fbbb1a0fca24324a3ea10c6a" - } - Frame { - msec: 6000 - hash: "64563bb68129f527b1c33c0d9a543f09" - } - Frame { - msec: 6016 - hash: "64563bb68129f527b1c33c0d9a543f09" - } - Frame { - msec: 6032 - hash: "7f3ae8ac99bf202414b03e9b33473044" - } - Frame { - msec: 6048 - hash: "7f3ae8ac99bf202414b03e9b33473044" - } - Frame { - msec: 6064 - hash: "7fbdf6396050da5b8945f1111c2ca973" - } - Frame { - msec: 6080 - hash: "5bf4fa18f24fc221685234a92c4cafb6" - } - Frame { - msec: 6096 - hash: "5bf4fa18f24fc221685234a92c4cafb6" - } - Frame { - msec: 6112 - hash: "e1b8d1d7298a3d3ade82493fb6f99909" - } - Frame { - msec: 6128 - hash: "6320b7b0bd1926c625f914d30f1f1fd9" - } - Frame { - msec: 6144 - hash: "74ecfaced66f630d1863c04000fa7f01" - } - Frame { - msec: 6160 - hash: "74ecfaced66f630d1863c04000fa7f01" - } - Frame { - msec: 6176 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" - } - Frame { - msec: 6192 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" - } - Frame { - msec: 6208 - hash: "8d359f95ee869714bb3972986637642d" - } - Frame { - msec: 6224 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" - } - Frame { - msec: 6240 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" - } - Frame { - msec: 6256 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 6272 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 6288 - hash: "cd2c4e1a288d09f46dd557973c22e1be" - } - Frame { - msec: 6304 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 6320 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 6336 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 6352 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 6368 - hash: "8109005d7e21d16b77f88efce2b530e4" - } - Frame { - msec: 6384 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 6400 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 6416 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 6432 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 6448 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" - } - Frame { - msec: 6464 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6480 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6496 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6512 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6528 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6544 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6560 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 6576 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6592 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6608 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6624 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6640 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6656 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6672 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6688 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Frame { - msec: 6704 - hash: "20dd4407adca55737dd4231405c38cff" - } -} diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/clock.0.png b/tests/auto/declarative/visual/qmlspringfollow/data/clock.0.png Binary files differnew file mode 100644 index 0000000..baf1d45 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/clock.0.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/clock.1.png b/tests/auto/declarative/visual/qmlspringfollow/data/clock.1.png Binary files differnew file mode 100644 index 0000000..932f63f --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/clock.1.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/clock.2.png b/tests/auto/declarative/visual/qmlspringfollow/data/clock.2.png Binary files differnew file mode 100644 index 0000000..a5cb437 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/clock.2.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/clock.3.png b/tests/auto/declarative/visual/qmlspringfollow/data/clock.3.png Binary files differnew file mode 100644 index 0000000..62e895c --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/clock.3.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/clock.qml b/tests/auto/declarative/visual/qmlspringfollow/data/clock.qml new file mode 100644 index 0000000..ffc6a5e --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/clock.qml @@ -0,0 +1,1135 @@ +import Qt.VisualTest 4.6 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "d17c9cd015b065adf7e36ad0d4f6c00c" + } + Frame { + msec: 32 + hash: "e759f652c69a06d01837302cc0369a58" + } + Frame { + msec: 48 + hash: "392855ef490903121fb894858961dfb0" + } + Frame { + msec: 64 + hash: "5ba4248f606a3a35d840cb98eff30b46" + } + Frame { + msec: 80 + hash: "3b97e1ab4054c20d19c1d05f795b71de" + } + Frame { + msec: 96 + hash: "81904d248125cf35249f79da7e94d8d7" + } + Frame { + msec: 112 + hash: "474179152aad4b64904c8b7c63581a89" + } + Frame { + msec: 128 + hash: "583a7906d1dc41d8ce8d0c8f28c9b8c5" + } + Frame { + msec: 144 + hash: "341437083f858e2dca36a8bb39559a1e" + } + Frame { + msec: 160 + hash: "ed75a933c176ed6ac3fa5b2986cbfade" + } + Frame { + msec: 176 + hash: "5494c10d3984a9be607b8b5ee659ebfc" + } + Frame { + msec: 192 + hash: "7af8dfca43036ee69012cbb100d110ad" + } + Frame { + msec: 208 + hash: "356b8185889e560b5a1a2d6436dac834" + } + Frame { + msec: 224 + hash: "f601a66de5dc1a388e515ba4ff14be6e" + } + Frame { + msec: 240 + hash: "4cfb9f3a72070533288b2e50820cbbbd" + } + Frame { + msec: 256 + hash: "ddcb670af0806dadf5897bcd3fd65cd7" + } + Frame { + msec: 272 + hash: "3fedf4aa340d7632359273b1eb71c5a3" + } + Frame { + msec: 288 + hash: "3dab7e1eaccb68b14e30741775db6ff7" + } + Frame { + msec: 304 + hash: "015ab6c080c2ffab8ac763681bf3f95c" + } + Frame { + msec: 320 + hash: "74f438510f0d8f64120cc45bca7f4f5d" + } + Frame { + msec: 336 + hash: "e57666fb224cdbf869e5be4ef3391be9" + } + Frame { + msec: 352 + hash: "ff8b3dddd4d10b111b38801470fcbfd0" + } + Frame { + msec: 368 + hash: "e547ee9f1e509d5db980cb91fce5f6ee" + } + Frame { + msec: 384 + hash: "aaa9fb71bd47ad3a1c753d7ac918e399" + } + Frame { + msec: 400 + hash: "54a335aac86669138730c0735ea99c8b" + } + Frame { + msec: 416 + hash: "ff8f30aaa7afd8abfdd147b830e9d6c4" + } + Frame { + msec: 432 + hash: "07f8fca270953cf815cb0e77534da824" + } + Frame { + msec: 448 + hash: "30799c12182b2c3eb2f28b05d81ed6fc" + } + Frame { + msec: 464 + hash: "6244e3b740218aec56c81c92dc57abcb" + } + Frame { + msec: 480 + hash: "cb10a34e3d234043704e633b49184607" + } + Frame { + msec: 496 + hash: "66de73779b5f86a6a1692eb74be24201" + } + Frame { + msec: 512 + hash: "4c4c0b5e75f0f587ace8002720d78309" + } + Frame { + msec: 528 + hash: "88c774ec272c72457b35b60306c2bc21" + } + Frame { + msec: 544 + hash: "28ce64adc1d35d6bc34174765beda553" + } + Frame { + msec: 560 + hash: "37238c3d6dc0c34bf4e00ba2a82ce3aa" + } + Frame { + msec: 576 + hash: "d14dd306fec80f1a1ff9a85aa51b9a57" + } + Frame { + msec: 592 + hash: "bfa2ec6fa546c75ee85e2ebeb3af8e3c" + } + Frame { + msec: 608 + hash: "d1ec3faab47065f34e9397fd73f9edce" + } + Frame { + msec: 624 + hash: "0b59b5dba365fff38872b520afc84edb" + } + Frame { + msec: 640 + hash: "3c4ae01b5e878b85a2eea403f3ad478a" + } + Frame { + msec: 656 + hash: "329111f7079230e8b3cfda1217e8fcdf" + } + Frame { + msec: 672 + hash: "97761329ac9ba03ec41e3d5b35f245df" + } + Frame { + msec: 688 + hash: "9d26e3a3357530e903ee89f7bf439357" + } + Frame { + msec: 704 + hash: "1cf4c130ea3565547ff74280211f10c9" + } + Frame { + msec: 720 + hash: "d60284711cb557b1dab4d27072c95597" + } + Frame { + msec: 736 + hash: "98195e02405ee26c0a6a3177cebe9eaa" + } + Frame { + msec: 752 + hash: "f0a776c39363e340ebfb7736f368f609" + } + Frame { + msec: 768 + hash: "5a146b4b76f93e3064d5dfa13107b1c3" + } + Frame { + msec: 784 + hash: "7f7fef3a7ff2047f598bfca0fc7d5935" + } + Frame { + msec: 800 + hash: "85a2fd48605f8a77764bf96542db14c3" + } + Frame { + msec: 816 + hash: "89bdc99d16e6605e2106dfa5f53d7c8e" + } + Frame { + msec: 832 + hash: "d03754d56d85508b7c77959d1ab7b34a" + } + Frame { + msec: 848 + hash: "8d330472a376b47d65cec0b8e3df25cb" + } + Frame { + msec: 864 + hash: "401adaeecfd2c0a5598194e9ead4dd5d" + } + Frame { + msec: 880 + hash: "5c600e940e0a01fec15505fba595df3d" + } + Frame { + msec: 896 + hash: "b7940b041fbd3df5e6969130bf97da10" + } + Frame { + msec: 912 + hash: "62314bb115c307eeff4c4c7c91ee74a2" + } + Frame { + msec: 928 + hash: "54745a8a7ed96a4d5e2d4ec2de605882" + } + Frame { + msec: 944 + hash: "a4145b63f59d060ac0e0dc32dd22c815" + } + Frame { + msec: 960 + image: "clock.0.png" + } + Frame { + msec: 976 + hash: "c420b1298329c7eb0d3ec6a90a7eb802" + } + Frame { + msec: 992 + hash: "e63a5384cde6287c3cd8bdb823f35dca" + } + Frame { + msec: 1008 + hash: "af708b5e4a2a706385afd43896eeff16" + } + Frame { + msec: 1024 + hash: "32011e16d4b1c14619820ade020f6416" + } + Frame { + msec: 1040 + hash: "fbf9f8f075b15922f7306e469075d3cf" + } + Frame { + msec: 1056 + hash: "bf0fab116eae6e7fb5b3209220a3a52a" + } + Frame { + msec: 1072 + hash: "7a21aee4bcb99feb12a2a2c6bb3fd893" + } + Frame { + msec: 1088 + hash: "d721462af9c94e13f12374b2590dad1e" + } + Frame { + msec: 1104 + hash: "70385b585c2cbf1b2d64f1b9ebb5fb56" + } + Frame { + msec: 1120 + hash: "fc7adc3dd2f42bfe6cd74c2ee1ea9aa8" + } + Frame { + msec: 1136 + hash: "232884da74c9843d1349e82a7300cc19" + } + Frame { + msec: 1152 + hash: "c6790d9c8cbea7bf97cbedf443da330c" + } + Frame { + msec: 1168 + hash: "1847875f98555ef46a103c107bd5bc37" + } + Frame { + msec: 1184 + hash: "d7b35992b44a0220bd83a00b7f75dcdd" + } + Frame { + msec: 1200 + hash: "fc9e1db602c34863088d82ed8f601364" + } + Frame { + msec: 1216 + hash: "404e2d071f8a6409ba6c6bfd8450693c" + } + Frame { + msec: 1232 + hash: "dc2b6be9bc4c32460797e94ec617406c" + } + Frame { + msec: 1248 + hash: "5077b6afd808f7a2c319e66f0aef3002" + } + Frame { + msec: 1264 + hash: "07f07a04ec7c864196faeb44eff65b4c" + } + Frame { + msec: 1280 + hash: "5d9089a68ef0b8b78b68c33d3082b597" + } + Frame { + msec: 1296 + hash: "d955c9f66eaf123351a19947240e8847" + } + Frame { + msec: 1312 + hash: "f1821cbcb3883a041f22a114f7158532" + } + Frame { + msec: 1328 + hash: "77f17db09c5a7125c42359c304f274de" + } + Frame { + msec: 1344 + hash: "bc38a4c859f596f6cf3c399d3a04b1cd" + } + Frame { + msec: 1360 + hash: "982c43a4a1c9fae8bf3980b5885cee2f" + } + Frame { + msec: 1376 + hash: "c15bb9b7dd77d505ee9918eb36b75c31" + } + Frame { + msec: 1392 + hash: "bda534fd941a6f8289bfbec9b8dde717" + } + Frame { + msec: 1408 + hash: "7ad5c54b481525ace42ae8926a5c0556" + } + Frame { + msec: 1424 + hash: "2399778158f63481eb8514245277b917" + } + Frame { + msec: 1440 + hash: "6c200d090b34a0152c7eb233c97c3886" + } + Frame { + msec: 1456 + hash: "7ba4500e81df31e3e2c5d165bacf771a" + } + Frame { + msec: 1472 + hash: "c7e13f3d9bdfe35eb905c1d4ed6b73ac" + } + Frame { + msec: 1488 + hash: "808b72766f5dce71fc983ffa01945665" + } + Frame { + msec: 1504 + hash: "899ac513755476db1e1304317524a755" + } + Frame { + msec: 1520 + hash: "27190dce033171966981672e52f07107" + } + Frame { + msec: 1536 + hash: "5d9ef583b6b3cb5257cb044cf376eff2" + } + Frame { + msec: 1552 + hash: "77b648fe26a942b246eec0fa018ad86f" + } + Frame { + msec: 1568 + hash: "744a61493816338113ba4ba7c05f76de" + } + Frame { + msec: 1584 + hash: "2eb0da64d5937c1a38754fd55ca684d0" + } + Frame { + msec: 1600 + hash: "6f799c2c0c0e1ed419af03f8bbb9fae1" + } + Frame { + msec: 1616 + hash: "5b84344f31d5e4d15be6b53ad3bf9c84" + } + Frame { + msec: 1632 + hash: "997b5967e3e3a35d02f10e1eae417dbf" + } + Frame { + msec: 1648 + hash: "c522369c836e8d08c56e2e332dd005ac" + } + Frame { + msec: 1664 + hash: "22f4072da05d261cfcca232ea54d2cb4" + } + Frame { + msec: 1680 + hash: "7081a90c33785306800b7a57a4a9a75c" + } + Frame { + msec: 1696 + hash: "32a8bea14c92ce61ede89182765f0759" + } + Frame { + msec: 1712 + hash: "4bafe476d5301974c616311073763ab4" + } + Frame { + msec: 1728 + hash: "291188ca795d455ae293437c2fb2303d" + } + Frame { + msec: 1744 + hash: "99d2658f863c82dd71fde0f0b93b4d62" + } + Frame { + msec: 1760 + hash: "8a7183e11fde2846d5435847ad9add45" + } + Frame { + msec: 1776 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1792 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1808 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1824 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1840 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1856 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1872 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1888 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1904 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1920 + image: "clock.1.png" + } + Frame { + msec: 1936 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1952 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1968 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 1984 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 2000 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 2016 + hash: "34b6180b74f0653ce1f18c22022d333f" + } + Frame { + msec: 2032 + hash: "150f511972394d8485979a6d9badcee5" + } + Frame { + msec: 2048 + hash: "50b420f72479ec613fd443b5faa3cb94" + } + Frame { + msec: 2064 + hash: "a51cbeea7ad5407b2784a3a3c8ca1ecf" + } + Frame { + msec: 2080 + hash: "0f658f4c91f890cd252d0f9d9bbe064d" + } + Frame { + msec: 2096 + hash: "c814c99815a91547eff01dc899c275f2" + } + Frame { + msec: 2112 + hash: "f9dac59029008e52efe4225cf919f013" + } + Frame { + msec: 2128 + hash: "b87bdcf09b425f2b2d6aed65f96ae8a3" + } + Frame { + msec: 2144 + hash: "f353bf64e664166a542aa027dc625529" + } + Frame { + msec: 2160 + hash: "12492b26c2f1c018e034c0fa936fa7b5" + } + Frame { + msec: 2176 + hash: "33f04d25bced580f15590f12ddafef62" + } + Frame { + msec: 2192 + hash: "cdd8ee656e4fec3ac6e72b6f7626de3b" + } + Frame { + msec: 2208 + hash: "22a94ea46fb9ee78830eab79e4adc5c5" + } + Frame { + msec: 2224 + hash: "64a10c9d4738c004c7f08f95b48a7a4d" + } + Frame { + msec: 2240 + hash: "ff3300fb49a735e0a958362aead1905f" + } + Frame { + msec: 2256 + hash: "8289dfdad12a8c13513175e5aad6a2d9" + } + Frame { + msec: 2272 + hash: "49e5cbb94f7d8bc853ca3c9366d737c9" + } + Frame { + msec: 2288 + hash: "76d2d8df4ad0359bb8ae102b225b3a68" + } + Frame { + msec: 2304 + hash: "98d925b3306aa7dd1b1fb9e066cd8a02" + } + Frame { + msec: 2320 + hash: "3911b53eb0346af1773ad991232e61ee" + } + Frame { + msec: 2336 + hash: "8991c10234f9f286ebab39d72729525d" + } + Frame { + msec: 2352 + hash: "ca2c8c6f23b30957a5cc20d9750a3ffe" + } + Frame { + msec: 2368 + hash: "80abe9b146b31dbedf1fe2357d922dda" + } + Frame { + msec: 2384 + hash: "0e34091d6bceab00bdabcec78e99e265" + } + Frame { + msec: 2400 + hash: "ba04053c25e53b3dc790feac9a33e221" + } + Frame { + msec: 2416 + hash: "cb6f7f2cce4f68ef1d35f765e00bbf7b" + } + Frame { + msec: 2432 + hash: "1e63fb94f5fbf3b600ec9298cbb97c8a" + } + Frame { + msec: 2448 + hash: "8991c10234f9f286ebab39d72729525d" + } + Frame { + msec: 2464 + hash: "00531d4a5fe98bbb487ad835414e7d07" + } + Frame { + msec: 2480 + hash: "7af9f861cb57c937c87b24eee9fbb558" + } + Frame { + msec: 2496 + hash: "7ecd1a4a75753e70ad5937e5bc897e03" + } + Frame { + msec: 2512 + hash: "557766fe964033f6a488574af7306cac" + } + Frame { + msec: 2528 + hash: "bd0f7164dd0a84ce1a1b2a6acbc2157b" + } + Frame { + msec: 2544 + hash: "d24ef664cf13519b99d6193bf98fcfd1" + } + Frame { + msec: 2560 + hash: "6c3626248bbb41cab85ec2a908b7874b" + } + Frame { + msec: 2576 + hash: "0f9bea8d474690164a09dfd3b13ff80b" + } + Frame { + msec: 2592 + hash: "e5197674c91de893a970614e650547e5" + } + Frame { + msec: 2608 + hash: "ce6861e9a7e75b809df026f078c8516b" + } + Frame { + msec: 2624 + hash: "eb0539e30fd53fb905d7b28ff0bc6cfd" + } + Frame { + msec: 2640 + hash: "45f70dda0d647119175457fb4d451e85" + } + Frame { + msec: 2656 + hash: "ca6b75fa4ee612bf6bb1776ef4115b16" + } + Frame { + msec: 2672 + hash: "c7d6bd687be6d5476300539411b97fc5" + } + Frame { + msec: 2688 + hash: "27da9137b936d813d3c79a873053ed38" + } + Frame { + msec: 2704 + hash: "4389a5758bf9df9553300c074aa7bb36" + } + Frame { + msec: 2720 + hash: "30476b70a29716b359a046f99b6387e5" + } + Frame { + msec: 2736 + hash: "b91c6f1e57d718e95ab05d1f386aedb9" + } + Frame { + msec: 2752 + hash: "578b022173dcac39d227ffeb043e53d0" + } + Frame { + msec: 2768 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2784 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2800 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2816 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2832 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2848 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2864 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2880 + image: "clock.2.png" + } + Frame { + msec: 2896 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2912 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2928 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2944 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2960 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2976 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 2992 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 3008 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 3024 + hash: "fe8ffe202a5f58b184a65d0ebc9c5f32" + } + Frame { + msec: 3040 + hash: "294d542f880356b4cbb171170c28dcd7" + } + Frame { + msec: 3056 + hash: "946b5937974e28ffd996ce132c8fad15" + } + Frame { + msec: 3072 + hash: "bb61994ff1dc36d3933084b874073832" + } + Frame { + msec: 3088 + hash: "ec337c7ae77deeb41f38adb1851720e5" + } + Frame { + msec: 3104 + hash: "7691c6c048b78e1551b46a37b6e95b16" + } + Frame { + msec: 3120 + hash: "b3116620d319ae4b681f4ca76c068b32" + } + Frame { + msec: 3136 + hash: "ed5a27e5be3dbde3867715f877da41db" + } + Frame { + msec: 3152 + hash: "8dcc220cc652f57aa8ac33364edc96a3" + } + Frame { + msec: 3168 + hash: "a7832d86283e27ee1523c4808b42fc43" + } + Frame { + msec: 3184 + hash: "fc90d18b072638f2df1bacee12fe1743" + } + Frame { + msec: 3200 + hash: "cdd7b5598155eba57783ebe1872db818" + } + Frame { + msec: 3216 + hash: "b45e32d12bbc2e56f4a3e7e473528d3e" + } + Frame { + msec: 3232 + hash: "5762a693ea6287e8987c604ef9fac361" + } + Frame { + msec: 3248 + hash: "2e46a8df5ec0c7070a374186a313f2c6" + } + Frame { + msec: 3264 + hash: "e612134417f3f901661b658801a72848" + } + Frame { + msec: 3280 + hash: "5de468fac915894ef34f3fee1c637e01" + } + Frame { + msec: 3296 + hash: "e29c8713573e49fc98387311d80c7510" + } + Frame { + msec: 3312 + hash: "6fce67b704f613e6fd9181ccb9ee237f" + } + Frame { + msec: 3328 + hash: "bf499add3d91d751ffa1cce28bece380" + } + Frame { + msec: 3344 + hash: "7d50cad7b18a4a37be6aac7796014195" + } + Frame { + msec: 3360 + hash: "6695208c8d39373ff0846c821c819cb2" + } + Frame { + msec: 3376 + hash: "0140ec2286b0fb94340d2dd6d418f539" + } + Frame { + msec: 3392 + hash: "9f92a99737aa6a7da48af7e7a4ed7a6a" + } + Frame { + msec: 3408 + hash: "8e593e8192d17d07c2265d6fa840f281" + } + Frame { + msec: 3424 + hash: "ea70e72eb12d5595d9bf0d9cc77efd4d" + } + Frame { + msec: 3440 + hash: "faeeb9e6e6a260a266ac8965f204b542" + } + Frame { + msec: 3456 + hash: "d50987082d056997a8e7fe5940cb7968" + } + Frame { + msec: 3472 + hash: "44089138e01bfee916306ae66ba43e9f" + } + Frame { + msec: 3488 + hash: "60256356ca6fe8bd323ef36bc149a3ea" + } + Frame { + msec: 3504 + hash: "6caae71d6bd897d755aeb22f10862171" + } + Frame { + msec: 3520 + hash: "8ba18bf5df010718f83d6bb25aa1858b" + } + Frame { + msec: 3536 + hash: "a903996370fb7efcaf295f00b9b4c4b6" + } + Frame { + msec: 3552 + hash: "cc0b736c8b4d46d3d809dcfe82068c88" + } + Frame { + msec: 3568 + hash: "037b2f65d162d44c39706d322cd6b6e5" + } + Frame { + msec: 3584 + hash: "92c2b4f346329ffbcae07db74332ebbe" + } + Frame { + msec: 3600 + hash: "3f9b2b5aade31333568a7cccf89e3176" + } + Frame { + msec: 3616 + hash: "b40f9cce4cddf9fa5245276a105a3e0d" + } + Frame { + msec: 3632 + hash: "74eb3e8a282693bd6bc92f381e380d61" + } + Frame { + msec: 3648 + hash: "43d85dd9e0de49c639db0d91047c88bb" + } + Frame { + msec: 3664 + hash: "563a07f4aa618252933e0356cc300bba" + } + Frame { + msec: 3680 + hash: "73d1e5745154996fd245a91a831d5462" + } + Frame { + msec: 3696 + hash: "7b2785b605c64135ea6914ad8388eb8f" + } + Frame { + msec: 3712 + hash: "b2d989af972715a86ca374753d32f757" + } + Frame { + msec: 3728 + hash: "96311aac52bc9167a7350af29741f3dc" + } + Frame { + msec: 3744 + hash: "56e4b98816896f7353dddeac090f70d1" + } + Frame { + msec: 3760 + hash: "7bd8ac36107e9e5db39e1aa37f2c5ca8" + } + Frame { + msec: 3776 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3792 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3808 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3824 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3840 + image: "clock.3.png" + } + Frame { + msec: 3856 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3872 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3888 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3904 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3920 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3936 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3952 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3968 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 3984 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 4000 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 4016 + hash: "b9545df89c8bec940678b65d5ef9ce04" + } + Frame { + msec: 4032 + hash: "df3a1204f6243673d567724d27d07a9e" + } + Frame { + msec: 4048 + hash: "7d0d3e92cb61d868d062bdf173924a4d" + } + Frame { + msec: 4064 + hash: "29948b5d7807a6ed0076a9637ec3eb79" + } + Frame { + msec: 4080 + hash: "2986b5e0a4a49bbe9f4ffada30433a48" + } + Frame { + msec: 4096 + hash: "0d9e3813141a1ee15474380902d87815" + } + Frame { + msec: 4112 + hash: "c5197a932430d498b7344c1f37454320" + } + Frame { + msec: 4128 + hash: "c8ef8acf314486c157e74bdd2695ddb2" + } + Frame { + msec: 4144 + hash: "adeb73de4b967912a9f2b04ba2b6fe4c" + } + Frame { + msec: 4160 + hash: "da5fddd1e4ab8c096af0acc62114d69f" + } + Frame { + msec: 4176 + hash: "5ef0784315603da196e66b4628524c5c" + } + Frame { + msec: 4192 + hash: "1ff2a89c510953d71198056f5ac5b1a6" + } + Frame { + msec: 4208 + hash: "f63d409e134e59b875099ab11b469d21" + } + Frame { + msec: 4224 + hash: "e353748e0b0c49a217d6e2d06a9bfeb6" + } + Frame { + msec: 4240 + hash: "a9d7470902a232d815bd2580e24fdc22" + } + Frame { + msec: 4256 + hash: "eecbad718aa4eaf5bef7cd921b2ce9f9" + } + Frame { + msec: 4272 + hash: "7a51cadbfb93eb4a66acc9cb150002ed" + } + Frame { + msec: 4288 + hash: "2aa511fb96a51a50e3a45b784e349c15" + } + Frame { + msec: 4304 + hash: "a1ad19593dc6b9f4c027f388e802dcbe" + } + Frame { + msec: 4320 + hash: "ef6787f03bc1e33ea5f2a54aa1ba3a41" + } + Frame { + msec: 4336 + hash: "3386337bbc1ab82374d9965b7b0ffdef" + } + Frame { + msec: 4352 + hash: "c76afb4f412b4d5dd8eca74db6c54fb8" + } + Frame { + msec: 4368 + hash: "f91ac74ec153152670d43f42b1e2a2db" + } + Frame { + msec: 4384 + hash: "58f22723fa0c67379972238e0e7ed5e2" + } + Key { + type: 6 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4400 + hash: "a4730b0a8d6e0dd9e7eb58b51fb631ec" + } + Frame { + msec: 4416 + hash: "193bf624efefcad70af29f41eeab128e" + } + Frame { + msec: 4432 + hash: "d692f262facf26c2be2b0f747903d476" + } + Frame { + msec: 4448 + hash: "e59e43b5d4abebea0a55b1d072d148bc" + } + Frame { + msec: 4464 + hash: "134ff829e91161146b5f048a50c7eef7" + } + Frame { + msec: 4480 + hash: "07a80e45e70cb13f45e3858404c5f8dd" + } +} diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.0.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.0.png Binary files differindex d173ee9..3f42e75 100644 --- a/tests/auto/declarative/visual/qmlspringfollow/data/follow.0.png +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.0.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.1.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.1.png Binary files differindex 09b7bda..d661df6 100644 --- a/tests/auto/declarative/visual/qmlspringfollow/data/follow.1.png +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.1.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.10.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.10.png Binary files differnew file mode 100644 index 0000000..e8c96e1 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.10.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.2.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.2.png Binary files differindex b1d109e..35bfa43 100644 --- a/tests/auto/declarative/visual/qmlspringfollow/data/follow.2.png +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.2.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.3.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.3.png Binary files differindex 5cdcafb..74141cf 100644 --- a/tests/auto/declarative/visual/qmlspringfollow/data/follow.3.png +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.3.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.4.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.4.png Binary files differindex 93e1536..9544054 100644 --- a/tests/auto/declarative/visual/qmlspringfollow/data/follow.4.png +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.4.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.5.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.5.png Binary files differindex b27cc9f..4b02c79 100644 --- a/tests/auto/declarative/visual/qmlspringfollow/data/follow.5.png +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.5.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.6.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.6.png Binary files differnew file mode 100644 index 0000000..8ea8345 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.6.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.7.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.7.png Binary files differnew file mode 100644 index 0000000..76a73e8 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.7.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.8.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.8.png Binary files differnew file mode 100644 index 0000000..8824940 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.8.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.9.png b/tests/auto/declarative/visual/qmlspringfollow/data/follow.9.png Binary files differnew file mode 100644 index 0000000..f954cc5 --- /dev/null +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.9.png diff --git a/tests/auto/declarative/visual/qmlspringfollow/data/follow.qml b/tests/auto/declarative/visual/qmlspringfollow/data/follow.qml index f87372a..fec5428 100644 --- a/tests/auto/declarative/visual/qmlspringfollow/data/follow.qml +++ b/tests/auto/declarative/visual/qmlspringfollow/data/follow.qml @@ -6,239 +6,239 @@ VisualTest { } Frame { msec: 16 - hash: "ea677d128f47343d81a081c438aa2f6c" + hash: "3561ebf22b19c7bd5a70947d36b50b63" } Frame { msec: 32 - hash: "ea677d128f47343d81a081c438aa2f6c" + hash: "3561ebf22b19c7bd5a70947d36b50b63" } Frame { msec: 48 - hash: "403e130b7cf0a41d8348a227293d98d1" + hash: "bd0006fc34f58ec1ea6aa4c4acbb0070" } Frame { msec: 64 - hash: "d2250ca93235b6a087b5e582f7e941d6" + hash: "c25f9fb6aea93413bfef5eb176c02476" } Frame { msec: 80 - hash: "3e95bdb5546de8ed7bb33de704d2890e" + hash: "4ce0eb12fb41960e60e208dffb09ed3a" } Frame { msec: 96 - hash: "438612a44780d6587f99a44c943eb60f" + hash: "75b3375881969710b6eb21f2a93c36cc" } Frame { msec: 112 - hash: "6e840f3afd93a11034e128d70f76e642" + hash: "91e9b13e332959e41a29c0b225675a05" } Frame { msec: 128 - hash: "abbb1839aa7989e89d72368c501c5a12" + hash: "8e04a31a953b42903dffe86b37b3f59f" } Frame { msec: 144 - hash: "eefe846a36bf21929d83241b117d98b5" + hash: "837e0e646a2853d3fde571f9dd966fc7" } Frame { msec: 160 - hash: "ab39c7386555dc0a0edbd1e021fa3d93" + hash: "7367e25ae1e3a3731d83da76d5795f8c" } Frame { msec: 176 - hash: "8cd9ac8226579bfd1d653ad5b9ff3302" + hash: "3621846fb85b286a886a02de442e76c4" } Frame { msec: 192 - hash: "976c950140ce9f793884daa8d032c8fb" + hash: "ed20a4c3476b8bb5545d5343747c39c8" } Frame { msec: 208 - hash: "c49ea9cb59a4ced0572a251c1ed53011" + hash: "1fc73efb410e9beb3f791cbff8e814b3" } Frame { msec: 224 - hash: "d84a156021c5f61cb49f60cba5c0b7b7" + hash: "199c99a4e3aa14fbc8c8a0d8baacf998" } Frame { msec: 240 - hash: "d47f16922533e186844448ad4540cc9d" + hash: "513ce5a2f57e40002a26b7722c8a10db" } Frame { msec: 256 - hash: "be16f676e94426dedc747de959f41658" + hash: "b80b51cd4e75bdc799bbe79e66b7d02b" } Frame { msec: 272 - hash: "abe13e483ca63c485f8c66f6edbbc368" + hash: "e1531b6c5b3ac872563fdfaf49d32a27" } Frame { msec: 288 - hash: "71294e92418a4a586328a510916942e2" + hash: "6d7cfd78ebd56ae6adfc97aad5d11b13" } Frame { msec: 304 - hash: "2f201846d62d8885c8d4659c9622e711" + hash: "4252ebb2fba165e39f025f631e0a676a" } Frame { msec: 320 - hash: "bfeb1da5c3ab5bda2def25682ae7f113" + hash: "04d6ae51415b083bbb0eabd1b0304ca4" } Frame { msec: 336 - hash: "00767a8b29a0de270f2485e430332c0b" + hash: "750df1f1626c8b84dd72a35bf081fe00" } Frame { msec: 352 - hash: "df1bac2a1f24ab2669c156f86ff3949a" + hash: "003d7a846e09ba23ee8a7ae6d473be9f" } Frame { msec: 368 - hash: "755a39579c403923c93a4a962e135374" + hash: "5cf3abdbb9a5b8cba6a8afe8abb60ced" } Frame { msec: 384 - hash: "e176ba5703d6bd80f0de1a88f02ac678" + hash: "0669f86043a0c84d0b4672cc5c1136b4" } Frame { msec: 400 - hash: "51d44c2913947f44708615b5e38b2bd3" + hash: "94f59435fe4f3ca06699c996b537ae8c" } Frame { msec: 416 - hash: "72a6d96e70ffd20c12139306103b4f4e" + hash: "211c8ec42a6d6949253af71c6eeffa53" } Frame { msec: 432 - hash: "96f82039287cbf4b403298436421c778" + hash: "6de6c6d1b4a37a864b96c0293be8ebf5" } Frame { msec: 448 - hash: "0e86e386afdf7649dfdcd489137ad4ea" + hash: "468d67d069eaac1968a6ad52e56f3ab5" } Frame { msec: 464 - hash: "8e78f10e410638680810c65e5bddd665" + hash: "18d8de7a5c73d8c8188e6ae00a701820" } Frame { msec: 480 - hash: "765d52574fa75873e97f2e9b2a44e7a0" + hash: "4387c724ed49bfbbca238bf57a704a14" } Frame { msec: 496 - hash: "a72e4be872da024c8af9b914d8baabc2" + hash: "f317c59f65c7266765333048d8545748" } Frame { msec: 512 - hash: "3689c9af15bb91d4ae5b570ecffecfdd" + hash: "6575d40c2f27f110443a2ede8a873c77" } Frame { msec: 528 - hash: "8147683fb527fdb2f71356e85abae6e9" + hash: "3e65cb675124dbd9db5116fa7584e223" } Frame { msec: 544 - hash: "853f9220075a3782cf7fcc0bb8715263" + hash: "df80612a74b33eca81db6f43aa33e411" } Frame { msec: 560 - hash: "61b08b1ac4a0f8edcaa9984db4c2ba26" + hash: "6b2bc20397f3fb452ea14d81e9efd61d" } Frame { msec: 576 - hash: "9656cb5164be56f449f1f82b1555e6de" + hash: "e5b8a2476487f6cd9fd37e3b3f54f88d" } Frame { msec: 592 - hash: "17290bf0cb6f35ee421286e01bd47e98" + hash: "e93f8156e2dc278a5e20d9e28b48d9fa" } Frame { msec: 608 - hash: "6f0d0cec511f59ff1e96cdbd9444eaf6" + hash: "e524d5117888b0b68781ffaf1a3e7303" } Frame { msec: 624 - hash: "d4bcf568361214c0eb8fa3998bbf1480" + hash: "f3b777409534d87c59e60499fd6a3808" } Frame { msec: 640 - hash: "41adf355d26d44b157f59d9fcb2e1c69" + hash: "09d1fa8f1306eb6f51db97d04c2d7ad3" } Frame { msec: 656 - hash: "e5e19a9529a4e7fc1f680fec3505e78f" + hash: "acebdcebe6880c8b3b94ad7606181b72" } Frame { msec: 672 - hash: "c5340333b27b030404dfb7f84c885f5a" + hash: "347945a94002cd44d7a2df47f82940a1" } Frame { msec: 688 - hash: "0d78d4df108698cbf01f85b543240a23" + hash: "c716014d63ff2a22cab04dadc18b10c1" } Frame { msec: 704 - hash: "3100a83fa0217e229bfe5b1014c85bd0" + hash: "ced019e3f8b5ca079582d01f1f585a8e" } Frame { msec: 720 - hash: "d48a5e885a7ffe2164561a5e8db49af2" + hash: "d61d31de835ea8d1ffa56fd04c873ac1" } Frame { msec: 736 - hash: "f53ff65dde7676e467569cb4046c6151" + hash: "2eec542c5af4c6eecc153cc0fcae7dd3" } Frame { msec: 752 - hash: "dfe16b338d9afba04ba20fe27e2f3871" + hash: "c13b9443e1c000a2877e4586428da308" } Frame { msec: 768 - hash: "da60124324209ccb2bd0e025d0484ca5" + hash: "c5c2e30b3dc3298afc201f6045e79e59" } Frame { msec: 784 - hash: "bb7c9e645bead664dfbb3b0b2d6350a5" + hash: "308f2ca66133d37c2fcb222e68698d25" } Frame { msec: 800 - hash: "b4229201bd33515da83605b3e8c61f3e" + hash: "bf820215986a35b56daf07c164fd2a79" } Frame { msec: 816 - hash: "65d73e930b2117714e6020f3580b9c5f" + hash: "a0bb21475100fb25b767d055d70b062f" } Frame { msec: 832 - hash: "7635a572c1cedd66c27da128de4596aa" + hash: "bfb0927bcb23689820b0f96ea56426fc" } Frame { msec: 848 - hash: "9068d912a8d3e6e0b5b458c12ddad126" + hash: "8f294742ca9dd6ab10689f1f4ec2ed96" } Frame { msec: 864 - hash: "e935bc3503eefd745f0086417322ccd0" + hash: "f60c232307570fb4ec6e74f18e243553" } Frame { msec: 880 - hash: "fad1a3e6f64818638e6d866af9554f72" + hash: "7411970ab72d8b2dbf48ee8d4e6503b3" } Frame { msec: 896 - hash: "c80cd40121ad2b365a58b919db910fdb" + hash: "d4d766038daeae2fbec290204ca3983b" } Frame { msec: 912 - hash: "e9c7e153a429fc2b7a7afcbe69f48291" + hash: "f85525c3fd784ee7f9a3d9465e37d6f3" } Frame { msec: 928 - hash: "f848e529d7ed9170c107556ffff2c7da" + hash: "c5e63da86ddbd2a54c7cd3d03e5428a2" } Frame { msec: 944 - hash: "5176b37586cd38607f7324ea5fe4a84e" + hash: "369a7405b1717ddf06c99ab1dd6d4cb0" } Frame { msec: 960 @@ -246,239 +246,247 @@ VisualTest { } Frame { msec: 976 - hash: "13db39c0f6b2d2633fc6e9e25363649c" + hash: "18d5c4378f9daf63bf4cb76d76374548" } Frame { msec: 992 - hash: "709b27d74b5d63173dcc47315b6a98ad" + hash: "f36e649db2e1ec9fbe15e7711ea13ab5" } Frame { msec: 1008 - hash: "3f1a3ec8c35f18109b00f596dddb2dee" + hash: "f68515607dca1bda14b6afa6e05ebb6b" } Frame { msec: 1024 - hash: "7b5a87922adf288a3479c5772b87dc05" + hash: "bc5cc4c9050a5bd4c64debd12643fd73" } Frame { msec: 1040 - hash: "389a4ceae2a2c2b65d8b8f4a14e302fe" + hash: "f053a18bca4d8c47a0f181fad8118e9a" } Frame { msec: 1056 - hash: "5e734ba84842d9ebacedea131c2cea43" + hash: "9a2218f51faed4fa891c507fe6828d2c" } Frame { msec: 1072 - hash: "2ca1665bc6e8fcc79fa3ed27d063ef2d" + hash: "ce671ff4dd1f343243f2fcc263d137f4" } Frame { msec: 1088 - hash: "a133bcf3571762dac5ed8093835d0f32" + hash: "8624f8d814094ad25a1482a11f424990" } Frame { msec: 1104 - hash: "100e33528137240152983158c89831c2" + hash: "324dad940b3adb54491d6cdd4e7d8aa7" } Frame { msec: 1120 - hash: "1b327165fcce6d61577e2c1715a77efe" + hash: "0cd7c53ec5b591053de6769967b8bad5" } Frame { msec: 1136 - hash: "724352ffdfa1a7e8aa0ffaa138706b14" + hash: "e9e8f5e9c2dc179498943d0b5912af09" } Frame { msec: 1152 - hash: "c13dbf3fdd202d6fdb007622e2f3c9ee" + hash: "5f1552ccd61f09335a88658ee1c4e97e" } Frame { msec: 1168 - hash: "50517cf68a3f6f8c84fc6520500ccf00" + hash: "866e01eed7e26dd1bd9af8aaddf4d7c0" } Frame { msec: 1184 - hash: "8fd426597afbc940a3778870118e2541" + hash: "2efba3c33c4c7b6d89ce7efca2dc516a" } Frame { msec: 1200 - hash: "67434d0c791fc4c2761c1869a6cee081" + hash: "2de9d8a2ad64d2491b3444712be032dc" } Frame { msec: 1216 - hash: "3397a81fa89f46f55b7716325a722c82" + hash: "84206972322eae033d05f71b178180c9" } Frame { msec: 1232 - hash: "7207230d6be72411aadc3064af25dcc6" + hash: "8571d11da1a893edcbe5add1a9399d7a" } Frame { msec: 1248 - hash: "709bc2b0d2ca7fa5e8b33e4a17a130bd" + hash: "c0d65ecefa77ee7cb1c08a560e3ad572" } Frame { msec: 1264 - hash: "0b721aaffded67b507e896c2c2d9c6f2" + hash: "0f8a8523969713771a6c7984069b15e4" } Frame { msec: 1280 - hash: "a473144a3d3af4dfd27dd17eed95e050" + hash: "2e80e4b54538b7b586f4a3be55eb6da3" } Frame { msec: 1296 - hash: "264760a5a9ce988ce880084161dbc983" + hash: "ae028381f311a60946ecd26eab95bb42" } Frame { msec: 1312 - hash: "ea1ebaa56e24e0ca23723539ad8a18cf" + hash: "ac5902d58bc116a002c093f55cf20278" } Frame { msec: 1328 - hash: "d85e695424a7883354b9e807d0dca75a" + hash: "242f8617718048cfab9950b812eb1b26" } Frame { msec: 1344 - hash: "2a5beec661122970528b4589c6a30184" + hash: "b642f2f0d3161f80a702b09a910c589b" } Frame { msec: 1360 - hash: "c6b398270707e794cb41ac6dfc413559" + hash: "d1508034ecd908120c6f58cf08360c3c" } Frame { msec: 1376 - hash: "5f0496a3db352ac7d68d37d0b40821de" + hash: "ad10a5ea8598616f2ffa633eecfbd43a" } Frame { msec: 1392 - hash: "60b6cf54208fe05cad90a5475ba44b6f" + hash: "1d2c3cfaac1cca868f31872bf4248de8" } Frame { msec: 1408 - hash: "b375733a02dba8d856e6a54962701728" + hash: "28da57a6aec84318ff6aa029ac17f1dd" } Frame { msec: 1424 - hash: "dca9a423a2b43c9edf294f707ffeb3e9" + hash: "6f9bf89843d5e40f6c282e69337e7d25" } Frame { msec: 1440 - hash: "43d04fee9d2fbe1807f4d6b599a227fd" + hash: "1c5733ad9620805127372fb76f5b0228" } Frame { msec: 1456 - hash: "169446930a064cabd9dfc8cce5669967" + hash: "16f21041e9e475a37c478cf38cdc353b" } Frame { msec: 1472 - hash: "3dc4b0e80ae663022ae9acda781cdb10" + hash: "b39ea2e8a1991b3ea5be818a284ff69f" } Frame { msec: 1488 - hash: "fc7b862abfc6f1694cbbe00ede57d883" + hash: "4f5bdc935080707525a2b74936b41b2e" } Frame { msec: 1504 - hash: "76e67f9c5b552f1ff47c3c7b23eb1b76" + hash: "a39426dc761df1d2ba398aa17d220ded" } Frame { msec: 1520 - hash: "8c3e1d2fd58eaf2a8da16bb0349b1e5e" + hash: "2e965042273b377958b04190250d273e" } Frame { msec: 1536 - hash: "4642a396f4a4bb3b97845782e1d1ce93" + hash: "51f021c1d50291b425c98dee4894b330" } Frame { msec: 1552 - hash: "4d3e8c9ea7c8c1407db564a3a6e430ff" + hash: "88fea2e6d6898084acb5897833adb182" } Frame { msec: 1568 - hash: "e041300f1d2956f35baebed6c7c9c750" + hash: "12f55e64c8ec9825bf6c5cfd5d50d2bb" } Frame { msec: 1584 - hash: "a900c3551c5d3bbaf1ce6e0372e69a70" + hash: "365b358eb7a678e1076774c36a82f452" } Frame { msec: 1600 - hash: "cb5c32ad57d1931a69c20328f8f2d060" + hash: "a992b326739bff87bf042c711a7fa65c" } Frame { msec: 1616 - hash: "021ba4fc38e1652afeab73047e126a17" + hash: "083aa3c766a3b50492e51aab3ee128d0" } Frame { msec: 1632 - hash: "d27728f36491ba432e3655850402ee6b" + hash: "16a2db3b3a773e2612bc57f7a7d7fbbe" } Frame { msec: 1648 - hash: "20a87f4d9afd2039e44c2b5b539d0298" + hash: "32a28101a53d308b107d26a30ae7cdd9" } Frame { msec: 1664 - hash: "e03dfc3f89c5e4f6a31bc4b624b249f4" + hash: "da3908e584542ff2f73cb22369f49c1c" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 195; y: 95 + modifiers: 0 + sendToViewport: true } Frame { msec: 1680 - hash: "e52c42cbc1c362bd77f72b71dedc34da" + hash: "8ad535bb0c5decd8c970aa36286d57e7" } Frame { msec: 1696 - hash: "b3e15bd0354fa84d13f1f9163be12b73" + hash: "5bfbcab7607622486c350a9117ab0884" } Frame { msec: 1712 - hash: "eb6517d72b7943654215ad46e8b165a9" + hash: "17e13c8bfd81081f6400d3e71daecb4c" } Frame { msec: 1728 - hash: "1be17ea113f704b1a3a1fda63d10c23a" + hash: "9411a66b6c3ef9a98bc62dea282d6a51" } Frame { msec: 1744 - hash: "f288d004dd459b90acf9e70045de51bc" + hash: "423cded80165ee13f903460e5396526b" } Frame { msec: 1760 - hash: "750d6c78b8e3e3311935faacfe37c44f" + hash: "709cc55316e6702c1359b66c06676603" } Frame { msec: 1776 - hash: "08a12d133eab365b639204e6b327143b" + hash: "27232931c000a2edb5c3d480a6692e6b" } Frame { msec: 1792 - hash: "4641237f37091b2aebfb17255999f8e1" + hash: "22311fd0903b53f50df824ba345ca350" } Frame { msec: 1808 - hash: "389c3a75932dc695f3aa323569cf0ebe" + hash: "9bb066e60e7e5b3eaa0a221b8ba1a431" } Frame { msec: 1824 - hash: "4f03b3b47db131f4604b1f2487303012" + hash: "517000255d372d384773dff8c80f5a65" } Frame { msec: 1840 - hash: "b29afbba738730b089f257a133874540" + hash: "329dbd77ae53ea8e4beb669a976033a8" } Frame { msec: 1856 - hash: "04b3014bf60cc25920724d0c18424830" + hash: "2acd5d3e878e1db5413270c1a50ffc83" } Frame { msec: 1872 - hash: "1f09172690083f6051d4807c287d64a4" + hash: "8eb5946ac5d53dfc2813d1f1c6a2b6c5" } Frame { msec: 1888 - hash: "fb32eec375d5f1abd7f651f022df8d20" + hash: "375299e5b1067e02d5de3238a37659f2" } Frame { msec: 1904 - hash: "251e61f514db494cb47ae18234abd9a4" + hash: "f385c90e585db5555e873996165f55af" } Frame { msec: 1920 @@ -486,239 +494,239 @@ VisualTest { } Frame { msec: 1936 - hash: "8acec26bf4ab5f93ccc5d77d4866826a" + hash: "6c13bb69b6483c72463437e102a9dabb" } Frame { msec: 1952 - hash: "2490ddc2c74c525ecc51ffc83357611e" + hash: "c1b5d10688681c3b2363bb6d4173deca" } Frame { msec: 1968 - hash: "f7f67dc93d3ff7aad6df8917f7f6f285" + hash: "b434649e4c9b2c184d2f9036f9d041bf" } Frame { msec: 1984 - hash: "d034044a9e2f2712aa1f0c10a5e4355f" + hash: "ca32e9f9080983803bb37b7231ed1c84" } Frame { msec: 2000 - hash: "7760794170cfbb7ca93aebf12874a603" + hash: "976eab47b2d6445fdd8293f2c73564c1" } Frame { msec: 2016 - hash: "a680699dda95e5a59dcf310cf5671d6e" + hash: "e63daea8f3bc79cea7a6b8dcfd31a094" } Frame { msec: 2032 - hash: "df3a0ffa7089defb0f3db08f4f34cba6" + hash: "626cbe5e6b79f2fd0ef57c943666b571" } Frame { msec: 2048 - hash: "4e0ce20d81cd4acad3270bfe5a650d18" + hash: "4e07255ce12a21966eec33c0cc623d96" } Frame { msec: 2064 - hash: "1f46926406a5f0bb33159bba6ef740f3" + hash: "94045005de77725c63c62575a6b06852" } Frame { msec: 2080 - hash: "321e4cbbb7f4fbe748a2fe45db13d184" + hash: "3b6dcf783c5e9fe99ce3d9ca02bceff6" } Frame { msec: 2096 - hash: "185c0357a585aafabe5dbc3573ea135d" + hash: "e901ed7e831e2d012b97b98b3ab6fa1b" } Frame { msec: 2112 - hash: "0421ac4f53c050bfffb2c8de16aafd46" + hash: "74ef03f72d032daaff13114fde02b824" } Frame { msec: 2128 - hash: "953bdaacefe42a841bf1cdd7da3b442a" + hash: "9eb334d7dda3801c1fe292844040e014" } Frame { msec: 2144 - hash: "3f64635e9c43b8b6a402c5d6fe26e648" + hash: "82bf8fb5e3a9bf167f3f00b1f6ab3c06" } Frame { msec: 2160 - hash: "3f64635e9c43b8b6a402c5d6fe26e648" + hash: "df3a2bc7758d00d595347e62c7e53c4a" } Frame { msec: 2176 - hash: "92926b4cf66b15cd0ddb468f2bd8bd62" + hash: "e77ac04a6ad9f97226b45d202a0d5196" } Frame { msec: 2192 - hash: "fe78f7f7ecd3242aa75f3590884e0f44" + hash: "37411333a28ea840c59cabd96fd1deba" } Frame { msec: 2208 - hash: "55249aae2bb6db6c363ecb4b89f56270" + hash: "8d1eb90ffd080bcd078b69c9635108d1" } Frame { msec: 2224 - hash: "73ea66c3c61e8105ac61d26c8cfdbba3" + hash: "68ee5d58b2edeb6b5a64a714115e4499" } Frame { msec: 2240 - hash: "ac77e83366b34b7375ad7c150ccebd01" + hash: "003ddf0a5dd3d4bb947a34bdd22ad8c1" } Frame { msec: 2256 - hash: "b0a94b3ab562b469c622c4c7438f2c04" + hash: "bf3c89d0a09ed2159a78f10124f5d7bb" } Frame { msec: 2272 - hash: "73ab6f0a829f92533bbabef8b8097d5d" + hash: "6ec994f41d4540db988846416c2f7b4f" } Frame { msec: 2288 - hash: "0c2301bd28a080f113bd786b6875bf53" + hash: "9ca7e3ca6ea26e8259d34a8c0f80f7a9" } Frame { msec: 2304 - hash: "026811ab3517257daf6a597d96bf2b20" + hash: "edf5cea581d46400914610213c8503ea" } Frame { msec: 2320 - hash: "5740c6aacc1d1a5a402974bb977d9b13" + hash: "9b96aac3f98cd37a361788be8b81e308" } Frame { msec: 2336 - hash: "41f0a093fc87c4d519a9b72bac518514" + hash: "5d304a8398512ebc85bebf973ed6a4f4" } Frame { msec: 2352 - hash: "1ed376000e60129b4bcf06ea73cb5819" + hash: "cf2a27a395f23f7976a48d69f5e8e120" } Frame { msec: 2368 - hash: "8c713e210143ab5f19bdddd918f86ef3" + hash: "458323a37208ea14972d8f84cebc66a5" } Frame { msec: 2384 - hash: "269b595c5691747b56be58d5b92ae497" + hash: "da9c8e4d168b9cd32d5ec3f5857d2942" } Frame { msec: 2400 - hash: "486d80316c88da4adc736df72fc86f45" + hash: "5d6663be8e02b0a7a4701595c9c26663" } Frame { msec: 2416 - hash: "f76e6c0a9e7957730ac646b73d1373d1" + hash: "4190712a39ca07f810a6d84e15488393" } Frame { msec: 2432 - hash: "e0a6765306f92e32b7a778f882ba5c15" + hash: "26b22be0a1c2fecec1e25a6513b19484" } Frame { msec: 2448 - hash: "b01834ca90ee836643083593a558d2ef" + hash: "3e623bc2b9e8cec49671571291cf6afb" } Frame { msec: 2464 - hash: "02748271316f8382f4788322fda807c1" + hash: "3e623bc2b9e8cec49671571291cf6afb" } Frame { msec: 2480 - hash: "ce5adbd1a713777476d2468f67e531f3" + hash: "2cb2968d16323af4659b3197d391bb91" } Frame { msec: 2496 - hash: "840be99d6372f9ebf3c580765b71be74" + hash: "5376b1285647950428b29e75f2e27c4f" } Frame { msec: 2512 - hash: "dd1cfa3fcec2fba91b0120a8aab3c137" + hash: "baaacc3940c8d36f715d90e046346bed" } Frame { msec: 2528 - hash: "023843739f78eb77767aa1cacae824e9" + hash: "277719afea4c119f17c34c59ef0b7984" } Frame { msec: 2544 - hash: "3e312b8de56c902ca20aba259c8559b2" + hash: "00a172ff8afd1e8444fb84249a3af0fd" } Frame { msec: 2560 - hash: "23fe7c60751c2e3a57a418ad57d290f1" + hash: "bf8a0f939a5602a0a9f5a3bc7c8d0d86" } Frame { msec: 2576 - hash: "0cec0db315715c41c4086bdeb72af721" + hash: "b22860751790b3113b2cb299c9f628b8" } Frame { msec: 2592 - hash: "1b633a8efad433e7dbf159d49ebd00e8" + hash: "fdda1e520457974443720bd44f21d929" } Frame { msec: 2608 - hash: "35e46ea3f3a46297c403aa177ee66ede" + hash: "538af31f9463cd07163d54adc2721345" } Frame { msec: 2624 - hash: "e1b8d1d7298a3d3ade82493fb6f99909" + hash: "2ca50398746c8fb1c936fd412c7556b4" } Frame { msec: 2640 - hash: "74ecfaced66f630d1863c04000fa7f01" + hash: "63cd898c3e22a29846489e5c47f455a1" } Frame { msec: 2656 - hash: "74ecfaced66f630d1863c04000fa7f01" + hash: "1e69cc765c3f2c27c2b6e7f3e47f515a" } Frame { msec: 2672 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" + hash: "9d7ce0df7bee9a387917ef228fd50652" } Frame { msec: 2688 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" + hash: "afa0b735a9dd0734362b3f3f7d7177c3" } Frame { msec: 2704 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" + hash: "91bee07133319a0adbf9a31c430e58ad" } Frame { msec: 2720 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" + hash: "6aee88b6391e524bafc15524825ada74" } Frame { msec: 2736 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" + hash: "655ce421faa628b3389f084fe675ad53" } Frame { msec: 2752 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "367fd34b54f12e896839b0ef4fb06925" } Frame { msec: 2768 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "0b3ac04504bfe876c4338a4dc3721280" } Frame { msec: 2784 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "c6cdb77888f1a3cbfe4cfec28bfad12d" } Frame { msec: 2800 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "ef01302544f4da4575035d3e4f2443c9" } Frame { msec: 2816 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "53f01d26a75f7e91d14b8975c81638d5" } Frame { msec: 2832 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "10fc7b3f7e5dff21edef4123d252cba0" } Frame { msec: 2848 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "10fc7b3f7e5dff21edef4123d252cba0" } Frame { msec: 2864 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "10fc7b3f7e5dff21edef4123d252cba0" } Frame { msec: 2880 @@ -726,239 +734,247 @@ VisualTest { } Frame { msec: 2896 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "143970d31598c017d7f24e8b09fd0f0a" } Frame { msec: 2912 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "fc6c38bfdcd2df7a928e83d57dc0b18d" } Frame { msec: 2928 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "647c09aae23ea5ec7979775d3022cacf" } Frame { msec: 2944 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "f1ed5cd564be1eed3242997c14a99887" } Frame { msec: 2960 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "aec3d7f18d6c4002229ef1d36727c4b0" } Frame { msec: 2976 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "3552e5a3923593a2c66ecd5e2cb2ee25" } Frame { msec: 2992 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "55a72327b726a3c75383cc5a28ba9503" } Frame { msec: 3008 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "c25ff06944f8c92006245452e07215ef" } Frame { msec: 3024 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "cc0187a10a7ccf087838a481f667af6e" } Frame { msec: 3040 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "ae9d7ff04066eb998d052c2e21b58327" } Frame { msec: 3056 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "91707fa1aaa267e6d1d56d173a063bde" } Frame { msec: 3072 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "c076a33b8afcaf915387375f065e49df" } Frame { msec: 3088 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "c24390ec788b5f34356e7a6507507a93" } Frame { msec: 3104 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "e42c9800379de3076d00802c68cc99e8" } Frame { msec: 3120 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "a2d3ba5353b1c967da93d96b61f7927f" } Frame { msec: 3136 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "fe719953aa3468d373801bb80ae93eff" } Frame { msec: 3152 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "e89b9bed1ebc7ebdd37d6975ecb0601c" } Frame { msec: 3168 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "7f3d84f49a7dd4fe39a1ba0ed7f5da3e" } Frame { msec: 3184 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "b16c9e05f72e7c8fa59f80422b987600" } Frame { msec: 3200 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "bd0606da0f7bc6c47a361462b3b2dede" } Frame { msec: 3216 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "88f81db6d705b745c4d2ffe470cb6966" } Frame { msec: 3232 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "4ac6769d3f725720bba6c125b43885cd" } Frame { msec: 3248 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "4ac6769d3f725720bba6c125b43885cd" } Frame { msec: 3264 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "4ac6769d3f725720bba6c125b43885cd" } Frame { msec: 3280 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "4ac6769d3f725720bba6c125b43885cd" } Frame { msec: 3296 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "88f81db6d705b745c4d2ffe470cb6966" } Frame { msec: 3312 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "88f81db6d705b745c4d2ffe470cb6966" } Frame { msec: 3328 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "1f112ff43280a208e967e373db8e3f34" } Frame { msec: 3344 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "6d966dafdfd2cf1927c14f749e24a99c" } Frame { msec: 3360 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "8ab4ce88e52d7cd2ec9059cdb973590d" } Frame { msec: 3376 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "62d877f18b8d3fcf6b076946f2ce05f7" } Frame { msec: 3392 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "efe3729cdeddc4bcee105b27e4062dcd" } Frame { msec: 3408 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "a2eb63f12d434925d0780f4992155556" } Frame { msec: 3424 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "5eee7ec87bb399e1395a8d337ede021b" } Frame { msec: 3440 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "59769ae407be01b016df8d7fbf484243" } Frame { msec: 3456 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "bbadb689ec5b76f76340905252b2376a" } Frame { msec: 3472 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "97cd4f34259ac8370e8557ef3ecf5a96" } Frame { msec: 3488 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "17c1513fe4c0132e15355378c6a6ee11" } Frame { msec: 3504 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "7b19041638fc7d1cf60512f579f388dd" } Frame { msec: 3520 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" + hash: "4d23bbf68cb8b32638b73ac20551ee50" } Frame { msec: 3536 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" + hash: "3f0326db5a851887a534e80cc29dc21d" } Frame { msec: 3552 - hash: "080910b835e134dfd06b83f1e92c92e8" + hash: "df5902d22a31c4deac1428d2758a0ffa" } Frame { msec: 3568 - hash: "317c01c691f0b46d5d809c3ccc1e78e6" + hash: "21badb1464775fa935c2619b91aa6e6e" } Frame { msec: 3584 - hash: "475f4da1be823b57b58aecbb5a853892" + hash: "e8cf87f4a65f6915addc16de29c90108" } Frame { msec: 3600 - hash: "b60a6387e955cd8e5e907a6b22a2aecc" + hash: "d3d4487b887695b7bba8e0af7756a0f8" } Frame { msec: 3616 - hash: "4674eae7d8db1bf7eb35c7798948f7c4" + hash: "d7f52590e4f51621ad2d62c975a5d1ef" } Frame { msec: 3632 - hash: "7b4a143d0bf44ddf87d3bfd03c143025" + hash: "9ebdc2b3ef05748e2cc8988f968f7a37" } Frame { msec: 3648 - hash: "e794d7ee32bcec9e0790ee95d89c9e06" + hash: "74bb7974f9315e70e976c21955390b9e" } Frame { msec: 3664 - hash: "0581724e928d25f276dd4ad19a9ffd4e" + hash: "59e16a89e523160f2a482c22f003f87f" } Frame { msec: 3680 - hash: "d8ef5e95454db4fd40fe51bcd9cf57b2" + hash: "d8284c216df0fdd37525f26b88707572" } Frame { msec: 3696 - hash: "22ca96df911b74025fc771e945850adf" + hash: "d8711b4444eea59acc544652cea3c4ce" } Frame { msec: 3712 - hash: "e0a88fb75e9193322fd5f925e89d7828" + hash: "12148c3f2b5f41a4ac4801e990b20114" } Frame { msec: 3728 - hash: "ee82a5192ea9af94d1a6ab169b438c34" + hash: "34429cbdfe581a524b1f9072cc404539" } Frame { msec: 3744 - hash: "c9d0d8514a783f3a9d0da651439990e2" + hash: "1f6a17b91d73e10bcbdd166d97546822" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 195; y: 95 + modifiers: 0 + sendToViewport: true } Frame { msec: 3760 - hash: "9378795141098714f3ab5b2f28d219af" + hash: "bccd4f135f27199b3a710576e0013c53" } Frame { msec: 3776 - hash: "d61c4a67039e5a56ccd59df8afa24d38" + hash: "6aa4db9ecb8fa4ad4d4f81434c369759" } Frame { msec: 3792 - hash: "62be79759a2a15ac73355457fa515b0a" + hash: "a7f2951411d8f5322ce91b3da7e86d64" } Frame { msec: 3808 - hash: "d8f09c05c188fe3d09b8409a62bee29c" + hash: "25fe19f3398d3d1a74ad8ed4114149d7" } Frame { msec: 3824 - hash: "0285dead7580a8064116cf32bd31b40d" + hash: "05c3dae68897a461de2923824bef9390" } Frame { msec: 3840 @@ -966,239 +982,239 @@ VisualTest { } Frame { msec: 3856 - hash: "1921975bdfbe8a9817808919c97d2bac" + hash: "db6265c30dd614720d1532ffc411a28f" } Frame { msec: 3872 - hash: "9c58d55cc025dd022451971ba6735a79" + hash: "f5de8e4ba755bc0a1e4c3f36ed3e6a93" } Frame { msec: 3888 - hash: "c2163f3ab875bdb5728b16abcb65dfa4" + hash: "ad68229e5fe9a2570074648005c5e5df" } Frame { msec: 3904 - hash: "48bd0e85564e411c4ae6d042487cb0d5" + hash: "02d894680766289fe659a86b02d6c9ca" } Frame { msec: 3920 - hash: "2e2c9f62acdc703fff7c28e7b7a59d47" + hash: "4f228534dd909207e8d149c74bd8fd90" } Frame { msec: 3936 - hash: "d749acc91c1b271aac00c00a6088e9ac" + hash: "f0b5c64f6a50e156452caf6a352c11e1" } Frame { msec: 3952 - hash: "cfa2c65f6f1a9bf242e073166a6e7b97" + hash: "64d46ff443534dbdb3cca88b7fc3e758" } Frame { msec: 3968 - hash: "bb6f98350cbb89cf96c2f159659b944e" + hash: "717ad4b8012a21c6ed38dee5ea978f36" } Frame { msec: 3984 - hash: "b7f087705eb7e2c7c4bd197aa08c1509" + hash: "ed38c7b528bcbb3e291761104bf1e86e" } Frame { msec: 4000 - hash: "57f217985d1850bfa3d21c2cdd164d99" + hash: "8cc8674d325a2c72c41654ffbe5bce1f" } Frame { msec: 4016 - hash: "ded1e29fb83d6ec1d888fbd610c8a875" + hash: "ab66dd60cc0e58d23bef5c709fe901ad" } Frame { msec: 4032 - hash: "c2a9f250bca3e1f7906a577c0ae6b724" + hash: "b3b824cae4ddaac4a224e84f0e282fa4" } Frame { msec: 4048 - hash: "9cb2ca74308f519da85389ae959980ce" + hash: "ead7fe4bec7987c24c305e114797284c" } Frame { msec: 4064 - hash: "5b0d50ee5f7d077deec51159cebfd767" + hash: "e5e9501f1ca61ea9f99aadfc5ca02214" } Frame { msec: 4080 - hash: "c41d847a89ece0dc9cfa1d0a0a8a16b1" + hash: "f74a00eb31e1604f13a6ffb29fbd91b7" } Frame { msec: 4096 - hash: "d372cb387ad3f01614aaaf720f133d6e" + hash: "539aca62492408ccc1815c67b55cb399" } Frame { msec: 4112 - hash: "9458ad068c95ff80e1dc4b1efd52683e" + hash: "4f548ad0eb7c4ce88a777e3b7ce2d3a8" } Frame { msec: 4128 - hash: "2e976c4a780503c6a71c4e9f8bd14178" + hash: "b0190c5ed53ff812988dd7a2152ffa61" } Frame { msec: 4144 - hash: "b2f36762c85fcdbb0e1be545a3c49936" + hash: "48214bdfbdcba256043e2cec7f5e321b" } Frame { msec: 4160 - hash: "c29fdeb241221a29d0ad928f6401a2d4" + hash: "952614329111d1d83b0304aa919af177" } Frame { msec: 4176 - hash: "bdbaaa347e20d21cc02b4c98953255ea" + hash: "fd874a73062dedfe7b904ad4c9fbcbc9" } Frame { msec: 4192 - hash: "34e9b69f851e1d719467d08962d8a657" + hash: "365b9a18cf37521718ef98589ac23933" } Frame { msec: 4208 - hash: "140a90804138dadb42e08b75fc1eed67" + hash: "32bbbf93d78925ef12f830386f0dbe2b" } Frame { msec: 4224 - hash: "67418a2069d491022c28232b392b1631" + hash: "835d391a498b7d470b317e91453ba2f9" } Frame { msec: 4240 - hash: "df39748a385186ee0bdffa87485c2746" + hash: "07d0cd82a39bfea2567587745f1e330d" } Frame { msec: 4256 - hash: "c3276e48ede008a43baf350a79b3443b" + hash: "9560a63581007038e1c463b906a4b346" } Frame { msec: 4272 - hash: "85473441e2560d8000640deecedef3bf" + hash: "076d25daafe8b582aeff39e247653285" } Frame { msec: 4288 - hash: "4d3d07ed1acec99052ebf530cb2c20da" + hash: "f2e66dad3231250b951388396705c839" } Frame { msec: 4304 - hash: "3fb8ec07500be6d951f30121bcbcba13" + hash: "f168773343e928b60aad5430b9ca739d" } Frame { msec: 4320 - hash: "ae8cae69a702811a897e7d5790c806cc" + hash: "99ed4dc4be1a0e8d98e1a54d51208da3" } Frame { msec: 4336 - hash: "073e2e1af434447c3000b03e3a89925a" + hash: "23b3e73a966f52ce6166bc91955570a1" } Frame { msec: 4352 - hash: "3c75c7586c1dca2fd21266395ccc8ac4" + hash: "00cdb999f3d2c6fcad708c37c3059c3d" } Frame { msec: 4368 - hash: "aa36ac379ac9953bd165b5164cd047da" + hash: "96f1bef93ba1768afcc42924145d49ff" } Frame { msec: 4384 - hash: "09d6ab311429cfe29a68c428669b5d5a" + hash: "0a76f6d5ec710e4046f32f76be8e0d68" } Frame { msec: 4400 - hash: "11ebcb0a744bc3faa746560d9c1a824d" + hash: "98f97a6c7eac1a493e81e79956177668" } Frame { msec: 4416 - hash: "aa01ba99122f89bff8fc45ef88326f6a" + hash: "9424ca6ba64d0d0c0bd1ee9da1b5085a" } Frame { msec: 4432 - hash: "6980292ba8a4bf8ead3581e5899f5d78" + hash: "2049a22079ac590aad3c9f6496879bcb" } Frame { msec: 4448 - hash: "65fa1a0fe53b9a0580c14e96d42fe993" + hash: "f70f9f6bd3abf3bdcb70038cda5ed311" } Frame { msec: 4464 - hash: "7837c0a533839f94629be4e64294b89f" + hash: "48d6d01e1d80fea8eb05572ca26b692c" } Frame { msec: 4480 - hash: "5edbf632047ae4130f580e4a0ece8e57" + hash: "af152dc6de929a8231687611cc301f28" } Frame { msec: 4496 - hash: "0a5fdc57898cb56f00a76ecaa3a6b9e0" + hash: "2ec869cd61570b570586870f80ba3832" } Frame { msec: 4512 - hash: "58d1b36e738042af44dab04a8c842259" + hash: "42be0431c015dcd0f5f6dd59ba7c2d7d" } Frame { msec: 4528 - hash: "2efb1f742d7f823d13b9724c1c10ce1a" + hash: "abc112f396c5e504a19dce255437720c" } Frame { msec: 4544 - hash: "e0286eb0b3fbb17e422554a8ef25489c" + hash: "a371c4f49af16bdacc5ab5abbfc99e99" } Frame { msec: 4560 - hash: "8252caa2841f07d29802a7b822388253" + hash: "1ebfd139bfabbbaf522acd63e3f47462" } Frame { msec: 4576 - hash: "eaabd4b3610c0bcbbdc113f86bc52e6c" + hash: "b36086718a3dd89500adbf67aa7b0f1d" } Frame { msec: 4592 - hash: "55b17d049e1c791d33094f64717bca06" + hash: "e3ea2ad4955cb2ab8d503b331b3594c3" } Frame { msec: 4608 - hash: "1bd607f6d0658f46b1f0df51e8a9a9fe" + hash: "4214c9f474d7f11bed74e32f5b3a0e9f" } Frame { msec: 4624 - hash: "4a52ea4de14098978931155f11168f68" + hash: "f290e1dbf13ae399a2644eea3715804a" } Frame { msec: 4640 - hash: "343df8fb45e1e70183bb61a1111909a5" + hash: "6538c60446e3303dc1126c3c9c47ae42" } Frame { msec: 4656 - hash: "bcf1363d9912a3d626ef933387b4e01b" + hash: "5319667f181eb5647710ccc6eddf43c9" } Frame { msec: 4672 - hash: "67709ea579481537e532120de35619b2" + hash: "b98b68ea99d5a107115b50c32aa45c35" } Frame { msec: 4688 - hash: "a7542255a10a120812880b1243bd573d" + hash: "2cc38e2915f77a46082c32c9393ae0c5" } Frame { msec: 4704 - hash: "b4f3e597e489d32a473bb2ad6bb92fc4" + hash: "40c695b17834cbba86d4dde0729f620b" } Frame { msec: 4720 - hash: "f0df46d1b819edda5a616e858ed9171c" + hash: "e8d5a95cfc726ce2626951ef1c68a948" } Frame { msec: 4736 - hash: "2416564198b4b853d9c4f5ad55ee5db5" + hash: "ab96c1668890ceffba74219d83e15e99" } Frame { msec: 4752 - hash: "342e5adcd2fca99c88c33cd8b56b8650" + hash: "4d69a73b3940911940b419028dabd223" } Frame { msec: 4768 - hash: "01806799adce1d0069cfdd739f383a7f" + hash: "281043e3c045df177cbfae1abf51a8d1" } Frame { msec: 4784 - hash: "c045fdefdd4606d2c68c8cde2a7a40f4" + hash: "8adf6d8154d7950efe6b5bd7e2b760b6" } Frame { msec: 4800 @@ -1206,239 +1222,239 @@ VisualTest { } Frame { msec: 4816 - hash: "c7371c0594fb9f4de0a7f8a3cdce061a" + hash: "7fba4249c76b7f81c2b88cf906ce8ce6" } Frame { msec: 4832 - hash: "6df0c2a27c672e36a3d7eb5b4e0c46bf" + hash: "50b3c89d4d783469843b3acacb9690dd" } Frame { msec: 4848 - hash: "97fa050a5790b1f722d25dbee9efba95" + hash: "29f950ab7e6299036e78c8f37d114990" } Frame { msec: 4864 - hash: "85c26ed45e79793fc5b7521a8157d3a2" + hash: "3f8aecc5453406c9d8160eeb9691ed91" } Frame { msec: 4880 - hash: "9ff5d272ec8deed3e70164b78bc425c6" + hash: "ad7ff48fed4ca9e236271d169c3bf696" } Frame { msec: 4896 - hash: "d1e3f6d51d6b8e96261b902e6f88576d" + hash: "2a2f872e4ef5c062a61fb59238df8794" } Frame { msec: 4912 - hash: "02c12e50ed6b7111f301e142a2fbc5db" + hash: "87cf2e21d7e56a82437a8ff3fa2bdc8c" } Frame { msec: 4928 - hash: "5177873aa73342ada32d7ebfe3f26e0e" + hash: "c3b04bb24d86d2aebd8fde7845f114cf" } Frame { msec: 4944 - hash: "05d0364f67f317ee617f1a64d9543fe2" + hash: "3ad95d59a1f1841e3ff2324055ca23c0" } Frame { msec: 4960 - hash: "0b93625274bf1e3585664e56aff0197c" + hash: "b91068fdce1fb2be9a64902a3dfa6b0d" } Frame { msec: 4976 - hash: "988083e19b15662ec09247c381bfaef5" + hash: "30f0118eb0bba40927a8038da03b652b" } Frame { msec: 4992 - hash: "6caa6b74ba935c2c9a6bf75ef94afedf" + hash: "ce5f3d15d3536be16b960f02a7335b99" } Frame { msec: 5008 - hash: "541ecf2b40931f8009a15c9c981e09aa" + hash: "85b853c3f48b915ed6e80815709e8ac2" } Frame { msec: 5024 - hash: "7a962dad8227d367b4af7dee6ea09c20" + hash: "c3511a76aa6dc2f1422a473ca4d80d0f" } Frame { msec: 5040 - hash: "0c175618366090b8f21334e94a865464" + hash: "deb1df70b4e1801c635356c65c0a5a46" } Frame { msec: 5056 - hash: "f8e32badd5a839892ee4982ca37933db" + hash: "d04983df9b0ffc45e629af55a8e5cc95" } Frame { msec: 5072 - hash: "3a91f3a25b245e79ddeb72778075ba8f" + hash: "2a55c97509819657f5f8604d4789d9d4" } Frame { msec: 5088 - hash: "e8fd158c923d389a2d87db0023522934" + hash: "94589d594fa2e5ed621459ec2c8bd7e8" } Frame { msec: 5104 - hash: "9cfa7783d37010c10271d680d205ebc4" + hash: "a8a1bd7c15a5bdfe15d6580d719bdba6" } Frame { msec: 5120 - hash: "5e81c936f9627cf537f96a1674c920be" + hash: "b4e1a4b1b649820be217c46b5086c8a4" } Frame { msec: 5136 - hash: "28679a61a44bf0d81d6a93d8ea301b97" + hash: "4de7d7ce85717eb9a67c61745ea26c0a" } Frame { msec: 5152 - hash: "ef41d71b99f078abe8a2a8326ed236c9" + hash: "c8ee53b7e659e10c7dbcf44e1a45f794" } Frame { msec: 5168 - hash: "753da9af5dd15cbb6c9df83460f32631" + hash: "f46ce03bc5a932c39862577c5a5cd24c" } Frame { msec: 5184 - hash: "49bbb9f30cf72a64b64ab19f0c2d5b9e" + hash: "d417370ed6fb99ccfa443eb97e6de331" } Frame { msec: 5200 - hash: "03d829cdb7da915da606dc1475debae8" + hash: "336af06572992960c829d4a209048263" } Frame { msec: 5216 - hash: "1ee5d8c3c868e2f7d7f034f9bdc91c8f" + hash: "4066e8eef292abf9b58bc89b4b5f3ce9" } Frame { msec: 5232 - hash: "0f497c52a8b4a7bbd9246c466182644c" + hash: "360f037a02bf4a337b278886266ff2f1" } Frame { msec: 5248 - hash: "1574e08a7db9c9a164147ca329d48dbd" + hash: "79e9f387b0ce164057640c0caab8d10d" } Frame { msec: 5264 - hash: "bff3837578fd069d2b9000ad60123be3" + hash: "ee8741d1810303cfe5ecff39c7d52fdd" } Frame { msec: 5280 - hash: "99ce71c69566b92715a27014548d7346" + hash: "4cba1c857f0af49d7fe68584f99c89d7" } Frame { msec: 5296 - hash: "78a78f00e598405d4e906a930ace9cb5" + hash: "c0ae482a2fbb9f15a2c2ff631cc85c2c" } Frame { msec: 5312 - hash: "a0f44f1a8772d4dd8d70795811fdd4ab" + hash: "3b6bf6d6a0aeebdc92eff4e336fd3b6e" } Frame { msec: 5328 - hash: "3d5fd500d5c771b437a999659ea57dd7" + hash: "43033eb8aeba6b49c135a1702f6b8f47" } Frame { msec: 5344 - hash: "53fbb22689627f55af20b3cb15a7a8cf" + hash: "1319c7e3a84484723891ee43a80bc765" } Frame { msec: 5360 - hash: "609838796118ab89566fe2fe664dfcb4" + hash: "838ec693c923565d77b060f262beb1e8" } Frame { msec: 5376 - hash: "c2d7d5cb7cf470ed4d84f705c187f768" + hash: "74306669836425de03cec617d4ed849a" } Frame { msec: 5392 - hash: "63c6de2754a0b9c23e5b652aa331716f" + hash: "c063f4951755c8939399d0d560a0f762" } Frame { msec: 5408 - hash: "8cacae37981ebd8c0a6772f97d8e9342" + hash: "512c739e0ff25f7d6b983a193f7fc2c3" } Frame { msec: 5424 - hash: "b8ab40dbd1bb086eae5b80f2e751efe4" + hash: "6c5f69cc2ce2992fd2ecb0ea3691e2b8" } Frame { msec: 5440 - hash: "fb4211ee009b224b64092d106369f6a0" + hash: "f5dbc5ce0ba00eafb9379ee86de67150" } Frame { msec: 5456 - hash: "b59dd1dcbb128b6f7df51bd30ac0af31" + hash: "f62bb7d8d9749272ca3e2bd1931598fb" } Frame { msec: 5472 - hash: "075ff90195b6a0d37944aaf32eb560e7" + hash: "052fdac05286edcdd7fcd4d6d9582f39" } Frame { msec: 5488 - hash: "26cb5dda92cfec934e4068322eb0c792" + hash: "ac4702306e5be156fe7b069cb90e1038" } Frame { msec: 5504 - hash: "0938c360b6c8911074cda8fd58de5650" + hash: "127e94c79f4d33e5f223a0853629245f" } Frame { msec: 5520 - hash: "6491ba15d6566ab6f17ee6eb9c5472ab" + hash: "dd77216b0a90c46dd5c264d38ab0fd74" } Frame { msec: 5536 - hash: "83518cf990f5050d68bf1f09c774ae74" + hash: "a4e50b39aa367d4cd7650d088d186856" } Frame { msec: 5552 - hash: "4ce84b0d70bc3ebf970e9161ffb7dc21" + hash: "6e14946b9b23f0fc137bd61c02af1ca5" } Frame { msec: 5568 - hash: "57270cebd25e5c6dd7fb204232e18eb3" + hash: "8c550d5e4cfbcee2c7bd6c20dba53f41" } Frame { msec: 5584 - hash: "d93f26948e6deb4bf074139468d12c27" + hash: "9f2385fb614bdaafe022712148f786d2" } Frame { msec: 5600 - hash: "581fe059cd632e242dd308b11ef8288a" + hash: "c87903c96ae5a4b91c5bda524bfd4a4f" } Frame { msec: 5616 - hash: "2e19dc61944aa7671ac18303949e1c9e" + hash: "9a98de9b4237b7c0ccb4468344d410bc" } Frame { msec: 5632 - hash: "37b4864ed528a3be221d7abb4106ec3a" + hash: "7ff448f395ff50cde1f6e6cfaf0c1541" } Frame { msec: 5648 - hash: "4261fe6049e5dff81b33e503a4d1825d" + hash: "ab7a6998a5b26e3d58bd1d0a949f3709" } Frame { msec: 5664 - hash: "c2bf99e089bc984abea63b8b43270859" + hash: "ab7a6998a5b26e3d58bd1d0a949f3709" } Frame { msec: 5680 - hash: "d8de63e15f1f6e9c0cf0dd43afa03c42" + hash: "2e1b5636ab75af91bd5b0d48c04828f5" } Frame { msec: 5696 - hash: "3643a50c30b6d6f9b724155e49db7276" + hash: "0976b605c78f6f8512acdfb61b9d123a" } Frame { msec: 5712 - hash: "582e871460fe3056f7f3df97d5939d69" + hash: "bb816bfd8bd3972c80c3a76c9ddf785e" } Frame { msec: 5728 - hash: "e46da1072974efc1c4df89d9c6243609" + hash: "c3518990fc7aa5660a9e86034cf4c46f" } Frame { msec: 5744 - hash: "705ac82bb7a03eb5843aae7292739851" + hash: "b27230d8aeb214e18b43de167213ef7b" } Frame { msec: 5760 @@ -1446,246 +1462,302 @@ VisualTest { } Frame { msec: 5776 - hash: "b2949af515524933f740057cae6d8c40" + hash: "fc55f00ae456c2687ed05ab4b6906a33" } Frame { msec: 5792 - hash: "72a3526dbfeb42935a737f7876c86499" + hash: "50051a48d1fae3bc9c9d1f0a964d9561" } Frame { msec: 5808 - hash: "43907b91dec1412d0e6c8b53cec8e06f" + hash: "279a38d7261241c744c2317ea9843567" } Frame { msec: 5824 - hash: "66db45ca42d42e8a6eb279b892493af9" + hash: "0b3ed3960713dbda36326b7de492c42e" } Frame { msec: 5840 - hash: "1f2d69898b90d344f337ac37a000e797" + hash: "fff5737541317406c4a0ef06f1cdc041" } Frame { msec: 5856 - hash: "9c09edc9541d69e7565ef05fbe58fadf" + hash: "47aef0d79da45139a3981a75290cc9b8" } Frame { msec: 5872 - hash: "0d68b6d05150981eff443cd7437b3d95" + hash: "d79f9f9371c76a855ea4f2cdeed97acd" } Frame { msec: 5888 - hash: "85558e393a1e0483ba27844cf409af47" + hash: "66610a0d5b926d419da26e20b04b55a5" } Frame { msec: 5904 - hash: "83a73b6b3eb1052a9b1a12fb78326b26" + hash: "9891ad954da8535b44cc234bb2588f30" } Frame { msec: 5920 - hash: "4839882ecc497916b4ac964a5cc71d1b" + hash: "b53056146701fae1598ab49e6399db01" } Frame { msec: 5936 - hash: "28d6f5066f186a0d9ab7f4781374d3eb" + hash: "064799027a3f60458a3797c6c87d3e29" } Frame { msec: 5952 - hash: "d89148926c6dd636de953a55082e50f1" + hash: "81ad252f10e6f8f2a08e7df1d25e8a47" } Frame { msec: 5968 - hash: "dbab902e252561849dba5551fc8f07d3" + hash: "09fbd923da02844f50ad25059f82560c" } Frame { msec: 5984 - hash: "84a3a891fbbb1a0fca24324a3ea10c6a" + hash: "f41d8370afdce8a154ab42204ca8d92d" } Frame { msec: 6000 - hash: "64563bb68129f527b1c33c0d9a543f09" + hash: "748b2d020c28b3ac36b08377b4a2544b" } Frame { msec: 6016 - hash: "64563bb68129f527b1c33c0d9a543f09" + hash: "748b2d020c28b3ac36b08377b4a2544b" } Frame { msec: 6032 - hash: "7f3ae8ac99bf202414b03e9b33473044" + hash: "d8c02a54c0d1df20127025d547c741af" } Frame { msec: 6048 - hash: "7f3ae8ac99bf202414b03e9b33473044" + hash: "d8c02a54c0d1df20127025d547c741af" } Frame { msec: 6064 - hash: "7fbdf6396050da5b8945f1111c2ca973" + hash: "d7fd0dab22fec0f68ed01cfd6d32e7f5" } Frame { msec: 6080 - hash: "5bf4fa18f24fc221685234a92c4cafb6" + hash: "f0b035eda10c07f5c3c825784ad96437" } Frame { msec: 6096 - hash: "5bf4fa18f24fc221685234a92c4cafb6" + hash: "54b83800f8a01e1a4d57b8b1d371fb09" } Frame { msec: 6112 - hash: "e1b8d1d7298a3d3ade82493fb6f99909" + hash: "19ad51c31e9cfdb314c76f323574806c" } Frame { msec: 6128 - hash: "6320b7b0bd1926c625f914d30f1f1fd9" + hash: "dcf269a115781eb4df232a527de87a87" } Frame { msec: 6144 - hash: "74ecfaced66f630d1863c04000fa7f01" + hash: "95053206702a6118c23b541ff7fbef0d" } Frame { msec: 6160 - hash: "74ecfaced66f630d1863c04000fa7f01" + hash: "933a158398ee746c0465c2e7af9b6b4d" } Frame { msec: 6176 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" + hash: "ade4a4aa03f5787dce1331ed27ff9c6e" } Frame { msec: 6192 - hash: "c803b3258d0e1d8e6c1292ea2a00f76b" + hash: "9ecc7d4cb5cf0dd815e208e13e2c932a" } Frame { msec: 6208 - hash: "8d359f95ee869714bb3972986637642d" + hash: "98e40cba2e717e57a5dcd3413e166f65" } Frame { msec: 6224 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" + hash: "f68f45b71f6d596eaa76fa2bc46cfe1b" } Frame { msec: 6240 - hash: "9f3f4fe1be7bd4511a0408fd5ab1b11f" + hash: "9230c9b1013b83b073ccb90d2633043f" } Frame { msec: 6256 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "5d0fc4842b75703d29816fa0330624ba" } Frame { msec: 6272 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "5d0fc4842b75703d29816fa0330624ba" } Frame { msec: 6288 - hash: "cd2c4e1a288d09f46dd557973c22e1be" + hash: "5d0fc4842b75703d29816fa0330624ba" } Frame { msec: 6304 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "96008d5b8446f67e07129d02300d122d" } Frame { msec: 6320 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "96008d5b8446f67e07129d02300d122d" } Frame { msec: 6336 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "96008d5b8446f67e07129d02300d122d" } Frame { msec: 6352 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "96008d5b8446f67e07129d02300d122d" } Frame { msec: 6368 - hash: "8109005d7e21d16b77f88efce2b530e4" + hash: "96008d5b8446f67e07129d02300d122d" } Frame { msec: 6384 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "478be760047d33bd66017bdd304ff3ae" } Frame { msec: 6400 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "478be760047d33bd66017bdd304ff3ae" } Frame { msec: 6416 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "478be760047d33bd66017bdd304ff3ae" } Frame { msec: 6432 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "478be760047d33bd66017bdd304ff3ae" } Frame { msec: 6448 - hash: "e009f65ae035fb8a9c27a1d57f10c35f" + hash: "478be760047d33bd66017bdd304ff3ae" } Frame { msec: 6464 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6480 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6496 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6512 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6528 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6544 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6560 - hash: "31a446fab3c9a92f20fbb065b62d4357" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6576 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6592 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6608 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6624 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6640 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6656 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6672 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6688 - hash: "31a446fab3c9a92f20fbb065b62d4357" + hash: "8ff11dfe2642dc099c240e8aef8285df" } Frame { msec: 6704 - hash: "20dd4407adca55737dd4231405c38cff" + hash: "01ac8ff953f8f83c6fa2252fe6ff6698" + } + Frame { + msec: 6720 + image: "follow.6.png" + } + Frame { + msec: 6736 + hash: "01ac8ff953f8f83c6fa2252fe6ff6698" + } + Frame { + msec: 6752 + hash: "01ac8ff953f8f83c6fa2252fe6ff6698" + } + Frame { + msec: 6768 + hash: "01ac8ff953f8f83c6fa2252fe6ff6698" + } + Frame { + msec: 6784 + hash: "01ac8ff953f8f83c6fa2252fe6ff6698" + } + Frame { + msec: 6800 + hash: "01ac8ff953f8f83c6fa2252fe6ff6698" + } + Frame { + msec: 6816 + hash: "01ac8ff953f8f83c6fa2252fe6ff6698" + } + Frame { + msec: 6832 + hash: "96008d5b8446f67e07129d02300d122d" + } + Key { + type: 6 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 6848 + hash: "5d0fc4842b75703d29816fa0330624ba" + } + Frame { + msec: 6864 + hash: "5d0fc4842b75703d29816fa0330624ba" + } + Frame { + msec: 6880 + hash: "5d0fc4842b75703d29816fa0330624ba" + } + Frame { + msec: 6896 + hash: "5d0fc4842b75703d29816fa0330624ba" + } + Frame { + msec: 6912 + hash: "5d0fc4842b75703d29816fa0330624ba" + } + Frame { + msec: 6928 + hash: "5d0fc4842b75703d29816fa0330624ba" } } diff --git a/tests/auto/declarative/visual/qmlspringfollow/follow.qml b/tests/auto/declarative/visual/qmlspringfollow/follow.qml index 3e164f9..1cfa750 100644 --- a/tests/auto/declarative/visual/qmlspringfollow/follow.qml +++ b/tests/auto/declarative/visual/qmlspringfollow/follow.qml @@ -28,7 +28,6 @@ Rectangle { y: 200 y: SpringFollow { source: rect.y; velocity: 200 } } - Text { x: rect.width; y: 220; text: "Velocity" } // Spring Rectangle { @@ -43,7 +42,6 @@ Rectangle { y: 200 y: SpringFollow { source: rect.y; spring: 1.0; damping: 0.2; mass: 3.0 } // "heavier" object } - Text { x: rect.width * 2; y: 220; text: "Spring" } // Follow mouse MouseRegion { diff --git a/tests/auto/declarative/visual/rect/data-MAC/rect-painting.0.png b/tests/auto/declarative/visual/rect/data-MAC/rect-painting.0.png Binary files differdeleted file mode 100644 index 0b45874..0000000 --- a/tests/auto/declarative/visual/rect/data-MAC/rect-painting.0.png +++ /dev/null diff --git a/tests/auto/declarative/visual/rect/data-MAC/rect-painting.qml b/tests/auto/declarative/visual/rect/data-MAC/rect-painting.qml deleted file mode 100644 index 438096e..0000000 --- a/tests/auto/declarative/visual/rect/data-MAC/rect-painting.qml +++ /dev/null @@ -1,355 +0,0 @@ -import Qt.VisualTest 4.6 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 32 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 48 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 64 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 80 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 96 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 112 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 128 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 144 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 160 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 176 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 192 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 208 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 224 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 240 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 256 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 272 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 288 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 304 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 320 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 336 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 352 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 368 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 384 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 400 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 416 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 432 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 448 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 464 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 480 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 496 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 512 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 528 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 544 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 560 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 576 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 592 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 608 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 624 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 640 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 656 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 672 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 688 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 704 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 720 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 736 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 752 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 768 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 784 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 800 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 816 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 832 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 848 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 864 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 880 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 896 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 912 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 928 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 944 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 960 - image: "rect-painting.0.png" - } - Frame { - msec: 976 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 992 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1008 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1024 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1040 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1056 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1072 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1088 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1104 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1120 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1136 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1152 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1168 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1184 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1200 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1216 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1232 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1248 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1264 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1280 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1296 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1312 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1328 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1344 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1360 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } -} diff --git a/tests/auto/declarative/visual/rect/data-X11/rect-painting.0.png b/tests/auto/declarative/visual/rect/data-X11/rect-painting.0.png Binary files differdeleted file mode 100644 index 9af5b68..0000000 --- a/tests/auto/declarative/visual/rect/data-X11/rect-painting.0.png +++ /dev/null diff --git a/tests/auto/declarative/visual/rect/data-X11/rect-painting.qml b/tests/auto/declarative/visual/rect/data-X11/rect-painting.qml deleted file mode 100644 index 8f780e1..0000000 --- a/tests/auto/declarative/visual/rect/data-X11/rect-painting.qml +++ /dev/null @@ -1,355 +0,0 @@ -import Qt.VisualTest 4.6 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 32 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 48 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 64 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 80 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 96 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 112 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 128 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 144 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 160 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 176 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 192 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 208 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 224 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 240 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 256 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 272 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 288 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 304 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 320 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 336 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 352 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 368 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 384 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 400 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 416 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 432 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 448 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 464 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 480 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 496 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 512 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 528 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 544 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 560 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 576 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 592 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 608 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 624 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 640 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 656 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 672 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 688 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 704 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 720 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 736 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 752 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 768 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 784 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 800 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 816 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 832 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 848 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 864 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 880 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 896 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 912 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 928 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 944 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 960 - image: "rect-painting.0.png" - } - Frame { - msec: 976 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 992 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1008 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1024 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1040 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1056 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1072 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1088 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1104 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1120 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1136 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1152 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1168 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1184 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1200 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1216 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1232 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1248 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1264 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1280 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1296 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1312 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1328 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1344 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } - Frame { - msec: 1360 - hash: "8a4f7a3d55b1b19fb1b8c211c00a7ba7" - } -} diff --git a/tests/auto/declarative/visual/rect/data/rect-painting.0.png b/tests/auto/declarative/visual/rect/data/rect-painting.0.png Binary files differindex 0b45874..3b7970d 100644 --- a/tests/auto/declarative/visual/rect/data/rect-painting.0.png +++ b/tests/auto/declarative/visual/rect/data/rect-painting.0.png diff --git a/tests/auto/declarative/visual/rect/data/rect-painting.qml b/tests/auto/declarative/visual/rect/data/rect-painting.qml index 2c3267e..52acadf 100644 --- a/tests/auto/declarative/visual/rect/data/rect-painting.qml +++ b/tests/auto/declarative/visual/rect/data/rect-painting.qml @@ -6,239 +6,247 @@ VisualTest { } Frame { msec: 16 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 32 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 48 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 64 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 80 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 96 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 112 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 128 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 144 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 160 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 176 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 192 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 208 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 224 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 240 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 256 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 272 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 288 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 304 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 320 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 336 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 352 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 368 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 384 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 400 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 416 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 432 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 448 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 464 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 480 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 496 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 512 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 528 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 544 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 560 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 576 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 592 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 608 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 624 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 640 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 656 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 672 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 688 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 704 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 720 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 736 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 752 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 768 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 784 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 800 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 816 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 832 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 848 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 864 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 880 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 896 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 912 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 928 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 944 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 960 @@ -246,110 +254,34 @@ VisualTest { } Frame { msec: 976 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 992 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 1008 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 1024 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 1040 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 1056 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 1072 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } Frame { msec: 1088 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1104 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1120 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1136 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1152 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1168 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1184 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1200 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1216 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1232 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1248 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1264 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1280 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1296 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1312 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1328 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1344 - hash: "f38360b51d832ed7f70614dfe1964ec8" - } - Frame { - msec: 1360 - hash: "f38360b51d832ed7f70614dfe1964ec8" + hash: "79998980caccd4eb479fbd9f2a13c860" } } diff --git a/tests/auto/declarative/visual/rect/rect-painting.qml b/tests/auto/declarative/visual/rect/rect-painting.qml index 4b6e223..93beeec 100644 --- a/tests/auto/declarative/visual/rect/rect-painting.qml +++ b/tests/auto/declarative/visual/rect/rect-painting.qml @@ -52,13 +52,4 @@ Rectangle { GradientRect { color: "thistle"; radius: 10; rotation: 10; smooth: true } GradientRect { color: "thistle"; radius: 10; border: "gray"; rotation: 10; smooth: true } } - - Text { - text: "smooth: false"; font.bold: true - anchors.horizontalCenter: parent.horizontalCenter; anchors.top: parent.top - } - Text { - text: "smooth: true"; font.bold: true - anchors.horizontalCenter: parent.horizontalCenter; anchors.bottom: parent.bottom - } } diff --git a/tests/auto/declarative/xmlhttprequest/data/abort.expect b/tests/auto/declarative/xmlhttprequest/data/abort.expect index 5cdc24e..21b803a 100644 --- a/tests/auto/declarative/xmlhttprequest/data/abort.expect +++ b/tests/auto/declarative/xmlhttprequest/data/abort.expect @@ -5,6 +5,6 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 Test Data
\ No newline at end of file diff --git a/tests/auto/declarative/xmlhttprequest/data/getResponseHeader.expect b/tests/auto/declarative/xmlhttprequest/data/getResponseHeader.expect index 40e648e..8d7b95d 100644 --- a/tests/auto/declarative/xmlhttprequest/data/getResponseHeader.expect +++ b/tests/auto/declarative/xmlhttprequest/data/getResponseHeader.expect @@ -3,5 +3,5 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 diff --git a/tests/auto/declarative/xmlhttprequest/data/open_network.expect b/tests/auto/declarative/xmlhttprequest/data/open_network.expect index 40e648e..8d7b95d 100644 --- a/tests/auto/declarative/xmlhttprequest/data/open_network.expect +++ b/tests/auto/declarative/xmlhttprequest/data/open_network.expect @@ -3,5 +3,5 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 diff --git a/tests/auto/declarative/xmlhttprequest/data/send_data.1.expect b/tests/auto/declarative/xmlhttprequest/data/send_data.1.expect index 1ef179b..104f485 100644 --- a/tests/auto/declarative/xmlhttprequest/data/send_data.1.expect +++ b/tests/auto/declarative/xmlhttprequest/data/send_data.1.expect @@ -5,6 +5,6 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 My Sent Data
\ No newline at end of file diff --git a/tests/auto/declarative/xmlhttprequest/data/send_data.4.expect b/tests/auto/declarative/xmlhttprequest/data/send_data.4.expect index 6b10b4a..933628f 100644 --- a/tests/auto/declarative/xmlhttprequest/data/send_data.4.expect +++ b/tests/auto/declarative/xmlhttprequest/data/send_data.4.expect @@ -5,6 +5,6 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 My Sent Data
\ No newline at end of file diff --git a/tests/auto/declarative/xmlhttprequest/data/send_data.6.expect b/tests/auto/declarative/xmlhttprequest/data/send_data.6.expect index dc0d6c2..b466a18 100644 --- a/tests/auto/declarative/xmlhttprequest/data/send_data.6.expect +++ b/tests/auto/declarative/xmlhttprequest/data/send_data.6.expect @@ -5,6 +5,6 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 My Sent Data
\ No newline at end of file diff --git a/tests/auto/declarative/xmlhttprequest/data/send_ignoreData_GET.expect b/tests/auto/declarative/xmlhttprequest/data/send_ignoreData_GET.expect index 40e648e..8d7b95d 100644 --- a/tests/auto/declarative/xmlhttprequest/data/send_ignoreData_GET.expect +++ b/tests/auto/declarative/xmlhttprequest/data/send_ignoreData_GET.expect @@ -3,5 +3,5 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 diff --git a/tests/auto/declarative/xmlhttprequest/data/send_ignoreData_PUT.expect b/tests/auto/declarative/xmlhttprequest/data/send_ignoreData_PUT.expect index 381cc89..4556e8d 100644 --- a/tests/auto/declarative/xmlhttprequest/data/send_ignoreData_PUT.expect +++ b/tests/auto/declarative/xmlhttprequest/data/send_ignoreData_PUT.expect @@ -3,5 +3,5 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 diff --git a/tests/auto/declarative/xmlhttprequest/data/setRequestHeader.expect b/tests/auto/declarative/xmlhttprequest/data/setRequestHeader.expect index 031ddff..da040e7 100644 --- a/tests/auto/declarative/xmlhttprequest/data/setRequestHeader.expect +++ b/tests/auto/declarative/xmlhttprequest/data/setRequestHeader.expect @@ -5,5 +5,5 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 diff --git a/tests/auto/declarative/xmlhttprequest/data/status.expect b/tests/auto/declarative/xmlhttprequest/data/status.expect index 40e648e..8d7b95d 100644 --- a/tests/auto/declarative/xmlhttprequest/data/status.expect +++ b/tests/auto/declarative/xmlhttprequest/data/status.expect @@ -3,5 +3,5 @@ Connection: Keep-Alive Accept-Encoding: gzip accept-language: en,* User-Agent: Mozilla/5.0 -Host: localhost:14445 +Host: 127.0.0.1:14445 diff --git a/tests/auto/declarative/xmlhttprequest/testhttpserver.cpp b/tests/auto/declarative/xmlhttprequest/testhttpserver.cpp deleted file mode 100644 index b464a1b..0000000 --- a/tests/auto/declarative/xmlhttprequest/testhttpserver.cpp +++ /dev/null @@ -1,154 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2009 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 "testhttpserver.h" -#include <QTcpSocket> -#include <QDebug> -#include <QFile> - -TestHTTPServer::TestHTTPServer(quint16 port) -: m_hasFailed(false) -{ - QObject::connect(&server, SIGNAL(newConnection()), this, SLOT(newConnection())); - - server.listen(QHostAddress::Any, port); -} - -bool TestHTTPServer::isValid() const -{ - return server.isListening(); -} - -bool TestHTTPServer::wait(const QUrl &expect, const QUrl &reply, const QUrl &body) -{ - m_hasFailed = false; - - QFile expectFile(expect.toLocalFile()); - if (!expectFile.open(QIODevice::ReadOnly)) return false; - - QFile replyFile(reply.toLocalFile()); - if (!replyFile.open(QIODevice::ReadOnly)) return false; - - bodyData = QByteArray(); - if (body.isValid()) { - QFile bodyFile(body.toLocalFile()); - if (!bodyFile.open(QIODevice::ReadOnly)) return false; - bodyData = bodyFile.readAll(); - } - - waitData = expectFile.readAll(); - /* - while (waitData.endsWith('\n')) - waitData = waitData.left(waitData.count() - 1); - */ - - replyData = replyFile.readAll(); - - if (!replyData.endsWith('\n')) - replyData.append("\n"); - replyData.append("Content-length: " + QByteArray::number(bodyData.length())); - replyData .append("\n\n"); - - for (int ii = 0; ii < replyData.count(); ++ii) { - if (replyData.at(ii) == '\n' && (!ii || replyData.at(ii - 1) != '\r')) { - replyData.insert(ii, '\r'); - ++ii; - } - } - replyData.append(bodyData); - - return true; -} - -bool TestHTTPServer::hasFailed() const -{ - return m_hasFailed; -} - -void TestHTTPServer::newConnection() -{ - QTcpSocket *socket = server.nextPendingConnection(); - if (!socket) return; - - QObject::connect(socket, SIGNAL(disconnected()), this, SLOT(disconnected())); - QObject::connect(socket, SIGNAL(readyRead()), this, SLOT(readyRead())); -} - -void TestHTTPServer::disconnected() -{ - sender()->deleteLater(); -} - -void TestHTTPServer::readyRead() -{ - QTcpSocket *socket = qobject_cast<QTcpSocket *>(sender()); - if (!socket) return; - - QByteArray ba = socket->readAll(); - - if (m_hasFailed || waitData.isEmpty()) { - qWarning() << "TestHTTPServer: Unexpected data" << ba; - return; - } - - for (int ii = 0; ii < ba.count(); ++ii) { - const char c = ba.at(ii); - if (c == '\r' && waitData.isEmpty()) - continue; - else if (!waitData.isEmpty() && c == waitData.at(0)) - waitData = waitData.mid(1); - else if (c == '\r') - continue; - else { - QByteArray data = ba.mid(ii); - qWarning() << "TestHTTPServer: Unexpected data" << data; - m_hasFailed = true; - socket->disconnect(); - return; - } - } - - if (waitData.isEmpty()) { - socket->write(replyData); - socket->disconnect(); - } -} - diff --git a/tests/auto/declarative/xmlhttprequest/tst_xmlhttprequest.cpp b/tests/auto/declarative/xmlhttprequest/tst_xmlhttprequest.cpp index 5a1955e..0af7b18 100644 --- a/tests/auto/declarative/xmlhttprequest/tst_xmlhttprequest.cpp +++ b/tests/auto/declarative/xmlhttprequest/tst_xmlhttprequest.cpp @@ -265,7 +265,7 @@ void tst_xmlhttprequest::open() QmlComponent component(&engine, TEST_FILE("open.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); QCOMPARE(object->property("readyState").toBool(), true); @@ -341,7 +341,7 @@ void tst_xmlhttprequest::setRequestHeader() QmlComponent component(&engine, TEST_FILE("setRequestHeader.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -403,7 +403,7 @@ void tst_xmlhttprequest::setRequestHeader_illegalName() QmlComponent component(&engine, TEST_FILE("setRequestHeader_illegalName.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); object->setProperty("header", name); component.completeCreate(); @@ -431,7 +431,7 @@ void tst_xmlhttprequest::setRequestHeader_sent() QmlComponent component(&engine, TEST_FILE("setRequestHeader_sent.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); QCOMPARE(object->property("test").toBool(), true); @@ -480,7 +480,7 @@ void tst_xmlhttprequest::send_ignoreData() QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); object->setProperty("reqType", "GET"); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -499,7 +499,7 @@ void tst_xmlhttprequest::send_ignoreData() QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); object->setProperty("reqType", "HEAD"); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -522,7 +522,7 @@ void tst_xmlhttprequest::send_withdata() QmlComponent component(&engine, TEST_FILE("send_data.1.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -541,7 +541,7 @@ void tst_xmlhttprequest::send_withdata() QmlComponent component(&engine, TEST_FILE("send_data.2.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -560,7 +560,7 @@ void tst_xmlhttprequest::send_withdata() QmlComponent component(&engine, TEST_FILE("send_data.3.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -579,7 +579,7 @@ void tst_xmlhttprequest::send_withdata() QmlComponent component(&engine, TEST_FILE("send_data.4.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -598,7 +598,7 @@ void tst_xmlhttprequest::send_withdata() QmlComponent component(&engine, TEST_FILE("send_data.5.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -617,7 +617,7 @@ void tst_xmlhttprequest::send_withdata() QmlComponent component(&engine, TEST_FILE("send_data.6.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); TRY_WAIT(object->property("dataOK").toBool() == true); @@ -680,8 +680,8 @@ void tst_xmlhttprequest::abort() QmlComponent component(&engine, TEST_FILE("abort.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("urlDummy", "http://localhost:14449/testdocument.html"); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("urlDummy", "http://127.0.0.1:14449/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); QCOMPARE(object->property("seenDone").toBool(), true); @@ -707,7 +707,7 @@ void tst_xmlhttprequest::getResponseHeader() QmlComponent component(&engine, TEST_FILE("getResponseHeader.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); QCOMPARE(object->property("unsentException").toBool(), true); @@ -745,7 +745,7 @@ void tst_xmlhttprequest::getAllResponseHeaders() QmlComponent component(&engine, TEST_FILE("getAllResponseHeaders.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); component.completeCreate(); QCOMPARE(object->property("unsentException").toBool(), true); @@ -776,7 +776,7 @@ void tst_xmlhttprequest::status() QmlComponent component(&engine, TEST_FILE("status.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); object->setProperty("expectedStatus", 200); component.completeCreate(); @@ -803,7 +803,7 @@ void tst_xmlhttprequest::status() QmlComponent component(&engine, TEST_FILE("status.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); object->setProperty("expectedStatus", 404); component.completeCreate(); @@ -833,7 +833,7 @@ void tst_xmlhttprequest::statusText() QmlComponent component(&engine, TEST_FILE("statusText.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); object->setProperty("expectedStatus", "OK"); component.completeCreate(); @@ -860,7 +860,7 @@ void tst_xmlhttprequest::statusText() QmlComponent component(&engine, TEST_FILE("statusText.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); object->setProperty("expectedStatus", "Document not found"); component.completeCreate(); @@ -890,7 +890,7 @@ void tst_xmlhttprequest::responseText() QmlComponent component(&engine, TEST_FILE("responseText.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); object->setProperty("expectedText", "QML Rocks!\n"); component.completeCreate(); @@ -917,7 +917,7 @@ void tst_xmlhttprequest::responseText() QmlComponent component(&engine, TEST_FILE("responseText.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); object->setProperty("expectedText", ""); component.completeCreate(); @@ -944,7 +944,7 @@ void tst_xmlhttprequest::responseText() QmlComponent component(&engine, TEST_FILE("responseText.qml")); QObject *object = component.beginCreate(engine.rootContext()); QVERIFY(object != 0); - object->setProperty("url", "http://localhost:14445/testdocument.html"); + object->setProperty("url", "http://127.0.0.1:14445/testdocument.html"); object->setProperty("expectedText", ""); component.completeCreate(); diff --git a/tests/auto/declarative/xmlhttprequest/xmlhttprequest.pro b/tests/auto/declarative/xmlhttprequest/xmlhttprequest.pro index 5d35a89..6af4e39 100644 --- a/tests/auto/declarative/xmlhttprequest/xmlhttprequest.pro +++ b/tests/auto/declarative/xmlhttprequest/xmlhttprequest.pro @@ -2,10 +2,11 @@ load(qttest_p4) contains(QT_CONFIG,declarative): QT += declarative webkit network macx:CONFIG -= app_bundle -HEADERS += testhttpserver.h +INCLUDEPATH += ../shared/ +HEADERS += ../shared/testhttpserver.h SOURCES += tst_xmlhttprequest.cpp \ - testhttpserver.cpp + ../shared/testhttpserver.cpp # Define SRCDIR equal to test's source directory |