From b6b276495b0d02e3bcfa62b793c83f5adcf178c7 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Mon, 18 Oct 2010 16:10:15 +0200 Subject: Sockets: Private function for pausing/resuming notifiers This will be used by QNAM to prevent event loop recursion while emitting signals that often spin an event loop, e.g. authenticationRequired() displaying a dialog for the user. Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/socket/qabstractsocket.cpp | 30 ++++++++++++++++++++++++++++++ src/network/socket/qabstractsocket_p.h | 7 +++++++ src/network/ssl/qsslsocket.cpp | 14 ++++++++++++++ src/network/ssl/qsslsocket_p.h | 2 ++ 4 files changed, 53 insertions(+) diff --git a/src/network/socket/qabstractsocket.cpp b/src/network/socket/qabstractsocket.cpp index 505db71..f03d102 100644 --- a/src/network/socket/qabstractsocket.cpp +++ b/src/network/socket/qabstractsocket.cpp @@ -1212,6 +1212,36 @@ void QAbstractSocketPrivate::fetchConnectionParameters() #endif } + +void QAbstractSocketPrivate::pauseSocketNotifiers(QAbstractSocket *socket) +{ + QAbstractSocketEngine *socketEngine = socket->d_func()->socketEngine; + if (!socketEngine) + return; + socket->d_func()->prePauseReadSocketNotifierState = socketEngine->isReadNotificationEnabled(); + socket->d_func()->prePauseWriteSocketNotifierState = socketEngine->isWriteNotificationEnabled(); + socket->d_func()->prePauseExceptionSocketNotifierState = socketEngine->isExceptionNotificationEnabled(); + socketEngine->setReadNotificationEnabled(false); + socketEngine->setWriteNotificationEnabled(false); + socketEngine->setExceptionNotificationEnabled(false); +} + +void QAbstractSocketPrivate::resumeSocketNotifiers(QAbstractSocket *socket) +{ + QAbstractSocketEngine *socketEngine = socket->d_func()->socketEngine; + if (!socketEngine) + return; + socketEngine->setReadNotificationEnabled(socket->d_func()->prePauseReadSocketNotifierState); + socketEngine->setWriteNotificationEnabled(socket->d_func()->prePauseWriteSocketNotifierState); + socketEngine->setExceptionNotificationEnabled(socket->d_func()->prePauseExceptionSocketNotifierState); +} + +QAbstractSocketEngine* QAbstractSocketPrivate::getSocketEngine(QAbstractSocket *socket) +{ + return socket->d_func()->socketEngine; +} + + /*! \internal Constructs a new abstract socket of type \a socketType. The \a diff --git a/src/network/socket/qabstractsocket_p.h b/src/network/socket/qabstractsocket_p.h index b51c301..7fba0fe 100644 --- a/src/network/socket/qabstractsocket_p.h +++ b/src/network/socket/qabstractsocket_p.h @@ -158,6 +158,13 @@ public: QAbstractSocket::SocketState state; QAbstractSocket::SocketError socketError; + + bool prePauseReadSocketNotifierState; + bool prePauseWriteSocketNotifierState; + bool prePauseExceptionSocketNotifierState; + static void pauseSocketNotifiers(QAbstractSocket*); + static void resumeSocketNotifiers(QAbstractSocket*); + static QAbstractSocketEngine* getSocketEngine(QAbstractSocket*); }; QT_END_NAMESPACE diff --git a/src/network/ssl/qsslsocket.cpp b/src/network/ssl/qsslsocket.cpp index c9f421f..a752720 100644 --- a/src/network/ssl/qsslsocket.cpp +++ b/src/network/ssl/qsslsocket.cpp @@ -2035,6 +2035,20 @@ void QSslSocketPrivate::createPlainSocket(QIODevice::OpenMode openMode) q->setReadBufferSize(readBufferMaxSize); } +void QSslSocketPrivate::pauseSocketNotifiers(QSslSocket *socket) +{ + if (!socket->d_func()->plainSocket) + return; + QAbstractSocketPrivate::pauseSocketNotifiers(socket->d_func()->plainSocket); +} + +void QSslSocketPrivate::resumeSocketNotifiers(QSslSocket *socket) +{ + if (!socket->d_func()->plainSocket) + return; + QAbstractSocketPrivate::resumeSocketNotifiers(socket->d_func()->plainSocket); +} + /*! \internal */ diff --git a/src/network/ssl/qsslsocket_p.h b/src/network/ssl/qsslsocket_p.h index 72b3ef7..94f5f39 100644 --- a/src/network/ssl/qsslsocket_p.h +++ b/src/network/ssl/qsslsocket_p.h @@ -142,6 +142,8 @@ public: // The socket itself, including private slots. QTcpSocket *plainSocket; void createPlainSocket(QIODevice::OpenMode openMode); + static void pauseSocketNotifiers(QSslSocket*); + static void resumeSocketNotifiers(QSslSocket*); void _q_connectedSlot(); void _q_hostFoundSlot(); void _q_disconnectedSlot(); -- cgit v0.12 From 4c29a590cbdd68006906cb8ce3250f8d19caa3d6 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Mon, 18 Oct 2010 16:21:47 +0200 Subject: QAuthenticator: Fix NTLMv2 credential caching of QNAM QNetworkAccessManager used the user() function for caching the credentials when doing HTTP authentication with NTLMv2. For that to work it needs to return the same value as was put in with setUser(). Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/kernel/qauthenticator.cpp | 14 ++++++++------ src/network/kernel/qauthenticator_p.h | 1 + 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/src/network/kernel/qauthenticator.cpp b/src/network/kernel/qauthenticator.cpp index f97d833..220f7da 100644 --- a/src/network/kernel/qauthenticator.cpp +++ b/src/network/kernel/qauthenticator.cpp @@ -232,19 +232,21 @@ void QAuthenticator::setUser(const QString &user) //domain name is present d->realm.clear(); d->userDomain = user.left(separatorPosn); - d->user = user.mid(separatorPosn + 1); + d->extractedUser = user.mid(separatorPosn + 1); + d->user = user; } else if((separatorPosn = user.indexOf(QLatin1String("@"))) != -1) { //domain name is present d->realm.clear(); d->userDomain = user.left(separatorPosn); - d->user = user.left(separatorPosn); + d->extractedUser = user.left(separatorPosn); + d->user = user; } else { + d->extractedUser = user; d->user = user; d->realm.clear(); d->userDomain.clear(); } break; - // For other auth mechanisms, domain name will be part of username default: d->user = user; break; @@ -1196,7 +1198,7 @@ static QByteArray qCreatev2Hash(const QAuthenticatorPrivate *ctx, Q_ASSERT(hashKey.size() == 16); // Assuming the user and domain is always unicode in challenge QByteArray message = - qStringAsUcs2Le(ctx->user.toUpper()) + + qStringAsUcs2Le(ctx->extractedUser.toUpper()) + qStringAsUcs2Le(phase3->domainStr); phase3->v2Hash = qEncodeHmacMd5(hashKey, message); @@ -1401,8 +1403,8 @@ static QByteArray qNtlmPhase3(QAuthenticatorPrivate *ctx, const QByteArray& phas pb.domainStr = ctx->userDomain; } - offset = qEncodeNtlmString(pb.user, offset, ctx->user, unicode); - pb.userStr = ctx->user; + offset = qEncodeNtlmString(pb.user, offset, ctx->extractedUser, unicode); + pb.userStr = ctx->extractedUser; offset = qEncodeNtlmString(pb.workstation, offset, ctx->workstation, unicode); pb.workstationStr = ctx->workstation; diff --git a/src/network/kernel/qauthenticator_p.h b/src/network/kernel/qauthenticator_p.h index 4e09360..9f2e607 100644 --- a/src/network/kernel/qauthenticator_p.h +++ b/src/network/kernel/qauthenticator_p.h @@ -71,6 +71,7 @@ public: QAtomicInt ref; QString user; + QString extractedUser; QString password; QVariantHash options; Method method; -- cgit v0.12 From d18292563cc6bfee3876b830420b1f29c0a6c260 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 16:01:01 +0200 Subject: QNAM: Do not load credentials from cache prematurely The credentials shall only be loaded on demand, e.g. after the HTTP code emits authenticationRequired() Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qnetworkaccessmanager.cpp | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/src/network/access/qnetworkaccessmanager.cpp b/src/network/access/qnetworkaccessmanager.cpp index 12fe094..0d33a46 100644 --- a/src/network/access/qnetworkaccessmanager.cpp +++ b/src/network/access/qnetworkaccessmanager.cpp @@ -1025,16 +1025,8 @@ QNetworkReply *QNetworkAccessManager::createRequest(QNetworkAccessManager::Opera priv->manager = this; // second step: fetch cached credentials - if (static_cast<QNetworkRequest::LoadControl> - (request.attribute(QNetworkRequest::AuthenticationReuseAttribute, - QNetworkRequest::Automatic).toInt()) == QNetworkRequest::Automatic) { - QNetworkAuthenticationCredential *cred = d->fetchCachedCredentials(url); - if (cred) { - url.setUserName(cred->user); - url.setPassword(cred->password); - priv->urlForLastAuthentication = url; - } - } + // This is not done for the time being, we should use signal emissions to request + // the credentials from cache. // third step: find a backend priv->backend = d->findBackend(op, request); @@ -1116,7 +1108,9 @@ void QNetworkAccessManagerPrivate::authenticationRequired(QNetworkAccessBackend // don't try the cache for the same URL twice in a row // being called twice for the same URL means the authentication failed - if (url != backend->reply->urlForLastAuthentication) { + // also called when last URL is empty, e.g. on first call + if (backend->reply->urlForLastAuthentication.isEmpty() + || url != backend->reply->urlForLastAuthentication) { QNetworkAuthenticationCredential *cred = fetchCachedCredentials(url, authenticator); if (cred) { authenticator->setUser(cred->user); -- cgit v0.12 From 9bc5a32b875b812c3a706034c8c27614f86bd138 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 16:05:21 +0200 Subject: QNAM HTTP: Move caching of credentials from URL The credentials are now cached when the request gets sent. Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 11 +++++------ src/network/access/qhttpnetworkconnectionchannel.cpp | 1 + 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index ccdbb20..54a7548 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -338,13 +338,9 @@ bool QHttpNetworkConnectionPrivate::handleAuthenticateChallenge(QAbstractSocket copyCredentials(i, auth, isProxy); QMetaObject::invokeMethod(q, "_q_restartAuthPendingRequests", Qt::QueuedConnection); } - } else if (priv->phase == QAuthenticatorPrivate::Start) { - // If the url's authenticator has a 'user' set we will end up here (phase is only set to 'Done' by - // parseHttpResponse above if 'user' is empty). So if credentials were supplied with the request, - // such as in the case of an XMLHttpRequest, this is our only opportunity to cache them. - emit q->cacheCredentials(reply->request(), auth, q); } - // - Changing values in QAuthenticator will reset the 'phase'. + // - Changing values in QAuthenticator will reset the 'phase'. Therefore if it is still "Done" + // then nothing was filled in by the user or the cache // - If withCredentials has been set to false (e.g. by QtWebKit for a cross-origin XMLHttpRequest) then // we need to bail out if authentication is required. if (priv->phase == QAuthenticatorPrivate::Done || !reply->request().withCredentials()) { @@ -380,6 +376,7 @@ void QHttpNetworkConnectionPrivate::createAuthorization(QAbstractSocket *socket, int i = indexOf(socket); + // Send "Authorization" header, but not if it's NTLM and the socket is already authenticated. if (channels[i].authMehtod != QAuthenticatorPrivate::None) { if (!(channels[i].authMehtod == QAuthenticatorPrivate::Ntlm && channels[i].lastStatus != 401)) { QAuthenticatorPrivate *priv = QAuthenticatorPrivate::getPrivate(channels[i].authenticator); @@ -389,6 +386,8 @@ void QHttpNetworkConnectionPrivate::createAuthorization(QAbstractSocket *socket, } } } + + // Send "Proxy-Authorization" header, but not if it's NTLM and the socket is already authenticated. if (channels[i].proxyAuthMehtod != QAuthenticatorPrivate::None) { if (!(channels[i].proxyAuthMehtod == QAuthenticatorPrivate::Ntlm && channels[i].lastStatus != 407)) { QAuthenticatorPrivate *priv = QAuthenticatorPrivate::getPrivate(channels[i].proxyAuthenticator); diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index d10f951..f83e7c1 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -190,6 +190,7 @@ bool QHttpNetworkConnectionChannel::sendRequest() || (!url.password().isEmpty() && url.password() != auth.password())) { auth.setUser(url.userName()); auth.setPassword(url.password()); + emit connection->cacheCredentials(request, &auth, connection); connection->d_func()->copyCredentials(connection->d_func()->indexOf(socket), &auth, false); } // clear the userinfo, since we use the same request for resending -- cgit v0.12 From f706263856085df62507414ff0bcbadeca6dcfe5 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 16:07:21 +0200 Subject: QNAM HTTP: Do not copy around credentials when using NTLM Copying the username and password messes up the state inside the QAuthenticator. Do not do it. Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index 54a7548..32881b2 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -257,6 +257,13 @@ void QHttpNetworkConnectionPrivate::copyCredentials(int fromChannel, QAuthentica { Q_ASSERT(auth); + // NTLM is a multi phase authentication. Copying credentials between authenticators would mess things up. + if (!isProxy && channels[fromChannel].authMehtod == QAuthenticatorPrivate::Ntlm) + return; + if (isProxy && channels[fromChannel].proxyAuthMehtod == QAuthenticatorPrivate::Ntlm) + return; + + // select another channel QAuthenticator* otherAuth = 0; for (int i = 0; i < channelCount; ++i) { -- cgit v0.12 From 07fd031d29198cc5a0d6f1da6bb8fea29274fa06 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 16:16:38 +0200 Subject: QNAM HTTP: Pause sockets while emitting to user code. This is needed because user code might display a dialog which spins an event loop and could make the sockets readyRead() fire. This event loop recursion is not desired as it can lead to nasty bugs when the state is messed up. Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 82 +++++++++++++++------------ src/network/access/qhttpnetworkconnection_p.h | 15 +++-- 2 files changed, 56 insertions(+), 41 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index 32881b2..f8f7620 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -45,6 +45,7 @@ #include <private/qnetworkrequest_p.h> #include <private/qobject_p.h> #include <private/qauthenticator_p.h> +#include <private/qabstractsocket_p.h> #include <qnetworkproxy.h> #include <qauthenticator.h> @@ -56,6 +57,7 @@ #ifndef QT_NO_HTTP #ifndef QT_NO_OPENSSL +# include <private/qsslsocket_p.h> # include <QtNetwork/qsslkey.h> # include <QtNetwork/qsslcipher.h> # include <QtNetwork/qsslconfiguration.h> @@ -79,9 +81,9 @@ const int QHttpNetworkConnectionPrivate::defaultRePipelineLength = 2; QHttpNetworkConnectionPrivate::QHttpNetworkConnectionPrivate(const QString &hostName, quint16 port, bool encrypt) -: hostName(hostName), port(port), encrypt(encrypt), - channelCount(defaultChannelCount), - pendingAuthSignal(false), pendingProxyAuthSignal(false) +: state(RunningState), + hostName(hostName), port(port), encrypt(encrypt), + channelCount(defaultChannelCount) #ifndef QT_NO_NETWORKPROXY , networkProxy(QNetworkProxy::NoProxy) #endif @@ -90,9 +92,9 @@ QHttpNetworkConnectionPrivate::QHttpNetworkConnectionPrivate(const QString &host } QHttpNetworkConnectionPrivate::QHttpNetworkConnectionPrivate(quint16 channelCount, const QString &hostName, quint16 port, bool encrypt) -: hostName(hostName), port(port), encrypt(encrypt), - channelCount(channelCount), - pendingAuthSignal(false), pendingProxyAuthSignal(false) +: state(RunningState), + hostName(hostName), port(port), encrypt(encrypt), + channelCount(channelCount) #ifndef QT_NO_NETWORKPROXY , networkProxy(QNetworkProxy::NoProxy) #endif @@ -121,6 +123,37 @@ void QHttpNetworkConnectionPrivate::init() } } +void QHttpNetworkConnectionPrivate::pauseConnection() +{ + state = PausedState; + + // Disable all socket notifiers + for (int i = 0; i < channelCount; i++) { + if (encrypt) + QSslSocketPrivate::pauseSocketNotifiers(static_cast<QSslSocket*>(channels[i].socket)); + else + QAbstractSocketPrivate::pauseSocketNotifiers(channels[i].socket); + } +} + +void QHttpNetworkConnectionPrivate::resumeConnection() +{ + state = RunningState; + // Enable all socket notifiers + for (int i = 0; i < channelCount; i++) { + if (encrypt) + QSslSocketPrivate::resumeSocketNotifiers(static_cast<QSslSocket*>(channels[i].socket)); + else + QAbstractSocketPrivate::resumeSocketNotifiers(channels[i].socket); + } + + // Resume uploads + // FIXME + + // queue _q_startNextRequest + QMetaObject::invokeMethod(this->q_func(), "_q_startNextRequest", Qt::QueuedConnection); +} + int QHttpNetworkConnectionPrivate::indexOf(QAbstractSocket *socket) const { for (int i = 0; i < channelCount; ++i) @@ -315,35 +348,19 @@ bool QHttpNetworkConnectionPrivate::handleAuthenticateChallenge(QAbstractSocket priv->parseHttpResponse(fields, isProxy); if (priv->phase == QAuthenticatorPrivate::Done) { - if ((isProxy && pendingProxyAuthSignal) ||(!isProxy && pendingAuthSignal)) { - // drop the request - reply->d_func()->eraseData(); - channels[i].close(); - channels[i].lastStatus = 0; - channels[i].state = QHttpNetworkConnectionChannel::Wait4AuthState; - return false; - } - // cannot use this socket until the slot returns - channels[i].state = QHttpNetworkConnectionChannel::WaitingState; - socket->blockSignals(true); + pauseConnection(); if (!isProxy) { - pendingAuthSignal = true; emit q->authenticationRequired(reply->request(), auth, q); - pendingAuthSignal = false; #ifndef QT_NO_NETWORKPROXY } else { - pendingProxyAuthSignal = true; emit q->proxyAuthenticationRequired(networkProxy, auth, q); - pendingProxyAuthSignal = false; #endif } - socket->blockSignals(false); - // socket free to use - channels[i].state = QHttpNetworkConnectionChannel::IdleState; + resumeConnection(); + if (priv->phase != QAuthenticatorPrivate::Done) { // send any pending requests copyCredentials(i, auth, isProxy); - QMetaObject::invokeMethod(q, "_q_restartAuthPendingRequests", Qt::QueuedConnection); } } // - Changing values in QAuthenticator will reset the 'phase'. Therefore if it is still "Done" @@ -729,6 +746,10 @@ void QHttpNetworkConnectionPrivate::removeReply(QHttpNetworkReply *reply) // although it is called _q_startNextRequest, it will actually start multiple requests when possible void QHttpNetworkConnectionPrivate::_q_startNextRequest() { + // If the QHttpNetworkConnection is currently paused then bail out immediatly + if (state == PausedState) + return; + //resend the necessary ones. for (int i = 0; i < channelCount; ++i) { if (channels[i].resendCurrent) { @@ -779,17 +800,6 @@ void QHttpNetworkConnectionPrivate::_q_startNextRequest() fillPipeline(channels[i].socket); } -void QHttpNetworkConnectionPrivate::_q_restartAuthPendingRequests() -{ - // send the request using the idle socket - for (int i = 0 ; i < channelCount; ++i) { - if (channels[i].state == QHttpNetworkConnectionChannel::Wait4AuthState) { - channels[i].state = QHttpNetworkConnectionChannel::IdleState; - if (channels[i].reply) - channels[i].sendRequest(); - } - } -} void QHttpNetworkConnectionPrivate::readMoreLater(QHttpNetworkReply *reply) { diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index 51666d6..f2e0b1c 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -141,10 +141,10 @@ private: Q_DECLARE_PRIVATE(QHttpNetworkConnection) Q_DISABLE_COPY(QHttpNetworkConnection) friend class QHttpNetworkReply; + friend class QHttpNetworkReplyPrivate; friend class QHttpNetworkConnectionChannel; Q_PRIVATE_SLOT(d_func(), void _q_startNextRequest()) - Q_PRIVATE_SLOT(d_func(), void _q_restartAuthPendingRequests()) }; @@ -160,11 +160,20 @@ public: static const int defaultPipelineLength; static const int defaultRePipelineLength; + enum ConnectionState { + RunningState = 0, + PausedState = 1, + }; + QHttpNetworkConnectionPrivate(const QString &hostName, quint16 port, bool encrypt); QHttpNetworkConnectionPrivate(quint16 channelCount, const QString &hostName, quint16 port, bool encrypt); ~QHttpNetworkConnectionPrivate(); void init(); + void pauseConnection(); + void resumeConnection(); + ConnectionState state; + enum { ChunkSize = 4096 }; int indexOf(QAbstractSocket *socket) const; @@ -184,7 +193,6 @@ public: // private slots void _q_startNextRequest(); // send the next request from the queue - void _q_restartAuthPendingRequests(); // send the currently blocked request void createAuthorization(QAbstractSocket *socket, QHttpNetworkRequest &request); @@ -203,9 +211,6 @@ public: const int channelCount; QHttpNetworkConnectionChannel *channels; // parallel connections to the server - bool pendingAuthSignal; // there is an incomplete authentication signal - bool pendingProxyAuthSignal; // there is an incomplete proxy authentication signal - qint64 uncompressedBytesAvailable(const QHttpNetworkReply &reply) const; qint64 uncompressedBytesAvailableNextBlock(const QHttpNetworkReply &reply) const; -- cgit v0.12 From 04cc5144a8d1d1eb51fb627327e155649ba2ce45 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 16:19:29 +0200 Subject: QNAM HTTP: Process authenticationRequired() from HTTP properly Fixes a bug where a different QNetworkReply(Impl) handles an authentication request. Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 2 +- src/network/access/qhttpnetworkconnection_p.h | 2 +- src/network/access/qnetworkaccesshttpbackend.cpp | 11 +++++++---- src/network/access/qnetworkaccesshttpbackend_p.h | 2 +- .../qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp | 8 ++++---- 5 files changed, 14 insertions(+), 11 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index f8f7620..f6cb530 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -350,7 +350,7 @@ bool QHttpNetworkConnectionPrivate::handleAuthenticateChallenge(QAbstractSocket if (priv->phase == QAuthenticatorPrivate::Done) { pauseConnection(); if (!isProxy) { - emit q->authenticationRequired(reply->request(), auth, q); + emit q->authenticationRequired(reply, reply->request(), auth, q); #ifndef QT_NO_NETWORKPROXY } else { emit q->proxyAuthenticationRequired(networkProxy, auth, q); diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index f2e0b1c..875c978 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -131,7 +131,7 @@ Q_SIGNALS: void proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator, const QHttpNetworkConnection *connection = 0); #endif - void authenticationRequired(const QHttpNetworkRequest &request, QAuthenticator *authenticator, + void authenticationRequired(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *authenticator, const QHttpNetworkConnection *connection = 0); void cacheCredentials(const QHttpNetworkRequest &request, QAuthenticator *authenticator, const QHttpNetworkConnection *connection = 0); diff --git a/src/network/access/qnetworkaccesshttpbackend.cpp b/src/network/access/qnetworkaccesshttpbackend.cpp index f617244..2af4987 100644 --- a/src/network/access/qnetworkaccesshttpbackend.cpp +++ b/src/network/access/qnetworkaccesshttpbackend.cpp @@ -344,8 +344,8 @@ void QNetworkAccessHttpBackend::setupConnection() connect(http, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)), SLOT(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*))); #endif - connect(http, SIGNAL(authenticationRequired(QHttpNetworkRequest,QAuthenticator*)), - SLOT(httpAuthenticationRequired(QHttpNetworkRequest,QAuthenticator*))); + connect(http, SIGNAL(authenticationRequired(const QHttpNetworkReply*, QHttpNetworkRequest,QAuthenticator*,const QHttpNetworkConnection*)), + SLOT(httpAuthenticationRequired(const QHttpNetworkReply*, QHttpNetworkRequest,QAuthenticator*))); connect(http, SIGNAL(cacheCredentials(QHttpNetworkRequest,QAuthenticator*)), SLOT(httpCacheCredentials(QHttpNetworkRequest,QAuthenticator*))); connect(http, SIGNAL(error(QNetworkReply::NetworkError,QString)), @@ -862,10 +862,13 @@ void QNetworkAccessHttpBackend::replyHeaderChanged() metaDataChanged(); } -void QNetworkAccessHttpBackend::httpAuthenticationRequired(const QHttpNetworkRequest &, +void QNetworkAccessHttpBackend::httpAuthenticationRequired(const QHttpNetworkReply *reply, + const QHttpNetworkRequest &, QAuthenticator *auth) { - authenticationRequired(auth); + // Only process this signal when it is for the QHttpNetworkReply that we actually have + if (reply == this->httpReply) + authenticationRequired(auth); } void QNetworkAccessHttpBackend::httpCacheCredentials(const QHttpNetworkRequest &, diff --git a/src/network/access/qnetworkaccesshttpbackend_p.h b/src/network/access/qnetworkaccesshttpbackend_p.h index c4c88ae..f06f364 100644 --- a/src/network/access/qnetworkaccesshttpbackend_p.h +++ b/src/network/access/qnetworkaccesshttpbackend_p.h @@ -104,7 +104,7 @@ private slots: void replyReadyRead(); void replyFinished(); void replyHeaderChanged(); - void httpAuthenticationRequired(const QHttpNetworkRequest &request, QAuthenticator *auth); + void httpAuthenticationRequired(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *auth); void httpCacheCredentials(const QHttpNetworkRequest &request, QAuthenticator *auth); void httpError(QNetworkReply::NetworkError error, const QString &errorString); bool sendCacheContents(const QNetworkCacheMetaData &metaData); diff --git a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp index 89f608e..c0f503b 100644 --- a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp +++ b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp @@ -57,7 +57,7 @@ public: public Q_SLOTS: void finishedReply(); void finishedWithError(QNetworkReply::NetworkError errorCode, const QString &detail); - void challenge401(const QHttpNetworkRequest &request, QAuthenticator *authenticator, const QHttpNetworkConnection *connection); + void challenge401(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *authenticator, const QHttpNetworkConnection *connection); #ifndef QT_NO_OPENSSL void sslErrors(const QList<QSslError> &errors); #endif @@ -495,7 +495,7 @@ void tst_QHttpNetworkConnection::_connect() QVERIFY(false); } -void tst_QHttpNetworkConnection::challenge401(const QHttpNetworkRequest &request, +void tst_QHttpNetworkConnection::challenge401(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *authenticator, const QHttpNetworkConnection *connection) { @@ -552,8 +552,8 @@ void tst_QHttpNetworkConnection::get401() if (encrypt) connection.enableEncryption(); QCOMPARE(connection.isEncrypted(), encrypt); - connect(&connection, SIGNAL(authenticationRequired(const QHttpNetworkRequest&, QAuthenticator *, const QHttpNetworkConnection*)), - SLOT(challenge401(const QHttpNetworkRequest&, QAuthenticator *, const QHttpNetworkConnection*))); + connect(&connection, SIGNAL(authenticationRequired(const QHttpNetworkReply*, const QHttpNetworkRequest&, QAuthenticator *, const QHttpNetworkConnection*)), + SLOT(challenge401(const QHttpNetworkReply*, const QHttpNetworkRequest&, QAuthenticator *, const QHttpNetworkConnection*))); connection.setProperty("setCredentials", setCredentials); connection.setProperty("username", username); connection.setProperty("password", password); -- cgit v0.12 From a8818493d4c782527dec7c30e9688d0e45a21351 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 16:38:48 +0200 Subject: QNAM HTTP: Also resume uploads after connection pause Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index f6cb530..8e8c34d 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -145,10 +145,11 @@ void QHttpNetworkConnectionPrivate::resumeConnection() QSslSocketPrivate::resumeSocketNotifiers(static_cast<QSslSocket*>(channels[i].socket)); else QAbstractSocketPrivate::resumeSocketNotifiers(channels[i].socket); - } - // Resume uploads - // FIXME + // Resume pending upload if needed + if (channels[i].state == QHttpNetworkConnectionChannel::WritingState) + QMetaObject::invokeMethod(&channels[i], "_q_uploadDataReadyRead", Qt::QueuedConnection); + } // queue _q_startNextRequest QMetaObject::invokeMethod(this->q_func(), "_q_startNextRequest", Qt::QueuedConnection); -- cgit v0.12 From 0284bd11c8062108f8cff85175341bc9823b8ab4 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 17:20:31 +0200 Subject: QNAM HTTP: Also pause connection when emitting sslErrors() Pause the socket notifiers because the user could be displaying a dialog which makes the event loop run and could make our socket notifiers fire. Reviewed-by: Peter Hartmann Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnectionchannel.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index f83e7c1..d6b3f94 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -1035,7 +1035,11 @@ void QHttpNetworkConnectionChannel::_q_sslErrors(const QList<QSslError> &errors) if (!socket) return; //QNetworkReply::NetworkError errorCode = QNetworkReply::ProtocolFailure; + // Also pause the connection because socket notifiers may fire while an user + // dialog is displaying + connection->d_func()->pauseConnection(); emit connection->sslErrors(errors); + connection->d_func()->resumeConnection(); } void QHttpNetworkConnectionChannel::_q_encryptedBytesWritten(qint64 bytes) -- cgit v0.12 From 32da94f1e58cf8591610bd3676ba448b5d7e55c0 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 17:25:38 +0200 Subject: QNAM HTTP: Pause connection when emitting proxy auth signal Pause the socket notifiers because the user could be displaying a dialog which makes the event loop run and could make our socket notifiers fire. Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index 8e8c34d..d861cc1 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -969,7 +969,11 @@ void QHttpNetworkConnection::ignoreSslErrors(const QList<QSslError> &errors, int void QHttpNetworkConnectionPrivate::emitProxyAuthenticationRequired(const QHttpNetworkConnectionChannel *chan, const QNetworkProxy &proxy, QAuthenticator* auth) { Q_Q(QHttpNetworkConnection); + // Also pause the connection because socket notifiers may fire while an user + // dialog is displaying + pauseConnection(); emit q->proxyAuthenticationRequired(proxy, auth, q); + resumeConnection(); int i = indexOf(chan->socket); copyCredentials(i, auth, true); } -- cgit v0.12 From cbe5481271ff5470db047d7f133073ec37cf487c Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 19 Oct 2010 17:32:47 +0200 Subject: QNAM HTTP: Internal variable spelling mistakes Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 16 ++++++++-------- src/network/access/qhttpnetworkconnectionchannel.cpp | 4 ++-- src/network/access/qhttpnetworkconnectionchannel_p.h | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index d861cc1..b7380b5 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -292,9 +292,9 @@ void QHttpNetworkConnectionPrivate::copyCredentials(int fromChannel, QAuthentica Q_ASSERT(auth); // NTLM is a multi phase authentication. Copying credentials between authenticators would mess things up. - if (!isProxy && channels[fromChannel].authMehtod == QAuthenticatorPrivate::Ntlm) + if (!isProxy && channels[fromChannel].authMethod == QAuthenticatorPrivate::Ntlm) return; - if (isProxy && channels[fromChannel].proxyAuthMehtod == QAuthenticatorPrivate::Ntlm) + if (isProxy && channels[fromChannel].proxyAuthMethod == QAuthenticatorPrivate::Ntlm) return; @@ -337,10 +337,10 @@ bool QHttpNetworkConnectionPrivate::handleAuthenticateChallenge(QAbstractSocket QAuthenticator* auth = 0; if (isProxy) { auth = &channels[i].proxyAuthenticator; - channels[i].proxyAuthMehtod = authMethod; + channels[i].proxyAuthMethod = authMethod; } else { auth = &channels[i].authenticator; - channels[i].authMehtod = authMethod; + channels[i].authMethod = authMethod; } //proceed with the authentication. if (auth->isNull()) @@ -402,8 +402,8 @@ void QHttpNetworkConnectionPrivate::createAuthorization(QAbstractSocket *socket, int i = indexOf(socket); // Send "Authorization" header, but not if it's NTLM and the socket is already authenticated. - if (channels[i].authMehtod != QAuthenticatorPrivate::None) { - if (!(channels[i].authMehtod == QAuthenticatorPrivate::Ntlm && channels[i].lastStatus != 401)) { + if (channels[i].authMethod != QAuthenticatorPrivate::None) { + if (!(channels[i].authMethod == QAuthenticatorPrivate::Ntlm && channels[i].lastStatus != 401)) { QAuthenticatorPrivate *priv = QAuthenticatorPrivate::getPrivate(channels[i].authenticator); if (priv && priv->method != QAuthenticatorPrivate::None) { QByteArray response = priv->calculateResponse(request.d->methodName(), request.d->uri(false)); @@ -413,8 +413,8 @@ void QHttpNetworkConnectionPrivate::createAuthorization(QAbstractSocket *socket, } // Send "Proxy-Authorization" header, but not if it's NTLM and the socket is already authenticated. - if (channels[i].proxyAuthMehtod != QAuthenticatorPrivate::None) { - if (!(channels[i].proxyAuthMehtod == QAuthenticatorPrivate::Ntlm && channels[i].lastStatus != 407)) { + if (channels[i].proxyAuthMethod != QAuthenticatorPrivate::None) { + if (!(channels[i].proxyAuthMethod == QAuthenticatorPrivate::Ntlm && channels[i].lastStatus != 407)) { QAuthenticatorPrivate *priv = QAuthenticatorPrivate::getPrivate(channels[i].proxyAuthenticator); if (priv && priv->method != QAuthenticatorPrivate::None) { QByteArray response = priv->calculateResponse(request.d->methodName(), request.d->uri(false)); diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index d6b3f94..58e2b2f 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -68,8 +68,8 @@ QHttpNetworkConnectionChannel::QHttpNetworkConnectionChannel() , lastStatus(0) , pendingEncrypt(false) , reconnectAttempts(2) - , authMehtod(QAuthenticatorPrivate::None) - , proxyAuthMehtod(QAuthenticatorPrivate::None) + , authMethod(QAuthenticatorPrivate::None) + , proxyAuthMethod(QAuthenticatorPrivate::None) #ifndef QT_NO_OPENSSL , ignoreAllSslErrors(false) #endif diff --git a/src/network/access/qhttpnetworkconnectionchannel_p.h b/src/network/access/qhttpnetworkconnectionchannel_p.h index 41a896d..2b1be2c 100644 --- a/src/network/access/qhttpnetworkconnectionchannel_p.h +++ b/src/network/access/qhttpnetworkconnectionchannel_p.h @@ -108,8 +108,8 @@ public: int lastStatus; // last status received on this channel bool pendingEncrypt; // for https (send after encrypted) int reconnectAttempts; // maximum 2 reconnection attempts - QAuthenticatorPrivate::Method authMehtod; - QAuthenticatorPrivate::Method proxyAuthMehtod; + QAuthenticatorPrivate::Method authMethod; + QAuthenticatorPrivate::Method proxyAuthMethod; QAuthenticator authenticator; QAuthenticator proxyAuthenticator; #ifndef QT_NO_OPENSSL -- cgit v0.12 From 7647fdaf9a4b526581e02fbd0e87c41a96cbfebb Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Mon, 25 Oct 2010 12:00:58 +0200 Subject: QNAM: Internal function renaming Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qnetworkaccessbackend.cpp | 2 +- src/network/access/qnetworkaccessmanager.cpp | 12 ++++++------ src/network/access/qnetworkaccessmanager_p.h | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/network/access/qnetworkaccessbackend.cpp b/src/network/access/qnetworkaccessbackend.cpp index 60f7dc6..0a0987a 100644 --- a/src/network/access/qnetworkaccessbackend.cpp +++ b/src/network/access/qnetworkaccessbackend.cpp @@ -329,7 +329,7 @@ void QNetworkAccessBackend::authenticationRequired(QAuthenticator *authenticator void QNetworkAccessBackend::cacheCredentials(QAuthenticator *authenticator) { - manager->addCredentials(this->reply->url, authenticator); + manager->cacheCredentials(this->reply->url, authenticator); } void QNetworkAccessBackend::metaDataChanged() diff --git a/src/network/access/qnetworkaccessmanager.cpp b/src/network/access/qnetworkaccessmanager.cpp index 0d33a46..e5f4d5a 100644 --- a/src/network/access/qnetworkaccessmanager.cpp +++ b/src/network/access/qnetworkaccessmanager.cpp @@ -1122,7 +1122,7 @@ void QNetworkAccessManagerPrivate::authenticationRequired(QNetworkAccessBackend backend->reply->urlForLastAuthentication = url; emit q->authenticationRequired(backend->reply->q_func(), authenticator); - addCredentials(url, authenticator); + cacheCredentials(url, authenticator); } #ifndef QT_NO_NETWORKPROXY @@ -1139,7 +1139,7 @@ void QNetworkAccessManagerPrivate::proxyAuthenticationRequired(QNetworkAccessBac // possible solution: some tracking inside the authenticator // or a new function proxyAuthenticationSucceeded(true|false) if (proxy != backend->reply->lastProxyAuthentication) { - QNetworkAuthenticationCredential *cred = fetchCachedCredentials(proxy); + QNetworkAuthenticationCredential *cred = fetchCachedProxyCredentials(proxy); if (cred) { authenticator->setUser(cred->user); authenticator->setPassword(cred->password); @@ -1149,10 +1149,10 @@ void QNetworkAccessManagerPrivate::proxyAuthenticationRequired(QNetworkAccessBac backend->reply->lastProxyAuthentication = proxy; emit q->proxyAuthenticationRequired(proxy, authenticator); - addCredentials(proxy, authenticator); + cacheProxyCredentials(proxy, authenticator); } -void QNetworkAccessManagerPrivate::addCredentials(const QNetworkProxy &p, +void QNetworkAccessManagerPrivate::cacheProxyCredentials(const QNetworkProxy &p, const QAuthenticator *authenticator) { Q_ASSERT(authenticator); @@ -1189,7 +1189,7 @@ void QNetworkAccessManagerPrivate::addCredentials(const QNetworkProxy &p, } QNetworkAuthenticationCredential * -QNetworkAccessManagerPrivate::fetchCachedCredentials(const QNetworkProxy &p, +QNetworkAccessManagerPrivate::fetchCachedProxyCredentials(const QNetworkProxy &p, const QAuthenticator *authenticator) { QNetworkProxy proxy = p; @@ -1241,7 +1241,7 @@ QList<QNetworkProxy> QNetworkAccessManagerPrivate::queryProxy(const QNetworkProx } #endif -void QNetworkAccessManagerPrivate::addCredentials(const QUrl &url, +void QNetworkAccessManagerPrivate::cacheCredentials(const QUrl &url, const QAuthenticator *authenticator) { Q_ASSERT(authenticator); diff --git a/src/network/access/qnetworkaccessmanager_p.h b/src/network/access/qnetworkaccessmanager_p.h index 695842c..2c6ee10 100644 --- a/src/network/access/qnetworkaccessmanager_p.h +++ b/src/network/access/qnetworkaccessmanager_p.h @@ -91,15 +91,15 @@ public: void createCookieJar() const; void authenticationRequired(QNetworkAccessBackend *backend, QAuthenticator *authenticator); - void addCredentials(const QUrl &url, const QAuthenticator *auth); + void cacheCredentials(const QUrl &url, const QAuthenticator *auth); QNetworkAuthenticationCredential *fetchCachedCredentials(const QUrl &url, const QAuthenticator *auth = 0); #ifndef QT_NO_NETWORKPROXY void proxyAuthenticationRequired(QNetworkAccessBackend *backend, const QNetworkProxy &proxy, QAuthenticator *authenticator); - void addCredentials(const QNetworkProxy &proxy, const QAuthenticator *auth); - QNetworkAuthenticationCredential *fetchCachedCredentials(const QNetworkProxy &proxy, + void cacheProxyCredentials(const QNetworkProxy &proxy, const QAuthenticator *auth); + QNetworkAuthenticationCredential *fetchCachedProxyCredentials(const QNetworkProxy &proxy, const QAuthenticator *auth = 0); QList<QNetworkProxy> queryProxy(const QNetworkProxyQuery &query); #endif -- cgit v0.12 From 6765569901a12fc70be2c1921d79b377898df9ae Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 26 Oct 2010 14:19:18 +0200 Subject: QNAM HTTP: Remove Wait4AuthState Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 5 ----- src/network/access/qhttpnetworkconnectionchannel.cpp | 1 - src/network/access/qhttpnetworkconnectionchannel_p.h | 3 +-- 3 files changed, 1 insertion(+), 8 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index b7380b5..1166a9a 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -381,11 +381,6 @@ bool QHttpNetworkConnectionPrivate::handleAuthenticateChallenge(QAbstractSocket emit channels[i].reply->finished(); // ### at this point the reply could be deleted socket->close(); - // remove pending request on the other channels - for (int j = 0; j < channelCount; ++j) { - if (j != i && channels[j].state == QHttpNetworkConnectionChannel::Wait4AuthState) - channels[j].state = QHttpNetworkConnectionChannel::IdleState; - } return true; } //resend the request diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index 58e2b2f..329b0b2 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -310,7 +310,6 @@ bool QHttpNetworkConnectionChannel::sendRequest() break; } case QHttpNetworkConnectionChannel::ReadingState: - case QHttpNetworkConnectionChannel::Wait4AuthState: // ignore _q_bytesWritten in these states // fall through default: diff --git a/src/network/access/qhttpnetworkconnectionchannel_p.h b/src/network/access/qhttpnetworkconnectionchannel_p.h index 2b1be2c..442086a 100644 --- a/src/network/access/qhttpnetworkconnectionchannel_p.h +++ b/src/network/access/qhttpnetworkconnectionchannel_p.h @@ -95,8 +95,7 @@ public: WritingState = 2, // writing the data WaitingState = 4, // waiting for reply ReadingState = 8, // reading the reply - Wait4AuthState = 0x10, // blocked for send till the current authentication slot is done - BusyState = (ConnectingState|WritingState|WaitingState|ReadingState|Wait4AuthState) + BusyState = (ConnectingState|WritingState|WaitingState|ReadingState) }; QAbstractSocket *socket; ChannelState state; -- cgit v0.12 From 300523dfba881e5464da24cf6106890f3c803cd0 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 26 Oct 2010 15:29:44 +0200 Subject: QNAM HTTP: Use sslErrors() from QHttpNetworkReply Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection_p.h | 3 --- src/network/access/qhttpnetworkconnectionchannel.cpp | 2 +- src/network/access/qhttpnetworkreply.cpp | 5 +++++ src/network/access/qhttpnetworkreply_p.h | 2 ++ src/network/access/qnetworkaccesshttpbackend.cpp | 6 ++---- .../auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp | 10 ++++++---- 6 files changed, 16 insertions(+), 12 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index 875c978..e20c795 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -120,9 +120,6 @@ public: void setSslConfiguration(const QSslConfiguration &config); void ignoreSslErrors(int channel = -1); void ignoreSslErrors(const QList<QSslError> &errors, int channel = -1); - -Q_SIGNALS: - void sslErrors(const QList<QSslError> &errors); #endif Q_SIGNALS: diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index 329b0b2..9c504ba 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -1037,7 +1037,7 @@ void QHttpNetworkConnectionChannel::_q_sslErrors(const QList<QSslError> &errors) // Also pause the connection because socket notifiers may fire while an user // dialog is displaying connection->d_func()->pauseConnection(); - emit connection->sslErrors(errors); + emit reply->sslErrors(errors); connection->d_func()->resumeConnection(); } diff --git a/src/network/access/qhttpnetworkreply.cpp b/src/network/access/qhttpnetworkreply.cpp index 108ba8a..e4eb7c4 100644 --- a/src/network/access/qhttpnetworkreply.cpp +++ b/src/network/access/qhttpnetworkreply.cpp @@ -205,6 +205,11 @@ bool QHttpNetworkReply::isPipeliningUsed() const return d_func()->pipeliningUsed; } +QHttpNetworkConnection* QHttpNetworkReply::connection() +{ + return d_func()->connection; +} + QHttpNetworkReplyPrivate::QHttpNetworkReplyPrivate(const QUrl &newUrl) : QHttpNetworkHeaderPrivate(newUrl), state(NothingDoneState), statusCode(100), diff --git a/src/network/access/qhttpnetworkreply_p.h b/src/network/access/qhttpnetworkreply_p.h index 4011c78..7cfd8b2 100644 --- a/src/network/access/qhttpnetworkreply_p.h +++ b/src/network/access/qhttpnetworkreply_p.h @@ -132,6 +132,8 @@ public: bool isPipeliningUsed() const; + QHttpNetworkConnection* connection(); + #ifndef QT_NO_OPENSSL QSslConfiguration sslConfiguration() const; void setSslConfiguration(const QSslConfiguration &config); diff --git a/src/network/access/qnetworkaccesshttpbackend.cpp b/src/network/access/qnetworkaccesshttpbackend.cpp index 2af4987..c425600 100644 --- a/src/network/access/qnetworkaccesshttpbackend.cpp +++ b/src/network/access/qnetworkaccesshttpbackend.cpp @@ -350,10 +350,6 @@ void QNetworkAccessHttpBackend::setupConnection() SLOT(httpCacheCredentials(QHttpNetworkRequest,QAuthenticator*))); connect(http, SIGNAL(error(QNetworkReply::NetworkError,QString)), SLOT(httpError(QNetworkReply::NetworkError,QString))); -#ifndef QT_NO_OPENSSL - connect(http, SIGNAL(sslErrors(QList<QSslError>)), - SLOT(sslErrors(QList<QSslError>))); -#endif } /* @@ -593,6 +589,8 @@ void QNetworkAccessHttpBackend::postRequest() if (pendingIgnoreAllSslErrors) httpReply->ignoreSslErrors(); httpReply->ignoreSslErrors(pendingIgnoreSslErrorsList); + connect(httpReply, SIGNAL(sslErrors(QList<QSslError>)), + SLOT(sslErrors(QList<QSslError>))); #endif connect(httpReply, SIGNAL(readyRead()), SLOT(replyReadyRead())); diff --git a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp index c0f503b..ecfd462 100644 --- a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp +++ b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp @@ -668,8 +668,10 @@ void tst_QHttpNetworkConnection::sslErrors(const QList<QSslError> &errors) { Q_UNUSED(errors) - QHttpNetworkConnection *connection = qobject_cast<QHttpNetworkConnection*>(sender()); - if (connection) { + QHttpNetworkReply *reply = qobject_cast<QHttpNetworkReply*>(sender()); + if (reply) { + QHttpNetworkConnection *connection = reply->connection(); + QVariant val = connection->property("ignoreFromSignal"); if (val.toBool()) connection->ignoreSslErrors(); @@ -716,12 +718,12 @@ void tst_QHttpNetworkConnection::ignoresslerror() if (ignoreInit) connection.ignoreSslErrors(); QCOMPARE(connection.isEncrypted(), encrypt); - connect(&connection, SIGNAL(sslErrors(const QList<QSslError>&)), - SLOT(sslErrors(const QList<QSslError>&))); connection.setProperty("ignoreFromSignal", ignoreFromSignal); QHttpNetworkRequest request(protocol + host + path); QHttpNetworkReply *reply = connection.sendRequest(request); + connect(reply, SIGNAL(sslErrors(const QList<QSslError>&)), + SLOT(sslErrors(const QList<QSslError>&))); finishedWithErrorCalled = false; -- cgit v0.12 From 3b87e4639edb2c7050c5ae74fa8280fd120b8de1 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 26 Oct 2010 15:35:10 +0200 Subject: QNAM HTTP: Move cacheCredentials() to QHttpNetworkReply Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection_p.h | 2 -- src/network/access/qhttpnetworkconnectionchannel.cpp | 2 +- src/network/access/qhttpnetworkreply_p.h | 1 + src/network/access/qnetworkaccesshttpbackend.cpp | 4 ++-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index e20c795..f8c4bb4 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -130,8 +130,6 @@ Q_SIGNALS: #endif void authenticationRequired(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *authenticator, const QHttpNetworkConnection *connection = 0); - void cacheCredentials(const QHttpNetworkRequest &request, QAuthenticator *authenticator, - const QHttpNetworkConnection *connection = 0); void error(QNetworkReply::NetworkError errorCode, const QString &detail = QString()); private: diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index 9c504ba..52a8e72 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -190,7 +190,7 @@ bool QHttpNetworkConnectionChannel::sendRequest() || (!url.password().isEmpty() && url.password() != auth.password())) { auth.setUser(url.userName()); auth.setPassword(url.password()); - emit connection->cacheCredentials(request, &auth, connection); + emit reply->cacheCredentials(request, &auth); connection->d_func()->copyCredentials(connection->d_func()->indexOf(socket), &auth, false); } // clear the userinfo, since we use the same request for resending diff --git a/src/network/access/qhttpnetworkreply_p.h b/src/network/access/qhttpnetworkreply_p.h index 7cfd8b2..79966fd 100644 --- a/src/network/access/qhttpnetworkreply_p.h +++ b/src/network/access/qhttpnetworkreply_p.h @@ -151,6 +151,7 @@ Q_SIGNALS: void headerChanged(); void dataReadProgress(int done, int total); void dataSendProgress(qint64 done, qint64 total); + void cacheCredentials(const QHttpNetworkRequest &request, QAuthenticator *authenticator); private: Q_DECLARE_PRIVATE(QHttpNetworkReply) diff --git a/src/network/access/qnetworkaccesshttpbackend.cpp b/src/network/access/qnetworkaccesshttpbackend.cpp index c425600..3bad2fe 100644 --- a/src/network/access/qnetworkaccesshttpbackend.cpp +++ b/src/network/access/qnetworkaccesshttpbackend.cpp @@ -346,8 +346,6 @@ void QNetworkAccessHttpBackend::setupConnection() #endif connect(http, SIGNAL(authenticationRequired(const QHttpNetworkReply*, QHttpNetworkRequest,QAuthenticator*,const QHttpNetworkConnection*)), SLOT(httpAuthenticationRequired(const QHttpNetworkReply*, QHttpNetworkRequest,QAuthenticator*))); - connect(http, SIGNAL(cacheCredentials(QHttpNetworkRequest,QAuthenticator*)), - SLOT(httpCacheCredentials(QHttpNetworkRequest,QAuthenticator*))); connect(http, SIGNAL(error(QNetworkReply::NetworkError,QString)), SLOT(httpError(QNetworkReply::NetworkError,QString))); } @@ -598,6 +596,8 @@ void QNetworkAccessHttpBackend::postRequest() connect(httpReply, SIGNAL(finishedWithError(QNetworkReply::NetworkError,QString)), SLOT(httpError(QNetworkReply::NetworkError,QString))); connect(httpReply, SIGNAL(headerChanged()), SLOT(replyHeaderChanged())); + connect(httpReply, SIGNAL(cacheCredentials(QHttpNetworkRequest,QAuthenticator*)), + SLOT(httpCacheCredentials(QHttpNetworkRequest,QAuthenticator*))); } void QNetworkAccessHttpBackend::invalidateCache() -- cgit v0.12 From fb404765a5af559598dc5b3906e45d8c5e48884b Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 26 Oct 2010 15:48:42 +0200 Subject: QNAM HTTP: Move proxyAuthenticationRequired() to QHttpNetworkReply Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 5 ++--- src/network/access/qhttpnetworkconnection_p.h | 5 ----- src/network/access/qhttpnetworkreply_p.h | 4 +++- src/network/access/qnetworkaccesshttpbackend.cpp | 8 ++++---- 4 files changed, 9 insertions(+), 13 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index 1166a9a..f266322 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -354,7 +354,7 @@ bool QHttpNetworkConnectionPrivate::handleAuthenticateChallenge(QAbstractSocket emit q->authenticationRequired(reply, reply->request(), auth, q); #ifndef QT_NO_NETWORKPROXY } else { - emit q->proxyAuthenticationRequired(networkProxy, auth, q); + emit reply->proxyAuthenticationRequired(networkProxy, auth); #endif } resumeConnection(); @@ -963,11 +963,10 @@ void QHttpNetworkConnection::ignoreSslErrors(const QList<QSslError> &errors, int // e.g. it is for SOCKS proxies which require authentication. void QHttpNetworkConnectionPrivate::emitProxyAuthenticationRequired(const QHttpNetworkConnectionChannel *chan, const QNetworkProxy &proxy, QAuthenticator* auth) { - Q_Q(QHttpNetworkConnection); // Also pause the connection because socket notifiers may fire while an user // dialog is displaying pauseConnection(); - emit q->proxyAuthenticationRequired(proxy, auth, q); + emit chan->reply->proxyAuthenticationRequired(proxy, auth); resumeConnection(); int i = indexOf(chan->socket); copyCredentials(i, auth, true); diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index f8c4bb4..af33bf9 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -123,11 +123,6 @@ public: #endif Q_SIGNALS: -#ifndef QT_NO_NETWORKPROXY - //cannot be used with queued connection. - void proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator, - const QHttpNetworkConnection *connection = 0); -#endif void authenticationRequired(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *authenticator, const QHttpNetworkConnection *connection = 0); void error(QNetworkReply::NetworkError errorCode, const QString &detail = QString()); diff --git a/src/network/access/qhttpnetworkreply_p.h b/src/network/access/qhttpnetworkreply_p.h index 79966fd..b4a14f9 100644 --- a/src/network/access/qhttpnetworkreply_p.h +++ b/src/network/access/qhttpnetworkreply_p.h @@ -152,7 +152,9 @@ Q_SIGNALS: void dataReadProgress(int done, int total); void dataSendProgress(qint64 done, qint64 total); void cacheCredentials(const QHttpNetworkRequest &request, QAuthenticator *authenticator); - +#ifndef QT_NO_NETWORKPROXY + void proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator); +#endif private: Q_DECLARE_PRIVATE(QHttpNetworkReply) friend class QHttpNetworkConnection; diff --git a/src/network/access/qnetworkaccesshttpbackend.cpp b/src/network/access/qnetworkaccesshttpbackend.cpp index 3bad2fe..3611e77 100644 --- a/src/network/access/qnetworkaccesshttpbackend.cpp +++ b/src/network/access/qnetworkaccesshttpbackend.cpp @@ -340,10 +340,6 @@ void QNetworkAccessHttpBackend::finished() void QNetworkAccessHttpBackend::setupConnection() { -#ifndef QT_NO_NETWORKPROXY - connect(http, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)), - SLOT(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*))); -#endif connect(http, SIGNAL(authenticationRequired(const QHttpNetworkReply*, QHttpNetworkRequest,QAuthenticator*,const QHttpNetworkConnection*)), SLOT(httpAuthenticationRequired(const QHttpNetworkReply*, QHttpNetworkRequest,QAuthenticator*))); connect(http, SIGNAL(error(QNetworkReply::NetworkError,QString)), @@ -598,6 +594,10 @@ void QNetworkAccessHttpBackend::postRequest() connect(httpReply, SIGNAL(headerChanged()), SLOT(replyHeaderChanged())); connect(httpReply, SIGNAL(cacheCredentials(QHttpNetworkRequest,QAuthenticator*)), SLOT(httpCacheCredentials(QHttpNetworkRequest,QAuthenticator*))); +#ifndef QT_NO_NETWORKPROXY + connect(httpReply, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)), + SLOT(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*))); +#endif } void QNetworkAccessHttpBackend::invalidateCache() -- cgit v0.12 From 3d7e7b4595059c69428022e52b63b10edbe81b0f Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 26 Oct 2010 17:47:43 +0200 Subject: QNAM HTTP: Move authenticationRequired() to QHttpNetworkReply Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 2 +- src/network/access/qhttpnetworkconnection_p.h | 2 -- src/network/access/qhttpnetworkreply_p.h | 1 + src/network/access/qnetworkaccesshttpbackend.cpp | 11 ++++------- src/network/access/qnetworkaccesshttpbackend_p.h | 2 +- .../tst_qhttpnetworkconnection.cpp | 18 +++++++++--------- 6 files changed, 16 insertions(+), 20 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index f266322..1afca0b 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -351,7 +351,7 @@ bool QHttpNetworkConnectionPrivate::handleAuthenticateChallenge(QAbstractSocket if (priv->phase == QAuthenticatorPrivate::Done) { pauseConnection(); if (!isProxy) { - emit q->authenticationRequired(reply, reply->request(), auth, q); + emit reply->authenticationRequired(reply->request(), auth); #ifndef QT_NO_NETWORKPROXY } else { emit reply->proxyAuthenticationRequired(networkProxy, auth); diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index af33bf9..8d18a7c 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -123,8 +123,6 @@ public: #endif Q_SIGNALS: - void authenticationRequired(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *authenticator, - const QHttpNetworkConnection *connection = 0); void error(QNetworkReply::NetworkError errorCode, const QString &detail = QString()); private: diff --git a/src/network/access/qhttpnetworkreply_p.h b/src/network/access/qhttpnetworkreply_p.h index b4a14f9..3f79d81 100644 --- a/src/network/access/qhttpnetworkreply_p.h +++ b/src/network/access/qhttpnetworkreply_p.h @@ -155,6 +155,7 @@ Q_SIGNALS: #ifndef QT_NO_NETWORKPROXY void proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator); #endif + void authenticationRequired(const QHttpNetworkRequest &request, QAuthenticator *authenticator); private: Q_DECLARE_PRIVATE(QHttpNetworkReply) friend class QHttpNetworkConnection; diff --git a/src/network/access/qnetworkaccesshttpbackend.cpp b/src/network/access/qnetworkaccesshttpbackend.cpp index 3611e77..3a854fe 100644 --- a/src/network/access/qnetworkaccesshttpbackend.cpp +++ b/src/network/access/qnetworkaccesshttpbackend.cpp @@ -340,8 +340,6 @@ void QNetworkAccessHttpBackend::finished() void QNetworkAccessHttpBackend::setupConnection() { - connect(http, SIGNAL(authenticationRequired(const QHttpNetworkReply*, QHttpNetworkRequest,QAuthenticator*,const QHttpNetworkConnection*)), - SLOT(httpAuthenticationRequired(const QHttpNetworkReply*, QHttpNetworkRequest,QAuthenticator*))); connect(http, SIGNAL(error(QNetworkReply::NetworkError,QString)), SLOT(httpError(QNetworkReply::NetworkError,QString))); } @@ -598,6 +596,8 @@ void QNetworkAccessHttpBackend::postRequest() connect(httpReply, SIGNAL(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*)), SLOT(proxyAuthenticationRequired(QNetworkProxy,QAuthenticator*))); #endif + connect(httpReply, SIGNAL(authenticationRequired(const QHttpNetworkRequest,QAuthenticator*)), + SLOT(httpAuthenticationRequired(const QHttpNetworkRequest,QAuthenticator*))); } void QNetworkAccessHttpBackend::invalidateCache() @@ -860,13 +860,10 @@ void QNetworkAccessHttpBackend::replyHeaderChanged() metaDataChanged(); } -void QNetworkAccessHttpBackend::httpAuthenticationRequired(const QHttpNetworkReply *reply, - const QHttpNetworkRequest &, +void QNetworkAccessHttpBackend::httpAuthenticationRequired(const QHttpNetworkRequest &, QAuthenticator *auth) { - // Only process this signal when it is for the QHttpNetworkReply that we actually have - if (reply == this->httpReply) - authenticationRequired(auth); + authenticationRequired(auth); } void QNetworkAccessHttpBackend::httpCacheCredentials(const QHttpNetworkRequest &, diff --git a/src/network/access/qnetworkaccesshttpbackend_p.h b/src/network/access/qnetworkaccesshttpbackend_p.h index f06f364..c4c88ae 100644 --- a/src/network/access/qnetworkaccesshttpbackend_p.h +++ b/src/network/access/qnetworkaccesshttpbackend_p.h @@ -104,7 +104,7 @@ private slots: void replyReadyRead(); void replyFinished(); void replyHeaderChanged(); - void httpAuthenticationRequired(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *auth); + void httpAuthenticationRequired(const QHttpNetworkRequest &request, QAuthenticator *auth); void httpCacheCredentials(const QHttpNetworkRequest &request, QAuthenticator *auth); void httpError(QNetworkReply::NetworkError error, const QString &errorString); bool sendCacheContents(const QNetworkCacheMetaData &metaData); diff --git a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp index ecfd462..0956b57 100644 --- a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp +++ b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp @@ -57,7 +57,7 @@ public: public Q_SLOTS: void finishedReply(); void finishedWithError(QNetworkReply::NetworkError errorCode, const QString &detail); - void challenge401(const QHttpNetworkReply*, const QHttpNetworkRequest &request, QAuthenticator *authenticator, const QHttpNetworkConnection *connection); + void challenge401(const QHttpNetworkRequest &request, QAuthenticator *authenticator); #ifndef QT_NO_OPENSSL void sslErrors(const QList<QSslError> &errors); #endif @@ -495,15 +495,15 @@ void tst_QHttpNetworkConnection::_connect() QVERIFY(false); } -void tst_QHttpNetworkConnection::challenge401(const QHttpNetworkReply*, const QHttpNetworkRequest &request, - QAuthenticator *authenticator, - const QHttpNetworkConnection *connection) +void tst_QHttpNetworkConnection::challenge401(const QHttpNetworkRequest &request, + QAuthenticator *authenticator) { Q_UNUSED(request) - Q_UNUSED(connection) - QHttpNetworkConnection *c = qobject_cast<QHttpNetworkConnection*>(sender()); - if (connection) { + QHttpNetworkReply *reply = qobject_cast<QHttpNetworkReply*>(sender()); + if (reply) { + QHttpNetworkConnection *c = reply->connection(); + QVariant val = c->property("setCredentials"); if (val.toBool()) { QVariant user = c->property("username"); @@ -552,14 +552,14 @@ void tst_QHttpNetworkConnection::get401() if (encrypt) connection.enableEncryption(); QCOMPARE(connection.isEncrypted(), encrypt); - connect(&connection, SIGNAL(authenticationRequired(const QHttpNetworkReply*, const QHttpNetworkRequest&, QAuthenticator *, const QHttpNetworkConnection*)), - SLOT(challenge401(const QHttpNetworkReply*, const QHttpNetworkRequest&, QAuthenticator *, const QHttpNetworkConnection*))); connection.setProperty("setCredentials", setCredentials); connection.setProperty("username", username); connection.setProperty("password", password); QHttpNetworkRequest request(protocol + host + path); QHttpNetworkReply *reply = connection.sendRequest(request); + connect(reply, SIGNAL(authenticationRequired(const QHttpNetworkRequest&, QAuthenticator *)), + SLOT(challenge401(const QHttpNetworkRequest&, QAuthenticator *))); finishedCalled = false; finishedWithErrorCalled = false; -- cgit v0.12 From a754c657db2d812911f278299c64001f37c2aae8 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 26 Oct 2010 17:53:43 +0200 Subject: QNAM HTTP: Remove unused code Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 15 --------------- src/network/access/qhttpnetworkconnection_p.h | 4 ---- src/network/access/qnetworkaccesshttpbackend.cpp | 23 ----------------------- 3 files changed, 42 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index 1afca0b..bf02543 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -856,21 +856,6 @@ bool QHttpNetworkConnection::isEncrypted() const return d->encrypt; } -void QHttpNetworkConnection::setProxyAuthentication(QAuthenticator *authenticator) -{ - Q_D(QHttpNetworkConnection); - for (int i = 0; i < d->channelCount; ++i) - d->channels[i].proxyAuthenticator = *authenticator; -} - -void QHttpNetworkConnection::setAuthentication(const QString &domain, QAuthenticator *authenticator) -{ - Q_UNUSED(domain); // ### domain ? - Q_D(QHttpNetworkConnection); - for (int i = 0; i < d->channelCount; ++i) - d->channels[i].authenticator = *authenticator; -} - #ifndef QT_NO_NETWORKPROXY void QHttpNetworkConnection::setCacheProxy(const QNetworkProxy &networkProxy) { diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index 8d18a7c..f55937d 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -112,10 +112,6 @@ public: void enableEncryption(); bool isEncrypted() const; - //authentication parameters - void setProxyAuthentication(QAuthenticator *authenticator); - void setAuthentication(const QString &domain, QAuthenticator *authenticator); - #ifndef QT_NO_OPENSSL void setSslConfiguration(const QSslConfiguration &config); void ignoreSslErrors(int channel = -1); diff --git a/src/network/access/qnetworkaccesshttpbackend.cpp b/src/network/access/qnetworkaccesshttpbackend.cpp index 3a854fe..ec10d34 100644 --- a/src/network/access/qnetworkaccesshttpbackend.cpp +++ b/src/network/access/qnetworkaccesshttpbackend.cpp @@ -878,29 +878,6 @@ void QNetworkAccessHttpBackend::httpError(QNetworkReply::NetworkError errorCode, #if defined(QNETWORKACCESSHTTPBACKEND_DEBUG) qDebug() << "http error!" << errorCode << errorString; #endif -#if 0 - static const QNetworkReply::NetworkError conversionTable[] = { - QNetworkReply::ConnectionRefusedError, - QNetworkReply::RemoteHostClosedError, - QNetworkReply::HostNotFoundError, - QNetworkReply::UnknownNetworkError, // SocketAccessError - QNetworkReply::UnknownNetworkError, // SocketResourceError - QNetworkReply::TimeoutError, // SocketTimeoutError - QNetworkReply::UnknownNetworkError, // DatagramTooLargeError - QNetworkReply::UnknownNetworkError, // NetworkError - QNetworkReply::UnknownNetworkError, // AddressInUseError - QNetworkReply::UnknownNetworkError, // SocketAddressNotAvailableError - QNetworkReply::UnknownNetworkError, // UnsupportedSocketOperationError - QNetworkReply::UnknownNetworkError, // UnfinishedSocketOperationError - QNetworkReply::ProxyAuthenticationRequiredError - }; - QNetworkReply::NetworkError code; - if (int(errorCode) >= 0 && - uint(errorCode) < (sizeof conversionTable / sizeof conversionTable[0])) - code = conversionTable[errorCode]; - else - code = QNetworkReply::UnknownNetworkError; -#endif error(errorCode, errorString); finished(); } -- cgit v0.12 From be18016694c57fef508aa4715f5b8f9bbf21e5ac Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Tue, 26 Oct 2010 18:02:10 +0200 Subject: QNAM HTTP: Remove enableEncryption() Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 6 ----- src/network/access/qhttpnetworkconnection_p.h | 2 -- .../tst_qhttpnetworkconnection.cpp | 26 +++++----------------- 3 files changed, 5 insertions(+), 29 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index bf02543..3acaaff 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -844,12 +844,6 @@ QHttpNetworkReply* QHttpNetworkConnection::sendRequest(const QHttpNetworkRequest return d->queueRequest(request); } -void QHttpNetworkConnection::enableEncryption() -{ - Q_D(QHttpNetworkConnection); - d->encrypt = true; -} - bool QHttpNetworkConnection::isEncrypted() const { Q_D(const QHttpNetworkConnection); diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index f55937d..5d5caa6 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -108,8 +108,6 @@ public: QNetworkProxy transparentProxy() const; #endif - //enable encryption - void enableEncryption(); bool isEncrypted() const; #ifndef QT_NO_OPENSSL diff --git a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp index 0956b57..29fe2fb 100644 --- a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp +++ b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp @@ -175,11 +175,9 @@ void tst_QHttpNetworkConnection::head() QFETCH(QString, statusString); QFETCH(int, contentLength); - QHttpNetworkConnection connection(host); + QHttpNetworkConnection connection(host, port, encrypt); QCOMPARE(connection.port(), port); QCOMPARE(connection.hostName(), host); - if (encrypt) - connection.enableEncryption(); QCOMPARE(connection.isEncrypted(), encrypt); QHttpNetworkRequest request(protocol + host + path, QHttpNetworkRequest::Head); @@ -235,11 +233,9 @@ void tst_QHttpNetworkConnection::get() QFETCH(int, contentLength); QFETCH(int, downloadSize); - QHttpNetworkConnection connection(host); + QHttpNetworkConnection connection(host, port, encrypt); QCOMPARE(connection.port(), port); QCOMPARE(connection.hostName(), host); - if (encrypt) - connection.enableEncryption(); QCOMPARE(connection.isEncrypted(), encrypt); QHttpNetworkRequest request(protocol + host + path); @@ -315,11 +311,9 @@ void tst_QHttpNetworkConnection::put() QFETCH(QString, data); QFETCH(bool, succeed); - QHttpNetworkConnection connection(host); + QHttpNetworkConnection connection(host, port, encrypt); QCOMPARE(connection.port(), port); QCOMPARE(connection.hostName(), host); - if (encrypt) - connection.enableEncryption(); QCOMPARE(connection.isEncrypted(), encrypt); QHttpNetworkRequest request(protocol + host + path, QHttpNetworkRequest::Put); @@ -407,11 +401,9 @@ void tst_QHttpNetworkConnection::post() QFETCH(int, contentLength); QFETCH(int, downloadSize); - QHttpNetworkConnection connection(host); + QHttpNetworkConnection connection(host, port, encrypt); QCOMPARE(connection.port(), port); QCOMPARE(connection.hostName(), host); - if (encrypt) - connection.enableEncryption(); QCOMPARE(connection.isEncrypted(), encrypt); QHttpNetworkRequest request(protocol + host + path, QHttpNetworkRequest::Post); @@ -549,8 +541,6 @@ void tst_QHttpNetworkConnection::get401() QHttpNetworkConnection connection(host, port, encrypt); QCOMPARE(connection.port(), port); QCOMPARE(connection.hostName(), host); - if (encrypt) - connection.enableEncryption(); QCOMPARE(connection.isEncrypted(), encrypt); connection.setProperty("setCredentials", setCredentials); connection.setProperty("username", username); @@ -618,11 +608,9 @@ void tst_QHttpNetworkConnection::compression() QFETCH(bool, autoCompress); QFETCH(QString, contentCoding); - QHttpNetworkConnection connection(host); + QHttpNetworkConnection connection(host, port, encrypt); QCOMPARE(connection.port(), port); QCOMPARE(connection.hostName(), host); - if (encrypt) - connection.enableEncryption(); QCOMPARE(connection.isEncrypted(), encrypt); QHttpNetworkRequest request(protocol + host + path); @@ -713,8 +701,6 @@ void tst_QHttpNetworkConnection::ignoresslerror() QHttpNetworkConnection connection(host, port, encrypt); QCOMPARE(connection.port(), port); QCOMPARE(connection.hostName(), host); - if (encrypt) - connection.enableEncryption(); if (ignoreInit) connection.ignoreSslErrors(); QCOMPARE(connection.isEncrypted(), encrypt); @@ -771,8 +757,6 @@ void tst_QHttpNetworkConnection::nossl() QHttpNetworkConnection connection(host, port, encrypt); QCOMPARE(connection.port(), port); QCOMPARE(connection.hostName(), host); - if (encrypt) - connection.enableEncryption(); QHttpNetworkRequest request(protocol + host + path); QHttpNetworkReply *reply = connection.sendRequest(request); -- cgit v0.12 From b5d9dbf28b78aa17bfb70aa2e5fd3da99fe53ff0 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Wed, 27 Oct 2010 14:06:28 +0200 Subject: QNAM HTTP: Remove the error() of QHttpNetworkConnection Removed the distinction between reply error and connection error. The QNetworkAccessManager was treating them the same way anyway. Reviewed-by: Prasanth Task-Number: QTBUG-13234 --- src/network/access/qhttpnetworkconnection.cpp | 3 +-- src/network/access/qhttpnetworkconnection_p.h | 3 --- .../access/qhttpnetworkconnectionchannel.cpp | 24 ++++++++-------------- src/network/access/qnetworkaccesshttpbackend.cpp | 7 ------- src/network/access/qnetworkaccesshttpbackend_p.h | 1 - .../tst_qhttpnetworkconnection.cpp | 2 -- 6 files changed, 9 insertions(+), 31 deletions(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index 3acaaff..92f8af7 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -377,8 +377,7 @@ bool QHttpNetworkConnectionPrivate::handleAuthenticateChallenge(QAbstractSocket ? QNetworkReply::ProxyAuthenticationRequiredError : QNetworkReply::AuthenticationRequiredError; reply->d_func()->errorString = errorDetail(errorCode, socket); - emit q->error(errorCode, reply->d_func()->errorString); - emit channels[i].reply->finished(); + emit reply->finishedWithError(errorCode, reply->d_func()->errorString); // ### at this point the reply could be deleted socket->close(); return true; diff --git a/src/network/access/qhttpnetworkconnection_p.h b/src/network/access/qhttpnetworkconnection_p.h index 5d5caa6..8461426c 100644 --- a/src/network/access/qhttpnetworkconnection_p.h +++ b/src/network/access/qhttpnetworkconnection_p.h @@ -116,9 +116,6 @@ public: void ignoreSslErrors(const QList<QSslError> &errors, int channel = -1); #endif -Q_SIGNALS: - void error(QNetworkReply::NetworkError errorCode, const QString &detail = QString()); - private: Q_DECLARE_PRIVATE(QHttpNetworkConnection) Q_DISABLE_COPY(QHttpNetworkConnection) diff --git a/src/network/access/qhttpnetworkconnectionchannel.cpp b/src/network/access/qhttpnetworkconnectionchannel.cpp index 52a8e72..4e5de53 100644 --- a/src/network/access/qhttpnetworkconnectionchannel.cpp +++ b/src/network/access/qhttpnetworkconnectionchannel.cpp @@ -797,8 +797,7 @@ void QHttpNetworkConnectionChannel::handleStatus() ? QNetworkReply::ProxyAuthenticationRequiredError : QNetworkReply::AuthenticationRequiredError; reply->d_func()->errorString = connection->d_func()->errorDetail(errorCode, socket); - emit connection->error(errorCode, reply->d_func()->errorString); - emit reply->finished(); + emit reply->finishedWithError(errorCode, reply->d_func()->errorString); } break; default: @@ -945,7 +944,6 @@ void QHttpNetworkConnectionChannel::_q_error(QAbstractSocket::SocketError socket { if (!socket) return; - bool send2Reply = false; QNetworkReply::NetworkError errorCode = QNetworkReply::UnknownNetworkError; switch (socketError) { @@ -963,7 +961,6 @@ void QHttpNetworkConnectionChannel::_q_error(QAbstractSocket::SocketError socket closeAndResendCurrentRequest(); return; } else { - send2Reply = true; errorCode = QNetworkReply::RemoteHostClosedError; } } else { @@ -976,7 +973,6 @@ void QHttpNetworkConnectionChannel::_q_error(QAbstractSocket::SocketError socket closeAndResendCurrentRequest(); return; } - send2Reply = true; errorCode = QNetworkReply::TimeoutError; break; case QAbstractSocket::ProxyAuthenticationRequiredError: @@ -992,18 +988,14 @@ void QHttpNetworkConnectionChannel::_q_error(QAbstractSocket::SocketError socket } QPointer<QHttpNetworkConnection> that = connection; QString errorString = connection->d_func()->errorDetail(errorCode, socket, socket->errorString()); - if (send2Reply) { - if (reply) { - reply->d_func()->errorString = errorString; - // this error matters only to this reply - emit reply->finishedWithError(errorCode, errorString); - } - // send the next request - QMetaObject::invokeMethod(that, "_q_startNextRequest", Qt::QueuedConnection); - } else { - // the failure affects all requests. - emit connection->error(errorCode, errorString); + + if (reply) { + reply->d_func()->errorString = errorString; + emit reply->finishedWithError(errorCode, errorString); } + // send the next request + QMetaObject::invokeMethod(that, "_q_startNextRequest", Qt::QueuedConnection); + if (that) //signal emission triggered event loop close(); } diff --git a/src/network/access/qnetworkaccesshttpbackend.cpp b/src/network/access/qnetworkaccesshttpbackend.cpp index ec10d34..2a0daf8 100644 --- a/src/network/access/qnetworkaccesshttpbackend.cpp +++ b/src/network/access/qnetworkaccesshttpbackend.cpp @@ -338,12 +338,6 @@ void QNetworkAccessHttpBackend::finished() QNetworkAccessBackend::finished(); } -void QNetworkAccessHttpBackend::setupConnection() -{ - connect(http, SIGNAL(error(QNetworkReply::NetworkError,QString)), - SLOT(httpError(QNetworkReply::NetworkError,QString))); -} - /* For a given httpRequest 1) If AlwaysNetwork, return @@ -672,7 +666,6 @@ void QNetworkAccessHttpBackend::open() cache->addEntry(cacheKey, http); } - setupConnection(); postRequest(); } diff --git a/src/network/access/qnetworkaccesshttpbackend_p.h b/src/network/access/qnetworkaccesshttpbackend_p.h index c4c88ae..568b2ee 100644 --- a/src/network/access/qnetworkaccesshttpbackend_p.h +++ b/src/network/access/qnetworkaccesshttpbackend_p.h @@ -125,7 +125,6 @@ private: quint64 resumeOffset; void disconnectFromHttp(); - void setupConnection(); void validateCache(QHttpNetworkRequest &httpRequest, bool &loadedFromCache); void invalidateCache(); void postRequest(); diff --git a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp index 29fe2fb..4a32a5a 100644 --- a/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp +++ b/tests/auto/qhttpnetworkconnection/tst_qhttpnetworkconnection.cpp @@ -330,8 +330,6 @@ void tst_QHttpNetworkConnection::put() connect(reply, SIGNAL(finished()), SLOT(finishedReply())); connect(reply, SIGNAL(finishedWithError(QNetworkReply::NetworkError, const QString &)), SLOT(finishedWithError(QNetworkReply::NetworkError, const QString &))); - connect(&connection, SIGNAL(error(QNetworkReply::NetworkError, const QString &)), - SLOT(finishedWithError(QNetworkReply::NetworkError, const QString &))); QTime stopWatch; stopWatch.start(); -- cgit v0.12 From f964de82d506a379b9d80b18025491aa3521a2c9 Mon Sep 17 00:00:00 2001 From: Peter Hartmann <peter.hartmann@nokia.com> Date: Wed, 27 Oct 2010 17:14:03 +0200 Subject: QNAM: fix build * winsock2.h conflicts with qplatformdefs.h * ifndef QT_NO_OPENSSL was missing Reviewed-by: Prasanth Reviewed-by: Markus Goetz --- src/network/access/qhttpnetworkconnection.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index 92f8af7..c335cd4 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -39,13 +39,13 @@ ** ****************************************************************************/ +#include <private/qabstractsocket_p.h> #include "qhttpnetworkconnection_p.h" #include "qhttpnetworkconnectionchannel_p.h" #include "private/qnoncontiguousbytedevice_p.h" #include <private/qnetworkrequest_p.h> #include <private/qobject_p.h> #include <private/qauthenticator_p.h> -#include <private/qabstractsocket_p.h> #include <qnetworkproxy.h> #include <qauthenticator.h> @@ -129,9 +129,11 @@ void QHttpNetworkConnectionPrivate::pauseConnection() // Disable all socket notifiers for (int i = 0; i < channelCount; i++) { +#ifndef QT_NO_OPENSSL if (encrypt) QSslSocketPrivate::pauseSocketNotifiers(static_cast<QSslSocket*>(channels[i].socket)); else +#endif QAbstractSocketPrivate::pauseSocketNotifiers(channels[i].socket); } } @@ -141,9 +143,11 @@ void QHttpNetworkConnectionPrivate::resumeConnection() state = RunningState; // Enable all socket notifiers for (int i = 0; i < channelCount; i++) { +#ifndef QT_NO_OPENSSL if (encrypt) QSslSocketPrivate::resumeSocketNotifiers(static_cast<QSslSocket*>(channels[i].socket)); else +#endif QAbstractSocketPrivate::resumeSocketNotifiers(channels[i].socket); // Resume pending upload if needed -- cgit v0.12 From a4fa6efc81d65039c556c1c0147f8c9300b43c4e Mon Sep 17 00:00:00 2001 From: Joona Petrell <joona.t.petrell@nokia.com> Date: Wed, 27 Oct 2010 14:40:37 +1000 Subject: Export private QtDeclarative classes needed by Qt3d on Symbian Task-number: QTBUG-14789 Reviewed-by: Rhys Weatherley * QDeclarativeState * QDeclarativeStateGroup * QDeclarativeStateOperation * QDeclarativeTransition --- src/declarative/util/qdeclarativestate_p.h | 4 +- src/declarative/util/qdeclarativestategroup_p.h | 2 +- src/declarative/util/qdeclarativetransition_p.h | 2 +- src/s60installs/bwins/QtDeclarativeu.def | 222 ++++++++++++------------ src/s60installs/eabi/QtDeclarativeu.def | 206 +++++++++++----------- 5 files changed, 218 insertions(+), 218 deletions(-) diff --git a/src/declarative/util/qdeclarativestate_p.h b/src/declarative/util/qdeclarativestate_p.h index d01af4e..fc7c940 100644 --- a/src/declarative/util/qdeclarativestate_p.h +++ b/src/declarative/util/qdeclarativestate_p.h @@ -114,7 +114,7 @@ public: class QDeclarativeStateGroup; class QDeclarativeState; class QDeclarativeStateOperationPrivate; -class Q_DECLARATIVE_PRIVATE_EXPORT QDeclarativeStateOperation : public QObject +class Q_DECLARATIVE_EXPORT QDeclarativeStateOperation : public QObject { Q_OBJECT public: @@ -139,7 +139,7 @@ typedef QDeclarativeStateOperation::ActionList QDeclarativeStateActions; class QDeclarativeTransition; class QDeclarativeStatePrivate; -class Q_DECLARATIVE_PRIVATE_EXPORT QDeclarativeState : public QObject +class Q_DECLARATIVE_EXPORT QDeclarativeState : public QObject { Q_OBJECT diff --git a/src/declarative/util/qdeclarativestategroup_p.h b/src/declarative/util/qdeclarativestategroup_p.h index 0222cf2..cac23f4 100644 --- a/src/declarative/util/qdeclarativestategroup_p.h +++ b/src/declarative/util/qdeclarativestategroup_p.h @@ -51,7 +51,7 @@ QT_BEGIN_NAMESPACE QT_MODULE(Declarative) class QDeclarativeStateGroupPrivate; -class Q_DECLARATIVE_PRIVATE_EXPORT QDeclarativeStateGroup : public QObject, public QDeclarativeParserStatus +class Q_DECLARATIVE_EXPORT QDeclarativeStateGroup : public QObject, public QDeclarativeParserStatus { Q_OBJECT Q_INTERFACES(QDeclarativeParserStatus) diff --git a/src/declarative/util/qdeclarativetransition_p.h b/src/declarative/util/qdeclarativetransition_p.h index 5b20cb2..fc7a577 100644 --- a/src/declarative/util/qdeclarativetransition_p.h +++ b/src/declarative/util/qdeclarativetransition_p.h @@ -57,7 +57,7 @@ QT_MODULE(Declarative) class QDeclarativeAbstractAnimation; class QDeclarativeTransitionPrivate; class QDeclarativeTransitionManager; -class Q_DECLARATIVE_PRIVATE_EXPORT QDeclarativeTransition : public QObject +class Q_DECLARATIVE_EXPORT QDeclarativeTransition : public QObject { Q_OBJECT Q_DECLARE_PRIVATE(QDeclarativeTransition) diff --git a/src/s60installs/bwins/QtDeclarativeu.def b/src/s60installs/bwins/QtDeclarativeu.def index 6e27577..db4012c 100644 --- a/src/s60installs/bwins/QtDeclarativeu.def +++ b/src/s60installs/bwins/QtDeclarativeu.def @@ -26,7 +26,7 @@ EXPORTS ?setReadable@QMetaPropertyBuilder@@QAEX_N@Z @ 25 NONAME ABSENT ; void QMetaPropertyBuilder::setReadable(bool) ?d_func@QDeclarativeExpression@@AAEPAVQDeclarativeExpressionPrivate@@XZ @ 26 NONAME ; class QDeclarativeExpressionPrivate * QDeclarativeExpression::d_func(void) ??1QDeclarativeDomValueValueSource@@QAE@XZ @ 27 NONAME ABSENT ; QDeclarativeDomValueValueSource::~QDeclarativeDomValueValueSource(void) - ??_EQDeclarativeStateGroup@@UAE@I@Z @ 28 NONAME ABSENT ; QDeclarativeStateGroup::~QDeclarativeStateGroup(unsigned int) + ??_EQDeclarativeStateGroup@@UAE@I@Z @ 28 NONAME ; QDeclarativeStateGroup::~QDeclarativeStateGroup(unsigned int) ?property@QDeclarativeDomObject@@QBE?AVQDeclarativeDomProperty@@ABVQByteArray@@@Z @ 29 NONAME ABSENT ; class QDeclarativeDomProperty QDeclarativeDomObject::property(class QByteArray const &) const ?tr@QDeclarativeAnchors@@SA?AVQString@@PBD0H@Z @ 30 NONAME ABSENT ; class QString QDeclarativeAnchors::tr(char const *, char const *, int) ?location@QDeclarativeCustomParserNode@@QBE?AULocation@QDeclarativeParser@@XZ @ 31 NONAME ; struct QDeclarativeParser::Location QDeclarativeCustomParserNode::location(void) const @@ -39,7 +39,7 @@ EXPORTS ??0QDeclarativeEngine@@QAE@PAVQObject@@@Z @ 38 NONAME ; QDeclarativeEngine::QDeclarativeEngine(class QObject *) ??0QDeclarativeDebugObjectReference@@QAE@ABV0@@Z @ 39 NONAME ABSENT ; QDeclarativeDebugObjectReference::QDeclarativeDebugObjectReference(class QDeclarativeDebugObjectReference const &) ?set@QDeclarativeListModel@@QAEXHABVQScriptValue@@@Z @ 40 NONAME ABSENT ; void QDeclarativeListModel::set(int, class QScriptValue const &) - ?tr@QDeclarativeState@@SA?AVQString@@PBD0H@Z @ 41 NONAME ABSENT ; class QString QDeclarativeState::tr(char const *, char const *, int) + ?tr@QDeclarativeState@@SA?AVQString@@PBD0H@Z @ 41 NONAME ; class QString QDeclarativeState::tr(char const *, char const *, int) ?metaObject@QDeclarativeBinding@@UBEPBUQMetaObject@@XZ @ 42 NONAME ABSENT ; struct QMetaObject const * QDeclarativeBinding::metaObject(void) const ?setUser@QMetaPropertyBuilder@@QAEX_N@Z @ 43 NONAME ABSENT ; void QMetaPropertyBuilder::setUser(bool) ?tr@QDeclarativeDebugRootContextQuery@@SA?AVQString@@PBD0@Z @ 44 NONAME ABSENT ; class QString QDeclarativeDebugRootContextQuery::tr(char const *, char const *) @@ -50,7 +50,7 @@ EXPORTS ??1QDeclarativeText@@UAE@XZ @ 49 NONAME ABSENT ; QDeclarativeText::~QDeclarativeText(void) ?getStaticMetaObject@QDeclarativeText@@SAABUQMetaObject@@XZ @ 50 NONAME ABSENT ; struct QMetaObject const & QDeclarativeText::getStaticMetaObject(void) ?isDesignable@QMetaPropertyBuilder@@QBE_NXZ @ 51 NONAME ABSENT ; bool QMetaPropertyBuilder::isDesignable(void) const - ?tr@QDeclarativeStateGroup@@SA?AVQString@@PBD0H@Z @ 52 NONAME ABSENT ; class QString QDeclarativeStateGroup::tr(char const *, char const *, int) + ?tr@QDeclarativeStateGroup@@SA?AVQString@@PBD0H@Z @ 52 NONAME ; class QString QDeclarativeStateGroup::tr(char const *, char const *, int) ?errors@QDeclarativeView@@QBE?AV?$QList@VQDeclarativeError@@@@XZ @ 53 NONAME ; class QList<class QDeclarativeError> QDeclarativeView::errors(void) const ??0QPacket@@QAE@ABV0@@Z @ 54 NONAME ABSENT ; QPacket::QPacket(class QPacket const &) ??1QDeclarativeDebugObjectExpressionWatch@@UAE@XZ @ 55 NONAME ABSENT ; QDeclarativeDebugObjectExpressionWatch::~QDeclarativeDebugObjectExpressionWatch(void) @@ -59,7 +59,7 @@ EXPORTS ??_EQDeclarativeDebugObjectQuery@@UAE@I@Z @ 58 NONAME ABSENT ; QDeclarativeDebugObjectQuery::~QDeclarativeDebugObjectQuery(unsigned int) ??0QDeclarativeDomObject@@QAE@XZ @ 59 NONAME ABSENT ; QDeclarativeDomObject::QDeclarativeDomObject(void) ?errors@QDeclarativeDomDocument@@QBE?AV?$QList@VQDeclarativeError@@@@XZ @ 60 NONAME ABSENT ; class QList<class QDeclarativeError> QDeclarativeDomDocument::errors(void) const - ?toChanged@QDeclarativeTransition@@IAEXXZ @ 61 NONAME ABSENT ; void QDeclarativeTransition::toChanged(void) + ?toChanged@QDeclarativeTransition@@IAEXXZ @ 61 NONAME ; void QDeclarativeTransition::toChanged(void) ?objectOwnership@QDeclarativeEngine@@SA?AW4ObjectOwnership@1@PAVQObject@@@Z @ 62 NONAME ; enum QDeclarativeEngine::ObjectOwnership QDeclarativeEngine::objectOwnership(class QObject *) ??0QDeclarativeDebugWatch@@QAE@PAVQObject@@@Z @ 63 NONAME ABSENT ; QDeclarativeDebugWatch::QDeclarativeDebugWatch(class QObject *) ?value@QDeclarativePropertyMap@@QBE?AVQVariant@@ABVQString@@@Z @ 64 NONAME ; class QVariant QDeclarativePropertyMap::value(class QString const &) const @@ -71,9 +71,9 @@ EXPORTS ??1QDeclarativeDebugClient@@UAE@XZ @ 70 NONAME ABSENT ; QDeclarativeDebugClient::~QDeclarativeDebugClient(void) ?trUtf8@QPacketProtocol@@SA?AVQString@@PBD0@Z @ 71 NONAME ABSENT ; class QString QPacketProtocol::trUtf8(char const *, char const *) ?trUtf8@QDeclarativeListModel@@SA?AVQString@@PBD0@Z @ 72 NONAME ABSENT ; class QString QDeclarativeListModel::trUtf8(char const *, char const *) - ?qt_metacast@QDeclarativeState@@UAEPAXPBD@Z @ 73 NONAME ABSENT ; void * QDeclarativeState::qt_metacast(char const *) + ?qt_metacast@QDeclarativeState@@UAEPAXPBD@Z @ 73 NONAME ; void * QDeclarativeState::qt_metacast(char const *) ??1QDeclarativeDebugContextReference@@QAE@XZ @ 74 NONAME ABSENT ; QDeclarativeDebugContextReference::~QDeclarativeDebugContextReference(void) - ?getStaticMetaObject@QDeclarativeStateOperation@@SAABUQMetaObject@@XZ @ 75 NONAME ABSENT ; struct QMetaObject const & QDeclarativeStateOperation::getStaticMetaObject(void) + ?getStaticMetaObject@QDeclarativeStateOperation@@SAABUQMetaObject@@XZ @ 75 NONAME ; struct QMetaObject const & QDeclarativeStateOperation::getStaticMetaObject(void) ?isInvalid@QDeclarativeDomValue@@QBE_NXZ @ 76 NONAME ABSENT ; bool QDeclarativeDomValue::isInvalid(void) const ?trUtf8@QDeclarativeText@@SA?AVQString@@PBD0H@Z @ 77 NONAME ABSENT ; class QString QDeclarativeText::trUtf8(char const *, char const *, int) ??0QDeclarativeListReference@@QAE@ABV0@@Z @ 78 NONAME ; QDeclarativeListReference::QDeclarativeListReference(class QDeclarativeListReference const &) @@ -84,7 +84,7 @@ EXPORTS ?imageType@QDeclarativeImageProvider@@QBE?AW4ImageType@1@XZ @ 83 NONAME ; enum QDeclarativeImageProvider::ImageType QDeclarativeImageProvider::imageType(void) const ??_EQDeclarativeDebugObjectReference@@QAE@I@Z @ 84 NONAME ABSENT ; QDeclarativeDebugObjectReference::~QDeclarativeDebugObjectReference(unsigned int) ?qt_metacall@QDeclarativeDebugQuery@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 85 NONAME ABSENT ; int QDeclarativeDebugQuery::qt_metacall(enum QMetaObject::Call, int, void * *) - ?findState@QDeclarativeStateGroup@@QBEPAVQDeclarativeState@@ABVQString@@@Z @ 86 NONAME ABSENT ; class QDeclarativeState * QDeclarativeStateGroup::findState(class QString const &) const + ?findState@QDeclarativeStateGroup@@QBEPAVQDeclarativeState@@ABVQString@@@Z @ 86 NONAME ; class QDeclarativeState * QDeclarativeStateGroup::findState(class QString const &) const ?asScript@Variant@QDeclarativeParser@@QBE?AVQString@@XZ @ 87 NONAME ; class QString QDeclarativeParser::Variant::asScript(void) const ?qt_metacast@QDeclarativeExtensionPlugin@@UAEPAXPBD@Z @ 88 NONAME ; void * QDeclarativeExtensionPlugin::qt_metacast(char const *) ?objectId@QDeclarativeDomObject@@QBE?AVQString@@XZ @ 89 NONAME ABSENT ; class QString QDeclarativeDomObject::objectId(void) const @@ -130,7 +130,7 @@ EXPORTS ?top@QDeclarativeScaleGrid@@QBEHXZ @ 129 NONAME ABSENT ; int QDeclarativeScaleGrid::top(void) const ?setExpression@QDeclarativeExpression@@QAEXABVQString@@@Z @ 130 NONAME ; void QDeclarativeExpression::setExpression(class QString const &) ??1QDeclarativeDebugEngineReference@@QAE@XZ @ 131 NONAME ABSENT ; QDeclarativeDebugEngineReference::~QDeclarativeDebugEngineReference(void) - ??0QDeclarativeStateOperation@@QAE@PAVQObject@@@Z @ 132 NONAME ABSENT ; QDeclarativeStateOperation::QDeclarativeStateOperation(class QObject *) + ??0QDeclarativeStateOperation@@QAE@PAVQObject@@@Z @ 132 NONAME ; QDeclarativeStateOperation::QDeclarativeStateOperation(class QObject *) ?transform_clear@QDeclarativeItemPrivate@@SAXPAV?$QDeclarativeListProperty@VQGraphicsTransform@@@@@Z @ 133 NONAME ; void QDeclarativeItemPrivate::transform_clear(class QDeclarativeListProperty<class QGraphicsTransform> *) ?staticMetaObject@QDeclarativeValueType@@2UQMetaObject@@B @ 134 NONAME ABSENT ; struct QMetaObject const QDeclarativeValueType::staticMetaObject ?propertyName@QDeclarativeDomDynamicProperty@@QBE?AVQByteArray@@XZ @ 135 NONAME ABSENT ; class QByteArray QDeclarativeDomDynamicProperty::propertyName(void) const @@ -165,7 +165,7 @@ EXPORTS ?subFocusItemChange@QDeclarativeItemPrivate@@UAEXXZ @ 164 NONAME ; void QDeclarativeItemPrivate::subFocusItemChange(void) ?hasNotifySignal@QDeclarativeDebugPropertyReference@@QBE_NXZ @ 165 NONAME ABSENT ; bool QDeclarativeDebugPropertyReference::hasNotifySignal(void) const ?addSlot@QMetaObjectBuilder@@QAE?AVQMetaMethodBuilder@@ABVQByteArray@@@Z @ 166 NONAME ABSENT ; class QMetaMethodBuilder QMetaObjectBuilder::addSlot(class QByteArray const &) - ?trUtf8@QDeclarativeStateOperation@@SA?AVQString@@PBD0@Z @ 167 NONAME ABSENT ; class QString QDeclarativeStateOperation::trUtf8(char const *, char const *) + ?trUtf8@QDeclarativeStateOperation@@SA?AVQString@@PBD0@Z @ 167 NONAME ; class QString QDeclarativeStateOperation::trUtf8(char const *, char const *) ?propertyCreated@QDeclarativeOpenMetaObjectType@@MAEXHAAVQMetaPropertyBuilder@@@Z @ 168 NONAME ABSENT ; void QDeclarativeOpenMetaObjectType::propertyCreated(int, class QMetaPropertyBuilder &) ??1QDeclarativeItemPrivate@@UAE@XZ @ 169 NONAME ; QDeclarativeItemPrivate::~QDeclarativeItemPrivate(void) ?clear@QDeclarativePropertyMap@@QAEXABVQString@@@Z @ 170 NONAME ; void QDeclarativePropertyMap::clear(class QString const &) @@ -173,7 +173,7 @@ EXPORTS ?read@QDeclarativeProperty@@SA?AVQVariant@@PAVQObject@@ABVQString@@PAVQDeclarativeEngine@@@Z @ 172 NONAME ; class QVariant QDeclarativeProperty::read(class QObject *, class QString const &, class QDeclarativeEngine *) ?insert@QDeclarativePropertyMap@@QAEXABVQString@@ABVQVariant@@@Z @ 173 NONAME ; void QDeclarativePropertyMap::insert(class QString const &, class QVariant const &) ??1QDeclarativeContext@@UAE@XZ @ 174 NONAME ; QDeclarativeContext::~QDeclarativeContext(void) - ?operationCount@QDeclarativeState@@QBEHXZ @ 175 NONAME ABSENT ; int QDeclarativeState::operationCount(void) const + ?operationCount@QDeclarativeState@@QBEHXZ @ 175 NONAME ; int QDeclarativeState::operationCount(void) const ?getStaticMetaObject@QDeclarativeItem@@SAABUQMetaObject@@XZ @ 176 NONAME ; struct QMetaObject const & QDeclarativeItem::getStaticMetaObject(void) ?qtAnimationStateChanged@QDeclarativeBehavior@@AAEXW4State@QAbstractAnimation@@0@Z @ 177 NONAME ABSENT ; void QDeclarativeBehavior::qtAnimationStateChanged(enum QAbstractAnimation::State, enum QAbstractAnimation::State) ?trUtf8@QDeclarativeBehavior@@SA?AVQString@@PBD0H@Z @ 178 NONAME ABSENT ; class QString QDeclarativeBehavior::trUtf8(char const *, char const *, int) @@ -188,7 +188,7 @@ EXPORTS ?metaObject@QDeclarativeDebugObjectExpressionWatch@@UBEPBUQMetaObject@@XZ @ 187 NONAME ABSENT ; struct QMetaObject const * QDeclarativeDebugObjectExpressionWatch::metaObject(void) const ??0QDeclarativeComponent@@QAE@PAVQObject@@@Z @ 188 NONAME ; QDeclarativeComponent::QDeclarativeComponent(class QObject *) ?qt_metacast@QDeclarativeItem@@UAEPAXPBD@Z @ 189 NONAME ; void * QDeclarativeItem::qt_metacast(char const *) - ?changes@QDeclarativeState@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeStateOperation@@@@XZ @ 190 NONAME ABSENT ; class QDeclarativeListProperty<class QDeclarativeStateOperation> QDeclarativeState::changes(void) + ?changes@QDeclarativeState@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeStateOperation@@@@XZ @ 190 NONAME ; class QDeclarativeListProperty<class QDeclarativeStateOperation> QDeclarativeState::changes(void) ?resizeEvent@QDeclarativeView@@MAEXPAVQResizeEvent@@@Z @ 191 NONAME ; void QDeclarativeView::resizeEvent(class QResizeEvent *) ?d_func@QDeclarativeBinding@@ABEPBVQDeclarativeBindingPrivate@@XZ @ 192 NONAME ABSENT ; class QDeclarativeBindingPrivate const * QDeclarativeBinding::d_func(void) const ?wrapMode@QDeclarativeText@@QBE?AW4WrapMode@1@XZ @ 193 NONAME ABSENT ; enum QDeclarativeText::WrapMode QDeclarativeText::wrapMode(void) const @@ -216,7 +216,7 @@ EXPORTS ?parentChanged@QDeclarativeItem@@IAEXPAV1@@Z @ 215 NONAME ; void QDeclarativeItem::parentChanged(class QDeclarativeItem *) ?columnNumber@QDeclarativeDebugFileReference@@QBEHXZ @ 216 NONAME ABSENT ; int QDeclarativeDebugFileReference::columnNumber(void) const ??0QDeclarativeListModel@@AAE@_NPAVQObject@@@Z @ 217 NONAME ABSENT ; QDeclarativeListModel::QDeclarativeListModel(bool, class QObject *) - ?apply@QDeclarativeState@@QAEXPAVQDeclarativeStateGroup@@PAVQDeclarativeTransition@@PAV1@@Z @ 218 NONAME ABSENT ; void QDeclarativeState::apply(class QDeclarativeStateGroup *, class QDeclarativeTransition *, class QDeclarativeState *) + ?apply@QDeclarativeState@@QAEXPAVQDeclarativeStateGroup@@PAVQDeclarativeTransition@@PAV1@@Z @ 218 NONAME ; void QDeclarativeState::apply(class QDeclarativeStateGroup *, class QDeclarativeTransition *, class QDeclarativeState *) ?isValid@QDeclarativeDomProperty@@QBE_NXZ @ 219 NONAME ABSENT ; bool QDeclarativeDomProperty::isValid(void) const ?trUtf8@QDeclarativeDebugExpressionQuery@@SA?AVQString@@PBD0@Z @ 220 NONAME ABSENT ; class QString QDeclarativeDebugExpressionQuery::trUtf8(char const *, char const *) ?statusChanged@QDeclarativeView@@IAEXW4Status@1@@Z @ 221 NONAME ; void QDeclarativeView::statusChanged(enum QDeclarativeView::Status) @@ -241,7 +241,7 @@ EXPORTS ??1QDeclarativeScaleGrid@@UAE@XZ @ 240 NONAME ABSENT ; QDeclarativeScaleGrid::~QDeclarativeScaleGrid(void) ?idString@QDeclarativeDebugObjectReference@@QBE?AVQString@@XZ @ 241 NONAME ABSENT ; class QString QDeclarativeDebugObjectReference::idString(void) const ?customTypeData@QDeclarativeDomObject@@QBE?AVQByteArray@@XZ @ 242 NONAME ABSENT ; class QByteArray QDeclarativeDomObject::customTypeData(void) const - ?stop@QDeclarativeTransition@@QAEXXZ @ 243 NONAME ABSENT ; void QDeclarativeTransition::stop(void) + ?stop@QDeclarativeTransition@@QAEXXZ @ 243 NONAME ; void QDeclarativeTransition::stop(void) ?data@QDeclarativeListModel@@UBE?AV?$QHash@HVQVariant@@@@HABV?$QList@H@@@Z @ 244 NONAME ABSENT ; class QHash<int, class QVariant> QDeclarativeListModel::data(int, class QList<int> const &) const ?verticalCenterOffset@QDeclarativeAnchors@@QBEMXZ @ 245 NONAME ABSENT ; float QDeclarativeAnchors::verticalCenterOffset(void) const ?metaObject@QDeclarativeText@@UBEPBUQMetaObject@@XZ @ 246 NONAME ABSENT ; struct QMetaObject const * QDeclarativeText::metaObject(void) const @@ -288,19 +288,19 @@ EXPORTS ?queryId@QDeclarativeDebugWatch@@QBEHXZ @ 287 NONAME ABSENT ; int QDeclarativeDebugWatch::queryId(void) const ?trUtf8@QDeclarativeExtensionPlugin@@SA?AVQString@@PBD0H@Z @ 288 NONAME ; class QString QDeclarativeExtensionPlugin::trUtf8(char const *, char const *, int) ?staticMetaObject@QDeclarativeComponent@@2UQMetaObject@@B @ 289 NONAME ; struct QMetaObject const QDeclarativeComponent::staticMetaObject - ?setStateGroup@QDeclarativeState@@QAEXPAVQDeclarativeStateGroup@@@Z @ 290 NONAME ABSENT ; void QDeclarativeState::setStateGroup(class QDeclarativeStateGroup *) + ?setStateGroup@QDeclarativeState@@QAEXPAVQDeclarativeStateGroup@@@Z @ 290 NONAME ; void QDeclarativeState::setStateGroup(class QDeclarativeStateGroup *) ?access@QMetaMethodBuilder@@QBE?AW4Access@QMetaMethod@@XZ @ 291 NONAME ABSENT ; enum QMetaMethod::Access QMetaMethodBuilder::access(void) const ?tr@QDeclarativeDebugQuery@@SA?AVQString@@PBD0@Z @ 292 NONAME ABSENT ; class QString QDeclarativeDebugQuery::tr(char const *, char const *) ?attachedPropertiesType@QDeclarativeType@@QBEPBUQMetaObject@@XZ @ 293 NONAME ABSENT ; struct QMetaObject const * QDeclarativeType::attachedPropertiesType(void) const - ?setName@QDeclarativeState@@QAEXABVQString@@@Z @ 294 NONAME ABSENT ; void QDeclarativeState::setName(class QString const &) - ?setReversed@QDeclarativeTransition@@QAEX_N@Z @ 295 NONAME ABSENT ; void QDeclarativeTransition::setReversed(bool) + ?setName@QDeclarativeState@@QAEXABVQString@@@Z @ 294 NONAME ; void QDeclarativeState::setName(class QString const &) + ?setReversed@QDeclarativeTransition@@QAEX_N@Z @ 295 NONAME ; void QDeclarativeTransition::setReversed(bool) ?idForObject@QDeclarativeDebugService@@SAHPAVQObject@@@Z @ 296 NONAME ABSENT ; int QDeclarativeDebugService::idForObject(class QObject *) ?qt_metacall@QDeclarativeDebugWatch@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 297 NONAME ABSENT ; int QDeclarativeDebugWatch::qt_metacall(enum QMetaObject::Call, int, void * *) - ?fromState@QDeclarativeTransition@@QBE?AVQString@@XZ @ 298 NONAME ABSENT ; class QString QDeclarativeTransition::fromState(void) const + ?fromState@QDeclarativeTransition@@QBE?AVQString@@XZ @ 298 NONAME ; class QString QDeclarativeTransition::fromState(void) const ??1QDeclarativeExpression@@UAE@XZ @ 299 NONAME ; QDeclarativeExpression::~QDeclarativeExpression(void) ?binding@QDeclarativePropertyPrivate@@SAPAVQDeclarativeAbstractBinding@@ABVQDeclarativeProperty@@@Z @ 300 NONAME ABSENT ; class QDeclarativeAbstractBinding * QDeclarativePropertyPrivate::binding(class QDeclarativeProperty const &) ?removeMethod@QMetaObjectBuilder@@QAEXH@Z @ 301 NONAME ABSENT ; void QMetaObjectBuilder::removeMethod(int) - ?operationAt@QDeclarativeState@@QBEPAVQDeclarativeStateOperation@@H@Z @ 302 NONAME ABSENT ; class QDeclarativeStateOperation * QDeclarativeState::operationAt(int) const + ?operationAt@QDeclarativeState@@QBEPAVQDeclarativeStateOperation@@H@Z @ 302 NONAME ; class QDeclarativeStateOperation * QDeclarativeState::operationAt(int) const ?methodCount@QMetaObjectBuilder@@QBEHXZ @ 303 NONAME ABSENT ; int QMetaObjectBuilder::methodCount(void) const ?font@QDeclarativeText@@QBE?AVQFont@@XZ @ 304 NONAME ABSENT ; class QFont QDeclarativeText::font(void) const ?completeCreate@QDeclarativeComponent@@UAEXXZ @ 305 NONAME ; void QDeclarativeComponent::completeCreate(void) @@ -320,7 +320,7 @@ EXPORTS ?tr@QDeclarativeValueType@@SA?AVQString@@PBD0H@Z @ 319 NONAME ABSENT ; class QString QDeclarativeValueType::tr(char const *, char const *, int) ?parent@QDeclarativeOpenMetaObject@@IBEPAUQAbstractDynamicMetaObject@@XZ @ 320 NONAME ABSENT ; struct QAbstractDynamicMetaObject * QDeclarativeOpenMetaObject::parent(void) const ??0QDeclarativeDebugClient@@QAE@ABVQString@@PAVQDeclarativeDebugConnection@@@Z @ 321 NONAME ABSENT ; QDeclarativeDebugClient::QDeclarativeDebugClient(class QString const &, class QDeclarativeDebugConnection *) - ?qt_metacall@QDeclarativeStateOperation@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 322 NONAME ABSENT ; int QDeclarativeStateOperation::qt_metacall(enum QMetaObject::Call, int, void * *) + ?qt_metacall@QDeclarativeStateOperation@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 322 NONAME ; int QDeclarativeStateOperation::qt_metacall(enum QMetaObject::Call, int, void * *) ?type@Variant@QDeclarativeParser@@QBE?AW4Type@12@XZ @ 323 NONAME ; enum QDeclarativeParser::Variant::Type QDeclarativeParser::Variant::type(void) const ??6QDeclarativeInfo@@QAEAAV0@_N@Z @ 324 NONAME ; class QDeclarativeInfo & QDeclarativeInfo::operator<<(bool) ?value@QDeclarativeDomProperty@@QBE?AVQDeclarativeDomValue@@XZ @ 325 NONAME ABSENT ; class QDeclarativeDomValue QDeclarativeDomProperty::value(void) const @@ -357,8 +357,8 @@ EXPORTS ??1QDeclarativePropertyPrivate@@QAE@XZ @ 356 NONAME ABSENT ; QDeclarativePropertyPrivate::~QDeclarativePropertyPrivate(void) ?setBaselineOffset@QDeclarativeItem@@QAEXM@Z @ 357 NONAME ; void QDeclarativeItem::setBaselineOffset(float) ??0QDeclarativeDebugPropertyReference@@QAE@XZ @ 358 NONAME ABSENT ; QDeclarativeDebugPropertyReference::QDeclarativeDebugPropertyReference(void) - ?tr@QDeclarativeStateOperation@@SA?AVQString@@PBD0H@Z @ 359 NONAME ABSENT ; class QString QDeclarativeStateOperation::tr(char const *, char const *, int) - ?setState@QDeclarativeStateGroup@@QAEXABVQString@@@Z @ 360 NONAME ABSENT ; void QDeclarativeStateGroup::setState(class QString const &) + ?tr@QDeclarativeStateOperation@@SA?AVQString@@PBD0H@Z @ 359 NONAME ; class QString QDeclarativeStateOperation::tr(char const *, char const *, int) + ?setState@QDeclarativeStateGroup@@QAEXABVQString@@@Z @ 360 NONAME ; void QDeclarativeStateGroup::setState(class QString const &) ??_EQDeclarativeImageProvider@@UAE@I@Z @ 361 NONAME ; QDeclarativeImageProvider::~QDeclarativeImageProvider(unsigned int) ?trUtf8@QDeclarativeComponent@@SA?AVQString@@PBD0@Z @ 362 NONAME ; class QString QDeclarativeComponent::trUtf8(char const *, char const *) ?isLoading@QDeclarativeComponent@@QBE_NXZ @ 363 NONAME ; bool QDeclarativeComponent::isLoading(void) const @@ -413,11 +413,11 @@ EXPORTS ??0QDeclarativeComponent@@AAE@PAVQDeclarativeEngine@@PAVQDeclarativeCompiledData@@HHPAVQObject@@@Z @ 412 NONAME ; QDeclarativeComponent::QDeclarativeComponent(class QDeclarativeEngine *, class QDeclarativeCompiledData *, int, int, class QObject *) ?resources_count@QDeclarativeItemPrivate@@SAHPAV?$QDeclarativeListProperty@VQObject@@@@@Z @ 413 NONAME ; int QDeclarativeItemPrivate::resources_count(class QDeclarativeListProperty<class QObject> *) ?timerEvent@QDeclarativeView@@MAEXPAVQTimerEvent@@@Z @ 414 NONAME ; void QDeclarativeView::timerEvent(class QTimerEvent *) - ?setToState@QDeclarativeTransition@@QAEXABVQString@@@Z @ 415 NONAME ABSENT ; void QDeclarativeTransition::setToState(class QString const &) + ?setToState@QDeclarativeTransition@@QAEXABVQString@@@Z @ 415 NONAME ; void QDeclarativeTransition::setToState(class QString const &) ?requestPixmap@QDeclarativeImageProvider@@UAE?AVQPixmap@@ABVQString@@PAVQSize@@ABV4@@Z @ 416 NONAME ; class QPixmap QDeclarativeImageProvider::requestPixmap(class QString const &, class QSize *, class QSize const &) ?methodType@QMetaMethodBuilder@@QBE?AW4MethodType@QMetaMethod@@XZ @ 417 NONAME ABSENT ; enum QMetaMethod::MethodType QMetaMethodBuilder::methodType(void) const ?getStaticMetaObject@QDeclarativeView@@SAABUQMetaObject@@XZ @ 418 NONAME ; struct QMetaObject const & QDeclarativeView::getStaticMetaObject(void) - ?metaObject@QDeclarativeStateOperation@@UBEPBUQMetaObject@@XZ @ 419 NONAME ABSENT ; struct QMetaObject const * QDeclarativeStateOperation::metaObject(void) const + ?metaObject@QDeclarativeStateOperation@@UBEPBUQMetaObject@@XZ @ 419 NONAME ; struct QMetaObject const * QDeclarativeStateOperation::metaObject(void) const ?keyReleasePreHandler@QDeclarativeItem@@IAEXPAVQKeyEvent@@@Z @ 420 NONAME ; void QDeclarativeItem::keyReleasePreHandler(class QKeyEvent *) ?append@QDeclarativeListModel@@QAEXABVQScriptValue@@@Z @ 421 NONAME ABSENT ; void QDeclarativeListModel::append(class QScriptValue const &) ??1QDeclarativeDebugObjectReference@@QAE@XZ @ 422 NONAME ABSENT ; QDeclarativeDebugObjectReference::~QDeclarativeDebugObjectReference(void) @@ -437,10 +437,10 @@ EXPORTS ?tr@QDeclarativeDebugExpressionQuery@@SA?AVQString@@PBD0@Z @ 436 NONAME ABSENT ; class QString QDeclarativeDebugExpressionQuery::tr(char const *, char const *) ?styleColorChanged@QDeclarativeText@@IAEXABVQColor@@@Z @ 437 NONAME ABSENT ; void QDeclarativeText::styleColorChanged(class QColor const &) ?getStaticMetaObject@QDeclarativeDebugExpressionQuery@@SAABUQMetaObject@@XZ @ 438 NONAME ABSENT ; struct QMetaObject const & QDeclarativeDebugExpressionQuery::getStaticMetaObject(void) - ?trUtf8@QDeclarativeTransition@@SA?AVQString@@PBD0H@Z @ 439 NONAME ABSENT ; class QString QDeclarativeTransition::trUtf8(char const *, char const *, int) + ?trUtf8@QDeclarativeTransition@@SA?AVQString@@PBD0H@Z @ 439 NONAME ; class QString QDeclarativeTransition::trUtf8(char const *, char const *, int) ?writeValueProperty@QDeclarativePropertyPrivate@@QAE_NABVQVariant@@V?$QFlags@W4WriteFlag@QDeclarativePropertyPrivate@@@@@Z @ 440 NONAME ABSENT ; bool QDeclarativePropertyPrivate::writeValueProperty(class QVariant const &, class QFlags<enum QDeclarativePropertyPrivate::WriteFlag>) ?errors@QDeclarativeCustomParser@@QBE?AV?$QList@VQDeclarativeError@@@@XZ @ 441 NONAME ; class QList<class QDeclarativeError> QDeclarativeCustomParser::errors(void) const - ?statesProperty@QDeclarativeStateGroup@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeState@@@@XZ @ 442 NONAME ABSENT ; class QDeclarativeListProperty<class QDeclarativeState> QDeclarativeStateGroup::statesProperty(void) + ?statesProperty@QDeclarativeStateGroup@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeState@@@@XZ @ 442 NONAME ; class QDeclarativeListProperty<class QDeclarativeState> QDeclarativeStateGroup::statesProperty(void) ?roles@QDeclarativeListModel@@UBE?AV?$QList@H@@XZ @ 443 NONAME ABSENT ; class QList<int> QDeclarativeListModel::roles(void) const ?name@QMetaEnumBuilder@@QBE?AVQByteArray@@XZ @ 444 NONAME ABSENT ; class QByteArray QMetaEnumBuilder::name(void) const ??_EQDeclarativeDebugRootContextQuery@@UAE@I@Z @ 445 NONAME ABSENT ; QDeclarativeDebugRootContextQuery::~QDeclarativeDebugRootContextQuery(unsigned int) @@ -456,11 +456,11 @@ EXPORTS ?interfaceIId@QDeclarativeMetaType@@SAPBDH@Z @ 455 NONAME ABSENT ; char const * QDeclarativeMetaType::interfaceIId(int) ?isValid@QDeclarativeDomDynamicProperty@@QBE_NXZ @ 456 NONAME ABSENT ; bool QDeclarativeDomDynamicProperty::isValid(void) const ?baselineChanged@QDeclarativeAnchors@@IAEXXZ @ 457 NONAME ABSENT ; void QDeclarativeAnchors::baselineChanged(void) - ?name@QDeclarativeState@@QBE?AVQString@@XZ @ 458 NONAME ABSENT ; class QString QDeclarativeState::name(void) const + ?name@QDeclarativeState@@QBE?AVQString@@XZ @ 458 NONAME ; class QString QDeclarativeState::name(void) const ??4QDeclarativeDomObject@@QAEAAV0@ABV0@@Z @ 459 NONAME ABSENT ; class QDeclarativeDomObject & QDeclarativeDomObject::operator=(class QDeclarativeDomObject const &) ?qt_metacall@QDeclarativeContext@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 460 NONAME ; int QDeclarativeContext::qt_metacall(enum QMetaObject::Call, int, void * *) ??_EQDeclarativeValueType@@UAE@I@Z @ 461 NONAME ABSENT ; QDeclarativeValueType::~QDeclarativeValueType(unsigned int) - ?qt_metacall@QDeclarativeState@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 462 NONAME ABSENT ; int QDeclarativeState::qt_metacall(enum QMetaObject::Call, int, void * *) + ?qt_metacall@QDeclarativeState@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 462 NONAME ; int QDeclarativeState::qt_metacall(enum QMetaObject::Call, int, void * *) ?isEnabled@QDeclarativeDebugService@@QBE_NXZ @ 463 NONAME ABSENT ; bool QDeclarativeDebugService::isEnabled(void) const ?stateChanged@QDeclarativeDebugWatch@@IAEXW4State@1@@Z @ 464 NONAME ABSENT ; void QDeclarativeDebugWatch::stateChanged(enum QDeclarativeDebugWatch::State) ??0QMetaMethodBuilder@@AAE@PBVQMetaObjectBuilder@@H@Z @ 465 NONAME ABSENT ; QMetaMethodBuilder::QMetaMethodBuilder(class QMetaObjectBuilder const *, int) @@ -504,7 +504,7 @@ EXPORTS ??4QDeclarativeDomComponent@@QAEAAV0@ABV0@@Z @ 503 NONAME ABSENT ; class QDeclarativeDomComponent & QDeclarativeDomComponent::operator=(class QDeclarativeDomComponent const &) ?tr@QPacketProtocol@@SA?AVQString@@PBD0@Z @ 504 NONAME ABSENT ; class QString QPacketProtocol::tr(char const *, char const *) ?setFont@QDeclarativeText@@QAEXABVQFont@@@Z @ 505 NONAME ABSENT ; void QDeclarativeText::setFont(class QFont const &) - ?fromChanged@QDeclarativeTransition@@IAEXXZ @ 506 NONAME ABSENT ; void QDeclarativeTransition::fromChanged(void) + ?fromChanged@QDeclarativeTransition@@IAEXXZ @ 506 NONAME ; void QDeclarativeTransition::fromChanged(void) ?addMethod@QMetaObjectBuilder@@QAE?AVQMetaMethodBuilder@@ABVQMetaMethod@@@Z @ 507 NONAME ABSENT ; class QMetaMethodBuilder QMetaObjectBuilder::addMethod(class QMetaMethod const &) ?setHeight@QDeclarativeItemPrivate@@UAEXM@Z @ 508 NONAME ; void QDeclarativeItemPrivate::setHeight(float) ??0Variant@QDeclarativeParser@@QAE@ABV01@@Z @ 509 NONAME ; QDeclarativeParser::Variant::Variant(class QDeclarativeParser::Variant const &) @@ -527,7 +527,7 @@ EXPORTS ??0QDeclarativeDomValue@@QAE@XZ @ 526 NONAME ABSENT ; QDeclarativeDomValue::QDeclarativeDomValue(void) ?init@QDeclarativeItemPrivate@@QAEXPAVQDeclarativeItem@@@Z @ 527 NONAME ; void QDeclarativeItemPrivate::init(class QDeclarativeItem *) ?addProperty@QMetaObjectBuilder@@QAE?AVQMetaPropertyBuilder@@ABVQByteArray@@0H@Z @ 528 NONAME ABSENT ; class QMetaPropertyBuilder QMetaObjectBuilder::addProperty(class QByteArray const &, class QByteArray const &, int) - ?getStaticMetaObject@QDeclarativeState@@SAABUQMetaObject@@XZ @ 529 NONAME ABSENT ; struct QMetaObject const & QDeclarativeState::getStaticMetaObject(void) + ?getStaticMetaObject@QDeclarativeState@@SAABUQMetaObject@@XZ @ 529 NONAME ; struct QMetaObject const & QDeclarativeState::getStaticMetaObject(void) ?isResettable@QMetaPropertyBuilder@@QBE_NXZ @ 530 NONAME ABSENT ; bool QMetaPropertyBuilder::isResettable(void) const ?focusScopeItemChange@QDeclarativeItemPrivate@@UAEX_N@Z @ 531 NONAME ; void QDeclarativeItemPrivate::focusScopeItemChange(bool) ?bottomMarginChanged@QDeclarativeAnchors@@IAEXXZ @ 532 NONAME ABSENT ; void QDeclarativeAnchors::bottomMarginChanged(void) @@ -551,7 +551,7 @@ EXPORTS ??0QDeclarativeListModel@@QAE@PAVQObject@@@Z @ 550 NONAME ABSENT ; QDeclarativeListModel::QDeclarativeListModel(class QObject *) ?addWatch@QDeclarativeEngineDebug@@QAEPAVQDeclarativeDebugWatch@@ABVQDeclarativeDebugContextReference@@ABVQString@@PAVQObject@@@Z @ 551 NONAME ABSENT ; class QDeclarativeDebugWatch * QDeclarativeEngineDebug::addWatch(class QDeclarativeDebugContextReference const &, class QString const &, class QObject *) ?setColumn@QDeclarativeError@@QAEXH@Z @ 552 NONAME ; void QDeclarativeError::setColumn(int) - ??1QDeclarativeTransition@@UAE@XZ @ 553 NONAME ABSENT ; QDeclarativeTransition::~QDeclarativeTransition(void) + ??1QDeclarativeTransition@@UAE@XZ @ 553 NONAME ; QDeclarativeTransition::~QDeclarativeTransition(void) ??AQDeclarativePropertyMap@@QBE?AVQVariant@@ABVQString@@@Z @ 554 NONAME ; class QVariant QDeclarativePropertyMap::operator[](class QString const &) const ?qt_metacall@QDeclarativeListModel@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 555 NONAME ABSENT ; int QDeclarativeListModel::qt_metacall(enum QMetaObject::Call, int, void * *) ?qdeclarativeelement_destructor@QDeclarativePrivate@@YAXPAVQObject@@@Z @ 556 NONAME ; void QDeclarativePrivate::qdeclarativeelement_destructor(class QObject *) @@ -589,8 +589,8 @@ EXPORTS ?variantFromString@QDeclarativeStringConverters@@YA?AVQVariant@@ABVQString@@@Z @ 588 NONAME ABSENT ; class QVariant QDeclarativeStringConverters::variantFromString(class QString const &) ?qt_metacall@QDeclarativeScaleGrid@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 589 NONAME ABSENT ; int QDeclarativeScaleGrid::qt_metacall(enum QMetaObject::Call, int, void * *) ?size@QDeclarativePropertyMap@@QBEHXZ @ 590 NONAME ; int QDeclarativePropertyMap::size(void) const - ?cancel@QDeclarativeState@@QAEXXZ @ 591 NONAME ABSENT ; void QDeclarativeState::cancel(void) - ?qt_metacall@QDeclarativeStateGroup@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 592 NONAME ABSENT ; int QDeclarativeStateGroup::qt_metacall(enum QMetaObject::Call, int, void * *) + ?cancel@QDeclarativeState@@QAEXXZ @ 591 NONAME ; void QDeclarativeState::cancel(void) + ?qt_metacall@QDeclarativeStateGroup@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 592 NONAME ; int QDeclarativeStateGroup::qt_metacall(enum QMetaObject::Call, int, void * *) ??0QDeclarativePropertyPrivate@@QAE@XZ @ 593 NONAME ABSENT ; QDeclarativePropertyPrivate::QDeclarativePropertyPrivate(void) ?getStaticMetaObject@QDeclarativeDebugPropertyWatch@@SAABUQMetaObject@@XZ @ 594 NONAME ABSENT ; struct QMetaObject const & QDeclarativeDebugPropertyWatch::getStaticMetaObject(void) ?trUtf8@QDeclarativeDebugWatch@@SA?AVQString@@PBD0H@Z @ 595 NONAME ABSENT ; class QString QDeclarativeDebugWatch::trUtf8(char const *, char const *, int) @@ -599,7 +599,7 @@ EXPORTS ?evaluateEnum@QDeclarativeCustomParser@@IBEHABVQByteArray@@@Z @ 598 NONAME ; int QDeclarativeCustomParser::evaluateEnum(class QByteArray const &) const ?setState@QDeclarativeDebugQuery@@AAEXW4State@1@@Z @ 599 NONAME ABSENT ; void QDeclarativeDebugQuery::setState(enum QDeclarativeDebugQuery::State) ?d_func@QDeclarativeText@@ABEPBVQDeclarativeTextPrivate@@XZ @ 600 NONAME ABSENT ; class QDeclarativeTextPrivate const * QDeclarativeText::d_func(void) const - ?transitionsProperty@QDeclarativeStateGroup@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeTransition@@@@XZ @ 601 NONAME ABSENT ; class QDeclarativeListProperty<class QDeclarativeTransition> QDeclarativeStateGroup::transitionsProperty(void) + ?transitionsProperty@QDeclarativeStateGroup@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeTransition@@@@XZ @ 601 NONAME ; class QDeclarativeListProperty<class QDeclarativeTransition> QDeclarativeStateGroup::transitionsProperty(void) ?typeName@QDeclarativeType@@QBE?AVQByteArray@@XZ @ 602 NONAME ABSENT ; class QByteArray QDeclarativeType::typeName(void) const ?asStringList@Variant@QDeclarativeParser@@QBE?AVQStringList@@XZ @ 603 NONAME ; class QStringList QDeclarativeParser::Variant::asStringList(void) const ?removeKey@QMetaEnumBuilder@@QAEXH@Z @ 604 NONAME ABSENT ; void QMetaEnumBuilder::removeKey(int) @@ -612,7 +612,7 @@ EXPORTS ??0QDeclarativePen@@QAE@PAVQObject@@@Z @ 611 NONAME ABSENT ; QDeclarativePen::QDeclarativePen(class QObject *) ?trUtf8@QPacketProtocol@@SA?AVQString@@PBD0H@Z @ 612 NONAME ABSENT ; class QString QPacketProtocol::trUtf8(char const *, char const *, int) ?setContextObject@QDeclarativeContext@@QAEXPAVQObject@@@Z @ 613 NONAME ; void QDeclarativeContext::setContextObject(class QObject *) - ??_EQDeclarativeState@@UAE@I@Z @ 614 NONAME ABSENT ; QDeclarativeState::~QDeclarativeState(unsigned int) + ??_EQDeclarativeState@@UAE@I@Z @ 614 NONAME ; QDeclarativeState::~QDeclarativeState(unsigned int) ?expression@QDeclarativeExpression@@QBE?AVQString@@XZ @ 615 NONAME ; class QString QDeclarativeExpression::expression(void) const ??1QDeclarativeDomDocument@@QAE@XZ @ 616 NONAME ABSENT ; QDeclarativeDomDocument::~QDeclarativeDomDocument(void) ?trUtf8@QDeclarativeListModel@@SA?AVQString@@PBD0H@Z @ 617 NONAME ABSENT ; class QString QDeclarativeListModel::trUtf8(char const *, char const *, int) @@ -621,15 +621,15 @@ EXPORTS ?sceneEvent@QDeclarativeItem@@MAE_NPAVQEvent@@@Z @ 620 NONAME ; bool QDeclarativeItem::sceneEvent(class QEvent *) ??0QDeclarativeDebugRootContextQuery@@AAE@PAVQObject@@@Z @ 621 NONAME ABSENT ; QDeclarativeDebugRootContextQuery::QDeclarativeDebugRootContextQuery(class QObject *) ?name@QDeclarativeDebugEngineReference@@QBE?AVQString@@XZ @ 622 NONAME ABSENT ; class QString QDeclarativeDebugEngineReference::name(void) const - ??_EQDeclarativeTransition@@UAE@I@Z @ 623 NONAME ABSENT ; QDeclarativeTransition::~QDeclarativeTransition(unsigned int) + ??_EQDeclarativeTransition@@UAE@I@Z @ 623 NONAME ; QDeclarativeTransition::~QDeclarativeTransition(unsigned int) ??0QDeclarativeAction@@QAE@ABV0@@Z @ 624 NONAME ABSENT ; QDeclarativeAction::QDeclarativeAction(class QDeclarativeAction const &) - ?extends@QDeclarativeState@@QBE?AVQString@@XZ @ 625 NONAME ABSENT ; class QString QDeclarativeState::extends(void) const + ?extends@QDeclarativeState@@QBE?AVQString@@XZ @ 625 NONAME ; class QString QDeclarativeState::extends(void) const ?error@QDeclarativeCustomParser@@IAEXABVQDeclarativeCustomParserProperty@@ABVQString@@@Z @ 626 NONAME ; void QDeclarativeCustomParser::error(class QDeclarativeCustomParserProperty const &, class QString const &) ??0QDeclarativeCustomParserNode@@QAE@XZ @ 627 NONAME ; QDeclarativeCustomParserNode::QDeclarativeCustomParserNode(void) ?version@QDeclarativeDomImport@@QBE?AVQString@@XZ @ 628 NONAME ABSENT ; class QString QDeclarativeDomImport::version(void) const ?smooth@QDeclarativeItem@@QBE_NXZ @ 629 NONAME ; bool QDeclarativeItem::smooth(void) const ??1QDeclarativeInfo@@QAE@XZ @ 630 NONAME ; QDeclarativeInfo::~QDeclarativeInfo(void) - ?qt_metacast@QDeclarativeStateOperation@@UAEPAXPBD@Z @ 631 NONAME ABSENT ; void * QDeclarativeStateOperation::qt_metacast(char const *) + ?qt_metacast@QDeclarativeStateOperation@@UAEPAXPBD@Z @ 631 NONAME ; void * QDeclarativeStateOperation::qt_metacast(char const *) ??4QDeclarativeDebugEngineReference@@QAEAAV0@ABV0@@Z @ 632 NONAME ABSENT ; class QDeclarativeDebugEngineReference & QDeclarativeDebugEngineReference::operator=(class QDeclarativeDebugEngineReference const &) ?isValueType@QDeclarativePropertyPrivate@@QBE_NXZ @ 633 NONAME ABSENT ; bool QDeclarativePropertyPrivate::isValueType(void) const ??0QDeclarativeDomValueValueSource@@QAE@ABV0@@Z @ 634 NONAME ABSENT ; QDeclarativeDomValueValueSource::QDeclarativeDomValueValueSource(class QDeclarativeDomValueValueSource const &) @@ -640,7 +640,7 @@ EXPORTS ?qt_metacall@QDeclarativeDebugObjectExpressionWatch@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 639 NONAME ABSENT ; int QDeclarativeDebugObjectExpressionWatch::qt_metacall(enum QMetaObject::Call, int, void * *) ?d_func@QDeclarativeItem@@AAEPAVQDeclarativeItemPrivate@@XZ @ 640 NONAME ; class QDeclarativeItemPrivate * QDeclarativeItem::d_func(void) ?binding@QDeclarativeDomValueBinding@@QBE?AVQString@@XZ @ 641 NONAME ABSENT ; class QString QDeclarativeDomValueBinding::binding(void) const - ?updateAutoState@QDeclarativeStateGroup@@AAE_NXZ @ 642 NONAME ABSENT ; bool QDeclarativeStateGroup::updateAutoState(void) + ?updateAutoState@QDeclarativeStateGroup@@AAE_NXZ @ 642 NONAME ; bool QDeclarativeStateGroup::updateAutoState(void) ?tr@QDeclarativeDebugService@@SA?AVQString@@PBD0@Z @ 643 NONAME ABSENT ; class QString QDeclarativeDebugService::tr(char const *, char const *) ?tr@QDeclarativeComponent@@SA?AVQString@@PBD0H@Z @ 644 NONAME ; class QString QDeclarativeComponent::tr(char const *, char const *, int) ??1QDeclarativeProperty@@QAE@XZ @ 645 NONAME ; QDeclarativeProperty::~QDeclarativeProperty(void) @@ -678,11 +678,11 @@ EXPORTS ?elideMode@QDeclarativeText@@QBE?AW4TextElideMode@1@XZ @ 677 NONAME ABSENT ; enum QDeclarativeText::TextElideMode QDeclarativeText::elideMode(void) const ?baseUrl@QDeclarativeContext@@QBE?AVQUrl@@XZ @ 678 NONAME ; class QUrl QDeclarativeContext::baseUrl(void) const ?qt_metacall@QDeclarativeDebugRootContextQuery@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 679 NONAME ABSENT ; int QDeclarativeDebugRootContextQuery::qt_metacall(enum QMetaObject::Call, int, void * *) - ?isNamed@QDeclarativeState@@QBE_NXZ @ 680 NONAME ABSENT ; bool QDeclarativeState::isNamed(void) const + ?isNamed@QDeclarativeState@@QBE_NXZ @ 680 NONAME ; bool QDeclarativeState::isNamed(void) const ?isString@Variant@QDeclarativeParser@@QBE_NXZ @ 681 NONAME ; bool QDeclarativeParser::Variant::isString(void) const ?restart@QDeclarativeItemPrivate@@SA_JAAVQElapsedTimer@@@Z @ 682 NONAME ; long long QDeclarativeItemPrivate::restart(class QElapsedTimer &) ?trUtf8@QDeclarativeDebugClient@@SA?AVQString@@PBD0H@Z @ 683 NONAME ABSENT ; class QString QDeclarativeDebugClient::trUtf8(char const *, char const *, int) - ?qt_metacast@QDeclarativeTransition@@UAEPAXPBD@Z @ 684 NONAME ABSENT ; void * QDeclarativeTransition::qt_metacast(char const *) + ?qt_metacast@QDeclarativeTransition@@UAEPAXPBD@Z @ 684 NONAME ; void * QDeclarativeTransition::qt_metacast(char const *) ??1QDeclarativePixmap@@QAE@XZ @ 685 NONAME ; QDeclarativePixmap::~QDeclarativePixmap(void) ?timeFromString@QDeclarativeStringConverters@@YA?AVQTime@@ABVQString@@PA_N@Z @ 686 NONAME ABSENT ; class QTime QDeclarativeStringConverters::timeFromString(class QString const &, bool *) ?d_func@QDeclarativeDebugClient@@AAEPAVQDeclarativeDebugClientPrivate@@XZ @ 687 NONAME ABSENT ; class QDeclarativeDebugClientPrivate * QDeclarativeDebugClient::d_func(void) @@ -694,7 +694,7 @@ EXPORTS ??0QDeclarativeDebugObjectReference@@QAE@XZ @ 693 NONAME ABSENT ; QDeclarativeDebugObjectReference::QDeclarativeDebugObjectReference(void) ?staticMetaObject@QDeclarativeExtensionPlugin@@2UQMetaObject@@B @ 694 NONAME ; struct QMetaObject const QDeclarativeExtensionPlugin::staticMetaObject ?isNull@QDeclarativeScaleGrid@@QBE_NXZ @ 695 NONAME ABSENT ; bool QDeclarativeScaleGrid::isNull(void) const - ??_EQDeclarativeStateOperation@@UAE@I@Z @ 696 NONAME ABSENT ; QDeclarativeStateOperation::~QDeclarativeStateOperation(unsigned int) + ??_EQDeclarativeStateOperation@@UAE@I@Z @ 696 NONAME ; QDeclarativeStateOperation::~QDeclarativeStateOperation(unsigned int) ??6QDeclarativeInfo@@QAEAAV0@H@Z @ 697 NONAME ; class QDeclarativeInfo & QDeclarativeInfo::operator<<(int) ??0QDeclarativeDomDynamicProperty@@QAE@XZ @ 698 NONAME ABSENT ; QDeclarativeDomDynamicProperty::QDeclarativeDomDynamicProperty(void) ?tr@QDeclarativeRectangle@@SA?AVQString@@PBD0H@Z @ 699 NONAME ABSENT ; class QString QDeclarativeRectangle::tr(char const *, char const *, int) @@ -718,7 +718,7 @@ EXPORTS ?qt_metacast@QDeclarativeView@@UAEPAXPBD@Z @ 717 NONAME ; void * QDeclarativeView::qt_metacast(char const *) ?mapToItem@QDeclarativeItem@@QBE?AVQScriptValue@@ABV2@MM@Z @ 718 NONAME ; class QScriptValue QDeclarativeItem::mapToItem(class QScriptValue const &, float, float) const ?setPluginPathList@QDeclarativeEngine@@QAEXABVQStringList@@@Z @ 719 NONAME ; void QDeclarativeEngine::setPluginPathList(class QStringList const &) - ?metaObject@QDeclarativeState@@UBEPBUQMetaObject@@XZ @ 720 NONAME ABSENT ; struct QMetaObject const * QDeclarativeState::metaObject(void) const + ?metaObject@QDeclarativeState@@UBEPBUQMetaObject@@XZ @ 720 NONAME ; struct QMetaObject const * QDeclarativeState::metaObject(void) const ?boundingRect@QDeclarativeRectangle@@UBE?AVQRectF@@XZ @ 721 NONAME ABSENT ; class QRectF QDeclarativeRectangle::boundingRect(void) const ?uri@QDeclarativeDomImport@@QBE?AVQString@@XZ @ 722 NONAME ABSENT ; class QString QDeclarativeDomImport::uri(void) const ?setContextProperty@QDeclarativeContext@@QAEXABVQString@@PAVQObject@@@Z @ 723 NONAME ; void QDeclarativeContext::setContextProperty(class QString const &, class QObject *) @@ -769,13 +769,13 @@ EXPORTS ?setSuperClass@QMetaObjectBuilder@@QAEXPBUQMetaObject@@@Z @ 768 NONAME ABSENT ; void QMetaObjectBuilder::setSuperClass(struct QMetaObject const *) ?contains@QDeclarativePropertyMap@@QBE_NABVQString@@@Z @ 769 NONAME ; bool QDeclarativePropertyMap::contains(class QString const &) const ?setGradient@QDeclarativeRectangle@@QAEXPAVQDeclarativeGradient@@@Z @ 770 NONAME ABSENT ; void QDeclarativeRectangle::setGradient(class QDeclarativeGradient *) - ?metaObject@QDeclarativeTransition@@UBEPBUQMetaObject@@XZ @ 771 NONAME ABSENT ; struct QMetaObject const * QDeclarativeTransition::metaObject(void) const + ?metaObject@QDeclarativeTransition@@UBEPBUQMetaObject@@XZ @ 771 NONAME ; struct QMetaObject const * QDeclarativeTransition::metaObject(void) const ?defaultMethod@QDeclarativeMetaType@@SA?AVQMetaMethod@@PBUQMetaObject@@@Z @ 772 NONAME ABSENT ; class QMetaMethod QDeclarativeMetaType::defaultMethod(struct QMetaObject const *) ?tr@QDeclarativeExtensionPlugin@@SA?AVQString@@PBD0H@Z @ 773 NONAME ; class QString QDeclarativeExtensionPlugin::tr(char const *, char const *, int) ?metaObject@QDeclarativeValueType@@UBEPBUQMetaObject@@XZ @ 774 NONAME ABSENT ; struct QMetaObject const * QDeclarativeValueType::metaObject(void) const ?hasNotifySignal@QDeclarativeProperty@@QBE_NXZ @ 775 NONAME ; bool QDeclarativeProperty::hasNotifySignal(void) const ?create@QDeclarativeType@@QBEXPAPAVQObject@@PAPAXI@Z @ 776 NONAME ABSENT ; void QDeclarativeType::create(class QObject * *, void * *, unsigned int) const - ?reversible@QDeclarativeTransition@@QBE_NXZ @ 777 NONAME ABSENT ; bool QDeclarativeTransition::reversible(void) const + ?reversible@QDeclarativeTransition@@QBE_NXZ @ 777 NONAME ; bool QDeclarativeTransition::reversible(void) const ?invalidPacket@QPacketProtocol@@IAEXXZ @ 778 NONAME ABSENT ; void QPacketProtocol::invalidPacket(void) ??0QDeclarativeDebugObjectReference@@QAE@H@Z @ 779 NONAME ABSENT ; QDeclarativeDebugObjectReference::QDeclarativeDebugObjectReference(int) ?superClass@QMetaObjectBuilder@@QBEPBUQMetaObject@@XZ @ 780 NONAME ABSENT ; struct QMetaObject const * QMetaObjectBuilder::superClass(void) const @@ -809,7 +809,7 @@ EXPORTS ?defaultProperty@QDeclarativeMetaType@@SA?AVQMetaProperty@@PAVQObject@@@Z @ 808 NONAME ABSENT ; class QMetaProperty QDeclarativeMetaType::defaultProperty(class QObject *) ?resetHeight@QDeclarativeItemPrivate@@UAEXXZ @ 809 NONAME ; void QDeclarativeItemPrivate::resetHeight(void) ?qt_metacast@QDeclarativeDebugPropertyWatch@@UAEPAXPBD@Z @ 810 NONAME ABSENT ; void * QDeclarativeDebugPropertyWatch::qt_metacast(char const *) - ??1QDeclarativeStateOperation@@UAE@XZ @ 811 NONAME ABSENT ; QDeclarativeStateOperation::~QDeclarativeStateOperation(void) + ??1QDeclarativeStateOperation@@UAE@XZ @ 811 NONAME ; QDeclarativeStateOperation::~QDeclarativeStateOperation(void) ??_EQDeclarativeDebugQuery@@UAE@I@Z @ 812 NONAME ABSENT ; QDeclarativeDebugQuery::~QDeclarativeDebugQuery(unsigned int) ?update@QDeclarativeAbstractBinding@@QAEXXZ @ 813 NONAME ABSENT ; void QDeclarativeAbstractBinding::update(void) ?tr@QDeclarativeBehavior@@SA?AVQString@@PBD0H@Z @ 814 NONAME ABSENT ; class QString QDeclarativeBehavior::tr(char const *, char const *, int) @@ -819,12 +819,12 @@ EXPORTS ??0QDeclarativeView@@QAE@ABVQUrl@@PAVQWidget@@@Z @ 818 NONAME ; QDeclarativeView::QDeclarativeView(class QUrl const &, class QWidget *) ?valueChanged@QDeclarativeExpression@@IAEXXZ @ 819 NONAME ; void QDeclarativeExpression::valueChanged(void) ??_EQDeclarativeView@@UAE@I@Z @ 820 NONAME ; QDeclarativeView::~QDeclarativeView(unsigned int) - ?trUtf8@QDeclarativeStateGroup@@SA?AVQString@@PBD0H@Z @ 821 NONAME ABSENT ; class QString QDeclarativeStateGroup::trUtf8(char const *, char const *, int) + ?trUtf8@QDeclarativeStateGroup@@SA?AVQString@@PBD0H@Z @ 821 NONAME ; class QString QDeclarativeStateGroup::trUtf8(char const *, char const *, int) ?tag@QMetaMethodBuilder@@QBE?AVQByteArray@@XZ @ 822 NONAME ABSENT ; class QByteArray QMetaMethodBuilder::tag(void) const ?getStaticMetaObject@QPacketProtocol@@SAABUQMetaObject@@XZ @ 823 NONAME ABSENT ; struct QMetaObject const & QPacketProtocol::getStaticMetaObject(void) ?setContext@QDeclarativeScriptString@@QAEXPAVQDeclarativeContext@@@Z @ 824 NONAME ; void QDeclarativeScriptString::setContext(class QDeclarativeContext *) ?addImageProvider@QDeclarativeEngine@@QAEXABVQString@@PAVQDeclarativeImageProvider@@@Z @ 825 NONAME ; void QDeclarativeEngine::addImageProvider(class QString const &, class QDeclarativeImageProvider *) - ?d_func@QDeclarativeStateGroup@@ABEPBVQDeclarativeStateGroupPrivate@@XZ @ 826 NONAME ABSENT ; class QDeclarativeStateGroupPrivate const * QDeclarativeStateGroup::d_func(void) const + ?d_func@QDeclarativeStateGroup@@ABEPBVQDeclarativeStateGroupPrivate@@XZ @ 826 NONAME ; class QDeclarativeStateGroupPrivate const * QDeclarativeStateGroup::d_func(void) const ?stateChanged@QDeclarativeItem@@IAEXABVQString@@@Z @ 827 NONAME ; void QDeclarativeItem::stateChanged(class QString const &) ?horizontalAlignmentChanged@QDeclarativeText@@IAEXW4HAlignment@1@@Z @ 828 NONAME ABSENT ; void QDeclarativeText::horizontalAlignmentChanged(enum QDeclarativeText::HAlignment) ??5@YAAAVQDataStream@@AAV0@AAUQDeclarativeObjectData@QDeclarativeEngineDebugServer@@@Z @ 829 NONAME ABSENT ; class QDataStream & operator>>(class QDataStream &, struct QDeclarativeEngineDebugServer::QDeclarativeObjectData &) @@ -852,7 +852,7 @@ EXPORTS ?d_func@QDeclarativeDebugService@@ABEPBVQDeclarativeDebugServicePrivate@@XZ @ 851 NONAME ABSENT ; class QDeclarativeDebugServicePrivate const * QDeclarativeDebugService::d_func(void) const ??1QDeclarativeDebugQuery@@UAE@XZ @ 852 NONAME ABSENT ; QDeclarativeDebugQuery::~QDeclarativeDebugQuery(void) ?data_append@QDeclarativeItemPrivate@@SAXPAV?$QDeclarativeListProperty@VQObject@@@@PAVQObject@@@Z @ 853 NONAME ; void QDeclarativeItemPrivate::data_append(class QDeclarativeListProperty<class QObject> *, class QObject *) - ?tr@QDeclarativeState@@SA?AVQString@@PBD0@Z @ 854 NONAME ABSENT ; class QString QDeclarativeState::tr(char const *, char const *) + ?tr@QDeclarativeState@@SA?AVQString@@PBD0@Z @ 854 NONAME ; class QString QDeclarativeState::tr(char const *, char const *) ?trUtf8@QDeclarativeEngineDebug@@SA?AVQString@@PBD0H@Z @ 855 NONAME ABSENT ; class QString QDeclarativeEngineDebug::trUtf8(char const *, char const *, int) ?createProperty@QDeclarativeOpenMetaObject@@MAEHPBD0@Z @ 856 NONAME ABSENT ; int QDeclarativeOpenMetaObject::createProperty(char const *, char const *) ?bottomMargin@QDeclarativeAnchors@@QBEMXZ @ 857 NONAME ABSENT ; float QDeclarativeAnchors::bottomMargin(void) const @@ -887,7 +887,7 @@ EXPORTS ?setHeight@QDeclarativeItem@@QAEXM@Z @ 886 NONAME ; void QDeclarativeItem::setHeight(float) ??0QDeclarativeDomDocument@@QAE@ABV0@@Z @ 887 NONAME ABSENT ; QDeclarativeDomDocument::QDeclarativeDomDocument(class QDeclarativeDomDocument const &) ?position@QDeclarativeDomDynamicProperty@@QBEHXZ @ 888 NONAME ABSENT ; int QDeclarativeDomDynamicProperty::position(void) const - ?animations@QDeclarativeTransition@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeAbstractAnimation@@@@XZ @ 889 NONAME ABSENT ; class QDeclarativeListProperty<class QDeclarativeAbstractAnimation> QDeclarativeTransition::animations(void) + ?animations@QDeclarativeTransition@@QAE?AV?$QDeclarativeListProperty@VQDeclarativeAbstractAnimation@@@@XZ @ 889 NONAME ; class QDeclarativeListProperty<class QDeclarativeAbstractAnimation> QDeclarativeTransition::animations(void) ?tr@QDeclarativeExpression@@SA?AVQString@@PBD0H@Z @ 890 NONAME ; class QString QDeclarativeExpression::tr(char const *, char const *, int) ??_EQMetaObjectBuilder@@UAE@I@Z @ 891 NONAME ABSENT ; QMetaObjectBuilder::~QMetaObjectBuilder(unsigned int) ?propertyName@QDeclarativeDomProperty@@QBE?AVQByteArray@@XZ @ 892 NONAME ABSENT ; class QByteArray QDeclarativeDomProperty::propertyName(void) const @@ -906,7 +906,7 @@ EXPORTS ?d_func@QDeclarativeRectangle@@ABEPBVQDeclarativeRectanglePrivate@@XZ @ 905 NONAME ABSENT ; class QDeclarativeRectanglePrivate const * QDeclarativeRectangle::d_func(void) const ?setRightMargin@QDeclarativeAnchors@@QAEXM@Z @ 906 NONAME ABSENT ; void QDeclarativeAnchors::setRightMargin(float) ?className@QMetaObjectBuilder@@QBE?AVQByteArray@@XZ @ 907 NONAME ABSENT ; class QByteArray QMetaObjectBuilder::className(void) const - ??0QDeclarativeState@@QAE@PAVQObject@@@Z @ 908 NONAME ABSENT ; QDeclarativeState::QDeclarativeState(class QObject *) + ??0QDeclarativeState@@QAE@PAVQObject@@@Z @ 908 NONAME ; QDeclarativeState::QDeclarativeState(class QObject *) ?contexts@QDeclarativeDebugContextReference@@QBE?AV?$QList@VQDeclarativeDebugContextReference@@@@XZ @ 909 NONAME ABSENT ; class QList<class QDeclarativeDebugContextReference> QDeclarativeDebugContextReference::contexts(void) const ?keyReleaseEvent@QDeclarativeItem@@MAEXPAVQKeyEvent@@@Z @ 910 NONAME ; void QDeclarativeItem::keyReleaseEvent(class QKeyEvent *) ?qt_metacall@QDeclarativeAnchors@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 911 NONAME ABSENT ; int QDeclarativeAnchors::qt_metacall(enum QMetaObject::Call, int, void * *) @@ -950,7 +950,7 @@ EXPORTS ?value@QMetaEnumBuilder@@QBEHH@Z @ 949 NONAME ABSENT ; int QMetaEnumBuilder::value(int) const ??_EQDeclarativeExpression@@UAE@I@Z @ 950 NONAME ; QDeclarativeExpression::~QDeclarativeExpression(unsigned int) ?load@QDeclarativeDomDocument@@QAE_NPAVQDeclarativeEngine@@ABVQByteArray@@ABVQUrl@@@Z @ 951 NONAME ABSENT ; bool QDeclarativeDomDocument::load(class QDeclarativeEngine *, class QByteArray const &, class QUrl const &) - ?staticMetaObject@QDeclarativeStateGroup@@2UQMetaObject@@B @ 952 NONAME ABSENT ; struct QMetaObject const QDeclarativeStateGroup::staticMetaObject + ?staticMetaObject@QDeclarativeStateGroup@@2UQMetaObject@@B @ 952 NONAME ; struct QMetaObject const QDeclarativeStateGroup::staticMetaObject ?tr@QDeclarativePropertyMap@@SA?AVQString@@PBD0@Z @ 953 NONAME ; class QString QDeclarativePropertyMap::tr(char const *, char const *) ?verticalCenterChanged@QDeclarativeAnchors@@IAEXXZ @ 954 NONAME ABSENT ; void QDeclarativeAnchors::verticalCenterChanged(void) ?isScriptable@QMetaPropertyBuilder@@QBE_NXZ @ 955 NONAME ABSENT ; bool QMetaPropertyBuilder::isScriptable(void) const @@ -967,11 +967,11 @@ EXPORTS ?d_func@QDeclarativeEngineDebug@@AAEPAVQDeclarativeEngineDebugPrivate@@XZ @ 966 NONAME ABSENT ; class QDeclarativeEngineDebugPrivate * QDeclarativeEngineDebug::d_func(void) ??1QDeclarativeNetworkAccessManagerFactory@@UAE@XZ @ 967 NONAME ; QDeclarativeNetworkAccessManagerFactory::~QDeclarativeNetworkAccessManagerFactory(void) ?textFormatChanged@QDeclarativeText@@IAEXW4TextFormat@1@@Z @ 968 NONAME ABSENT ; void QDeclarativeText::textFormatChanged(enum QDeclarativeText::TextFormat) - ?removeState@QDeclarativeStateGroup@@AAEXPAVQDeclarativeState@@@Z @ 969 NONAME ABSENT ; void QDeclarativeStateGroup::removeState(class QDeclarativeState *) + ?removeState@QDeclarativeStateGroup@@AAEXPAVQDeclarativeState@@@Z @ 969 NONAME ; void QDeclarativeStateGroup::removeState(class QDeclarativeState *) ?qmlTypeName@QDeclarativeType@@QBE?AVQByteArray@@XZ @ 970 NONAME ABSENT ; class QByteArray QDeclarativeType::qmlTypeName(void) const ?tr@QDeclarativeComponent@@SA?AVQString@@PBD0@Z @ 971 NONAME ; class QString QDeclarativeComponent::tr(char const *, char const *) ?isProperty@QDeclarativeProperty@@QBE_NXZ @ 972 NONAME ; bool QDeclarativeProperty::isProperty(void) const - ?states@QDeclarativeStateGroup@@QBE?AV?$QList@PAVQDeclarativeState@@@@XZ @ 973 NONAME ABSENT ; class QList<class QDeclarativeState *> QDeclarativeStateGroup::states(void) const + ?states@QDeclarativeStateGroup@@QBE?AV?$QList@PAVQDeclarativeState@@@@XZ @ 973 NONAME ; class QList<class QDeclarativeState *> QDeclarativeStateGroup::states(void) const ??1QDeclarativeDebugExpressionQuery@@UAE@XZ @ 974 NONAME ABSENT ; QDeclarativeDebugExpressionQuery::~QDeclarativeDebugExpressionQuery(void) ?isValid@QDeclarativeDomObject@@QBE_NXZ @ 975 NONAME ABSENT ; bool QDeclarativeDomObject::isValid(void) const ?staticMetaObject@QDeclarativeAnchors@@2UQMetaObject@@B @ 976 NONAME ABSENT ; struct QMetaObject const QDeclarativeAnchors::staticMetaObject @@ -1001,15 +1001,15 @@ EXPORTS ?setDescription@QDeclarativeError@@QAEXABVQString@@@Z @ 1000 NONAME ; void QDeclarativeError::setDescription(class QString const &) ??0QDeclarativeExpression@@AAE@PAVQDeclarativeContextData@@PAVQObject@@ABVQString@@@Z @ 1001 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContextData *, class QObject *, class QString const &) ??1QDeclarativeOpenMetaObjectType@@UAE@XZ @ 1002 NONAME ABSENT ; QDeclarativeOpenMetaObjectType::~QDeclarativeOpenMetaObjectType(void) - ?setReversible@QDeclarativeTransition@@QAEX_N@Z @ 1003 NONAME ABSENT ; void QDeclarativeTransition::setReversible(bool) + ?setReversible@QDeclarativeTransition@@QAEX_N@Z @ 1003 NONAME ; void QDeclarativeTransition::setReversible(bool) ?notifySignal@QMetaPropertyBuilder@@QBE?AVQMetaMethodBuilder@@XZ @ 1004 NONAME ABSENT ; class QMetaMethodBuilder QMetaPropertyBuilder::notifySignal(void) const ??0QDeclarativeDomList@@QAE@XZ @ 1005 NONAME ABSENT ; QDeclarativeDomList::QDeclarativeDomList(void) ?hasActiveFocus@QDeclarativeItem@@QBE_NXZ @ 1006 NONAME ; bool QDeclarativeItem::hasActiveFocus(void) const ?indexOfSignal@QMetaObjectBuilder@@QAEHABVQByteArray@@@Z @ 1007 NONAME ABSENT ; int QMetaObjectBuilder::indexOfSignal(class QByteArray const &) - ?toState@QDeclarativeTransition@@QBE?AVQString@@XZ @ 1008 NONAME ABSENT ; class QString QDeclarativeTransition::toState(void) const + ?toState@QDeclarativeTransition@@QBE?AVQString@@XZ @ 1008 NONAME ; class QString QDeclarativeTransition::toState(void) const ??0QDeclarativeDomDocument@@QAE@XZ @ 1009 NONAME ABSENT ; QDeclarativeDomDocument::QDeclarativeDomDocument(void) - ?setWhen@QDeclarativeState@@QAEXPAVQDeclarativeBinding@@@Z @ 1010 NONAME ABSENT ; void QDeclarativeState::setWhen(class QDeclarativeBinding *) - ?isWhenKnown@QDeclarativeState@@QBE_NXZ @ 1011 NONAME ABSENT ; bool QDeclarativeState::isWhenKnown(void) const + ?setWhen@QDeclarativeState@@QAEXPAVQDeclarativeBinding@@@Z @ 1010 NONAME ; void QDeclarativeState::setWhen(class QDeclarativeBinding *) + ?isWhenKnown@QDeclarativeState@@QBE_NXZ @ 1011 NONAME ; bool QDeclarativeState::isWhenKnown(void) const ?agent@QDeclarativeListModel@@QAEPAVQDeclarativeListModelWorkerAgent@@XZ @ 1012 NONAME ABSENT ; class QDeclarativeListModelWorkerAgent * QDeclarativeListModel::agent(void) ?engine@QDeclarativeExpression@@QBEPAVQDeclarativeEngine@@XZ @ 1013 NONAME ; class QDeclarativeEngine * QDeclarativeExpression::engine(void) const ??_EQDeclarativeDebugWatch@@UAE@I@Z @ 1014 NONAME ABSENT ; QDeclarativeDebugWatch::~QDeclarativeDebugWatch(unsigned int) @@ -1018,10 +1018,10 @@ EXPORTS ?setFill@QDeclarativeAnchors@@QAEXPAVQGraphicsObject@@@Z @ 1017 NONAME ABSENT ; void QDeclarativeAnchors::setFill(class QGraphicsObject *) ?setHAlign@QDeclarativeText@@QAEXW4HAlignment@1@@Z @ 1018 NONAME ABSENT ; void QDeclarativeText::setHAlign(enum QDeclarativeText::HAlignment) ??0QDeclarativeScriptString@@QAE@ABV0@@Z @ 1019 NONAME ; QDeclarativeScriptString::QDeclarativeScriptString(class QDeclarativeScriptString const &) - ?trUtf8@QDeclarativeTransition@@SA?AVQString@@PBD0@Z @ 1020 NONAME ABSENT ; class QString QDeclarativeTransition::trUtf8(char const *, char const *) + ?trUtf8@QDeclarativeTransition@@SA?AVQString@@PBD0@Z @ 1020 NONAME ; class QString QDeclarativeTransition::trUtf8(char const *, char const *) ?metaObject@QDeclarativeDebugRootContextQuery@@UBEPBUQMetaObject@@XZ @ 1021 NONAME ABSENT ; struct QMetaObject const * QDeclarativeDebugRootContextQuery::metaObject(void) const ?setSignalExpression@QDeclarativePropertyPrivate@@SAPAVQDeclarativeExpression@@ABVQDeclarativeProperty@@PAV2@@Z @ 1022 NONAME ABSENT ; class QDeclarativeExpression * QDeclarativePropertyPrivate::setSignalExpression(class QDeclarativeProperty const &, class QDeclarativeExpression *) - ?reversibleChanged@QDeclarativeTransition@@IAEXXZ @ 1023 NONAME ABSENT ; void QDeclarativeTransition::reversibleChanged(void) + ?reversibleChanged@QDeclarativeTransition@@IAEXXZ @ 1023 NONAME ; void QDeclarativeTransition::reversibleChanged(void) ??4QDeclarativeDomValueValueSource@@QAEAAV0@ABV0@@Z @ 1024 NONAME ABSENT ; class QDeclarativeDomValueValueSource & QDeclarativeDomValueValueSource::operator=(class QDeclarativeDomValueValueSource const &) ?name@QDeclarativeDebugObjectReference@@QBE?AVQString@@XZ @ 1025 NONAME ABSENT ; class QString QDeclarativeDebugObjectReference::name(void) const ?anchorLines@QDeclarativeItemPrivate@@QBEPAUAnchorLines@1@XZ @ 1026 NONAME ; struct QDeclarativeItemPrivate::AnchorLines * QDeclarativeItemPrivate::anchorLines(void) const @@ -1089,7 +1089,7 @@ EXPORTS ??AQDeclarativeOpenMetaObject@@QAEAAVQVariant@@ABVQByteArray@@@Z @ 1088 NONAME ABSENT ; class QVariant & QDeclarativeOpenMetaObject::operator[](class QByteArray const &) ?bottom@QDeclarativeItemPrivate@@QBE?AVQDeclarativeAnchorLine@@XZ @ 1089 NONAME ; class QDeclarativeAnchorLine QDeclarativeItemPrivate::bottom(void) const ?device@QPacketProtocol@@QAEPAVQIODevice@@XZ @ 1090 NONAME ABSENT ; class QIODevice * QPacketProtocol::device(void) - ?trUtf8@QDeclarativeStateGroup@@SA?AVQString@@PBD0@Z @ 1091 NONAME ABSENT ; class QString QDeclarativeStateGroup::trUtf8(char const *, char const *) + ?trUtf8@QDeclarativeStateGroup@@SA?AVQString@@PBD0@Z @ 1091 NONAME ; class QString QDeclarativeStateGroup::trUtf8(char const *, char const *) ?variantFromString@QDeclarativeStringConverters@@YA?AVQVariant@@ABVQString@@HPA_N@Z @ 1092 NONAME ABSENT ; class QVariant QDeclarativeStringConverters::variantFromString(class QString const &, int, bool *) ?metaObject@QDeclarativeComponent@@UBEPBUQMetaObject@@XZ @ 1093 NONAME ; struct QMetaObject const * QDeclarativeComponent::metaObject(void) const ?qmlInfo@@YA?AVQDeclarativeInfo@@PBVQObject@@ABV?$QList@VQDeclarativeError@@@@@Z @ 1094 NONAME ; class QDeclarativeInfo qmlInfo(class QObject const *, class QList<class QDeclarativeError> const &) @@ -1109,7 +1109,7 @@ EXPORTS ?addMethod@QMetaObjectBuilder@@QAE?AVQMetaMethodBuilder@@ABVQByteArray@@@Z @ 1108 NONAME ABSENT ; class QMetaMethodBuilder QMetaObjectBuilder::addMethod(class QByteArray const &) ??0QDeclarativeDebugFileReference@@QAE@XZ @ 1109 NONAME ABSENT ; QDeclarativeDebugFileReference::QDeclarativeDebugFileReference(void) ?mapFromItem@QDeclarativeItem@@QBE?AVQScriptValue@@ABV2@MM@Z @ 1110 NONAME ; class QScriptValue QDeclarativeItem::mapFromItem(class QScriptValue const &, float, float) const - ?trUtf8@QDeclarativeStateOperation@@SA?AVQString@@PBD0H@Z @ 1111 NONAME ABSENT ; class QString QDeclarativeStateOperation::trUtf8(char const *, char const *, int) + ?trUtf8@QDeclarativeStateOperation@@SA?AVQString@@PBD0H@Z @ 1111 NONAME ; class QString QDeclarativeStateOperation::trUtf8(char const *, char const *, int) ?tr@QPacketProtocol@@SA?AVQString@@PBD0H@Z @ 1112 NONAME ABSENT ; class QString QPacketProtocol::tr(char const *, char const *, int) ?d_func@QDeclarativeAnchors@@ABEPBVQDeclarativeAnchorsPrivate@@XZ @ 1113 NONAME ABSENT ; class QDeclarativeAnchorsPrivate const * QDeclarativeAnchors::d_func(void) const ?setNotifySignal@QMetaPropertyBuilder@@QAEXABVQMetaMethodBuilder@@@Z @ 1114 NONAME ABSENT ; void QMetaPropertyBuilder::setNotifySignal(class QMetaMethodBuilder const &) @@ -1122,8 +1122,8 @@ EXPORTS ?qt_metacall@QDeclarativeComponent@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1121 NONAME ; int QDeclarativeComponent::qt_metacall(enum QMetaObject::Call, int, void * *) ?tr@QDeclarativeDebugService@@SA?AVQString@@PBD0H@Z @ 1122 NONAME ABSENT ; class QString QDeclarativeDebugService::tr(char const *, char const *, int) ?staticMetaObject@QDeclarativeEngine@@2UQMetaObject@@B @ 1123 NONAME ; struct QMetaObject const QDeclarativeEngine::staticMetaObject - ?staticMetaObject@QDeclarativeStateOperation@@2UQMetaObject@@B @ 1124 NONAME ABSENT ; struct QMetaObject const QDeclarativeStateOperation::staticMetaObject - ?actions@QDeclarativeStateOperation@@UAE?AV?$QList@VQDeclarativeAction@@@@XZ @ 1125 NONAME ABSENT ; class QList<class QDeclarativeAction> QDeclarativeStateOperation::actions(void) + ?staticMetaObject@QDeclarativeStateOperation@@2UQMetaObject@@B @ 1124 NONAME ; struct QMetaObject const QDeclarativeStateOperation::staticMetaObject + ?actions@QDeclarativeStateOperation@@UAE?AV?$QList@VQDeclarativeAction@@@@XZ @ 1125 NONAME ; class QList<class QDeclarativeAction> QDeclarativeStateOperation::actions(void) ?objectClassName@QDeclarativeDomObject@@QBE?AVQByteArray@@XZ @ 1126 NONAME ABSENT ; class QByteArray QDeclarativeDomObject::objectClassName(void) const ??8QDeclarativeProperty@@QBE_NABV0@@Z @ 1127 NONAME ; bool QDeclarativeProperty::operator==(class QDeclarativeProperty const &) const ??1QDeclarativeDomValue@@QAE@XZ @ 1128 NONAME ABSENT ; QDeclarativeDomValue::~QDeclarativeDomValue(void) @@ -1141,7 +1141,7 @@ EXPORTS ??1QDeclarativeItem@@UAE@XZ @ 1140 NONAME ; QDeclarativeItem::~QDeclarativeItem(void) ?setEnabled@QDeclarativeAbstractBinding@@UAEX_NV?$QFlags@W4WriteFlag@QDeclarativePropertyPrivate@@@@@Z @ 1141 NONAME ABSENT ; void QDeclarativeAbstractBinding::setEnabled(bool, class QFlags<enum QDeclarativePropertyPrivate::WriteFlag>) ?staticMetaObject@QListModelInterface@@2UQMetaObject@@B @ 1142 NONAME ABSENT ; struct QMetaObject const QListModelInterface::staticMetaObject - ?d_func@QDeclarativeTransition@@ABEPBVQDeclarativeTransitionPrivate@@XZ @ 1143 NONAME ABSENT ; class QDeclarativeTransitionPrivate const * QDeclarativeTransition::d_func(void) const + ?d_func@QDeclarativeTransition@@ABEPBVQDeclarativeTransitionPrivate@@XZ @ 1143 NONAME ; class QDeclarativeTransitionPrivate const * QDeclarativeTransition::d_func(void) const ?sourceFile@QDeclarativeExpression@@QBE?AVQString@@XZ @ 1144 NONAME ; class QString QDeclarativeExpression::sourceFile(void) const ??_EQDeclarativeAnchors@@UAE@I@Z @ 1145 NONAME ABSENT ; QDeclarativeAnchors::~QDeclarativeAnchors(unsigned int) ?removeNotifySignal@QMetaPropertyBuilder@@QAEXXZ @ 1146 NONAME ABSENT ; void QMetaPropertyBuilder::removeNotifySignal(void) @@ -1153,7 +1153,7 @@ EXPORTS ?indexOfClassInfo@QMetaObjectBuilder@@QAEHABVQByteArray@@@Z @ 1152 NONAME ABSENT ; int QMetaObjectBuilder::indexOfClassInfo(class QByteArray const &) ??0QDeclarativeDomImport@@QAE@ABV0@@Z @ 1153 NONAME ABSENT ; QDeclarativeDomImport::QDeclarativeDomImport(class QDeclarativeDomImport const &) ?width@QDeclarativePen@@QBEHXZ @ 1154 NONAME ABSENT ; int QDeclarativePen::width(void) const - ?d_func@QDeclarativeStateGroup@@AAEPAVQDeclarativeStateGroupPrivate@@XZ @ 1155 NONAME ABSENT ; class QDeclarativeStateGroupPrivate * QDeclarativeStateGroup::d_func(void) + ?d_func@QDeclarativeStateGroup@@AAEPAVQDeclarativeStateGroupPrivate@@XZ @ 1155 NONAME ; class QDeclarativeStateGroupPrivate * QDeclarativeStateGroup::d_func(void) ??6QDeclarativeInfo@@QAEAAV0@P6AAAVQTextStream@@AAV1@@Z@Z @ 1156 NONAME ; class QDeclarativeInfo & QDeclarativeInfo::operator<<(class QTextStream & (*)(class QTextStream &)) ?trUtf8@QDeclarativeEngineDebug@@SA?AVQString@@PBD0@Z @ 1157 NONAME ABSENT ; class QString QDeclarativeEngineDebug::trUtf8(char const *, char const *) ?type@QDeclarativeOpenMetaObject@@QBEPAVQDeclarativeOpenMetaObjectType@@XZ @ 1158 NONAME ABSENT ; class QDeclarativeOpenMetaObjectType * QDeclarativeOpenMetaObject::type(void) const @@ -1168,13 +1168,13 @@ EXPORTS ??0QDeclarativeError@@QAE@XZ @ 1167 NONAME ; QDeclarativeError::QDeclarativeError(void) ?hasValue@QDeclarativeOpenMetaObject@@QBE_NH@Z @ 1168 NONAME ABSENT ; bool QDeclarativeOpenMetaObject::hasValue(int) const ?object@QDeclarativeProperty@@QBEPAVQObject@@XZ @ 1169 NONAME ; class QObject * QDeclarativeProperty::object(void) const - ?stateGroup@QDeclarativeState@@QBEPAVQDeclarativeStateGroup@@XZ @ 1170 NONAME ABSENT ; class QDeclarativeStateGroup * QDeclarativeState::stateGroup(void) const + ?stateGroup@QDeclarativeState@@QBEPAVQDeclarativeStateGroup@@XZ @ 1170 NONAME ; class QDeclarativeStateGroup * QDeclarativeState::stateGroup(void) const ?connectNotifySignal@QDeclarativeProperty@@QBE_NPAVQObject@@H@Z @ 1171 NONAME ; bool QDeclarativeProperty::connectNotifySignal(class QObject *, int) const ?focusChanged@QDeclarativeItemPrivate@@UAEX_N@Z @ 1172 NONAME ; void QDeclarativeItemPrivate::focusChanged(bool) ?contextDebugId@QDeclarativeDebugObjectReference@@QBEHXZ @ 1173 NONAME ABSENT ; int QDeclarativeDebugObjectReference::contextDebugId(void) const ?url@QDeclarativeDebugFileReference@@QBE?AVQUrl@@XZ @ 1174 NONAME ABSENT ; class QUrl QDeclarativeDebugFileReference::url(void) const ?paint@QDeclarativeRectangle@@UAEXPAVQPainter@@PBVQStyleOptionGraphicsItem@@PAVQWidget@@@Z @ 1175 NONAME ABSENT ; void QDeclarativeRectangle::paint(class QPainter *, class QStyleOptionGraphicsItem const *, class QWidget *) - ??6QDeclarativeState@@QAEAAV0@PAVQDeclarativeStateOperation@@@Z @ 1176 NONAME ABSENT ; class QDeclarativeState & QDeclarativeState::operator<<(class QDeclarativeStateOperation *) + ??6QDeclarativeState@@QAEAAV0@PAVQDeclarativeStateOperation@@@Z @ 1176 NONAME ; class QDeclarativeState & QDeclarativeState::operator<<(class QDeclarativeStateOperation *) ?destroy@QDeclarativeAbstractBinding@@UAEXXZ @ 1177 NONAME ABSENT ; void QDeclarativeAbstractBinding::destroy(void) ?qt_metacast@QDeclarativeDebugService@@UAEPAXPBD@Z @ 1178 NONAME ABSENT ; void * QDeclarativeDebugService::qt_metacast(char const *) ?qt_metacast@QDeclarativeValueType@@UAEPAXPBD@Z @ 1179 NONAME ABSENT ; void * QDeclarativeValueType::qt_metacast(char const *) @@ -1190,14 +1190,14 @@ EXPORTS ?d_func@QDeclarativePropertyMap@@AAEPAVQDeclarativePropertyMapPrivate@@XZ @ 1189 NONAME ; class QDeclarativePropertyMapPrivate * QDeclarativePropertyMap::d_func(void) ?trUtf8@QDeclarativeView@@SA?AVQString@@PBD0@Z @ 1190 NONAME ; class QString QDeclarativeView::trUtf8(char const *, char const *) ?rect@QDeclarativePixmap@@QBE?AVQRect@@XZ @ 1191 NONAME ; class QRect QDeclarativePixmap::rect(void) const - ??0QDeclarativeTransition@@QAE@PAVQObject@@@Z @ 1192 NONAME ABSENT ; QDeclarativeTransition::QDeclarativeTransition(class QObject *) + ??0QDeclarativeTransition@@QAE@PAVQObject@@@Z @ 1192 NONAME ; QDeclarativeTransition::QDeclarativeTransition(class QObject *) ?horizontalCenter@QDeclarativeAnchors@@QBE?AVQDeclarativeAnchorLine@@XZ @ 1193 NONAME ABSENT ; class QDeclarativeAnchorLine QDeclarativeAnchors::horizontalCenter(void) const ?setObjectOwnership@QDeclarativeEngine@@SAXPAVQObject@@W4ObjectOwnership@1@@Z @ 1194 NONAME ; void QDeclarativeEngine::setObjectOwnership(class QObject *, enum QDeclarativeEngine::ObjectOwnership) ?tr@QDeclarativeContext@@SA?AVQString@@PBD0H@Z @ 1195 NONAME ; class QString QDeclarativeContext::tr(char const *, char const *, int) ?metaCall@QDeclarativeOpenMetaObject@@MAEHW4Call@QMetaObject@@HPAPAX@Z @ 1196 NONAME ABSENT ; int QDeclarativeOpenMetaObject::metaCall(enum QMetaObject::Call, int, void * *) ??_EQDeclarativeText@@UAE@I@Z @ 1197 NONAME ABSENT ; QDeclarativeText::~QDeclarativeText(unsigned int) ?setLeftMargin@QDeclarativeAnchors@@QAEXM@Z @ 1198 NONAME ABSENT ; void QDeclarativeAnchors::setLeftMargin(float) - ?metaObject@QDeclarativeStateGroup@@UBEPBUQMetaObject@@XZ @ 1199 NONAME ABSENT ; struct QMetaObject const * QDeclarativeStateGroup::metaObject(void) const + ?metaObject@QDeclarativeStateGroup@@UBEPBUQMetaObject@@XZ @ 1199 NONAME ; struct QMetaObject const * QDeclarativeStateGroup::metaObject(void) const ?expression@QDeclarativeAbstractBinding@@UBE?AVQString@@XZ @ 1200 NONAME ABSENT ; class QString QDeclarativeAbstractBinding::expression(void) const ??6QDeclarativeInfo@@QAEAAV0@N@Z @ 1201 NONAME ; class QDeclarativeInfo & QDeclarativeInfo::operator<<(double) ?setAnimation@QDeclarativeBehavior@@QAEXPAVQDeclarativeAbstractAnimation@@@Z @ 1202 NONAME ABSENT ; void QDeclarativeBehavior::setAnimation(class QDeclarativeAbstractAnimation *) @@ -1210,12 +1210,12 @@ EXPORTS ??0QDeclarativePropertyValueInterceptor@@QAE@XZ @ 1209 NONAME ; QDeclarativePropertyValueInterceptor::QDeclarativePropertyValueInterceptor(void) ?isValid@QDeclarativeError@@QBE_NXZ @ 1210 NONAME ; bool QDeclarativeError::isValid(void) const ??0QMetaMethodBuilder@@QAE@XZ @ 1211 NONAME ABSENT ; QMetaMethodBuilder::QMetaMethodBuilder(void) - ?completed@QDeclarativeState@@IAEXXZ @ 1212 NONAME ABSENT ; void QDeclarativeState::completed(void) + ?completed@QDeclarativeState@@IAEXXZ @ 1212 NONAME ; void QDeclarativeState::completed(void) ?radiusChanged@QDeclarativeRectangle@@IAEXXZ @ 1213 NONAME ABSENT ; void QDeclarativeRectangle::radiusChanged(void) ?getStaticMetaObject@QDeclarativeExpression@@SAABUQMetaObject@@XZ @ 1214 NONAME ; struct QMetaObject const & QDeclarativeExpression::getStaticMetaObject(void) ?gridLeft@QDeclarativeGridScaledImage@@QBEHXZ @ 1215 NONAME ABSENT ; int QDeclarativeGridScaledImage::gridLeft(void) const ?setWritable@QMetaPropertyBuilder@@QAEX_N@Z @ 1216 NONAME ABSENT ; void QMetaPropertyBuilder::setWritable(bool) - ?qt_metacast@QDeclarativeStateGroup@@UAEPAXPBD@Z @ 1217 NONAME ABSENT ; void * QDeclarativeStateGroup::qt_metacast(char const *) + ?qt_metacast@QDeclarativeStateGroup@@UAEPAXPBD@Z @ 1217 NONAME ; void * QDeclarativeStateGroup::qt_metacast(char const *) ?defaultMethod@QDeclarativeMetaType@@SA?AVQMetaMethod@@PAVQObject@@@Z @ 1218 NONAME ABSENT ; class QMetaMethod QDeclarativeMetaType::defaultMethod(class QObject *) ?qt_metacast@QDeclarativeEngineDebug@@UAEPAXPBD@Z @ 1219 NONAME ABSENT ; void * QDeclarativeEngineDebug::qt_metacast(char const *) ?staticMetaObject@QDeclarativeExpression@@2UQMetaObject@@B @ 1220 NONAME ; struct QMetaObject const QDeclarativeExpression::staticMetaObject @@ -1260,10 +1260,10 @@ EXPORTS ?toLiteral@QDeclarativeDomValue@@QBE?AVQDeclarativeDomValueLiteral@@XZ @ 1259 NONAME ABSENT ; class QDeclarativeDomValueLiteral QDeclarativeDomValue::toLiteral(void) const ??0QDeclarativeOpenMetaObject@@QAE@PAVQObject@@_N@Z @ 1260 NONAME ABSENT ; QDeclarativeOpenMetaObject::QDeclarativeOpenMetaObject(class QObject *, bool) ?url@QDeclarativeComponent@@QBE?AVQUrl@@XZ @ 1261 NONAME ; class QUrl QDeclarativeComponent::url(void) const - ?componentComplete@QDeclarativeStateGroup@@UAEXXZ @ 1262 NONAME ABSENT ; void QDeclarativeStateGroup::componentComplete(void) + ?componentComplete@QDeclarativeStateGroup@@UAEXXZ @ 1262 NONAME ; void QDeclarativeStateGroup::componentComplete(void) ?setMargins@QDeclarativeAnchors@@QAEXM@Z @ 1263 NONAME ABSENT ; void QDeclarativeAnchors::setMargins(float) ?qt_metacall@QDeclarativeView@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1264 NONAME ; int QDeclarativeView::qt_metacall(enum QMetaObject::Call, int, void * *) - ?state@QDeclarativeStateGroup@@QBE?AVQString@@XZ @ 1265 NONAME ABSENT ; class QString QDeclarativeStateGroup::state(void) const + ?state@QDeclarativeStateGroup@@QBE?AVQString@@XZ @ 1265 NONAME ; class QString QDeclarativeStateGroup::state(void) const ??0QDeclarativeDomComponent@@QAE@ABV0@@Z @ 1266 NONAME ABSENT ; QDeclarativeDomComponent::QDeclarativeDomComponent(class QDeclarativeDomComponent const &) ?queryAvailableEngines@QDeclarativeEngineDebug@@QAEPAVQDeclarativeDebugEnginesQuery@@PAVQObject@@@Z @ 1267 NONAME ABSENT ; class QDeclarativeDebugEnginesQuery * QDeclarativeEngineDebug::queryAvailableEngines(class QObject *) ??_EQDeclarativeItemPrivate@@UAE@I@Z @ 1268 NONAME ; QDeclarativeItemPrivate::~QDeclarativeItemPrivate(unsigned int) @@ -1291,12 +1291,12 @@ EXPORTS ?staticMetaObject@QDeclarativeDebugEnginesQuery@@2UQMetaObject@@B @ 1290 NONAME ABSENT ; struct QMetaObject const QDeclarativeDebugEnginesQuery::staticMetaObject ?tr@QDeclarativePixmap@@SA?AVQString@@PBD0@Z @ 1291 NONAME ; class QString QDeclarativePixmap::tr(char const *, char const *) ?isError@QDeclarativeComponent@@QBE_NXZ @ 1292 NONAME ; bool QDeclarativeComponent::isError(void) const - ?qt_metacall@QDeclarativeTransition@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1293 NONAME ABSENT ; int QDeclarativeTransition::qt_metacall(enum QMetaObject::Call, int, void * *) + ?qt_metacall@QDeclarativeTransition@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1293 NONAME ; int QDeclarativeTransition::qt_metacall(enum QMetaObject::Call, int, void * *) ?type@QDeclarativeDomImport@@QBE?AW4Type@1@XZ @ 1294 NONAME ABSENT ; enum QDeclarativeDomImport::Type QDeclarativeDomImport::type(void) const ??1QDeclarativeDebugConnection@@UAE@XZ @ 1295 NONAME ABSENT ; QDeclarativeDebugConnection::~QDeclarativeDebugConnection(void) ?value@QDeclarativeOpenMetaObject@@QBE?AVQVariant@@H@Z @ 1296 NONAME ABSENT ; class QVariant QDeclarativeOpenMetaObject::value(int) const ?tr@QDeclarativeDebugRootContextQuery@@SA?AVQString@@PBD0H@Z @ 1297 NONAME ABSENT ; class QString QDeclarativeDebugRootContextQuery::tr(char const *, char const *, int) - ?setFromState@QDeclarativeTransition@@QAEXABVQString@@@Z @ 1298 NONAME ABSENT ; void QDeclarativeTransition::setFromState(class QString const &) + ?setFromState@QDeclarativeTransition@@QAEXABVQString@@@Z @ 1298 NONAME ; void QDeclarativeTransition::setFromState(class QString const &) ?metaObject@QDeclarativeDebugService@@UBEPBUQMetaObject@@XZ @ 1299 NONAME ABSENT ; struct QMetaObject const * QDeclarativeDebugService::metaObject(void) const ?state@QDeclarativeDebugQuery@@QBE?AW4State@1@XZ @ 1300 NONAME ABSENT ; enum QDeclarativeDebugQuery::State QDeclarativeDebugQuery::state(void) const ?setBottom@QDeclarativeScaleGrid@@QAEXH@Z @ 1301 NONAME ABSENT ; void QDeclarativeScaleGrid::setBottom(int) @@ -1312,7 +1312,7 @@ EXPORTS ?width@QDeclarativeItemPrivate@@UBEMXZ @ 1311 NONAME ; float QDeclarativeItemPrivate::width(void) const ?d_func@QMetaMethodBuilder@@ABEPAVQMetaMethodBuilderPrivate@@XZ @ 1312 NONAME ABSENT ; class QMetaMethodBuilderPrivate * QMetaMethodBuilder::d_func(void) const ?isScript@Variant@QDeclarativeParser@@QBE_NXZ @ 1313 NONAME ; bool QDeclarativeParser::Variant::isScript(void) const - ?classBegin@QDeclarativeStateGroup@@UAEXXZ @ 1314 NONAME ABSENT ; void QDeclarativeStateGroup::classBegin(void) + ?classBegin@QDeclarativeStateGroup@@UAEXXZ @ 1314 NONAME ; void QDeclarativeStateGroup::classBegin(void) ?qt_metacast@QDeclarativeRectangle@@UAEPAXPBD@Z @ 1315 NONAME ABSENT ; void * QDeclarativeRectangle::qt_metacast(char const *) ?qt_metacast@QDeclarativeExpression@@UAEPAXPBD@Z @ 1316 NONAME ; void * QDeclarativeExpression::qt_metacast(char const *) ?indexOfProperty@QMetaObjectBuilder@@QAEHABVQByteArray@@@Z @ 1317 NONAME ABSENT ; int QMetaObjectBuilder::indexOfProperty(class QByteArray const &) @@ -1332,11 +1332,11 @@ EXPORTS ?qt_metacall@QDeclarativeEngine@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1331 NONAME ; int QDeclarativeEngine::qt_metacall(enum QMetaObject::Call, int, void * *) ?getStaticMetaObject@QDeclarativeAnchors@@SAABUQMetaObject@@XZ @ 1332 NONAME ABSENT ; struct QMetaObject const & QDeclarativeAnchors::getStaticMetaObject(void) ??0QDeclarativeProperty@@QAE@PAVQObject@@ABVQString@@@Z @ 1333 NONAME ; QDeclarativeProperty::QDeclarativeProperty(class QObject *, class QString const &) - ?trUtf8@QDeclarativeState@@SA?AVQString@@PBD0@Z @ 1334 NONAME ABSENT ; class QString QDeclarativeState::trUtf8(char const *, char const *) + ?trUtf8@QDeclarativeState@@SA?AVQString@@PBD0@Z @ 1334 NONAME ; class QString QDeclarativeState::trUtf8(char const *, char const *) ?setStaticMetacallFunction@QMetaObjectBuilder@@QAEXP6AHW4Call@QMetaObject@@HPAPAX@Z@Z @ 1335 NONAME ABSENT ; void QMetaObjectBuilder::setStaticMetacallFunction(int (*)(enum QMetaObject::Call, int, void * *)) ?properties@QDeclarativeDomObject@@QBE?AV?$QList@VQDeclarativeDomProperty@@@@XZ @ 1336 NONAME ABSENT ; class QList<class QDeclarativeDomProperty> QDeclarativeDomObject::properties(void) const ??0QDeclarativeExpression@@QAE@PAVQDeclarativeContext@@PAVQObject@@ABVQString@@1@Z @ 1337 NONAME ; QDeclarativeExpression::QDeclarativeExpression(class QDeclarativeContext *, class QObject *, class QString const &, class QObject *) - ?tr@QDeclarativeTransition@@SA?AVQString@@PBD0H@Z @ 1338 NONAME ABSENT ; class QString QDeclarativeTransition::tr(char const *, char const *, int) + ?tr@QDeclarativeTransition@@SA?AVQString@@PBD0H@Z @ 1338 NONAME ; class QString QDeclarativeTransition::tr(char const *, char const *, int) ?dateTimeFromString@QDeclarativeStringConverters@@YA?AVQDateTime@@ABVQString@@PA_N@Z @ 1339 NONAME ABSENT ; class QDateTime QDeclarativeStringConverters::dateTimeFromString(class QString const &, bool *) ?implicitWidth@QDeclarativeItem@@QBEMXZ @ 1340 NONAME ; float QDeclarativeItem::implicitWidth(void) const ?metaObject@QDeclarativeContext@@UBEPBUQMetaObject@@XZ @ 1341 NONAME ; struct QMetaObject const * QDeclarativeContext::metaObject(void) const @@ -1365,7 +1365,7 @@ EXPORTS ?qt_metacast@QDeclarativeDebugEnginesQuery@@UAEPAXPBD@Z @ 1364 NONAME ABSENT ; void * QDeclarativeDebugEnginesQuery::qt_metacast(char const *) ?d_func@QDeclarativeView@@AAEPAVQDeclarativeViewPrivate@@XZ @ 1365 NONAME ; class QDeclarativeViewPrivate * QDeclarativeView::d_func(void) ?addWatch@QDeclarativeEngineDebug@@QAEPAVQDeclarativeDebugPropertyWatch@@ABVQDeclarativeDebugPropertyReference@@PAVQObject@@@Z @ 1366 NONAME ABSENT ; class QDeclarativeDebugPropertyWatch * QDeclarativeEngineDebug::addWatch(class QDeclarativeDebugPropertyReference const &, class QObject *) - ?stateChanged@QDeclarativeStateGroup@@IAEXABVQString@@@Z @ 1367 NONAME ABSENT ; void QDeclarativeStateGroup::stateChanged(class QString const &) + ?stateChanged@QDeclarativeStateGroup@@IAEXABVQString@@@Z @ 1367 NONAME ; void QDeclarativeStateGroup::stateChanged(class QString const &) ??0QDeclarativeDomValueValueSource@@QAE@XZ @ 1368 NONAME ABSENT ; QDeclarativeDomValueValueSource::QDeclarativeDomValueValueSource(void) ?customStringConverter@QDeclarativeMetaType@@SAP6A?AVQVariant@@ABVQString@@@ZH@Z @ 1369 NONAME ABSENT ; class QVariant (*)(class QString const &) QDeclarativeMetaType::customStringConverter(int) ?baselineOffsetChanged@QDeclarativeAnchors@@IAEXXZ @ 1370 NONAME ABSENT ; void QDeclarativeAnchors::baselineOffsetChanged(void) @@ -1388,7 +1388,7 @@ EXPORTS ?writeEnumProperty@QDeclarativePropertyPrivate@@SA_NABVQMetaProperty@@HPAVQObject@@ABVQVariant@@H@Z @ 1387 NONAME ABSENT ; bool QDeclarativePropertyPrivate::writeEnumProperty(class QMetaProperty const &, int, class QObject *, class QVariant const &, int) ?setEnabled@QDeclarativeDebugClient@@QAEX_N@Z @ 1388 NONAME ABSENT ; void QDeclarativeDebugClient::setEnabled(bool) ??1QMetaObjectBuilder@@UAE@XZ @ 1389 NONAME ABSENT ; QMetaObjectBuilder::~QMetaObjectBuilder(void) - ?tr@QDeclarativeStateOperation@@SA?AVQString@@PBD0@Z @ 1390 NONAME ABSENT ; class QString QDeclarativeStateOperation::tr(char const *, char const *) + ?tr@QDeclarativeStateOperation@@SA?AVQString@@PBD0@Z @ 1390 NONAME ; class QString QDeclarativeStateOperation::tr(char const *, char const *) ?clear@QPacket@@QAEXXZ @ 1391 NONAME ABSENT ; void QPacket::clear(void) ?getStaticMetaObject@QDeclarativeDebugClient@@SAABUQMetaObject@@XZ @ 1392 NONAME ABSENT ; struct QMetaObject const & QDeclarativeDebugClient::getStaticMetaObject(void) ??0QDeclarativeDomList@@QAE@ABV0@@Z @ 1393 NONAME ABSENT ; QDeclarativeDomList::QDeclarativeDomList(class QDeclarativeDomList const &) @@ -1399,7 +1399,7 @@ EXPORTS ?trUtf8@QDeclarativeDebugWatch@@SA?AVQString@@PBD0@Z @ 1398 NONAME ABSENT ; class QString QDeclarativeDebugWatch::trUtf8(char const *, char const *) ?read@QDeclarativeProperty@@SA?AVQVariant@@PAVQObject@@ABVQString@@@Z @ 1399 NONAME ; class QVariant QDeclarativeProperty::read(class QObject *, class QString const &) ?widthValid@QDeclarativeItem@@IBE_NXZ @ 1400 NONAME ; bool QDeclarativeItem::widthValid(void) const - ?staticMetaObject@QDeclarativeState@@2UQMetaObject@@B @ 1401 NONAME ABSENT ; struct QMetaObject const QDeclarativeState::staticMetaObject + ?staticMetaObject@QDeclarativeState@@2UQMetaObject@@B @ 1401 NONAME ; struct QMetaObject const QDeclarativeState::staticMetaObject ?setAccess@QMetaMethodBuilder@@QAEXW4Access@QMetaMethod@@@Z @ 1402 NONAME ABSENT ; void QMetaMethodBuilder::setAccess(enum QMetaMethod::Access) ??0QDeclarativeAction@@QAE@PAVQObject@@ABVQString@@PAVQDeclarativeContext@@ABVQVariant@@@Z @ 1403 NONAME ABSENT ; QDeclarativeAction::QDeclarativeAction(class QObject *, class QString const &, class QDeclarativeContext *, class QVariant const &) ?staticMetaObject@QDeclarativeDebugClient@@2UQMetaObject@@B @ 1404 NONAME ABSENT ; struct QMetaObject const QDeclarativeDebugClient::staticMetaObject @@ -1433,16 +1433,16 @@ EXPORTS ?key@QMetaEnumBuilder@@QBE?AVQByteArray@@H@Z @ 1432 NONAME ABSENT ; class QByteArray QMetaEnumBuilder::key(int) const ?d_func@QMetaEnumBuilder@@ABEPAVQMetaEnumBuilderPrivate@@XZ @ 1433 NONAME ABSENT ; class QMetaEnumBuilderPrivate * QMetaEnumBuilder::d_func(void) const ??6QDeclarativeInfo@@QAEAAV0@PBD@Z @ 1434 NONAME ; class QDeclarativeInfo & QDeclarativeInfo::operator<<(char const *) - ?d_func@QDeclarativeState@@AAEPAVQDeclarativeStatePrivate@@XZ @ 1435 NONAME ABSENT ; class QDeclarativeStatePrivate * QDeclarativeState::d_func(void) + ?d_func@QDeclarativeState@@AAEPAVQDeclarativeStatePrivate@@XZ @ 1435 NONAME ; class QDeclarativeStatePrivate * QDeclarativeState::d_func(void) ??0QDeclarativeDebugEnginesQuery@@AAE@PAVQObject@@@Z @ 1436 NONAME ABSENT ; QDeclarativeDebugEnginesQuery::QDeclarativeDebugEnginesQuery(class QObject *) ?bottomChanged@QDeclarativeAnchors@@IAEXXZ @ 1437 NONAME ABSENT ; void QDeclarativeAnchors::bottomChanged(void) ?qListTypeId@QDeclarativeType@@QBEHXZ @ 1438 NONAME ABSENT ; int QDeclarativeType::qListTypeId(void) const ?setSelectedState@QDeclarativeDebuggerStatus@@UAEX_N@Z @ 1439 NONAME ABSENT ; void QDeclarativeDebuggerStatus::setSelectedState(bool) ?staticMetaObject@QDeclarativeEngineDebug@@2UQMetaObject@@B @ 1440 NONAME ABSENT ; struct QMetaObject const QDeclarativeEngineDebug::staticMetaObject - ?setExtends@QDeclarativeState@@QAEXABVQString@@@Z @ 1441 NONAME ABSENT ; void QDeclarativeState::setExtends(class QString const &) + ?setExtends@QDeclarativeState@@QAEXABVQString@@@Z @ 1441 NONAME ; void QDeclarativeState::setExtends(class QString const &) ??4QDeclarativeError@@QAEAAV0@ABV0@@Z @ 1442 NONAME ; class QDeclarativeError & QDeclarativeError::operator=(class QDeclarativeError const &) ?tr@QDeclarativeDebugEnginesQuery@@SA?AVQString@@PBD0H@Z @ 1443 NONAME ABSENT ; class QString QDeclarativeDebugEnginesQuery::tr(char const *, char const *, int) - ?d_func@QDeclarativeTransition@@AAEPAVQDeclarativeTransitionPrivate@@XZ @ 1444 NONAME ABSENT ; class QDeclarativeTransitionPrivate * QDeclarativeTransition::d_func(void) + ?d_func@QDeclarativeTransition@@AAEPAVQDeclarativeTransitionPrivate@@XZ @ 1444 NONAME ; class QDeclarativeTransitionPrivate * QDeclarativeTransition::d_func(void) ?propertyWritten@QDeclarativeOpenMetaObject@@MAEXH@Z @ 1445 NONAME ABSENT ; void QDeclarativeOpenMetaObject::propertyWritten(int) ?trUtf8@QListModelInterface@@SA?AVQString@@PBD0@Z @ 1446 NONAME ABSENT ; class QString QListModelInterface::trUtf8(char const *, char const *) ?setColumnNumber@QDeclarativeDebugFileReference@@QAEXH@Z @ 1447 NONAME ABSENT ; void QDeclarativeDebugFileReference::setColumnNumber(int) @@ -1454,13 +1454,13 @@ EXPORTS ??0QDeclarativeBinding@@QAE@ABVQString@@PAVQObject@@PAVQDeclarativeContext@@1@Z @ 1453 NONAME ABSENT ; QDeclarativeBinding::QDeclarativeBinding(class QString const &, class QObject *, class QDeclarativeContext *, class QObject *) ?tr@QDeclarativeItem@@SA?AVQString@@PBD0@Z @ 1454 NONAME ; class QString QDeclarativeItem::tr(char const *, char const *) ??6QDeclarativeInfo@@QAEAAV0@G@Z @ 1455 NONAME ; class QDeclarativeInfo & QDeclarativeInfo::operator<<(unsigned short) - ??0QDeclarativeStateOperation@@IAE@AAVQObjectPrivate@@PAVQObject@@@Z @ 1456 NONAME ABSENT ; QDeclarativeStateOperation::QDeclarativeStateOperation(class QObjectPrivate &, class QObject *) + ??0QDeclarativeStateOperation@@IAE@AAVQObjectPrivate@@PAVQObject@@@Z @ 1456 NONAME ; QDeclarativeStateOperation::QDeclarativeStateOperation(class QObjectPrivate &, class QObject *) ?notifyOnValueChanged@QDeclarativeExpression@@QBE_NXZ @ 1457 NONAME ; bool QDeclarativeExpression::notifyOnValueChanged(void) const ?keyPressPreHandler@QDeclarativeItem@@IAEXPAVQKeyEvent@@@Z @ 1458 NONAME ; void QDeclarativeItem::keyPressPreHandler(class QKeyEvent *) ?trUtf8@QDeclarativeItem@@SA?AVQString@@PBD0H@Z @ 1459 NONAME ; class QString QDeclarativeItem::trUtf8(char const *, char const *, int) ?addWatch@QDeclarativeEngineDebug@@QAEPAVQDeclarativeDebugWatch@@ABVQDeclarativeDebugFileReference@@PAVQObject@@@Z @ 1460 NONAME ABSENT ; class QDeclarativeDebugWatch * QDeclarativeEngineDebug::addWatch(class QDeclarativeDebugFileReference const &, class QObject *) ?paintedHeight@QDeclarativeText@@QBEMXZ @ 1461 NONAME ABSENT ; float QDeclarativeText::paintedHeight(void) const - ?tr@QDeclarativeTransition@@SA?AVQString@@PBD0@Z @ 1462 NONAME ABSENT ; class QString QDeclarativeTransition::tr(char const *, char const *) + ?tr@QDeclarativeTransition@@SA?AVQString@@PBD0@Z @ 1462 NONAME ; class QString QDeclarativeTransition::tr(char const *, char const *) ?transform@QDeclarativeItem@@QAE?AV?$QDeclarativeListProperty@VQGraphicsTransform@@@@XZ @ 1463 NONAME ; class QDeclarativeListProperty<class QGraphicsTransform> QDeclarativeItem::transform(void) ?leftChanged@QDeclarativeAnchors@@IAEXXZ @ 1464 NONAME ABSENT ; void QDeclarativeAnchors::leftChanged(void) ?topChanged@QDeclarativeAnchors@@IAEXXZ @ 1465 NONAME ABSENT ; void QDeclarativeAnchors::topChanged(void) @@ -1480,7 +1480,7 @@ EXPORTS ?componentComplete@QDeclarativeItem@@MAEXXZ @ 1479 NONAME ; void QDeclarativeItem::componentComplete(void) ?creationContext@QDeclarativeComponent@@QBEPAVQDeclarativeContext@@XZ @ 1480 NONAME ; class QDeclarativeContext * QDeclarativeComponent::creationContext(void) const ?enabledChanged@QDeclarativeBehavior@@IAEXXZ @ 1481 NONAME ABSENT ; void QDeclarativeBehavior::enabledChanged(void) - ?staticMetaObject@QDeclarativeTransition@@2UQMetaObject@@B @ 1482 NONAME ABSENT ; struct QMetaObject const QDeclarativeTransition::staticMetaObject + ?staticMetaObject@QDeclarativeTransition@@2UQMetaObject@@B @ 1482 NONAME ; struct QMetaObject const QDeclarativeTransition::staticMetaObject ??0QDeclarativeInfo@@AAE@PAVQDeclarativeInfoPrivate@@@Z @ 1483 NONAME ; QDeclarativeInfo::QDeclarativeInfo(class QDeclarativeInfoPrivate *) ?name@QDeclarativeDebugContextReference@@QBE?AVQString@@XZ @ 1484 NONAME ABSENT ; class QString QDeclarativeDebugContextReference::name(void) const ?propertyIndex@QDeclarativeBinding@@UAEHXZ @ 1485 NONAME ABSENT ; int QDeclarativeBinding::propertyIndex(void) @@ -1507,7 +1507,7 @@ EXPORTS ??0QDeclarativeContext@@QAE@PAV0@PAVQObject@@@Z @ 1506 NONAME ; QDeclarativeContext::QDeclarativeContext(class QDeclarativeContext *, class QObject *) ?trUtf8@QDeclarativeDebugConnection@@SA?AVQString@@PBD0@Z @ 1507 NONAME ABSENT ; class QString QDeclarativeDebugConnection::trUtf8(char const *, char const *) ??1QDeclarativeDebugEnginesQuery@@UAE@XZ @ 1508 NONAME ABSENT ; QDeclarativeDebugEnginesQuery::~QDeclarativeDebugEnginesQuery(void) - ?getStaticMetaObject@QDeclarativeTransition@@SAABUQMetaObject@@XZ @ 1509 NONAME ABSENT ; struct QMetaObject const & QDeclarativeTransition::getStaticMetaObject(void) + ?getStaticMetaObject@QDeclarativeTransition@@SAABUQMetaObject@@XZ @ 1509 NONAME ; struct QMetaObject const & QDeclarativeTransition::getStaticMetaObject(void) ?trUtf8@QDeclarativeDebugObjectExpressionWatch@@SA?AVQString@@PBD0H@Z @ 1510 NONAME ABSENT ; class QString QDeclarativeDebugObjectExpressionWatch::trUtf8(char const *, char const *, int) ?metaObject@QDeclarativePropertyMap@@UBEPBUQMetaObject@@XZ @ 1511 NONAME ; struct QMetaObject const * QDeclarativePropertyMap::metaObject(void) const ?componentRoot@QDeclarativeDomComponent@@QBE?AVQDeclarativeDomObject@@XZ @ 1512 NONAME ABSENT ; class QDeclarativeDomObject QDeclarativeDomComponent::componentRoot(void) const @@ -1515,7 +1515,7 @@ EXPORTS ?setTag@QMetaMethodBuilder@@QAEXABVQByteArray@@@Z @ 1514 NONAME ABSENT ; void QMetaMethodBuilder::setTag(class QByteArray const &) ?objects@QDeclarativeDebugContextReference@@QBE?AV?$QList@VQDeclarativeDebugObjectReference@@@@XZ @ 1515 NONAME ABSENT ; class QList<class QDeclarativeDebugObjectReference> QDeclarativeDebugContextReference::objects(void) const ??4Variant@QDeclarativeParser@@QAEAAV01@ABV01@@Z @ 1516 NONAME ; class QDeclarativeParser::Variant & QDeclarativeParser::Variant::operator=(class QDeclarativeParser::Variant const &) - ?tr@QDeclarativeStateGroup@@SA?AVQString@@PBD0@Z @ 1517 NONAME ABSENT ; class QString QDeclarativeStateGroup::tr(char const *, char const *) + ?tr@QDeclarativeStateGroup@@SA?AVQString@@PBD0@Z @ 1517 NONAME ; class QString QDeclarativeStateGroup::tr(char const *, char const *) ?setScopeObject@QDeclarativeScriptString@@QAEXPAVQObject@@@Z @ 1518 NONAME ; void QDeclarativeScriptString::setScopeObject(class QObject *) ??1QDeclarativeBinding@@MAE@XZ @ 1519 NONAME ABSENT ; QDeclarativeBinding::~QDeclarativeBinding(void) ?importPlugin@QDeclarativeEngine@@QAE_NABVQString@@0PAV2@@Z @ 1520 NONAME ; bool QDeclarativeEngine::importPlugin(class QString const &, class QString const &, class QString *) @@ -1523,7 +1523,7 @@ EXPORTS ?geometryChanged@QDeclarativeItem@@MAEXABVQRectF@@0@Z @ 1522 NONAME ; void QDeclarativeItem::geometryChanged(class QRectF const &, class QRectF const &) ?toValueSource@QDeclarativeDomValue@@QBE?AVQDeclarativeDomValueValueSource@@XZ @ 1523 NONAME ABSENT ; class QDeclarativeDomValueValueSource QDeclarativeDomValue::toValueSource(void) const ?hAlign@QDeclarativeText@@QBE?AW4HAlignment@1@XZ @ 1524 NONAME ABSENT ; enum QDeclarativeText::HAlignment QDeclarativeText::hAlign(void) const - ?when@QDeclarativeState@@QBEPAVQDeclarativeBinding@@XZ @ 1525 NONAME ABSENT ; class QDeclarativeBinding * QDeclarativeState::when(void) const + ?when@QDeclarativeState@@QBEPAVQDeclarativeBinding@@XZ @ 1525 NONAME ; class QDeclarativeBinding * QDeclarativeState::when(void) const ?setRootObject@QDeclarativeView@@MAEXPAVQObject@@@Z @ 1526 NONAME ; void QDeclarativeView::setRootObject(class QObject *) ?resetBottom@QDeclarativeAnchors@@QAEXXZ @ 1527 NONAME ABSENT ; void QDeclarativeAnchors::resetBottom(void) ?qt_metacall@QDeclarativePropertyMap@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1528 NONAME ; int QDeclarativePropertyMap::qt_metacall(enum QMetaObject::Call, int, void * *) @@ -1532,15 +1532,15 @@ EXPORTS ?trUtf8@QDeclarativeDebugQuery@@SA?AVQString@@PBD0@Z @ 1531 NONAME ABSENT ; class QString QDeclarativeDebugQuery::trUtf8(char const *, char const *) ??AQDeclarativeValueTypeFactory@@QBEPAVQDeclarativeValueType@@H@Z @ 1532 NONAME ABSENT ; class QDeclarativeValueType * QDeclarativeValueTypeFactory::operator[](int) const ?siblingOrderChange@QDeclarativeItemPrivate@@UAEXXZ @ 1533 NONAME ; void QDeclarativeItemPrivate::siblingOrderChange(void) - ??1QDeclarativeState@@UAE@XZ @ 1534 NONAME ABSENT ; QDeclarativeState::~QDeclarativeState(void) + ??1QDeclarativeState@@UAE@XZ @ 1534 NONAME ; QDeclarativeState::~QDeclarativeState(void) ?paint@QDeclarativeText@@UAEXPAVQPainter@@PBVQStyleOptionGraphicsItem@@PAVQWidget@@@Z @ 1535 NONAME ABSENT ; void QDeclarativeText::paint(class QPainter *, class QStyleOptionGraphicsItem const *, class QWidget *) - ??1QDeclarativeStateGroup@@UAE@XZ @ 1536 NONAME ABSENT ; QDeclarativeStateGroup::~QDeclarativeStateGroup(void) + ??1QDeclarativeStateGroup@@UAE@XZ @ 1536 NONAME ; QDeclarativeStateGroup::~QDeclarativeStateGroup(void) ?setEditable@QMetaPropertyBuilder@@QAEX_N@Z @ 1537 NONAME ABSENT ; void QMetaPropertyBuilder::setEditable(bool) ?setBinding@QDeclarativePropertyPrivate@@SAPAVQDeclarativeAbstractBinding@@ABVQDeclarativeProperty@@PAV2@V?$QFlags@W4WriteFlag@QDeclarativePropertyPrivate@@@@@Z @ 1538 NONAME ABSENT ; class QDeclarativeAbstractBinding * QDeclarativePropertyPrivate::setBinding(class QDeclarativeProperty const &, class QDeclarativeAbstractBinding *, class QFlags<enum QDeclarativePropertyPrivate::WriteFlag>) ?trUtf8@QDeclarativeBinding@@SA?AVQString@@PBD0@Z @ 1539 NONAME ABSENT ; class QString QDeclarativeBinding::trUtf8(char const *, char const *) ?requestSize@QDeclarativePixmap@@QBEABVQSize@@XZ @ 1540 NONAME ; class QSize const & QDeclarativePixmap::requestSize(void) const ?progress@QDeclarativeComponent@@QBEMXZ @ 1541 NONAME ; float QDeclarativeComponent::progress(void) const - ?d_func@QDeclarativeState@@ABEPBVQDeclarativeStatePrivate@@XZ @ 1542 NONAME ABSENT ; class QDeclarativeStatePrivate const * QDeclarativeState::d_func(void) const + ?d_func@QDeclarativeState@@ABEPBVQDeclarativeStatePrivate@@XZ @ 1542 NONAME ; class QDeclarativeStatePrivate const * QDeclarativeState::d_func(void) const ??0QListModelInterface@@QAE@PAVQObject@@@Z @ 1543 NONAME ABSENT ; QListModelInterface::QListModelInterface(class QObject *) ?pointFFromString@QDeclarativeStringConverters@@YA?AVQPointF@@ABVQString@@PA_N@Z @ 1544 NONAME ABSENT ; class QPointF QDeclarativeStringConverters::pointFFromString(class QString const &, bool *) ?propertyCreated@QDeclarativeOpenMetaObject@@MAEXHAAVQMetaPropertyBuilder@@@Z @ 1545 NONAME ABSENT ; void QDeclarativeOpenMetaObject::propertyCreated(int, class QMetaPropertyBuilder &) @@ -1548,7 +1548,7 @@ EXPORTS ?rootObject@QDeclarativeView@@QBEPAVQGraphicsObject@@XZ @ 1547 NONAME ; class QGraphicsObject * QDeclarativeView::rootObject(void) const ?tr@QDeclarativeBinding@@SA?AVQString@@PBD0H@Z @ 1548 NONAME ABSENT ; class QString QDeclarativeBinding::tr(char const *, char const *, int) ?queryObjectRecursive@QDeclarativeEngineDebug@@QAEPAVQDeclarativeDebugObjectQuery@@ABVQDeclarativeDebugObjectReference@@PAVQObject@@@Z @ 1549 NONAME ABSENT ; class QDeclarativeDebugObjectQuery * QDeclarativeEngineDebug::queryObjectRecursive(class QDeclarativeDebugObjectReference const &, class QObject *) - ?prepare@QDeclarativeTransition@@QAEXAAV?$QList@VQDeclarativeAction@@@@AAV?$QList@VQDeclarativeProperty@@@@PAVQDeclarativeTransitionManager@@@Z @ 1550 NONAME ABSENT ; void QDeclarativeTransition::prepare(class QList<class QDeclarativeAction> &, class QList<class QDeclarativeProperty> &, class QDeclarativeTransitionManager *) + ?prepare@QDeclarativeTransition@@QAEXAAV?$QList@VQDeclarativeAction@@@@AAV?$QList@VQDeclarativeProperty@@@@PAVQDeclarativeTransitionManager@@@Z @ 1550 NONAME ; void QDeclarativeTransition::prepare(class QList<class QDeclarativeAction> &, class QList<class QDeclarativeProperty> &, class QDeclarativeTransitionManager *) ??6QDeclarativeInfo@@QAEAAV0@ABVQUrl@@@Z @ 1551 NONAME ; class QDeclarativeInfo & QDeclarativeInfo::operator<<(class QUrl const &) ?scopeObject@QDeclarativeExpression@@QBEPAVQObject@@XZ @ 1552 NONAME ; class QObject * QDeclarativeExpression::scopeObject(void) const ?isValid@QDeclarativeContext@@QBE_NXZ @ 1553 NONAME ; bool QDeclarativeContext::isValid(void) const @@ -1562,7 +1562,7 @@ EXPORTS ?d_func@QDeclarativeEngine@@AAEPAVQDeclarativeEnginePrivate@@XZ @ 1561 NONAME ; class QDeclarativeEnginePrivate * QDeclarativeEngine::d_func(void) ?staticMetaObject@QDeclarativeRectangle@@2UQMetaObject@@B @ 1562 NONAME ABSENT ; struct QMetaObject const QDeclarativeRectangle::staticMetaObject ?addSignal@QMetaObjectBuilder@@QAE?AVQMetaMethodBuilder@@ABVQByteArray@@@Z @ 1563 NONAME ABSENT ; class QMetaMethodBuilder QMetaObjectBuilder::addSignal(class QByteArray const &) - ?getStaticMetaObject@QDeclarativeStateGroup@@SAABUQMetaObject@@XZ @ 1564 NONAME ABSENT ; struct QMetaObject const & QDeclarativeStateGroup::getStaticMetaObject(void) + ?getStaticMetaObject@QDeclarativeStateGroup@@SAABUQMetaObject@@XZ @ 1564 NONAME ; struct QMetaObject const & QDeclarativeStateGroup::getStaticMetaObject(void) ?childrenRectChanged@QDeclarativeItem@@IAEXABVQRectF@@@Z @ 1565 NONAME ; void QDeclarativeItem::childrenRectChanged(class QRectF const &) ?isDesignable@QDeclarativeProperty@@QBE_NXZ @ 1566 NONAME ; bool QDeclarativeProperty::isDesignable(void) const ?propertyTypeCategory@QDeclarativePropertyPrivate@@QBE?AW4PropertyTypeCategory@QDeclarativeProperty@@XZ @ 1567 NONAME ABSENT ; enum QDeclarativeProperty::PropertyTypeCategory QDeclarativePropertyPrivate::propertyTypeCategory(void) const @@ -1593,8 +1593,8 @@ EXPORTS ?tr@QDeclarativeDebugQuery@@SA?AVQString@@PBD0H@Z @ 1592 NONAME ABSENT ; class QString QDeclarativeDebugQuery::tr(char const *, char const *, int) ??AQDeclarativePropertyMap@@QAEAAVQVariant@@ABVQString@@@Z @ 1593 NONAME ; class QVariant & QDeclarativePropertyMap::operator[](class QString const &) ??0Variant@QDeclarativeParser@@QAE@_N@Z @ 1594 NONAME ; QDeclarativeParser::Variant::Variant(bool) - ?trUtf8@QDeclarativeState@@SA?AVQString@@PBD0H@Z @ 1595 NONAME ABSENT ; class QString QDeclarativeState::trUtf8(char const *, char const *, int) - ??0QDeclarativeStateGroup@@QAE@PAVQObject@@@Z @ 1596 NONAME ABSENT ; QDeclarativeStateGroup::QDeclarativeStateGroup(class QObject *) + ?trUtf8@QDeclarativeState@@SA?AVQString@@PBD0H@Z @ 1595 NONAME ; class QString QDeclarativeState::trUtf8(char const *, char const *, int) + ??0QDeclarativeStateGroup@@QAE@PAVQObject@@@Z @ 1596 NONAME ; QDeclarativeStateGroup::QDeclarativeStateGroup(class QObject *) ?count@QDeclarativeListReference@@QBEHXZ @ 1597 NONAME ; int QDeclarativeListReference::count(void) const ?location@QDeclarativeCustomParserProperty@@QBE?AULocation@QDeclarativeParser@@XZ @ 1598 NONAME ; struct QDeclarativeParser::Location QDeclarativeCustomParserProperty::location(void) const ?metaObject@QDeclarativePen@@UBEPBUQMetaObject@@XZ @ 1599 NONAME ABSENT ; struct QMetaObject const * QDeclarativePen::metaObject(void) const @@ -1645,49 +1645,49 @@ EXPORTS ??_EQDeclarativePropertyChanges@@UAE@I@Z @ 1644 NONAME ABSENT ; QDeclarativePropertyChanges::~QDeclarativePropertyChanges(unsigned int) ?setObject@QDeclarativePropertyChanges@@QAEXPAVQObject@@@Z @ 1645 NONAME ABSENT ; void QDeclarativePropertyChanges::setObject(class QObject *) ?staticMetaObject@QDeclarativePropertyChanges@@2UQMetaObject@@B @ 1646 NONAME ABSENT ; struct QMetaObject const QDeclarativePropertyChanges::staticMetaObject - ?removeEntryFromRevertList@QDeclarativeState@@QAE_NPAVQObject@@ABVQByteArray@@@Z @ 1647 NONAME ABSENT ; bool QDeclarativeState::removeEntryFromRevertList(class QObject *, class QByteArray const &) + ?removeEntryFromRevertList@QDeclarativeState@@QAE_NPAVQObject@@ABVQByteArray@@@Z @ 1647 NONAME ; bool QDeclarativeState::removeEntryFromRevertList(class QObject *, class QByteArray const &) ?restoreEntryValues@QDeclarativePropertyChanges@@QBE_NXZ @ 1648 NONAME ABSENT ; bool QDeclarativePropertyChanges::restoreEntryValues(void) const ?setRestoreEntryValues@QDeclarativePropertyChanges@@QAEX_N@Z @ 1649 NONAME ABSENT ; void QDeclarativePropertyChanges::setRestoreEntryValues(bool) ?changeValue@QDeclarativePropertyChanges@@QAEXABVQByteArray@@ABVQVariant@@@Z @ 1650 NONAME ABSENT ; void QDeclarativePropertyChanges::changeValue(class QByteArray const &, class QVariant const &) ?metaObject@QDeclarativePropertyChanges@@UBEPBUQMetaObject@@XZ @ 1651 NONAME ABSENT ; struct QMetaObject const * QDeclarativePropertyChanges::metaObject(void) const ?data_clear@QDeclarativeItemPrivate@@SAXPAV?$QDeclarativeListProperty@VQObject@@@@@Z @ 1652 NONAME ; void QDeclarativeItemPrivate::data_clear(class QDeclarativeListProperty<class QObject> *) - ?containsPropertyInRevertList@QDeclarativeState@@QBE_NPAVQObject@@ABVQByteArray@@@Z @ 1653 NONAME ABSENT ; bool QDeclarativeState::containsPropertyInRevertList(class QObject *, class QByteArray const &) const + ?containsPropertyInRevertList@QDeclarativeState@@QBE_NPAVQObject@@ABVQByteArray@@@Z @ 1653 NONAME ; bool QDeclarativeState::containsPropertyInRevertList(class QObject *, class QByteArray const &) const ?containsValue@QDeclarativePropertyChanges@@QBE_NABVQByteArray@@@Z @ 1654 NONAME ABSENT ; bool QDeclarativePropertyChanges::containsValue(class QByteArray const &) const - ?bindingInRevertList@QDeclarativeState@@QBEPAVQDeclarativeAbstractBinding@@PAVQObject@@ABVQByteArray@@@Z @ 1655 NONAME ABSENT ; class QDeclarativeAbstractBinding * QDeclarativeState::bindingInRevertList(class QObject *, class QByteArray const &) const + ?bindingInRevertList@QDeclarativeState@@QBEPAVQDeclarativeAbstractBinding@@PAVQObject@@ABVQByteArray@@@Z @ 1655 NONAME ; class QDeclarativeAbstractBinding * QDeclarativeState::bindingInRevertList(class QObject *, class QByteArray const &) const ?d_func@QDeclarativePropertyChanges@@ABEPBVQDeclarativePropertyChangesPrivate@@XZ @ 1656 NONAME ABSENT ; class QDeclarativePropertyChangesPrivate const * QDeclarativePropertyChanges::d_func(void) const ?containsProperty@QDeclarativePropertyChanges@@QBE_NABVQByteArray@@@Z @ 1657 NONAME ABSENT ; bool QDeclarativePropertyChanges::containsProperty(class QByteArray const &) const ?trUtf8@QDeclarativePropertyChanges@@SA?AVQString@@PBD0H@Z @ 1658 NONAME ABSENT ; class QString QDeclarativePropertyChanges::trUtf8(char const *, char const *, int) ?property@QDeclarativePropertyChanges@@QBE?AVQVariant@@ABVQByteArray@@@Z @ 1659 NONAME ABSENT ; class QVariant QDeclarativePropertyChanges::property(class QByteArray const &) const ?containsExpression@QDeclarativePropertyChanges@@QBE_NABVQByteArray@@@Z @ 1660 NONAME ABSENT ; bool QDeclarativePropertyChanges::containsExpression(class QByteArray const &) const - ?d_func@QDeclarativeStateOperation@@ABEPBVQDeclarativeStateOperationPrivate@@XZ @ 1661 NONAME ABSENT ; class QDeclarativeStateOperationPrivate const * QDeclarativeStateOperation::d_func(void) const + ?d_func@QDeclarativeStateOperation@@ABEPBVQDeclarativeStateOperationPrivate@@XZ @ 1661 NONAME ; class QDeclarativeStateOperationPrivate const * QDeclarativeStateOperation::d_func(void) const ?d_func@QDeclarativePropertyChanges@@AAEPAVQDeclarativePropertyChangesPrivate@@XZ @ 1662 NONAME ABSENT ; class QDeclarativePropertyChangesPrivate * QDeclarativePropertyChanges::d_func(void) - ?state@QDeclarativeStateOperation@@QBEPAVQDeclarativeState@@XZ @ 1663 NONAME ABSENT ; class QDeclarativeState * QDeclarativeStateOperation::state(void) const + ?state@QDeclarativeStateOperation@@QBEPAVQDeclarativeState@@XZ @ 1663 NONAME ; class QDeclarativeState * QDeclarativeStateOperation::state(void) const ?value@QDeclarativePropertyChanges@@QBE?AVQVariant@@ABVQByteArray@@@Z @ 1664 NONAME ABSENT ; class QVariant QDeclarativePropertyChanges::value(class QByteArray const &) const ?qt_metacall@QDeclarativePropertyChanges@@UAEHW4Call@QMetaObject@@HPAPAX@Z @ 1665 NONAME ABSENT ; int QDeclarativePropertyChanges::qt_metacall(enum QMetaObject::Call, int, void * *) ?trUtf8@QDeclarativePropertyChanges@@SA?AVQString@@PBD0@Z @ 1666 NONAME ABSENT ; class QString QDeclarativePropertyChanges::trUtf8(char const *, char const *) ?attachToState@QDeclarativePropertyChanges@@QAEXXZ @ 1667 NONAME ABSENT ; void QDeclarativePropertyChanges::attachToState(void) ?changeExpression@QDeclarativePropertyChanges@@QAEXABVQByteArray@@ABVQString@@@Z @ 1668 NONAME ABSENT ; void QDeclarativePropertyChanges::changeExpression(class QByteArray const &, class QString const &) - ?addEntryToRevertList@QDeclarativeState@@QAEXABVQDeclarativeAction@@@Z @ 1669 NONAME ABSENT ; void QDeclarativeState::addEntryToRevertList(class QDeclarativeAction const &) + ?addEntryToRevertList@QDeclarativeState@@QAEXABVQDeclarativeAction@@@Z @ 1669 NONAME ; void QDeclarativeState::addEntryToRevertList(class QDeclarativeAction const &) ??0QDeclarativePropertyChanges@@QAE@XZ @ 1670 NONAME ABSENT ; QDeclarativePropertyChanges::QDeclarativePropertyChanges(void) ?resources_clear@QDeclarativeItemPrivate@@SAXPAV?$QDeclarativeListProperty@VQObject@@@@@Z @ 1671 NONAME ; void QDeclarativeItemPrivate::resources_clear(class QDeclarativeListProperty<class QObject> *) ?isExplicit@QDeclarativePropertyChanges@@QBE_NXZ @ 1672 NONAME ABSENT ; bool QDeclarativePropertyChanges::isExplicit(void) const - ?setState@QDeclarativeStateOperation@@QAEXPAVQDeclarativeState@@@Z @ 1673 NONAME ABSENT ; void QDeclarativeStateOperation::setState(class QDeclarativeState *) + ?setState@QDeclarativeStateOperation@@QAEXPAVQDeclarativeState@@@Z @ 1673 NONAME ; void QDeclarativeStateOperation::setState(class QDeclarativeState *) ?detachFromState@QDeclarativePropertyChanges@@QAEXXZ @ 1674 NONAME ABSENT ; void QDeclarativePropertyChanges::detachFromState(void) ?tr@QDeclarativePropertyChanges@@SA?AVQString@@PBD0H@Z @ 1675 NONAME ABSENT ; class QString QDeclarativePropertyChanges::tr(char const *, char const *, int) - ?addEntriesToRevertList@QDeclarativeState@@QAEXABV?$QList@VQDeclarativeAction@@@@@Z @ 1676 NONAME ABSENT ; void QDeclarativeState::addEntriesToRevertList(class QList<class QDeclarativeAction> const &) + ?addEntriesToRevertList@QDeclarativeState@@QAEXABV?$QList@VQDeclarativeAction@@@@@Z @ 1676 NONAME ; void QDeclarativeState::addEntriesToRevertList(class QList<class QDeclarativeAction> const &) ?expression@QDeclarativePropertyChanges@@QBE?AVQString@@ABVQByteArray@@@Z @ 1677 NONAME ABSENT ; class QString QDeclarativePropertyChanges::expression(class QByteArray const &) const ?object@QDeclarativePropertyChanges@@QBEPAVQObject@@XZ @ 1678 NONAME ABSENT ; class QObject * QDeclarativePropertyChanges::object(void) const - ?valueInRevertList@QDeclarativeState@@QBE?AVQVariant@@PAVQObject@@ABVQByteArray@@@Z @ 1679 NONAME ABSENT ; class QVariant QDeclarativeState::valueInRevertList(class QObject *, class QByteArray const &) const - ?removeAllEntriesFromRevertList@QDeclarativeState@@QAEXPAVQObject@@@Z @ 1680 NONAME ABSENT ; void QDeclarativeState::removeAllEntriesFromRevertList(class QObject *) - ?d_func@QDeclarativeStateOperation@@AAEPAVQDeclarativeStateOperationPrivate@@XZ @ 1681 NONAME ABSENT ; class QDeclarativeStateOperationPrivate * QDeclarativeStateOperation::d_func(void) - ?changeValueInRevertList@QDeclarativeState@@QAE_NPAVQObject@@ABVQByteArray@@ABVQVariant@@@Z @ 1682 NONAME ABSENT ; bool QDeclarativeState::changeValueInRevertList(class QObject *, class QByteArray const &, class QVariant const &) + ?valueInRevertList@QDeclarativeState@@QBE?AVQVariant@@PAVQObject@@ABVQByteArray@@@Z @ 1679 NONAME ; class QVariant QDeclarativeState::valueInRevertList(class QObject *, class QByteArray const &) const + ?removeAllEntriesFromRevertList@QDeclarativeState@@QAEXPAVQObject@@@Z @ 1680 NONAME ; void QDeclarativeState::removeAllEntriesFromRevertList(class QObject *) + ?d_func@QDeclarativeStateOperation@@AAEPAVQDeclarativeStateOperationPrivate@@XZ @ 1681 NONAME ; class QDeclarativeStateOperationPrivate * QDeclarativeStateOperation::d_func(void) + ?changeValueInRevertList@QDeclarativeState@@QAE_NPAVQObject@@ABVQByteArray@@ABVQVariant@@@Z @ 1682 NONAME ; bool QDeclarativeState::changeValueInRevertList(class QObject *, class QByteArray const &, class QVariant const &) ?setIsExplicit@QDeclarativePropertyChanges@@QAEX_N@Z @ 1683 NONAME ABSENT ; void QDeclarativePropertyChanges::setIsExplicit(bool) - ?isStateActive@QDeclarativeState@@QBE_NXZ @ 1684 NONAME ABSENT ; bool QDeclarativeState::isStateActive(void) const + ?isStateActive@QDeclarativeState@@QBE_NXZ @ 1684 NONAME ; bool QDeclarativeState::isStateActive(void) const ?data_count@QDeclarativeItemPrivate@@SAHPAV?$QDeclarativeListProperty@VQObject@@@@@Z @ 1685 NONAME ; int QDeclarativeItemPrivate::data_count(class QDeclarativeListProperty<class QObject> *) ?removeProperty@QDeclarativePropertyChanges@@QAEXABVQByteArray@@@Z @ 1686 NONAME ABSENT ; void QDeclarativePropertyChanges::removeProperty(class QByteArray const &) ?data_at@QDeclarativeItemPrivate@@SAPAVQObject@@PAV?$QDeclarativeListProperty@VQObject@@@@H@Z @ 1687 NONAME ; class QObject * QDeclarativeItemPrivate::data_at(class QDeclarativeListProperty<class QObject> *, int) ?tr@QDeclarativePropertyChanges@@SA?AVQString@@PBD0@Z @ 1688 NONAME ABSENT ; class QString QDeclarativePropertyChanges::tr(char const *, char const *) - ?changeBindingInRevertList@QDeclarativeState@@QAE_NPAVQObject@@ABVQByteArray@@PAVQDeclarativeAbstractBinding@@@Z @ 1689 NONAME ABSENT ; bool QDeclarativeState::changeBindingInRevertList(class QObject *, class QByteArray const &, class QDeclarativeAbstractBinding *) + ?changeBindingInRevertList@QDeclarativeState@@QAE_NPAVQObject@@ABVQByteArray@@PAVQDeclarativeAbstractBinding@@@Z @ 1689 NONAME ; bool QDeclarativeState::changeBindingInRevertList(class QObject *, class QByteArray const &, class QDeclarativeAbstractBinding *) ?getStaticMetaObject@QDeclarativePropertyChanges@@SAABUQMetaObject@@XZ @ 1690 NONAME ABSENT ; struct QMetaObject const & QDeclarativePropertyChanges::getStaticMetaObject(void) ?weakPointer@QDeclarativeAbstractBinding@@QAE?AV?$QWeakPointer@VQDeclarativeAbstractBinding@@@@XZ @ 1691 NONAME ABSENT ; class QWeakPointer<class QDeclarativeAbstractBinding> QDeclarativeAbstractBinding::weakPointer(void) ?getStaticMetaObject@QDeclarativeScriptAction@@SAABUQMetaObject@@XZ @ 1692 NONAME ABSENT ; struct QMetaObject const & QDeclarativeScriptAction::getStaticMetaObject(void) diff --git a/src/s60installs/eabi/QtDeclarativeu.def b/src/s60installs/eabi/QtDeclarativeu.def index 33c3d53..849ca6a 100644 --- a/src/s60installs/eabi/QtDeclarativeu.def +++ b/src/s60installs/eabi/QtDeclarativeu.def @@ -170,24 +170,24 @@ EXPORTS _ZN17QDeclarativeErrorD1Ev @ 169 NONAME _ZN17QDeclarativeErrorD2Ev @ 170 NONAME _ZN17QDeclarativeErroraSERKS_ @ 171 NONAME - _ZN17QDeclarativeState10setExtendsERK7QString @ 172 NONAME ABSENT - _ZN17QDeclarativeState11qt_metacallEN11QMetaObject4CallEiPPv @ 173 NONAME ABSENT - _ZN17QDeclarativeState11qt_metacastEPKc @ 174 NONAME ABSENT - _ZN17QDeclarativeState13setStateGroupEP22QDeclarativeStateGroup @ 175 NONAME ABSENT - _ZN17QDeclarativeState16staticMetaObjectE @ 176 NONAME DATA 16 ABSENT - _ZN17QDeclarativeState19getStaticMetaObjectEv @ 177 NONAME ABSENT - _ZN17QDeclarativeState5applyEP22QDeclarativeStateGroupP22QDeclarativeTransitionPS_ @ 178 NONAME ABSENT - _ZN17QDeclarativeState6cancelEv @ 179 NONAME ABSENT - _ZN17QDeclarativeState7changesEv @ 180 NONAME ABSENT - _ZN17QDeclarativeState7setNameERK7QString @ 181 NONAME ABSENT - _ZN17QDeclarativeState7setWhenEP19QDeclarativeBinding @ 182 NONAME ABSENT - _ZN17QDeclarativeState9completedEv @ 183 NONAME ABSENT - _ZN17QDeclarativeStateC1EP7QObject @ 184 NONAME ABSENT - _ZN17QDeclarativeStateC2EP7QObject @ 185 NONAME ABSENT - _ZN17QDeclarativeStateD0Ev @ 186 NONAME ABSENT - _ZN17QDeclarativeStateD1Ev @ 187 NONAME ABSENT - _ZN17QDeclarativeStateD2Ev @ 188 NONAME ABSENT - _ZN17QDeclarativeStatelsEP26QDeclarativeStateOperation @ 189 NONAME ABSENT + _ZN17QDeclarativeState10setExtendsERK7QString @ 172 NONAME + _ZN17QDeclarativeState11qt_metacallEN11QMetaObject4CallEiPPv @ 173 NONAME + _ZN17QDeclarativeState11qt_metacastEPKc @ 174 NONAME + _ZN17QDeclarativeState13setStateGroupEP22QDeclarativeStateGroup @ 175 NONAME + _ZN17QDeclarativeState16staticMetaObjectE @ 176 NONAME DATA 16 + _ZN17QDeclarativeState19getStaticMetaObjectEv @ 177 NONAME + _ZN17QDeclarativeState5applyEP22QDeclarativeStateGroupP22QDeclarativeTransitionPS_ @ 178 NONAME + _ZN17QDeclarativeState6cancelEv @ 179 NONAME + _ZN17QDeclarativeState7changesEv @ 180 NONAME + _ZN17QDeclarativeState7setNameERK7QString @ 181 NONAME + _ZN17QDeclarativeState7setWhenEP19QDeclarativeBinding @ 182 NONAME + _ZN17QDeclarativeState9completedEv @ 183 NONAME + _ZN17QDeclarativeStateC1EP7QObject @ 184 NONAME + _ZN17QDeclarativeStateC2EP7QObject @ 185 NONAME + _ZN17QDeclarativeStateD0Ev @ 186 NONAME + _ZN17QDeclarativeStateD1Ev @ 187 NONAME + _ZN17QDeclarativeStateD2Ev @ 188 NONAME + _ZN17QDeclarativeStatelsEP26QDeclarativeStateOperation @ 189 NONAME _ZN18QDeclarativeAction17deleteFromBindingEv @ 190 NONAME ABSENT _ZN18QDeclarativeActionC1EP7QObjectRK7QStringP19QDeclarativeContextRK8QVariant @ 191 NONAME ABSENT _ZN18QDeclarativeActionC1EP7QObjectRK7QStringRK8QVariant @ 192 NONAME ABSENT @@ -637,42 +637,42 @@ EXPORTS _ZN22QDeclarativeExpressionD0Ev @ 636 NONAME _ZN22QDeclarativeExpressionD1Ev @ 637 NONAME _ZN22QDeclarativeExpressionD2Ev @ 638 NONAME - _ZN22QDeclarativeStateGroup10classBeginEv @ 639 NONAME ABSENT - _ZN22QDeclarativeStateGroup11qt_metacallEN11QMetaObject4CallEiPPv @ 640 NONAME ABSENT - _ZN22QDeclarativeStateGroup11qt_metacastEPKc @ 641 NONAME ABSENT - _ZN22QDeclarativeStateGroup11removeStateEP17QDeclarativeState @ 642 NONAME ABSENT - _ZN22QDeclarativeStateGroup12stateChangedERK7QString @ 643 NONAME ABSENT - _ZN22QDeclarativeStateGroup14statesPropertyEv @ 644 NONAME ABSENT - _ZN22QDeclarativeStateGroup15updateAutoStateEv @ 645 NONAME ABSENT - _ZN22QDeclarativeStateGroup16staticMetaObjectE @ 646 NONAME DATA 16 ABSENT - _ZN22QDeclarativeStateGroup17componentCompleteEv @ 647 NONAME ABSENT - _ZN22QDeclarativeStateGroup19getStaticMetaObjectEv @ 648 NONAME ABSENT - _ZN22QDeclarativeStateGroup19transitionsPropertyEv @ 649 NONAME ABSENT - _ZN22QDeclarativeStateGroup8setStateERK7QString @ 650 NONAME ABSENT - _ZN22QDeclarativeStateGroupC1EP7QObject @ 651 NONAME ABSENT - _ZN22QDeclarativeStateGroupC2EP7QObject @ 652 NONAME ABSENT - _ZN22QDeclarativeStateGroupD0Ev @ 653 NONAME ABSENT - _ZN22QDeclarativeStateGroupD1Ev @ 654 NONAME ABSENT - _ZN22QDeclarativeStateGroupD2Ev @ 655 NONAME ABSENT - _ZN22QDeclarativeTransition10animationsEv @ 656 NONAME ABSENT - _ZN22QDeclarativeTransition10setToStateERK7QString @ 657 NONAME ABSENT - _ZN22QDeclarativeTransition11fromChangedEv @ 658 NONAME ABSENT - _ZN22QDeclarativeTransition11qt_metacallEN11QMetaObject4CallEiPPv @ 659 NONAME ABSENT - _ZN22QDeclarativeTransition11qt_metacastEPKc @ 660 NONAME ABSENT - _ZN22QDeclarativeTransition11setReversedEb @ 661 NONAME ABSENT - _ZN22QDeclarativeTransition12setFromStateERK7QString @ 662 NONAME ABSENT - _ZN22QDeclarativeTransition13setReversibleEb @ 663 NONAME ABSENT - _ZN22QDeclarativeTransition16staticMetaObjectE @ 664 NONAME DATA 16 ABSENT - _ZN22QDeclarativeTransition17reversibleChangedEv @ 665 NONAME ABSENT - _ZN22QDeclarativeTransition19getStaticMetaObjectEv @ 666 NONAME ABSENT - _ZN22QDeclarativeTransition4stopEv @ 667 NONAME ABSENT - _ZN22QDeclarativeTransition7prepareER5QListI18QDeclarativeActionERS0_I20QDeclarativePropertyEP29QDeclarativeTransitionManager @ 668 NONAME ABSENT - _ZN22QDeclarativeTransition9toChangedEv @ 669 NONAME ABSENT - _ZN22QDeclarativeTransitionC1EP7QObject @ 670 NONAME ABSENT - _ZN22QDeclarativeTransitionC2EP7QObject @ 671 NONAME ABSENT - _ZN22QDeclarativeTransitionD0Ev @ 672 NONAME ABSENT - _ZN22QDeclarativeTransitionD1Ev @ 673 NONAME ABSENT - _ZN22QDeclarativeTransitionD2Ev @ 674 NONAME ABSENT + _ZN22QDeclarativeStateGroup10classBeginEv @ 639 NONAME + _ZN22QDeclarativeStateGroup11qt_metacallEN11QMetaObject4CallEiPPv @ 640 NONAME + _ZN22QDeclarativeStateGroup11qt_metacastEPKc @ 641 NONAME + _ZN22QDeclarativeStateGroup11removeStateEP17QDeclarativeState @ 642 NONAME + _ZN22QDeclarativeStateGroup12stateChangedERK7QString @ 643 NONAME + _ZN22QDeclarativeStateGroup14statesPropertyEv @ 644 NONAME + _ZN22QDeclarativeStateGroup15updateAutoStateEv @ 645 NONAME + _ZN22QDeclarativeStateGroup16staticMetaObjectE @ 646 NONAME DATA 16 + _ZN22QDeclarativeStateGroup17componentCompleteEv @ 647 NONAME + _ZN22QDeclarativeStateGroup19getStaticMetaObjectEv @ 648 NONAME + _ZN22QDeclarativeStateGroup19transitionsPropertyEv @ 649 NONAME + _ZN22QDeclarativeStateGroup8setStateERK7QString @ 650 NONAME + _ZN22QDeclarativeStateGroupC1EP7QObject @ 651 NONAME + _ZN22QDeclarativeStateGroupC2EP7QObject @ 652 NONAME + _ZN22QDeclarativeStateGroupD0Ev @ 653 NONAME + _ZN22QDeclarativeStateGroupD1Ev @ 654 NONAME + _ZN22QDeclarativeStateGroupD2Ev @ 655 NONAME + _ZN22QDeclarativeTransition10animationsEv @ 656 NONAME + _ZN22QDeclarativeTransition10setToStateERK7QString @ 657 NONAME + _ZN22QDeclarativeTransition11fromChangedEv @ 658 NONAME + _ZN22QDeclarativeTransition11qt_metacallEN11QMetaObject4CallEiPPv @ 659 NONAME + _ZN22QDeclarativeTransition11qt_metacastEPKc @ 660 NONAME + _ZN22QDeclarativeTransition11setReversedEb @ 661 NONAME + _ZN22QDeclarativeTransition12setFromStateERK7QString @ 662 NONAME + _ZN22QDeclarativeTransition13setReversibleEb @ 663 NONAME + _ZN22QDeclarativeTransition16staticMetaObjectE @ 664 NONAME DATA 16 + _ZN22QDeclarativeTransition17reversibleChangedEv @ 665 NONAME + _ZN22QDeclarativeTransition19getStaticMetaObjectEv @ 666 NONAME + _ZN22QDeclarativeTransition4stopEv @ 667 NONAME + _ZN22QDeclarativeTransition7prepareER5QListI18QDeclarativeActionERS0_I20QDeclarativePropertyEP29QDeclarativeTransitionManager @ 668 NONAME + _ZN22QDeclarativeTransition9toChangedEv @ 669 NONAME + _ZN22QDeclarativeTransitionC1EP7QObject @ 670 NONAME + _ZN22QDeclarativeTransitionC2EP7QObject @ 671 NONAME + _ZN22QDeclarativeTransitionD0Ev @ 672 NONAME + _ZN22QDeclarativeTransitionD1Ev @ 673 NONAME + _ZN22QDeclarativeTransitionD2Ev @ 674 NONAME _ZN23QDeclarativeDebugClient10setEnabledEb @ 675 NONAME ABSENT _ZN23QDeclarativeDebugClient11qt_metacallEN11QMetaObject4CallEiPPv @ 676 NONAME ABSENT _ZN23QDeclarativeDebugClient11qt_metacastEPKc @ 677 NONAME ABSENT @@ -835,13 +835,13 @@ EXPORTS _ZN26QDeclarativeOpenMetaObjectD2Ev @ 834 NONAME ABSENT _ZN26QDeclarativeOpenMetaObjectixERK10QByteArray @ 835 NONAME ABSENT _ZN26QDeclarativeOpenMetaObjectixEi @ 836 NONAME ABSENT - _ZN26QDeclarativeStateOperation11qt_metacallEN11QMetaObject4CallEiPPv @ 837 NONAME ABSENT - _ZN26QDeclarativeStateOperation11qt_metacastEPKc @ 838 NONAME ABSENT - _ZN26QDeclarativeStateOperation16staticMetaObjectE @ 839 NONAME DATA 16 ABSENT - _ZN26QDeclarativeStateOperation19getStaticMetaObjectEv @ 840 NONAME ABSENT - _ZN26QDeclarativeStateOperation7actionsEv @ 841 NONAME ABSENT - _ZN26QDeclarativeStateOperationC1ER14QObjectPrivateP7QObject @ 842 NONAME ABSENT - _ZN26QDeclarativeStateOperationC2ER14QObjectPrivateP7QObject @ 843 NONAME ABSENT + _ZN26QDeclarativeStateOperation11qt_metacallEN11QMetaObject4CallEiPPv @ 837 NONAME + _ZN26QDeclarativeStateOperation11qt_metacastEPKc @ 838 NONAME + _ZN26QDeclarativeStateOperation16staticMetaObjectE @ 839 NONAME DATA 16 + _ZN26QDeclarativeStateOperation19getStaticMetaObjectEv @ 840 NONAME + _ZN26QDeclarativeStateOperation7actionsEv @ 841 NONAME + _ZN26QDeclarativeStateOperationC1ER14QObjectPrivateP7QObject @ 842 NONAME + _ZN26QDeclarativeStateOperationC2ER14QObjectPrivateP7QObject @ 843 NONAME _ZN27QDeclarativeAbstractBinding10setEnabledEb6QFlagsIN27QDeclarativePropertyPrivate9WriteFlagEE @ 844 NONAME ABSENT _ZN27QDeclarativeAbstractBinding11addToObjectEP7QObject @ 845 NONAME ABSENT _ZN27QDeclarativeAbstractBinding16removeFromObjectEv @ 846 NONAME ABSENT @@ -1156,15 +1156,15 @@ EXPORTS _ZNK17QDeclarativeError6columnEv @ 1155 NONAME _ZNK17QDeclarativeError7isValidEv @ 1156 NONAME _ZNK17QDeclarativeError8toStringEv @ 1157 NONAME - _ZNK17QDeclarativeState10metaObjectEv @ 1158 NONAME ABSENT - _ZNK17QDeclarativeState10stateGroupEv @ 1159 NONAME ABSENT - _ZNK17QDeclarativeState11isWhenKnownEv @ 1160 NONAME ABSENT - _ZNK17QDeclarativeState11operationAtEi @ 1161 NONAME ABSENT - _ZNK17QDeclarativeState14operationCountEv @ 1162 NONAME ABSENT - _ZNK17QDeclarativeState4nameEv @ 1163 NONAME ABSENT - _ZNK17QDeclarativeState4whenEv @ 1164 NONAME ABSENT - _ZNK17QDeclarativeState7extendsEv @ 1165 NONAME ABSENT - _ZNK17QDeclarativeState7isNamedEv @ 1166 NONAME ABSENT + _ZNK17QDeclarativeState10metaObjectEv @ 1158 NONAME + _ZNK17QDeclarativeState10stateGroupEv @ 1159 NONAME + _ZNK17QDeclarativeState11isWhenKnownEv @ 1160 NONAME + _ZNK17QDeclarativeState11operationAtEi @ 1161 NONAME + _ZNK17QDeclarativeState14operationCountEv @ 1162 NONAME + _ZNK17QDeclarativeState4nameEv @ 1163 NONAME + _ZNK17QDeclarativeState4whenEv @ 1164 NONAME + _ZNK17QDeclarativeState7extendsEv @ 1165 NONAME + _ZNK17QDeclarativeState7isNamedEv @ 1166 NONAME _ZNK18QDeclarativeEngine10metaObjectEv @ 1167 NONAME _ZNK18QDeclarativeEngine11rootContextEv @ 1168 NONAME _ZNK18QDeclarativeEngine13imageProviderERK7QString @ 1169 NONAME @@ -1381,14 +1381,14 @@ EXPORTS _ZNK22QDeclarativeExpression6engineEv @ 1380 NONAME _ZNK22QDeclarativeExpression7contextEv @ 1381 NONAME _ZNK22QDeclarativeExpression8hasErrorEv @ 1382 NONAME - _ZNK22QDeclarativeStateGroup10metaObjectEv @ 1383 NONAME ABSENT - _ZNK22QDeclarativeStateGroup5stateEv @ 1384 NONAME ABSENT - _ZNK22QDeclarativeStateGroup6statesEv @ 1385 NONAME ABSENT - _ZNK22QDeclarativeStateGroup9findStateERK7QString @ 1386 NONAME ABSENT - _ZNK22QDeclarativeTransition10metaObjectEv @ 1387 NONAME ABSENT - _ZNK22QDeclarativeTransition10reversibleEv @ 1388 NONAME ABSENT - _ZNK22QDeclarativeTransition7toStateEv @ 1389 NONAME ABSENT - _ZNK22QDeclarativeTransition9fromStateEv @ 1390 NONAME ABSENT + _ZNK22QDeclarativeStateGroup10metaObjectEv @ 1383 NONAME + _ZNK22QDeclarativeStateGroup5stateEv @ 1384 NONAME + _ZNK22QDeclarativeStateGroup6statesEv @ 1385 NONAME + _ZNK22QDeclarativeStateGroup9findStateERK7QString @ 1386 NONAME + _ZNK22QDeclarativeTransition10metaObjectEv @ 1387 NONAME + _ZNK22QDeclarativeTransition10reversibleEv @ 1388 NONAME + _ZNK22QDeclarativeTransition7toStateEv @ 1389 NONAME + _ZNK22QDeclarativeTransition9fromStateEv @ 1390 NONAME _ZNK23QDeclarativeDebugClient10metaObjectEv @ 1391 NONAME ABSENT _ZNK23QDeclarativeDebugClient11isConnectedEv @ 1392 NONAME ABSENT _ZNK23QDeclarativeDebugClient4nameEv @ 1393 NONAME ABSENT @@ -1452,7 +1452,7 @@ EXPORTS _ZNK26QDeclarativeOpenMetaObject6objectEv @ 1451 NONAME ABSENT _ZNK26QDeclarativeOpenMetaObject6parentEv @ 1452 NONAME ABSENT _ZNK26QDeclarativeOpenMetaObject8hasValueEi @ 1453 NONAME ABSENT - _ZNK26QDeclarativeStateOperation10metaObjectEv @ 1454 NONAME ABSENT + _ZNK26QDeclarativeStateOperation10metaObjectEv @ 1454 NONAME _ZNK27QDeclarativeAbstractBinding10expressionEv @ 1455 NONAME ABSENT _ZNK27QDeclarativeDebugConnection10metaObjectEv @ 1456 NONAME ABSENT _ZNK27QDeclarativeDebugConnection11isConnectedEv @ 1457 NONAME ABSENT @@ -1531,7 +1531,7 @@ EXPORTS _ZTI16QDeclarativeItem @ 1530 NONAME _ZTI16QDeclarativeText @ 1531 NONAME ABSENT _ZTI16QDeclarativeView @ 1532 NONAME - _ZTI17QDeclarativeState @ 1533 NONAME ABSENT + _ZTI17QDeclarativeState @ 1533 NONAME _ZTI18QDeclarativeEngine @ 1534 NONAME _ZTI18QMetaObjectBuilder @ 1535 NONAME ABSENT _ZTI19QDeclarativeAnchors @ 1536 NONAME ABSENT @@ -1547,8 +1547,8 @@ EXPORTS _ZTI22QDeclarativeDebugQuery @ 1546 NONAME ABSENT _ZTI22QDeclarativeDebugWatch @ 1547 NONAME ABSENT _ZTI22QDeclarativeExpression @ 1548 NONAME - _ZTI22QDeclarativeStateGroup @ 1549 NONAME ABSENT - _ZTI22QDeclarativeTransition @ 1550 NONAME ABSENT + _ZTI22QDeclarativeStateGroup @ 1549 NONAME + _ZTI22QDeclarativeTransition @ 1550 NONAME _ZTI23QDeclarativeDebugClient @ 1551 NONAME ABSENT _ZTI23QDeclarativeEngineDebug @ 1552 NONAME ABSENT _ZTI23QDeclarativeItemPrivate @ 1553 NONAME @@ -1559,7 +1559,7 @@ EXPORTS _ZTI25QDeclarativeImageProvider @ 1558 NONAME _ZTI26QDeclarativeDebuggerStatus @ 1559 NONAME ABSENT _ZTI26QDeclarativeOpenMetaObject @ 1560 NONAME ABSENT - _ZTI26QDeclarativeStateOperation @ 1561 NONAME ABSENT + _ZTI26QDeclarativeStateOperation @ 1561 NONAME _ZTI27QDeclarativeAbstractBinding @ 1562 NONAME ABSENT _ZTI27QDeclarativeDebugConnection @ 1563 NONAME ABSENT _ZTI27QDeclarativeExtensionPlugin @ 1564 NONAME @@ -1581,7 +1581,7 @@ EXPORTS _ZTV16QDeclarativeItem @ 1580 NONAME _ZTV16QDeclarativeText @ 1581 NONAME ABSENT _ZTV16QDeclarativeView @ 1582 NONAME - _ZTV17QDeclarativeState @ 1583 NONAME ABSENT + _ZTV17QDeclarativeState @ 1583 NONAME _ZTV18QDeclarativeEngine @ 1584 NONAME _ZTV18QMetaObjectBuilder @ 1585 NONAME ABSENT _ZTV19QDeclarativeAnchors @ 1586 NONAME ABSENT @@ -1597,8 +1597,8 @@ EXPORTS _ZTV22QDeclarativeDebugQuery @ 1596 NONAME ABSENT _ZTV22QDeclarativeDebugWatch @ 1597 NONAME ABSENT _ZTV22QDeclarativeExpression @ 1598 NONAME - _ZTV22QDeclarativeStateGroup @ 1599 NONAME ABSENT - _ZTV22QDeclarativeTransition @ 1600 NONAME ABSENT + _ZTV22QDeclarativeStateGroup @ 1599 NONAME + _ZTV22QDeclarativeTransition @ 1600 NONAME _ZTV23QDeclarativeDebugClient @ 1601 NONAME ABSENT _ZTV23QDeclarativeEngineDebug @ 1602 NONAME ABSENT _ZTV23QDeclarativeItemPrivate @ 1603 NONAME @@ -1609,7 +1609,7 @@ EXPORTS _ZTV25QDeclarativeImageProvider @ 1608 NONAME _ZTV26QDeclarativeDebuggerStatus @ 1609 NONAME ABSENT _ZTV26QDeclarativeOpenMetaObject @ 1610 NONAME ABSENT - _ZTV26QDeclarativeStateOperation @ 1611 NONAME ABSENT + _ZTV26QDeclarativeStateOperation @ 1611 NONAME _ZTV27QDeclarativeAbstractBinding @ 1612 NONAME ABSENT _ZTV27QDeclarativeDebugConnection @ 1613 NONAME ABSENT _ZTV27QDeclarativeExtensionPlugin @ 1614 NONAME @@ -1656,10 +1656,10 @@ EXPORTS _ZThn8_N20QDeclarativeBehaviorD0Ev @ 1655 NONAME ABSENT _ZThn8_N20QDeclarativeBehaviorD1Ev @ 1656 NONAME ABSENT _ZThn8_N21QDeclarativeRectangle5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget @ 1657 NONAME ABSENT - _ZThn8_N22QDeclarativeStateGroup10classBeginEv @ 1658 NONAME ABSENT - _ZThn8_N22QDeclarativeStateGroup17componentCompleteEv @ 1659 NONAME ABSENT - _ZThn8_N22QDeclarativeStateGroupD0Ev @ 1660 NONAME ABSENT - _ZThn8_N22QDeclarativeStateGroupD1Ev @ 1661 NONAME ABSENT + _ZThn8_N22QDeclarativeStateGroup10classBeginEv @ 1658 NONAME + _ZThn8_N22QDeclarativeStateGroup17componentCompleteEv @ 1659 NONAME + _ZThn8_N22QDeclarativeStateGroupD0Ev @ 1660 NONAME + _ZThn8_N22QDeclarativeStateGroupD1Ev @ 1661 NONAME _ZThn8_N27QDeclarativeExtensionPlugin16initializeEngineEP18QDeclarativeEnginePKc @ 1662 NONAME _ZThn8_N27QDeclarativeExtensionPluginD0Ev @ 1663 NONAME _ZThn8_N27QDeclarativeExtensionPluginD1Ev @ 1664 NONAME @@ -1675,17 +1675,17 @@ EXPORTS _ZrsR11QDataStreamRN29QDeclarativeEngineDebugServer22QDeclarativeObjectDataE @ 1674 NONAME ABSENT _ZrsR11QDataStreamRN29QDeclarativeEngineDebugServer26QDeclarativeObjectPropertyE @ 1675 NONAME ABSENT _ZN23QDeclarativeEngineDebug10newObjectsEv @ 1676 NONAME ABSENT - _ZN17QDeclarativeState20addEntryToRevertListERK18QDeclarativeAction @ 1677 NONAME ABSENT - _ZN17QDeclarativeState22addEntriesToRevertListERK5QListI18QDeclarativeActionE @ 1678 NONAME ABSENT - _ZN17QDeclarativeState23changeValueInRevertListEP7QObjectRK10QByteArrayRK8QVariant @ 1679 NONAME ABSENT - _ZN17QDeclarativeState25changeBindingInRevertListEP7QObjectRK10QByteArrayP27QDeclarativeAbstractBinding @ 1680 NONAME ABSENT - _ZN17QDeclarativeState25removeEntryFromRevertListEP7QObjectRK10QByteArray @ 1681 NONAME ABSENT - _ZN17QDeclarativeState30removeAllEntriesFromRevertListEP7QObject @ 1682 NONAME ABSENT + _ZN17QDeclarativeState20addEntryToRevertListERK18QDeclarativeAction @ 1677 NONAME + _ZN17QDeclarativeState22addEntriesToRevertListERK5QListI18QDeclarativeActionE @ 1678 NONAME + _ZN17QDeclarativeState23changeValueInRevertListEP7QObjectRK10QByteArrayRK8QVariant @ 1679 NONAME + _ZN17QDeclarativeState25changeBindingInRevertListEP7QObjectRK10QByteArrayP27QDeclarativeAbstractBinding @ 1680 NONAME + _ZN17QDeclarativeState25removeEntryFromRevertListEP7QObjectRK10QByteArray @ 1681 NONAME + _ZN17QDeclarativeState30removeAllEntriesFromRevertListEP7QObject @ 1682 NONAME _ZN23QDeclarativeItemPrivate10data_clearEP24QDeclarativeListPropertyI7QObjectE @ 1683 NONAME _ZN23QDeclarativeItemPrivate10data_countEP24QDeclarativeListPropertyI7QObjectE @ 1684 NONAME _ZN23QDeclarativeItemPrivate15resources_clearEP24QDeclarativeListPropertyI7QObjectE @ 1685 NONAME _ZN23QDeclarativeItemPrivate7data_atEP24QDeclarativeListPropertyI7QObjectEi @ 1686 NONAME - _ZN26QDeclarativeStateOperation8setStateEP17QDeclarativeState @ 1687 NONAME ABSENT + _ZN26QDeclarativeStateOperation8setStateEP17QDeclarativeState @ 1687 NONAME _ZN27QDeclarativeAbstractBinding11weakPointerEv @ 1688 NONAME ABSENT _ZN27QDeclarativePropertyChanges11changeValueERK10QByteArrayRK8QVariant @ 1689 NONAME ABSENT _ZN27QDeclarativePropertyChanges11qt_metacallEN11QMetaObject4CallEiPPv @ 1690 NONAME ABSENT @@ -1705,11 +1705,11 @@ EXPORTS _ZN27QDeclarativePropertyChangesD0Ev @ 1704 NONAME ABSENT _ZN27QDeclarativePropertyChangesD1Ev @ 1705 NONAME ABSENT _ZN27QDeclarativePropertyChangesD2Ev @ 1706 NONAME ABSENT - _ZNK17QDeclarativeState13isStateActiveEv @ 1707 NONAME ABSENT - _ZNK17QDeclarativeState17valueInRevertListEP7QObjectRK10QByteArray @ 1708 NONAME ABSENT - _ZNK17QDeclarativeState19bindingInRevertListEP7QObjectRK10QByteArray @ 1709 NONAME ABSENT - _ZNK17QDeclarativeState28containsPropertyInRevertListEP7QObjectRK10QByteArray @ 1710 NONAME ABSENT - _ZNK26QDeclarativeStateOperation5stateEv @ 1711 NONAME ABSENT + _ZNK17QDeclarativeState13isStateActiveEv @ 1707 NONAME + _ZNK17QDeclarativeState17valueInRevertListEP7QObjectRK10QByteArray @ 1708 NONAME + _ZNK17QDeclarativeState19bindingInRevertListEP7QObjectRK10QByteArray @ 1709 NONAME + _ZNK17QDeclarativeState28containsPropertyInRevertListEP7QObjectRK10QByteArray @ 1710 NONAME + _ZNK26QDeclarativeStateOperation5stateEv @ 1711 NONAME _ZNK27QDeclarativePropertyChanges10expressionERK10QByteArray @ 1712 NONAME ABSENT _ZNK27QDeclarativePropertyChanges10isExplicitEv @ 1713 NONAME ABSENT _ZNK27QDeclarativePropertyChanges10metaObjectEv @ 1714 NONAME ABSENT -- cgit v0.12 From cd55d5da5a5a1f676b85f4976b1b5e99e8a5f9c7 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Thu, 28 Oct 2010 17:24:07 +1000 Subject: Missing part of 64a05cfa97b1192ac247558c0601ba0e4ec464c9 Task-number: QT-4200 --- demos/declarative/snake/snake.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demos/declarative/snake/snake.qml b/demos/declarative/snake/snake.qml index 6eaa976..af86aac 100644 --- a/demos/declarative/snake/snake.qml +++ b/demos/declarative/snake/snake.qml @@ -105,7 +105,7 @@ Rectangle { source: "content/pics/pause.png" anchors.centerIn: parent; //opacity is deliberately not animated - opacity: gameActive && !runtime.isActiveWindow + opacity: activeGame && !runtime.isActiveWindow } Image { -- cgit v0.12 From ff40d424d2914b84bef4a7bb41e8ef04229db6c7 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Thu, 28 Oct 2010 18:09:46 +1000 Subject: Clean up ListView visual tests listview.qml is still expected to fail, filing a bug about that soon Task-number: QTBUG-14792 --- .../auto/declarative/qmlvisual/ListView/basic1.qml | 11 +- .../auto/declarative/qmlvisual/ListView/basic2.qml | 11 +- .../auto/declarative/qmlvisual/ListView/basic3.qml | 11 +- .../auto/declarative/qmlvisual/ListView/basic4.qml | 11 +- .../qmlvisual/ListView/data-MAC/basic1.qml | 159 - .../qmlvisual/ListView/data-MAC/basic2.qml | 187 -- .../qmlvisual/ListView/data-MAC/basic3.qml | 147 - .../qmlvisual/ListView/data-MAC/basic4.qml | 171 -- .../qmlvisual/ListView/data-MAC/itemlist.0.png | Bin 961 -> 0 bytes .../qmlvisual/ListView/data-MAC/itemlist.1.png | Bin 972 -> 0 bytes .../qmlvisual/ListView/data-MAC/itemlist.2.png | Bin 962 -> 0 bytes .../qmlvisual/ListView/data-MAC/itemlist.3.png | Bin 962 -> 0 bytes .../qmlvisual/ListView/data-MAC/itemlist.4.png | Bin 962 -> 0 bytes .../qmlvisual/ListView/data-MAC/itemlist.5.png | Bin 970 -> 0 bytes .../qmlvisual/ListView/data-MAC/itemlist.6.png | Bin 961 -> 0 bytes .../qmlvisual/ListView/data-MAC/itemlist.qml | 2203 -------------- .../qmlvisual/ListView/data-MAC/listview.0.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.1.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.10.png | Bin 1588 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.11.png | Bin 1575 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.12.png | Bin 1502 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.13.png | Bin 1583 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.14.png | Bin 1681 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.15.png | Bin 1524 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.16.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.17.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.18.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.19.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.2.png | Bin 1627 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.3.png | Bin 1524 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.4.png | Bin 1678 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.5.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.6.png | Bin 1573 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.7.png | Bin 1670 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.8.png | Bin 1658 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.9.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data-MAC/listview.qml | 3079 -------------------- .../qmlvisual/ListView/data-X11/basic1.qml | 159 - .../qmlvisual/ListView/data-X11/basic2.qml | 187 -- .../qmlvisual/ListView/data-X11/basic3.qml | 147 - .../qmlvisual/ListView/data-X11/basic4.qml | 171 -- .../declarative/qmlvisual/ListView/data/basic1.qml | 114 +- .../declarative/qmlvisual/ListView/data/basic2.qml | 100 +- .../declarative/qmlvisual/ListView/data/basic3.qml | 84 +- .../declarative/qmlvisual/ListView/data/basic4.qml | 110 +- .../qmlvisual/ListView/data/itemlist.0.png | Bin 961 -> 976 bytes .../qmlvisual/ListView/data/itemlist.1.png | Bin 972 -> 986 bytes .../qmlvisual/ListView/data/itemlist.2.png | Bin 962 -> 977 bytes .../qmlvisual/ListView/data/itemlist.3.png | Bin 962 -> 977 bytes .../qmlvisual/ListView/data/itemlist.4.png | Bin 962 -> 977 bytes .../qmlvisual/ListView/data/itemlist.5.png | Bin 970 -> 990 bytes .../qmlvisual/ListView/data/itemlist.6.png | Bin 961 -> 976 bytes .../qmlvisual/ListView/data/itemlist.qml | 350 +-- .../declarative/qmlvisual/ListView/listview.qml | 2 +- 54 files changed, 318 insertions(+), 7096 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.0.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.1.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.2.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.3.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.4.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.5.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.6.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.0.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.1.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.10.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.11.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.12.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.13.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.14.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.15.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.16.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.17.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.18.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.19.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.2.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.3.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.4.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.5.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.6.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.7.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.8.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.9.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml diff --git a/tests/auto/declarative/qmlvisual/ListView/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/basic1.qml index d55c997..8c1b56e 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic1.qml @@ -11,16 +11,19 @@ Rectangle { color: "red" width: 100 height: 100 - Text { - text: name + Rectangle { + anchors.centerIn: parent + width: 60 + height: 60 + color: name } } model: ListModel { ListElement { - name: "January" + name: "palegoldenrod" } ListElement { - name: "February" + name: "lightsteelblue" } } } diff --git a/tests/auto/declarative/qmlvisual/ListView/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/basic2.qml index 31c802d..9d26c73 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic2.qml @@ -11,8 +11,11 @@ Rectangle { color: "red" width: 100 height: 100 - Text { - text: name + Rectangle { + anchors.centerIn: parent + width: 60 + height: 60 + color: name } } } @@ -21,10 +24,10 @@ Rectangle { delegate: delegate model: ListModel { ListElement { - name: "January" + name: "palegoldenrod" } ListElement { - name: "February" + name: "lightsteelblue" } } } diff --git a/tests/auto/declarative/qmlvisual/ListView/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/basic3.qml index be39ca1..982df9a 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic3.qml @@ -8,10 +8,10 @@ Rectangle { ListModel { id: model ListElement { - name: "January" + name: "palegoldenrod" } ListElement { - name: "February" + name: "lightsteelblue" } } ListView { @@ -21,8 +21,11 @@ Rectangle { color: "red" width: 100 height: 100 - Text { - text: name + Rectangle { + anchors.centerIn: parent + width: 60 + height: 60 + color: name } } } diff --git a/tests/auto/declarative/qmlvisual/ListView/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/basic4.qml index 906af63..2c5d1e3 100644 --- a/tests/auto/declarative/qmlvisual/ListView/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/basic4.qml @@ -8,10 +8,10 @@ Rectangle { ListModel { id: model ListElement { - name: "January" + name: "palegoldenrod" } ListElement { - name: "February" + name: "lightsteelblue" } } Component { @@ -20,8 +20,11 @@ Rectangle { color: "red" width: 100 height: 100 - Text { - text: name + Rectangle { + anchors.centerIn: parent + width: 60 + height: 60 + color: name } } } diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml deleted file mode 100644 index 3373247..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic1.qml +++ /dev/null @@ -1,159 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 32 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 48 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 64 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 80 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 96 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 112 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 128 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 144 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 160 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 176 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 192 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 208 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 224 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 240 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 256 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 272 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 288 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 304 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 320 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 336 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 352 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 368 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 384 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 400 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 416 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 432 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 448 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 464 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 480 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 496 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 512 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 528 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 560 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 576 - hash: "895c70434a24da42144e60e6d8dcf323" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml deleted file mode 100644 index 20b889d..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic2.qml +++ /dev/null @@ -1,187 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 32 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 48 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 64 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 80 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 96 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 112 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 128 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 144 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 160 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 176 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 192 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 208 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 224 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 240 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 256 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 272 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 288 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 304 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 320 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 336 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 352 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 368 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 384 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 400 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 416 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 432 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 448 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 464 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 480 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 496 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 512 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 528 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 544 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 560 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 576 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 592 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 608 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 624 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 640 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 656 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 672 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 688 - hash: "895c70434a24da42144e60e6d8dcf323" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml deleted file mode 100644 index f49de2f..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic3.qml +++ /dev/null @@ -1,147 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 32 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 48 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 64 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 80 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 96 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 112 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 128 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 144 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 160 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 176 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 192 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 208 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 224 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 240 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 256 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 272 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 288 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 304 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 320 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 336 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 352 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 368 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 384 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 400 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 416 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 432 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 448 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 464 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 480 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 496 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 512 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 528 - hash: "895c70434a24da42144e60e6d8dcf323" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml deleted file mode 100644 index 1ea5547..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/basic4.qml +++ /dev/null @@ -1,171 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 32 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 48 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 64 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 80 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 96 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 112 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 128 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 144 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 160 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 176 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 192 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 208 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 224 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 240 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 256 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 272 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 288 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 304 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 320 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 336 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 352 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 368 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 384 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 400 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 416 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 432 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 448 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 464 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 480 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 496 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 512 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 528 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 560 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 576 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 592 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 608 - hash: "895c70434a24da42144e60e6d8dcf323" - } - Frame { - msec: 624 - hash: "895c70434a24da42144e60e6d8dcf323" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.0.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.0.png deleted file mode 100644 index 13b280c..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.1.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.1.png deleted file mode 100644 index 402872b..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.2.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.2.png deleted file mode 100644 index afd0830..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.3.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.3.png deleted file mode 100644 index 7c15f61..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.4.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.4.png deleted file mode 100644 index afd0830..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.5.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.5.png deleted file mode 100644 index fddf1cb..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.6.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.6.png deleted file mode 100644 index 13b280c..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml deleted file mode 100644 index 829fbb3..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/itemlist.qml +++ /dev/null @@ -1,2203 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 32 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 48 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 64 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 80 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 96 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 112 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 128 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 144 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 160 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 176 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 192 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 208 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 224 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 240 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 256 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 272 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 288 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 304 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 320 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 336 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 352 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 368 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 384 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 400 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 416 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 432 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 448 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 464 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 480 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 496 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 512 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 528 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 544 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 560 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 576 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 592 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 608 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 624 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 640 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 656 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 672 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 688 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 704 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 720 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 736 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 752 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 768 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 784 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 800 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 816 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 832 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 848 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 864 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 880 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 896 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 912 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 928 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 944 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 960 - image: "itemlist.0.png" - } - Frame { - msec: 976 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 992 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1008 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1024 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1040 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1056 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1072 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1088 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1104 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1120 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1136 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1152 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1168 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1184 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1200 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1216 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1232 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1248 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1264 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1280 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1296 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1312 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1328 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1344 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1360 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1376 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1392 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1408 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1424 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1440 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1456 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1472 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1488 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1504 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1520 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1536 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1552 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1568 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1584 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1600 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1616 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1632 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 1648 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 192; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1664 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 112 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1696 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 184; y: 113 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1712 - hash: "a68b1bc6c2963ee92c3a45f500667b3b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 167; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1728 - hash: "7cda93e59466b3348e7ffe3895f89e86" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1744 - hash: "06e0008c78e919f7270402938d9d764b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 121 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1760 - hash: "9d8da9199efebb95f56e5d4ebc9a585e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 126 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 98; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1776 - hash: "54a60a4279911ba4a8a5741bcadfa783" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 91; y: 132 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 91; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1792 - hash: "a1a19370a1a8ed78e475f0d0eb12311c" - } - Frame { - msec: 1808 - hash: "196a3b127cf7065614c34856bf8d8bca" - } - Frame { - msec: 1824 - hash: "5fbefbd7c7be4374382cc4c8b86ac78a" - } - Frame { - msec: 1840 - hash: "d6a544c622e504c1b931e1a8a1310a6e" - } - Frame { - msec: 1856 - hash: "20e76f0eb4ec5f691999faf8ad313370" - } - Frame { - msec: 1872 - hash: "7f84a3545907c754ae8a6a30ef61c98d" - } - Frame { - msec: 1888 - hash: "b544901eae32903ad054e8cdfed715eb" - } - Frame { - msec: 1904 - hash: "a010ed1e3312f4ca9f429b7e32cdcef9" - } - Frame { - msec: 1920 - image: "itemlist.1.png" - } - Frame { - msec: 1936 - hash: "93a731dc6f71b6ff5400bf74c87e6c46" - } - Frame { - msec: 1952 - hash: "c73f63d1a024ba956e693487b3ccc761" - } - Frame { - msec: 1968 - hash: "539d3d00fce2d0128cd697d86d237fe7" - } - Frame { - msec: 1984 - hash: "52752d7d6f2d0e085f7132313907b72b" - } - Frame { - msec: 2000 - hash: "f46dd5803a6075e979e0fc733d503bfb" - } - Frame { - msec: 2016 - hash: "b8734698a6bad00ecf019f85328c2c21" - } - Frame { - msec: 2032 - hash: "1cfc499ca756023430cc5b2fa95a599d" - } - Frame { - msec: 2048 - hash: "63a816548837c19f8f0494c137fc0174" - } - Frame { - msec: 2064 - hash: "1bce9b85235e9a1a472c079dfec70ec5" - } - Frame { - msec: 2080 - hash: "6677863e7f74c12648409883f73adbe2" - } - Frame { - msec: 2096 - hash: "98e707a3e39a5f7bd4a101c2ed83535c" - } - Frame { - msec: 2112 - hash: "c1f6d8842d14a9394d4b7797314f50e8" - } - Frame { - msec: 2128 - hash: "579758b477bcd2112b305a5aac7df338" - } - Frame { - msec: 2144 - hash: "4a7bb81090db246db53e2dbc56f710ea" - } - Frame { - msec: 2160 - hash: "074995cdd8a70817d1c8a7bb0ad4c542" - } - Frame { - msec: 2176 - hash: "bd8d7bda4d2e9ad1fba2895d568f36cc" - } - Frame { - msec: 2192 - hash: "40cce3d2d80ac470af44fc334cec1d5b" - } - Frame { - msec: 2208 - hash: "15cbc226b032d5a97199735ea7a1408b" - } - Frame { - msec: 2224 - hash: "12b296aea9b058a5402d0d0a620f8edc" - } - Frame { - msec: 2240 - hash: "6ffd2b79cf0e941a59e74bc6f9025bcb" - } - Frame { - msec: 2256 - hash: "589a58ef76ea709dc8d80390c9044f99" - } - Frame { - msec: 2272 - hash: "c009924bfa30153f22ab168b539494e9" - } - Frame { - msec: 2288 - hash: "4b83674a7c2daa68d735901ad40be2bd" - } - Frame { - msec: 2304 - hash: "0525908c0302ada989e28990bac3f2ca" - } - Frame { - msec: 2320 - hash: "89eb13976ba3ba4413cafeb0cc91c01b" - } - Frame { - msec: 2336 - hash: "75c1295ef99680784b2e11fb88fa1423" - } - Frame { - msec: 2352 - hash: "93d89165cf6a97c76ae6e7f75678a3cd" - } - Frame { - msec: 2368 - hash: "53064c1938f08a55603a99b0db225174" - } - Frame { - msec: 2384 - hash: "31db5684466c0c32128a9a8c7b1835e1" - } - Frame { - msec: 2400 - hash: "99d9e58697736198e0a00443d237e85b" - } - Frame { - msec: 2416 - hash: "6c1e860aef983367365d53f5849ad441" - } - Frame { - msec: 2432 - hash: "6c1e860aef983367365d53f5849ad441" - } - Frame { - msec: 2448 - hash: "6c1e860aef983367365d53f5849ad441" - } - Frame { - msec: 2464 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2480 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2496 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2512 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2528 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2544 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2560 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2576 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2592 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2608 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2624 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2640 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2656 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2672 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2688 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2704 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2720 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2736 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2752 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2768 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2784 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2800 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2816 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2832 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2848 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 2864 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2880 - image: "itemlist.2.png" - } - Frame { - msec: 2896 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 179; y: 105 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2912 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 108 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 110 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2928 - hash: "5bb06b4e74532ba5bc8c7bc38bf77d7f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 112 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2944 - hash: "b10a6206830a876017799ef2fcf61b1a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 123 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2960 - hash: "b2e24759ba10afd6cff90f4b1e04b496" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 127 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 124; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2976 - hash: "ccbcd6f45cb529c2db71504c0f69d73e" - } - Frame { - msec: 2992 - hash: "7b31c6d5931677f1aa1e8c7d48a4ff22" - } - Frame { - msec: 3008 - hash: "c52f691a0a6cf155118bdfea2dfea623" - } - Frame { - msec: 3024 - hash: "dd639d1df3d4a9b8f06718def63d588f" - } - Frame { - msec: 3040 - hash: "39d767b09a648ef6295cec2848f9226f" - } - Frame { - msec: 3056 - hash: "5dd46d5f386431e7b13348ac9a9630ed" - } - Frame { - msec: 3072 - hash: "0354e5183b0e66e7ba146d292c559df4" - } - Frame { - msec: 3088 - hash: "984aa6d7075e24de429e05b1b0eda94a" - } - Frame { - msec: 3104 - hash: "1af58a2f44f1f613712d4df85e38356d" - } - Frame { - msec: 3120 - hash: "6e4085e7f1fee724d78808753f04b471" - } - Frame { - msec: 3136 - hash: "73a019ef9057639d631cd99a431b3f3b" - } - Frame { - msec: 3152 - hash: "c9414a2e655a90dfdcb6fb288b4ba0ca" - } - Frame { - msec: 3168 - hash: "3f4c24f7ac89da982af22032309637fb" - } - Frame { - msec: 3184 - hash: "a50e6ada8f73a257657f4348ceaffcfd" - } - Frame { - msec: 3200 - hash: "a67bf40d09259bbd079c12ae4f49150f" - } - Frame { - msec: 3216 - hash: "a2fc512b7c234a9d0b2c1a83387a8a46" - } - Frame { - msec: 3232 - hash: "85090683ce9a3c9833b1cb0b3df076ee" - } - Frame { - msec: 3248 - hash: "275f3594a0e2cc4b6717f9f336e7e1b6" - } - Frame { - msec: 3264 - hash: "2473eb11f7b65a784a2b166114026488" - } - Frame { - msec: 3280 - hash: "4865c30dc45fbf5ca82047b77eca0912" - } - Frame { - msec: 3296 - hash: "54de88bca395449fbaea2c090c7a5d91" - } - Frame { - msec: 3312 - hash: "833f9295cf9a34934f001eac48551b59" - } - Frame { - msec: 3328 - hash: "5bf565f57ababa7380faeee94add91ca" - } - Frame { - msec: 3344 - hash: "6325578867f1eb3b2d47ed40b017b571" - } - Frame { - msec: 3360 - hash: "046a6114176b3a3206b7a2acd6e30b41" - } - Frame { - msec: 3376 - hash: "f8d4120a17f28c2d1d9c4be959098058" - } - Frame { - msec: 3392 - hash: "71356d2e48aad2900784ea6bc1a3d908" - } - Frame { - msec: 3408 - hash: "b84ad460fb81fdc4049abe8f3ff180bb" - } - Frame { - msec: 3424 - hash: "0354239f5eaea23474d9f81385392a8a" - } - Frame { - msec: 3440 - hash: "8ef0eef3393e07ae7605c865a95edc30" - } - Frame { - msec: 3456 - hash: "5b8b384cc8e3faf4310015e19b3eb487" - } - Frame { - msec: 3472 - hash: "77c18ac7dfff2a4e516915e3e3df0717" - } - Frame { - msec: 3488 - hash: "c1d3264384c26345eb8100de829309ca" - } - Frame { - msec: 3504 - hash: "6b21f71d0bedef4bbcb445a13f61e7a3" - } - Frame { - msec: 3520 - hash: "f619097356671f6eb54d3b1c481e709d" - } - Frame { - msec: 3536 - hash: "e56e3a90da446e0c482cb93717f6aacc" - } - Frame { - msec: 3552 - hash: "aa94ebdbb4b8423aff28c95daff0baf5" - } - Frame { - msec: 3568 - hash: "e1744d9cacd1a2c96af4cfdd5c486995" - } - Frame { - msec: 3584 - hash: "7f19ea52e9e41a3b1bd90bb2a144d305" - } - Frame { - msec: 3600 - hash: "7f19ea52e9e41a3b1bd90bb2a144d305" - } - Frame { - msec: 3616 - hash: "7f19ea52e9e41a3b1bd90bb2a144d305" - } - Frame { - msec: 3632 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3648 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3664 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3680 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3696 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3712 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3728 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3744 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3760 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3776 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3792 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3808 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3824 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3840 - image: "itemlist.3.png" - } - Frame { - msec: 3856 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3872 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3888 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3904 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3920 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3936 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3952 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3968 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 3984 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4000 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4016 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4032 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4048 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4064 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4080 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Frame { - msec: 4096 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 31; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4112 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 32; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4128 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 33; y: 136 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 36; y: 135 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4144 - hash: "88143ff6c278a5433b314b551b7b8b1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 40; y: 134 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 132 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4160 - hash: "c2c9c284b185a89faf4ddb5a7867f449" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 64; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4176 - hash: "de1c18aeda5d2fbd6dad4554c78617bd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 86; y: 126 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 110; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4192 - hash: "a67bf40d09259bbd079c12ae4f49150f" - } - Frame { - msec: 4208 - hash: "94514668dafbe41c5890a578efd6dea4" - } - Frame { - msec: 4224 - hash: "2e97a74eb9ddb1c9613c89e2d78db018" - } - Frame { - msec: 4240 - hash: "4b5368f0d86bffeb6bd31b58aec88650" - } - Frame { - msec: 4256 - hash: "b459bde7bb4ce51e6ecdab58f64fcbb9" - } - Frame { - msec: 4272 - hash: "7bac8cc3ec64c9ad1c0da282e38c953e" - } - Frame { - msec: 4288 - hash: "a73a58c3d7a757547740a2a161f4c756" - } - Frame { - msec: 4304 - hash: "b35edcb1fa3568a3e770ab2364b82e75" - } - Frame { - msec: 4320 - hash: "d6c863ef57c5e5cb04cdac72f920db0b" - } - Frame { - msec: 4336 - hash: "0db5e4588ff851918b07796f0cf07382" - } - Frame { - msec: 4352 - hash: "71ec8c363ca6a6f7556afb70faccffe6" - } - Frame { - msec: 4368 - hash: "18d026e9c965ada1db67c643576d2a80" - } - Frame { - msec: 4384 - hash: "69f71c22dff981a4da8ec1edcf90e79f" - } - Frame { - msec: 4400 - hash: "680460f5e4d9e649931601041af046b2" - } - Frame { - msec: 4416 - hash: "3028763fd15de2607b20b1331b904a4a" - } - Frame { - msec: 4432 - hash: "333eb60e217fe1ea7469eab52ac461f1" - } - Frame { - msec: 4448 - hash: "ccbcd6f45cb529c2db71504c0f69d73e" - } - Frame { - msec: 4464 - hash: "3445df9b41a0a3e74738cbf328ab7d5c" - } - Frame { - msec: 4480 - hash: "bd2c072558479e9de7a97207e58cc57f" - } - Frame { - msec: 4496 - hash: "3d34b0b24a30eda93377dcb4585afed8" - } - Frame { - msec: 4512 - hash: "d3045703863b0c5a327b9355c23d69f2" - } - Frame { - msec: 4528 - hash: "2f2eb55f693415b840a317211b250e9f" - } - Frame { - msec: 4544 - hash: "791b9ca7d47a3343474c30a35e336d4b" - } - Frame { - msec: 4560 - hash: "73a0c02ebad6d3d5f939d9a00dd898bf" - } - Frame { - msec: 4576 - hash: "d5c11135d586711b12f236430a2c2795" - } - Frame { - msec: 4592 - hash: "34f9ea214fe714ff4e994f715ea6ea39" - } - Frame { - msec: 4608 - hash: "8e49afa00983b156b818533923fb6edd" - } - Frame { - msec: 4624 - hash: "e7e7bef17cee92eca9191fd734d7a577" - } - Frame { - msec: 4640 - hash: "e407f6ed7cb3c130365ab5515d6308c0" - } - Frame { - msec: 4656 - hash: "5bb06b4e74532ba5bc8c7bc38bf77d7f" - } - Frame { - msec: 4672 - hash: "0ad7411316031e22034c14e81ca3a806" - } - Frame { - msec: 4688 - hash: "dd81d7a9b48c922b4c42cba1b5f2b9d7" - } - Frame { - msec: 4704 - hash: "32bef6f5005ad94e29ff59165958fbdc" - } - Frame { - msec: 4720 - hash: "87758dd311f91193bf1e3536c2f58525" - } - Frame { - msec: 4736 - hash: "015be92a4ff4e735fcc3cbc7a8b9d763" - } - Frame { - msec: 4752 - hash: "d4c34ed49317c6692d71681fcd9842b6" - } - Frame { - msec: 4768 - hash: "abaa235bb946a8abaddd52981d632c2d" - } - Frame { - msec: 4784 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4800 - image: "itemlist.4.png" - } - Frame { - msec: 4816 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4832 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4848 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4864 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4880 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4896 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4912 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4928 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4944 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4960 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4976 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 4992 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5008 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5024 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5040 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5056 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5072 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5088 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5104 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5120 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5136 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5152 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5168 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5184 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5200 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5216 - hash: "99f9988040a389576cb6420b5391f768" - } - Frame { - msec: 5232 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 17; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5248 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 19; y: 120 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 21; y: 120 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5264 - hash: "99f9988040a389576cb6420b5391f768" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 24; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 28; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5280 - hash: "95b380c9ab6f8db7b822faf023d94546" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 35; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 44; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "bb79e53556698c62ec30c75be9f6b7d7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 70; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 96; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 96; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "285cc2f0df1f59f25a0135560ab6edf2" - } - Frame { - msec: 5328 - hash: "93a731dc6f71b6ff5400bf74c87e6c46" - } - Frame { - msec: 5344 - hash: "eb555741ab128a50de5a18a454f2e639" - } - Frame { - msec: 5360 - hash: "5dbe6cf898c1e37fcaacecfcf57b2194" - } - Frame { - msec: 5376 - hash: "e7795610115593e78bb32f7bcc0ae2eb" - } - Frame { - msec: 5392 - hash: "20e76f0eb4ec5f691999faf8ad313370" - } - Frame { - msec: 5408 - hash: "d6a544c622e504c1b931e1a8a1310a6e" - } - Frame { - msec: 5424 - hash: "e7a3a21feed244c5b1c710a9254c15f0" - } - Frame { - msec: 5440 - hash: "5a4b1aca24f121d1373646e9d80b86fd" - } - Frame { - msec: 5456 - hash: "331d2ec7021655c86aa64e47718a1088" - } - Frame { - msec: 5472 - hash: "92096bc872e7395aa5b75c44646a0b60" - } - Frame { - msec: 5488 - hash: "0d9aa6cee4d21488cbb5153f8f3ed593" - } - Frame { - msec: 5504 - hash: "c1b943d43701605563fffffcb75f9fa7" - } - Frame { - msec: 5520 - hash: "1b680025d5ad1ddd8f8d5f570ba73e71" - } - Frame { - msec: 5536 - hash: "5539a3b9f60ea747c10ed8328b467cbf" - } - Frame { - msec: 5552 - hash: "0a1317bcb606cd3488c5b14ee5d96585" - } - Frame { - msec: 5568 - hash: "8844af68b11db7d92c69804c7371a746" - } - Frame { - msec: 5584 - hash: "28d7fd127739c6e3b8488651b725c802" - } - Frame { - msec: 5600 - hash: "0cf1a7d958a96aa2768995dddc5ccc09" - } - Frame { - msec: 5616 - hash: "64b902fe7ab4d89ef0c7b760974e3488" - } - Frame { - msec: 5632 - hash: "aba11c597eba550fc1eaddbf554057f6" - } - Frame { - msec: 5648 - hash: "1bacaa3bb9dc3cac9ffc7491cb4dc1a5" - } - Frame { - msec: 5664 - hash: "0ba8b582234d9f0c198c0c9e18e1cb02" - } - Frame { - msec: 5680 - hash: "f66eaf2b5c3529987c0d9d005351ed73" - } - Frame { - msec: 5696 - hash: "75b0bb720fa4c77da3783b3ff31c2fae" - } - Frame { - msec: 5712 - hash: "345b235bb7f13409378e5c0c370f2a41" - } - Frame { - msec: 5728 - hash: "83b7e902dce4e0fdc4ef5d629188c23c" - } - Frame { - msec: 5744 - hash: "04b9041c6f10969889d92e94785c7e88" - } - Frame { - msec: 5760 - image: "itemlist.5.png" - } - Frame { - msec: 5776 - hash: "4f3a902addc34ecdaf390e2427cc52e7" - } - Frame { - msec: 5792 - hash: "68d443f16c16821ffc9ca68b17c76034" - } - Frame { - msec: 5808 - hash: "9d25adc77befa761ee376a9b43595b5e" - } - Frame { - msec: 5824 - hash: "a68b1bc6c2963ee92c3a45f500667b3b" - } - Frame { - msec: 5840 - hash: "d5268cd58c222451d48038e715e83802" - } - Frame { - msec: 5856 - hash: "f37d461541a8ec7a4161b18748de6aea" - } - Frame { - msec: 5872 - hash: "805319ac7ca842feb3649e92f8b5b72f" - } - Frame { - msec: 5888 - hash: "73124472a05080891d4948d8ca273f8c" - } - Frame { - msec: 5904 - hash: "b6e433a23282a50db2e165a2447ba3f6" - } - Frame { - msec: 5920 - hash: "fd8d3f5688b1806998c6087e18c6c730" - } - Frame { - msec: 5936 - hash: "f132dd459950ef2d18aa93ca950d0692" - } - Frame { - msec: 5952 - hash: "ade5beb259b5277c333ca806fc9bdbec" - } - Frame { - msec: 5968 - hash: "ade5beb259b5277c333ca806fc9bdbec" - } - Frame { - msec: 5984 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6000 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6016 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6032 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6048 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6064 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6080 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6096 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6112 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6128 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6144 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6160 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6176 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6192 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6208 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6224 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6240 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6256 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6272 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6288 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6304 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6320 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6336 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6352 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6368 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6384 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6400 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6416 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6432 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6448 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6464 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6480 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6496 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6512 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6528 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6544 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6560 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6576 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6592 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6608 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6624 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6640 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6656 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6672 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6688 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6704 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6720 - image: "itemlist.6.png" - } - Frame { - msec: 6736 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6752 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6768 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6784 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6800 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6816 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6832 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6848 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6864 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6880 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6896 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6912 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6928 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6944 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6960 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6976 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 6992 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7008 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7024 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7040 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7056 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7072 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7088 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7104 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7120 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7136 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7152 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7168 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7184 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7200 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7216 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7232 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7248 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7264 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7280 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7296 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } - Frame { - msec: 7312 - hash: "bf47cc398a702dd17c8efebb3d2f8073" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.0.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.0.png deleted file mode 100644 index a1ab987..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.1.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.1.png deleted file mode 100644 index a1ab987..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.10.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.10.png deleted file mode 100644 index dcfca3f..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.11.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.11.png deleted file mode 100644 index 7cc4047..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.12.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.12.png deleted file mode 100644 index a97f4ad..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.13.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.13.png deleted file mode 100644 index 7a8c6bd..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.13.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.14.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.14.png deleted file mode 100644 index ae47356..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.14.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.15.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.15.png deleted file mode 100644 index b3a7260..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.15.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.16.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.16.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.16.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.17.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.17.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.17.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.18.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.18.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.18.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.19.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.19.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.19.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.2.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.2.png deleted file mode 100644 index 9877b92..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.3.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.3.png deleted file mode 100644 index 603bd24..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.4.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.4.png deleted file mode 100644 index 5fdfbb8..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.5.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.5.png deleted file mode 100644 index a1ab987..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.6.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.6.png deleted file mode 100644 index 9ccf9b0..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.7.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.7.png deleted file mode 100644 index 6b40e1b..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.8.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.8.png deleted file mode 100644 index 2fda36d..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.9.png b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.9.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml deleted file mode 100644 index f47179d..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-MAC/listview.qml +++ /dev/null @@ -1,3079 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 32 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 48 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 64 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 80 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 96 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 112 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 128 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 144 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 160 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 176 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 192 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 208 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 224 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 240 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 256 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 272 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 288 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 304 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 320 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 336 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 352 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 368 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 384 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 400 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 416 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 432 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 448 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 464 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 480 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 496 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 512 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 528 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 544 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 560 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 576 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 592 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 608 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 624 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 640 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 656 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 672 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 688 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 704 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 720 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 736 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 752 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 768 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 784 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 800 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 816 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 832 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 848 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 864 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 880 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 896 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 912 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 928 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 944 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 960 - image: "listview.0.png" - } - Frame { - msec: 976 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 992 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1008 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1024 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1040 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1056 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1072 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1088 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1104 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1120 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1136 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1152 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1168 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1184 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1200 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1216 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1232 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1248 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1264 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1280 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1296 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1312 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1328 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1344 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1360 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1376 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1392 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1408 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1424 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1440 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1456 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1472 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1488 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1504 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1520 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1536 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1552 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1568 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1584 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1600 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1616 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1632 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1648 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1664 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1680 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1696 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1712 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1728 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1744 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1760 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1776 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1792 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1808 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1824 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1840 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1856 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1872 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1888 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1904 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1920 - image: "listview.1.png" - } - Frame { - msec: 1936 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1952 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1968 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1984 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2000 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2016 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2032 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2048 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2064 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2080 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2096 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2112 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2128 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2144 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2160 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2176 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2192 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2208 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2224 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2240 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2256 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2272 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2288 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2304 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2320 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2336 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2352 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2368 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2384 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2400 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2416 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2432 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2448 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2464 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2480 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2496 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2512 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2528 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2544 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2560 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2576 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2592 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 553; y: 267 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2608 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2624 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 554; y: 267 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 555; y: 266 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2640 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 556; y: 265 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 558; y: 260 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2656 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 560; y: 256 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2672 - hash: "c315e184c4dcb11d7e9fd4509a8b6a1f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 562; y: 250 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 566; y: 234 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2688 - hash: "aeef1cacca9518408519b670443e396f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 568; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2704 - hash: "621626927f83bf7b36b78f5ca7ed4ed0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 572; y: 192 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 572; y: 192 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2720 - hash: "b2aca965b745e98365195c52b9dd9a2c" - } - Frame { - msec: 2736 - hash: "4cc8c162afcc45c79afd8230893d4ddd" - } - Frame { - msec: 2752 - hash: "b9c0815086393878ad00566db7a3c577" - } - Frame { - msec: 2768 - hash: "23cbc15fce97f966c24e3ec626e01960" - } - Frame { - msec: 2784 - hash: "3a7ce897b47ba39e63be31a020de6f3d" - } - Frame { - msec: 2800 - hash: "2a8a32cd27fad2c57c9eb518c7b3b3ca" - } - Frame { - msec: 2816 - hash: "96d676ad58119430b440a5f0a2215f26" - } - Frame { - msec: 2832 - hash: "5f9cd251615ee6a98470a7b6098f7890" - } - Frame { - msec: 2848 - hash: "c9b1c073cbfbf1c353685b3f38baa675" - } - Frame { - msec: 2864 - hash: "cf5bfbfe8904ea40b796d2b33d5cc363" - } - Frame { - msec: 2880 - image: "listview.2.png" - } - Frame { - msec: 2896 - hash: "c75c3342b476f75fc0c5f56a374da13e" - } - Frame { - msec: 2912 - hash: "0dfcd15d21b7e949b56bc69d881c52f5" - } - Frame { - msec: 2928 - hash: "73b7352bb11d29cbf64b6b594e761e42" - } - Frame { - msec: 2944 - hash: "876361c2fc18c2236c1dffd36f517f44" - } - Frame { - msec: 2960 - hash: "0dfaf61e3a86ee056a5d76cf6f7994b2" - } - Frame { - msec: 2976 - hash: "391995cfc5d8d3808b30d74ba5ea3188" - } - Frame { - msec: 2992 - hash: "6fd4f14c16a8870355fa190c94e4be2d" - } - Frame { - msec: 3008 - hash: "0aac04c8092505d934220e61c7959512" - } - Frame { - msec: 3024 - hash: "6cb0fbe22fcd60b5ed6385e49522b32e" - } - Frame { - msec: 3040 - hash: "2eb7fd1a773e32ae94284cf57efaaff2" - } - Frame { - msec: 3056 - hash: "e143ed5eeb94b35ef97e965f34d45e4d" - } - Frame { - msec: 3072 - hash: "529e85f2cd48c1f0d056682b8350445b" - } - Frame { - msec: 3088 - hash: "d74bded985c00ecd192ff8fdce708450" - } - Frame { - msec: 3104 - hash: "f71568b2173f72c4433a019775923c02" - } - Frame { - msec: 3120 - hash: "1185a1c936ac08633c14d39ca9c4f5e9" - } - Frame { - msec: 3136 - hash: "e641720bf75f1e4f0a8471f3a8b35094" - } - Frame { - msec: 3152 - hash: "cecc41fb42abb95505c094829fd415bf" - } - Frame { - msec: 3168 - hash: "7ad89090beb9de3cd7c5a5a03fca900d" - } - Frame { - msec: 3184 - hash: "2a98fe4406367d4e286d8932d6a21318" - } - Frame { - msec: 3200 - hash: "9aad024b2fc25ce886ccaa4ac106b1d8" - } - Frame { - msec: 3216 - hash: "3c4a787a4d590efd2e72706e40df7b6d" - } - Frame { - msec: 3232 - hash: "1135e06c2981bdaed13c13400e178dc3" - } - Frame { - msec: 3248 - hash: "1fbceedf1c20f2aa3f05be36126280e2" - } - Frame { - msec: 3264 - hash: "5d1ec83f43b649c732cc3f7815100428" - } - Frame { - msec: 3280 - hash: "27501f6b6adccfdb77a5228611e2a95a" - } - Frame { - msec: 3296 - hash: "218dc244352c14467f2b2a39d78a1bc7" - } - Frame { - msec: 3312 - hash: "33a998563d2c053e375f619b7a75a224" - } - Frame { - msec: 3328 - hash: "02d34b79e25367e6d0dc1765cab12353" - } - Frame { - msec: 3344 - hash: "2698cf68138aa7d292167bcc85f60b74" - } - Frame { - msec: 3360 - hash: "0b33e929b420596ff1dce2eeef8480db" - } - Frame { - msec: 3376 - hash: "d8ec307a85cecaacaa908ceb34d5db5b" - } - Frame { - msec: 3392 - hash: "4afe1df3e802b41d1b89b5fab4e35190" - } - Frame { - msec: 3408 - hash: "e8f484ed8d2a6745ee87ac9544281d55" - } - Frame { - msec: 3424 - hash: "6df053920e87d7e6e3ec0368b4b14c25" - } - Frame { - msec: 3440 - hash: "6e94791acce321417a37132821c0260d" - } - Frame { - msec: 3456 - hash: "fea3e31cbf3078615f57c934197dac35" - } - Frame { - msec: 3472 - hash: "e8d15890a8bd95db39889d19f046901b" - } - Frame { - msec: 3488 - hash: "038b422b154dfef2d955b833892c581e" - } - Frame { - msec: 3504 - hash: "01180b3d9b504ca2814382eadaf3a4e0" - } - Frame { - msec: 3520 - hash: "869a0aa0d67043822c65383e0f3264d4" - } - Frame { - msec: 3536 - hash: "43785b1214510c10b65018a9d68a93b1" - } - Frame { - msec: 3552 - hash: "95e6ebc35c2fb128b6e6ac0743268523" - } - Frame { - msec: 3568 - hash: "f8c22a6ca3169de4d29b3b0e2908f581" - } - Frame { - msec: 3584 - hash: "6baf16c321847d269718bcb3468aeeb2" - } - Frame { - msec: 3600 - hash: "30804b5eb2a6d99116475cbdc1a9c043" - } - Frame { - msec: 3616 - hash: "c892c17ec947a910b74f5b8704405e9f" - } - Frame { - msec: 3632 - hash: "696029b77512943001c9eba64191e633" - } - Frame { - msec: 3648 - hash: "4c26bb0ca28d74a2bb79d0bfc8127361" - } - Frame { - msec: 3664 - hash: "6e8c50cc14c9afe73b4baf09a6a8f1a4" - } - Frame { - msec: 3680 - hash: "fd20e4259b44357c93f22f35c698fe1b" - } - Frame { - msec: 3696 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3712 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3728 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3744 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3760 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3776 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3792 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3808 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3824 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3840 - image: "listview.3.png" - } - Frame { - msec: 3856 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3872 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3888 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3904 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3920 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3936 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3952 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3968 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3984 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4000 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4016 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4032 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4048 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4064 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4080 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4096 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4112 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4128 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4144 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 521; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4160 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4176 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4192 - hash: "a5df688148c264de1d376c9b87ddfa6b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4208 - hash: "a4e2c1878b0afce0ee1eebd63e9c951a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 66 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4224 - hash: "2f9a79278d492790ef86a09c77e95ff4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 531; y: 136 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 531; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4240 - hash: "5b5ce7206b26528157c426f4e1e3e0a8" - } - Frame { - msec: 4256 - hash: "65a1e5f81ab89b163aed46b984cca45e" - } - Frame { - msec: 4272 - hash: "e28253ad5a2415251b68bcda1d7d4bd0" - } - Frame { - msec: 4288 - hash: "71aae5abb4a9e9077053ea21dd3ec315" - } - Frame { - msec: 4304 - hash: "33fcea38fc3b328b3294f9ac2a26aa1a" - } - Frame { - msec: 4320 - hash: "6299eb1d87f371966307668b92de6a0b" - } - Frame { - msec: 4336 - hash: "4f66d8c7cb6971d0fc24089d123c547b" - } - Frame { - msec: 4352 - hash: "d9906d61b31fabf968290ebcd6688f34" - } - Frame { - msec: 4368 - hash: "5a1945993ff8096ba6b933d45586044a" - } - Frame { - msec: 4384 - hash: "331535e54da9bbdbc2fbf2b244ad0199" - } - Frame { - msec: 4400 - hash: "4dc39de0c54f6e0b77f94f6ae6c345ec" - } - Frame { - msec: 4416 - hash: "ec309a298ce246c13eb666488eb75016" - } - Frame { - msec: 4432 - hash: "a133819f8adc6265eb0e438261c869e3" - } - Frame { - msec: 4448 - hash: "da4d64fd6b3ae7d49ee5c5c8d0117a37" - } - Frame { - msec: 4464 - hash: "620dd1c3fc41ce657eac9d1a5b765fd4" - } - Frame { - msec: 4480 - hash: "ff1c370bd1bf75a98ae7125e7dd5a9db" - } - Frame { - msec: 4496 - hash: "59c6e4297109b5cc7c197749867dddae" - } - Frame { - msec: 4512 - hash: "91b1719e86529d0c35a53a2d0a095dd6" - } - Frame { - msec: 4528 - hash: "2994663d35c9eb453a27c1a1fa9aeeb8" - } - Frame { - msec: 4544 - hash: "ae4ec37b9f6a00b3c9139e5cfe13d32e" - } - Frame { - msec: 4560 - hash: "a98340236d1b65f47e88684168c1429d" - } - Frame { - msec: 4576 - hash: "34848b483ea6a2bd412e29d26beb3ab0" - } - Frame { - msec: 4592 - hash: "dd9bae0e2fca84b265d8cb59686ff88d" - } - Frame { - msec: 4608 - hash: "18b6ef6f5913b0612b76e7b2e25073dd" - } - Frame { - msec: 4624 - hash: "9398aab9478279aed1bc40c9378f8da4" - } - Frame { - msec: 4640 - hash: "a297a304c12102f23bd1e0f0207e0df9" - } - Frame { - msec: 4656 - hash: "091db9138cd6ae801ad857105a83c8f9" - } - Frame { - msec: 4672 - hash: "253938ca4a4f13433ddd502eb94cb7cd" - } - Frame { - msec: 4688 - hash: "6002df1793d290e4e31ee0c91c37bbe6" - } - Frame { - msec: 4704 - hash: "212476fa1c3a52fb8eba03ec3aecdcd8" - } - Frame { - msec: 4720 - hash: "80d4d8434d4e96a2bc23f5ed060d6ddc" - } - Frame { - msec: 4736 - hash: "2d4add725f31a04558635ce4b73a758a" - } - Frame { - msec: 4752 - hash: "57c06022ec1e502c4f49f43063c433e7" - } - Frame { - msec: 4768 - hash: "8393e97990993f9d5f68ea65f8e4a2db" - } - Frame { - msec: 4784 - hash: "9a1fcd96dffaf5c79ecc7f9427e02499" - } - Frame { - msec: 4800 - image: "listview.4.png" - } - Frame { - msec: 4816 - hash: "5ae722cf541e3453e73bbee57dc379e9" - } - Frame { - msec: 4832 - hash: "fc7326c2e2e56d9c3036e8dfc2ea77a8" - } - Frame { - msec: 4848 - hash: "f22a2a68cea158f333b0457025d75490" - } - Frame { - msec: 4864 - hash: "d684c8aa9b835779080f170cafead40f" - } - Frame { - msec: 4880 - hash: "dd451e5e421f929d015981bc7aeb8c66" - } - Frame { - msec: 4896 - hash: "d066f228295db7f46520495167d3e946" - } - Frame { - msec: 4912 - hash: "ebf640a457e3498bade3220aafa70331" - } - Frame { - msec: 4928 - hash: "190f5b1f3ce9d200790c34c50bcc62c5" - } - Frame { - msec: 4944 - hash: "9d4ad865246eb008afa40740b5c9a208" - } - Frame { - msec: 4960 - hash: "81c8b2c0b4f9e74f24d328a1d9b40a9f" - } - Frame { - msec: 4976 - hash: "24acc300307e71bee79bce8de76f56cb" - } - Frame { - msec: 4992 - hash: "1f9d31f94cfce6f868bfcc8a104d2465" - } - Frame { - msec: 5008 - hash: "7a3cab008dcb7a893ae30797b33df6f2" - } - Frame { - msec: 5024 - hash: "38d561a2950434e59513439c7f1120ea" - } - Frame { - msec: 5040 - hash: "8d34131faa15bc126bd4d9ef3be39ef5" - } - Frame { - msec: 5056 - hash: "85d57ef15791b56deb537795dd87911e" - } - Frame { - msec: 5072 - hash: "71e932169915a6c8c2cef0b22febf316" - } - Frame { - msec: 5088 - hash: "8b3452981963aeebadc9ac2013150263" - } - Frame { - msec: 5104 - hash: "a3fb8abecfeb48ba1cd1fd8f40896fa0" - } - Frame { - msec: 5120 - hash: "f53ab533f6a58ae45139f3da4bf8ab4e" - } - Frame { - msec: 5136 - hash: "9ec7012404f3c1c7795810dcee5acc3b" - } - Frame { - msec: 5152 - hash: "99ca43bab532dd5d7566e596c65053ce" - } - Frame { - msec: 5168 - hash: "0af83ad2416821cc230cd2856d1a3e39" - } - Frame { - msec: 5184 - hash: "86fa23ddf2005bbf35238ae04ae554ac" - } - Frame { - msec: 5200 - hash: "bb52a748f1d85dde410cfa4f24e3ed20" - } - Frame { - msec: 5216 - hash: "898b96bc5ee9a3ac61764e5cd9af8cfb" - } - Frame { - msec: 5232 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5248 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5264 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5280 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5296 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5312 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5328 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5344 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5360 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5376 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5392 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5408 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5424 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5440 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5456 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5472 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5488 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5504 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5520 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5536 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5552 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5568 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5584 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5600 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5616 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5632 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5648 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5664 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5680 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5696 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5712 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5728 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5744 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5760 - image: "listview.5.png" - } - Frame { - msec: 5776 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5792 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5808 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5824 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5840 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5856 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5872 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5888 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5904 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5920 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5936 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5952 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5968 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 111; y: 230 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 216 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "0076b55d3da4ca365688b6a2c984103f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 205 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "db846ad8e3200ca1fce36a38dc7beab8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 192 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "3cb6b25725b4285f9c096d595224c5ca" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 180 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "1832e12fdf3b464b02b296e727b33694" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 173 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "6d18d2b5f65cbba4915d0725d24b40f3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 158 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 140 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "79bc7afc6b1aa5f8904b3e6d5d4a9389" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 124 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "4436f2d15304c839aacec486c1fd6d96" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "c3bffc7c95893cf9bbd8596208b7f657" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 105 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "04231c2fdc02729aa34ed4e403dd373b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "392d75c4b372825e78366eb63a618170" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 87 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 83 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "7f91f7bdb0cb62d600ac4aa573681fe3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "69207181a382650c5e33145555f0d9ba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 76 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 72 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6208 - hash: "65a184b5c49b02e08114e437483f928d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 68 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6224 - hash: "c22da9ce54d04f51fb55da755753a509" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 61 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6240 - hash: "59dbd5216847a62f60a1d0701a15bb62" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 57 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 53 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6256 - hash: "bbfc902db6e6ca253afb1c90306b2a63" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 47 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 106; y: 47 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "5c41f194afec5f7e3db9d98673d03d5c" - } - Frame { - msec: 6288 - hash: "deb06d0f915d5f6ec39b1820d57b6af6" - } - Frame { - msec: 6304 - hash: "deb06d0f915d5f6ec39b1820d57b6af6" - } - Frame { - msec: 6320 - hash: "2a1a1f9239a6ccb308e51796f9b0bb89" - } - Frame { - msec: 6336 - hash: "3c1b44201616b8271023bf05a3f3f0f7" - } - Frame { - msec: 6352 - hash: "87afcef49db8b2b547e85e834f8ec304" - } - Frame { - msec: 6368 - hash: "290081b4b1272ef09ec9964c128e61b5" - } - Frame { - msec: 6384 - hash: "19bb3b23ee4b14a5f0a313106ef7c8c1" - } - Frame { - msec: 6400 - hash: "65a184b5c49b02e08114e437483f928d" - } - Frame { - msec: 6416 - hash: "832d2aefbcaf776f35039be527d367c5" - } - Frame { - msec: 6432 - hash: "69207181a382650c5e33145555f0d9ba" - } - Frame { - msec: 6448 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6464 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6480 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6496 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6512 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6528 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6544 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6560 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6576 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6592 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6608 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6624 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6640 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6656 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6672 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6688 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6704 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6720 - image: "listview.6.png" - } - Frame { - msec: 6736 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6752 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6768 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6784 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6800 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6816 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6832 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6848 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6864 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6880 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6896 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6912 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6928 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6944 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6960 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6976 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6992 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7008 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7024 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7040 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7056 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7072 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7088 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7104 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7120 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7136 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7152 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7168 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7184 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7200 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7216 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7232 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7248 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7264 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7280 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7296 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 519; y: 276 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7312 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 519; y: 275 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7328 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 519; y: 274 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7344 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 273 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 272 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7360 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 271 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7376 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 268 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7392 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 266 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 265 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7408 - hash: "9047f597b9e59ca652c172338bed6ef9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 262 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7424 - hash: "87476f78daecd6bb49e8d6e673d28100" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 260 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7440 - hash: "6bfd895c6b7d97e4102eb26608cdfeca" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 254 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7456 - hash: "e4c2b75beaee54a5781a5acbeb37ea64" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 249 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "d5e816768e9c3db0631416bd86b1b461" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7488 - hash: "df6c7252ebb51e7447396b640e1c6ead" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 237 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7504 - hash: "5f4db5386dc76b9f2dac47618c733dee" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 231 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "534d1d16d8321996969b54875ec5f1e0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7536 - hash: "5263016e53327df1972498b55a60c0ed" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 219 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7552 - hash: "6787a5a16d2a61643bb1435f6488ada6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 215 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7568 - hash: "1feabcd683590c3d28d899167e6278b3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 519; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7584 - hash: "c0495d6083b2e4ddd2b1dca2f231529c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 520; y: 202 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7600 - hash: "cb302493a17c1806dfcdf002c44e7acd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 196 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7616 - hash: "f3822b79b678532ce7f826952636be90" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7632 - hash: "6e30eed182c38be110ba9c7e95b223be" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 185 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7648 - hash: "9e3ad0331c0c041b9a5747a1d44a43fe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 177 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7664 - hash: "791e6abf9dae670770c2429ee9f1ad71" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7680 - image: "listview.7.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7696 - hash: "d3ae366fb8212cb987e23150802c88e3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7712 - hash: "b87708e19d7e8b64fe1ab50ec1723975" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 147 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7728 - hash: "512678e45cdd8d48e10b08ee020afe8e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7744 - hash: "211aa70e813819d476996b3396e9e5a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7760 - hash: "f16eaa360604be84ce61364ad9733b52" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7776 - hash: "d3af36dfb187d08abe1458f186a935a2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 124 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7792 - hash: "9d0a0ba1deb7c4a4a8838e5e6a27f2f6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7808 - hash: "69aac14f4c137e66724ca33f00a86676" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7824 - hash: "893d56e2a2ca257fae9f0c6c0629903d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7840 - hash: "b9f734e57a72e33973740a59776948d9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7856 - hash: "e4b0f3f6a6785d7a183e4a36c5803301" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7872 - hash: "99ee1e8803c05e546a721b0c9ee39499" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7888 - hash: "96e7da2f895500a786ed36cb295e9003" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7904 - hash: "cd369fc5dc31814208e56cf7cd0decea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7920 - hash: "5fee72994b65a45b4900a3073f86a3e1" - } - Frame { - msec: 7936 - hash: "9a2f8a65d842b8f92998e6411f7cd53c" - } - Frame { - msec: 7952 - hash: "2848d69017ce71ae101ccdfa7c67f933" - } - Frame { - msec: 7968 - hash: "6568aa88e81f988f65da435df7166167" - } - Frame { - msec: 7984 - hash: "d5f15ee08a2d7667786757a378a7a7f4" - } - Frame { - msec: 8000 - hash: "9b566bd02a561b32d1a4c1ec99c2e2c3" - } - Frame { - msec: 8016 - hash: "580419e1c9e91046547d913f6b8790a4" - } - Frame { - msec: 8032 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Frame { - msec: 8048 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Frame { - msec: 8064 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 521; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8080 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Frame { - msec: 8096 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Frame { - msec: 8112 - hash: "83b91a371d682a501bc3a3fceabe4f8c" - } - Frame { - msec: 8128 - hash: "798b1dbfa0cce362213f426e2c60ac0e" - } - Frame { - msec: 8144 - hash: "d71b6a693c430a618c23413cb65bb320" - } - Frame { - msec: 8160 - hash: "2baae394390da39447a67151bc503d65" - } - Frame { - msec: 8176 - hash: "06688b05c61a7b862d39534207a8adab" - } - Frame { - msec: 8192 - hash: "a1d3042e16709817906dcdc673ee52c7" - } - Frame { - msec: 8208 - hash: "236dd41feac1b1a8a4bd7911bb184da2" - } - Frame { - msec: 8224 - hash: "f3ec821bba1d32e90bdab0e85c07d7d8" - } - Frame { - msec: 8240 - hash: "e328c35adf7ffc3d7e3af97e798ec8a5" - } - Frame { - msec: 8256 - hash: "651101db68fd3ed1dc5f441c126dc31b" - } - Frame { - msec: 8272 - hash: "651101db68fd3ed1dc5f441c126dc31b" - } - Frame { - msec: 8288 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8304 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8320 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8336 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8352 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8368 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8384 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8400 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8416 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8432 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8448 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8464 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8480 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8496 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8512 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8528 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8544 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8560 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8576 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8592 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8608 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8624 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8640 - image: "listview.8.png" - } - Frame { - msec: 8656 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8672 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8688 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8704 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8720 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8736 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8752 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8768 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8784 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8800 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8816 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8832 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8848 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8864 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8880 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8896 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8912 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8928 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8944 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8960 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8976 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8992 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9008 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9024 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9040 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9056 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9072 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9088 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9104 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9120 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9136 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9152 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9168 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9184 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9200 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9216 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9232 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9248 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9264 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9280 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9296 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9312 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9328 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9344 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9360 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9376 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9392 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9408 - hash: "1171be123a361d72859c25434573482c" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml deleted file mode 100644 index b291ea4..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic1.qml +++ /dev/null @@ -1,159 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 32 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 48 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 64 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 80 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 96 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 112 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 128 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 144 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 160 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 176 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 192 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 208 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 224 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 240 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 256 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 272 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 288 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 304 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 320 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 336 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 352 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 368 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 384 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 400 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 416 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 432 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 448 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 464 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 480 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 496 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 512 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 528 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 560 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 576 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml deleted file mode 100644 index e32e9e6..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic2.qml +++ /dev/null @@ -1,187 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 32 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 48 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 64 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 80 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 96 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 112 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 128 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 144 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 160 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 176 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 192 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 208 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 224 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 240 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 256 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 272 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 288 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 304 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 320 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 336 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 352 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 368 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 384 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 400 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 416 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 432 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 448 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 464 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 480 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 496 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 512 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 528 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 544 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 560 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 576 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 592 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 608 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 624 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 640 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 656 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 672 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 688 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml deleted file mode 100644 index ed0c53b..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic3.qml +++ /dev/null @@ -1,147 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 32 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 48 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 64 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 80 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 96 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 112 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 128 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 144 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 160 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 176 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 192 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 208 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 224 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 240 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 256 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 272 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 288 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 304 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 320 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 336 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 352 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 368 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 384 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 400 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 416 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 432 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 448 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 464 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 480 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 496 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 512 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 528 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml deleted file mode 100644 index a70b741..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data-X11/basic4.qml +++ /dev/null @@ -1,171 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 32 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 48 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 64 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 80 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 96 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 112 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 128 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 144 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 160 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 176 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 192 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 208 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 224 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 240 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 256 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 272 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 288 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 304 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 320 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 336 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 352 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 368 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 384 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 400 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 416 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 432 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 448 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 464 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 480 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 496 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 512 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 528 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 560 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 576 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 592 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 608 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } - Frame { - msec: 624 - hash: "c0dc2737283d8dfa62631e0cbb948b99" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml index 7aadf36..6670ae5 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic1.qml @@ -6,154 +6,78 @@ VisualTest { } Frame { msec: 16 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 32 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 48 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 64 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 80 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 96 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 112 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 128 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 144 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 160 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 176 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 192 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 208 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 224 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 240 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 256 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 272 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 288 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 304 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 320 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 336 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 352 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 368 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 384 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 400 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 416 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 432 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 448 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 464 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 480 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 496 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 512 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 528 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 560 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 576 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } } diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml index 5624d6b..283b443 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic2.qml @@ -6,182 +6,162 @@ VisualTest { } Frame { msec: 16 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 32 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 48 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 64 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 80 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 96 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 112 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 128 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 144 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 160 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 176 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 192 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 208 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 224 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 240 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 256 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 272 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 288 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 304 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 320 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 336 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 352 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 368 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 384 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 400 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 416 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 432 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 448 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 464 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 480 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 496 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 512 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 528 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 544 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 560 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 576 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 592 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 608 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 624 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 640 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 656 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 672 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 688 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } } diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml index 16a8329..2ee835a 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic3.qml @@ -6,142 +6,114 @@ VisualTest { } Frame { msec: 16 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 32 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 48 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 64 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 80 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 96 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 112 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 128 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 144 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 160 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 176 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 192 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 208 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 224 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 240 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 256 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 272 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 288 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 304 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 320 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 336 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 352 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 368 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 384 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 400 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 416 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 432 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 448 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 464 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 480 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 496 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 512 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 528 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } } diff --git a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml b/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml index 23cc255..3bbf836 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/basic4.qml @@ -6,166 +6,110 @@ VisualTest { } Frame { msec: 16 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 32 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 48 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 64 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 80 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 96 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 112 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 128 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 144 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 160 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 176 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 192 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 208 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 224 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 240 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 256 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 272 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 288 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 304 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 320 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 336 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 352 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 368 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 384 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 400 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 416 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } Frame { msec: 432 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 448 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 464 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 480 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 496 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 512 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 528 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 560 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 576 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 592 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 608 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" - } - Frame { - msec: 624 - hash: "c0ec1bac5550efaa1f8ce7b46c2fed94" + hash: "7b874555d744b10ed666dcb6fad79a19" } } diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png index a1947ca..75d2089 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png and b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.0.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png index d27b7fa..578b7d1 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png and b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.1.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png index fdab8c6..def378f 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png and b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.2.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png index dc321a8..e23b903 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png and b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.3.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png index fdab8c6..def378f 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png and b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.4.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png index 15b51cb..b81e713 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png and b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.5.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png index a1947ca..75d2089 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png and b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.6.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml index 829fbb3..b23594b 100644 --- a/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml +++ b/tests/auto/declarative/qmlvisual/ListView/data/itemlist.qml @@ -478,7 +478,7 @@ VisualTest { } Frame { msec: 1712 - hash: "a68b1bc6c2963ee92c3a45f500667b3b" + hash: "b6e433a23282a50db2e165a2447ba3f6" } Mouse { type: 5 @@ -498,7 +498,7 @@ VisualTest { } Frame { msec: 1728 - hash: "7cda93e59466b3348e7ffe3895f89e86" + hash: "68d443f16c16821ffc9ca68b17c76034" } Mouse { type: 5 @@ -510,7 +510,7 @@ VisualTest { } Frame { msec: 1744 - hash: "06e0008c78e919f7270402938d9d764b" + hash: "04b9041c6f10969889d92e94785c7e88" } Mouse { type: 5 @@ -530,7 +530,7 @@ VisualTest { } Frame { msec: 1760 - hash: "9d8da9199efebb95f56e5d4ebc9a585e" + hash: "64b902fe7ab4d89ef0c7b760974e3488" } Mouse { type: 5 @@ -550,7 +550,7 @@ VisualTest { } Frame { msec: 1776 - hash: "54a60a4279911ba4a8a5741bcadfa783" + hash: "c2125b59e00f1a1c189c778c44fe39b0" } Mouse { type: 5 @@ -570,35 +570,35 @@ VisualTest { } Frame { msec: 1792 - hash: "a1a19370a1a8ed78e475f0d0eb12311c" + hash: "c78175071f2e95649d529b9e1cf045b2" } Frame { msec: 1808 - hash: "196a3b127cf7065614c34856bf8d8bca" + hash: "ca8ef2c2a7b06e55899b1b63208e257d" } Frame { msec: 1824 - hash: "5fbefbd7c7be4374382cc4c8b86ac78a" + hash: "b54957726e6257956b63e1d7ebbc96e4" } Frame { msec: 1840 - hash: "d6a544c622e504c1b931e1a8a1310a6e" + hash: "48847db78ddde75bb96edf01c52c3400" } Frame { msec: 1856 - hash: "20e76f0eb4ec5f691999faf8ad313370" + hash: "48dab5cd1feedf1b5dd67390d6f40fda" } Frame { msec: 1872 - hash: "7f84a3545907c754ae8a6a30ef61c98d" + hash: "fe32013c245091b577d0e38eea05705d" } Frame { msec: 1888 - hash: "b544901eae32903ad054e8cdfed715eb" + hash: "e4b6e31029c1ea26405537c6d2304b72" } Frame { msec: 1904 - hash: "a010ed1e3312f4ca9f429b7e32cdcef9" + hash: "b5fc9ab0a96ef526e6eb1c022f26c6a7" } Frame { msec: 1920 @@ -606,135 +606,135 @@ VisualTest { } Frame { msec: 1936 - hash: "93a731dc6f71b6ff5400bf74c87e6c46" + hash: "c23846634417c3e8dbbef5175036c071" } Frame { msec: 1952 - hash: "c73f63d1a024ba956e693487b3ccc761" + hash: "1bce9b85235e9a1a472c079dfec70ec5" } Frame { msec: 1968 - hash: "539d3d00fce2d0128cd697d86d237fe7" + hash: "98e707a3e39a5f7bd4a101c2ed83535c" } Frame { msec: 1984 - hash: "52752d7d6f2d0e085f7132313907b72b" + hash: "f73470027601a0c1a2382d5ded9e5fa6" } Frame { msec: 2000 - hash: "f46dd5803a6075e979e0fc733d503bfb" + hash: "d917b18a47b4e90821cba8987492cd1f" } Frame { msec: 2016 - hash: "b8734698a6bad00ecf019f85328c2c21" + hash: "fa526c5ef57eaa210fb4d03b72c35b69" } Frame { msec: 2032 - hash: "1cfc499ca756023430cc5b2fa95a599d" + hash: "15cbc226b032d5a97199735ea7a1408b" } Frame { msec: 2048 - hash: "63a816548837c19f8f0494c137fc0174" + hash: "6ffd2b79cf0e941a59e74bc6f9025bcb" } Frame { msec: 2064 - hash: "1bce9b85235e9a1a472c079dfec70ec5" + hash: "c009924bfa30153f22ab168b539494e9" } Frame { msec: 2080 - hash: "6677863e7f74c12648409883f73adbe2" + hash: "0525908c0302ada989e28990bac3f2ca" } Frame { msec: 2096 - hash: "98e707a3e39a5f7bd4a101c2ed83535c" + hash: "75c1295ef99680784b2e11fb88fa1423" } Frame { msec: 2112 - hash: "c1f6d8842d14a9394d4b7797314f50e8" + hash: "53064c1938f08a55603a99b0db225174" } Frame { msec: 2128 - hash: "579758b477bcd2112b305a5aac7df338" + hash: "99d9e58697736198e0a00443d237e85b" } Frame { msec: 2144 - hash: "4a7bb81090db246db53e2dbc56f710ea" + hash: "6c1e860aef983367365d53f5849ad441" } Frame { msec: 2160 - hash: "074995cdd8a70817d1c8a7bb0ad4c542" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2176 - hash: "bd8d7bda4d2e9ad1fba2895d568f36cc" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2192 - hash: "40cce3d2d80ac470af44fc334cec1d5b" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2208 - hash: "15cbc226b032d5a97199735ea7a1408b" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2224 - hash: "12b296aea9b058a5402d0d0a620f8edc" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2240 - hash: "6ffd2b79cf0e941a59e74bc6f9025bcb" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2256 - hash: "589a58ef76ea709dc8d80390c9044f99" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2272 - hash: "c009924bfa30153f22ab168b539494e9" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2288 - hash: "4b83674a7c2daa68d735901ad40be2bd" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2304 - hash: "0525908c0302ada989e28990bac3f2ca" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2320 - hash: "89eb13976ba3ba4413cafeb0cc91c01b" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2336 - hash: "75c1295ef99680784b2e11fb88fa1423" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2352 - hash: "93d89165cf6a97c76ae6e7f75678a3cd" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2368 - hash: "53064c1938f08a55603a99b0db225174" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2384 - hash: "31db5684466c0c32128a9a8c7b1835e1" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2400 - hash: "99d9e58697736198e0a00443d237e85b" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2416 - hash: "6c1e860aef983367365d53f5849ad441" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2432 - hash: "6c1e860aef983367365d53f5849ad441" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2448 - hash: "6c1e860aef983367365d53f5849ad441" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 2464 @@ -894,7 +894,7 @@ VisualTest { } Frame { msec: 2928 - hash: "5bb06b4e74532ba5bc8c7bc38bf77d7f" + hash: "99f9988040a389576cb6420b5391f768" } Mouse { type: 5 @@ -914,7 +914,7 @@ VisualTest { } Frame { msec: 2944 - hash: "b10a6206830a876017799ef2fcf61b1a" + hash: "52af1b81022e8572b9123461d123197f" } Mouse { type: 5 @@ -934,7 +934,7 @@ VisualTest { } Frame { msec: 2960 - hash: "b2e24759ba10afd6cff90f4b1e04b496" + hash: "e1390ad02ae7a6e757df4a7af9032167" } Mouse { type: 5 @@ -954,11 +954,11 @@ VisualTest { } Frame { msec: 2976 - hash: "ccbcd6f45cb529c2db71504c0f69d73e" + hash: "bf57f309378c956dfd70aa79a7dd97c5" } Frame { msec: 2992 - hash: "7b31c6d5931677f1aa1e8c7d48a4ff22" + hash: "408b59b96ecad0541ecbb97262c2567b" } Frame { msec: 3008 @@ -966,171 +966,171 @@ VisualTest { } Frame { msec: 3024 - hash: "dd639d1df3d4a9b8f06718def63d588f" + hash: "9aabf0500b1272375f5f6db1bd1d7b04" } Frame { msec: 3040 - hash: "39d767b09a648ef6295cec2848f9226f" + hash: "2e92065ca9425d1645d69c1734804518" } Frame { msec: 3056 - hash: "5dd46d5f386431e7b13348ac9a9630ed" + hash: "c73b2e430a0e96a660aa4447697e5adf" } Frame { msec: 3072 - hash: "0354e5183b0e66e7ba146d292c559df4" + hash: "875560b509215a869d1cad8a05f38850" } Frame { msec: 3088 - hash: "984aa6d7075e24de429e05b1b0eda94a" + hash: "4b5368f0d86bffeb6bd31b58aec88650" } Frame { msec: 3104 - hash: "1af58a2f44f1f613712d4df85e38356d" + hash: "3f4c24f7ac89da982af22032309637fb" } Frame { msec: 3120 - hash: "6e4085e7f1fee724d78808753f04b471" + hash: "8cacde33b70fc62b9b0c753091168b97" } Frame { msec: 3136 - hash: "73a019ef9057639d631cd99a431b3f3b" + hash: "7b8c1bb2a3ab9ba23ac17dc5422adac8" } Frame { msec: 3152 - hash: "c9414a2e655a90dfdcb6fb288b4ba0ca" + hash: "5aa34dccdd406b7e93dfdf756bbca5f0" } Frame { msec: 3168 - hash: "3f4c24f7ac89da982af22032309637fb" + hash: "4865c30dc45fbf5ca82047b77eca0912" } Frame { msec: 3184 - hash: "a50e6ada8f73a257657f4348ceaffcfd" + hash: "1dcecc3a899b060a1469ef91e0d21765" } Frame { msec: 3200 - hash: "a67bf40d09259bbd079c12ae4f49150f" + hash: "31422699bdbbbf827f7bb1f1ef78823e" } Frame { msec: 3216 - hash: "a2fc512b7c234a9d0b2c1a83387a8a46" + hash: "5859920a625ef94a644fda85d14e92fb" } Frame { msec: 3232 - hash: "85090683ce9a3c9833b1cb0b3df076ee" + hash: "37f1f7aaeaed28807f51fd9ad8c414ac" } Frame { msec: 3248 - hash: "275f3594a0e2cc4b6717f9f336e7e1b6" + hash: "14592a6c86f211c20abab5cf34a406b4" } Frame { msec: 3264 - hash: "2473eb11f7b65a784a2b166114026488" + hash: "77c18ac7dfff2a4e516915e3e3df0717" } Frame { msec: 3280 - hash: "4865c30dc45fbf5ca82047b77eca0912" + hash: "f619097356671f6eb54d3b1c481e709d" } Frame { msec: 3296 - hash: "54de88bca395449fbaea2c090c7a5d91" + hash: "7f19ea52e9e41a3b1bd90bb2a144d305" } Frame { msec: 3312 - hash: "833f9295cf9a34934f001eac48551b59" + hash: "17deb6b26fc9d27d5194995c102da4ac" } Frame { msec: 3328 - hash: "5bf565f57ababa7380faeee94add91ca" + hash: "29c52328b54f02cc9042f676d710b9b2" } Frame { msec: 3344 - hash: "6325578867f1eb3b2d47ed40b017b571" + hash: "c3b219bdd7710427d134402a8d3e6429" } Frame { msec: 3360 - hash: "046a6114176b3a3206b7a2acd6e30b41" + hash: "40204fdb7a84b86f1380224908092354" } Frame { msec: 3376 - hash: "f8d4120a17f28c2d1d9c4be959098058" + hash: "de7f3c83f37cc89c87009626c72e7642" } Frame { msec: 3392 - hash: "71356d2e48aad2900784ea6bc1a3d908" + hash: "e4dacafba5ab5f8db53f08cef458cf42" } Frame { msec: 3408 - hash: "b84ad460fb81fdc4049abe8f3ff180bb" + hash: "b554512bac0766063870c5b3acb1d24f" } Frame { msec: 3424 - hash: "0354239f5eaea23474d9f81385392a8a" + hash: "bb5ea2a238920a8486263bc7450edfb4" } Frame { msec: 3440 - hash: "8ef0eef3393e07ae7605c865a95edc30" + hash: "bb5ea2a238920a8486263bc7450edfb4" } Frame { msec: 3456 - hash: "5b8b384cc8e3faf4310015e19b3eb487" + hash: "b554512bac0766063870c5b3acb1d24f" } Frame { msec: 3472 - hash: "77c18ac7dfff2a4e516915e3e3df0717" + hash: "b554512bac0766063870c5b3acb1d24f" } Frame { msec: 3488 - hash: "c1d3264384c26345eb8100de829309ca" + hash: "e4dacafba5ab5f8db53f08cef458cf42" } Frame { msec: 3504 - hash: "6b21f71d0bedef4bbcb445a13f61e7a3" + hash: "e4dacafba5ab5f8db53f08cef458cf42" } Frame { msec: 3520 - hash: "f619097356671f6eb54d3b1c481e709d" + hash: "de7f3c83f37cc89c87009626c72e7642" } Frame { msec: 3536 - hash: "e56e3a90da446e0c482cb93717f6aacc" + hash: "40204fdb7a84b86f1380224908092354" } Frame { msec: 3552 - hash: "aa94ebdbb4b8423aff28c95daff0baf5" + hash: "3b2e2d957585fb44a7165186a146892c" } Frame { msec: 3568 - hash: "e1744d9cacd1a2c96af4cfdd5c486995" + hash: "c3b219bdd7710427d134402a8d3e6429" } Frame { msec: 3584 - hash: "7f19ea52e9e41a3b1bd90bb2a144d305" + hash: "8d424f37bb6af879129e57661d30a162" } Frame { msec: 3600 - hash: "7f19ea52e9e41a3b1bd90bb2a144d305" + hash: "29c52328b54f02cc9042f676d710b9b2" } Frame { msec: 3616 - hash: "7f19ea52e9e41a3b1bd90bb2a144d305" + hash: "8ef246d322446e7f0848b99495f89e2b" } Frame { msec: 3632 - hash: "88143ff6c278a5433b314b551b7b8b1d" + hash: "17deb6b26fc9d27d5194995c102da4ac" } Frame { msec: 3648 - hash: "88143ff6c278a5433b314b551b7b8b1d" + hash: "5f6708f615654c459f5749676fc09016" } Frame { msec: 3664 - hash: "88143ff6c278a5433b314b551b7b8b1d" + hash: "1734205ea5e7539b47d80c5a93ec74aa" } Frame { msec: 3680 - hash: "88143ff6c278a5433b314b551b7b8b1d" + hash: "1734205ea5e7539b47d80c5a93ec74aa" } Frame { msec: 3696 @@ -1298,7 +1298,7 @@ VisualTest { } Frame { msec: 4160 - hash: "c2c9c284b185a89faf4ddb5a7867f449" + hash: "f619097356671f6eb54d3b1c481e709d" } Mouse { type: 5 @@ -1310,7 +1310,7 @@ VisualTest { } Frame { msec: 4176 - hash: "de1c18aeda5d2fbd6dad4554c78617bd" + hash: "240081760f0cf2f02be4d6d2600d2bbc" } Mouse { type: 5 @@ -1338,11 +1338,11 @@ VisualTest { } Frame { msec: 4192 - hash: "a67bf40d09259bbd079c12ae4f49150f" + hash: "3b85c1739fdf3933d8cb0b2eaf22e6e3" } Frame { msec: 4208 - hash: "94514668dafbe41c5890a578efd6dea4" + hash: "f811f3c6b022730dd68ebd7b1659ea40" } Frame { msec: 4224 @@ -1350,139 +1350,139 @@ VisualTest { } Frame { msec: 4240 - hash: "4b5368f0d86bffeb6bd31b58aec88650" + hash: "7b7f5daf5eaf047e69d04b5bcb73240c" } Frame { msec: 4256 - hash: "b459bde7bb4ce51e6ecdab58f64fcbb9" + hash: "1af58a2f44f1f613712d4df85e38356d" } Frame { msec: 4272 - hash: "7bac8cc3ec64c9ad1c0da282e38c953e" + hash: "1bbdda445cec7f95a189c15d7e3c77b8" } Frame { msec: 4288 - hash: "a73a58c3d7a757547740a2a161f4c756" + hash: "91d8bcfebff29d2caf526b4012daaf46" } Frame { msec: 4304 - hash: "b35edcb1fa3568a3e770ab2364b82e75" + hash: "71ec8c363ca6a6f7556afb70faccffe6" } Frame { msec: 4320 - hash: "d6c863ef57c5e5cb04cdac72f920db0b" + hash: "303ebc28d09a49de52cb1adaa03872dd" } Frame { msec: 4336 - hash: "0db5e4588ff851918b07796f0cf07382" + hash: "9402e86bf4ffa62c60b02531a3735275" } Frame { msec: 4352 - hash: "71ec8c363ca6a6f7556afb70faccffe6" + hash: "5652de6fb2e107d41c0c5aeacf5a3055" } Frame { msec: 4368 - hash: "18d026e9c965ada1db67c643576d2a80" + hash: "b6a2ade6565a86b1f8e369b02e0b93f9" } Frame { msec: 4384 - hash: "69f71c22dff981a4da8ec1edcf90e79f" + hash: "30dd35e0b9ffa846f3cfc39edcbae511" } Frame { msec: 4400 - hash: "680460f5e4d9e649931601041af046b2" + hash: "401975fb4c9a48953aec25adb593eec4" } Frame { msec: 4416 - hash: "3028763fd15de2607b20b1331b904a4a" + hash: "71f9039c7aa9c8dc6d1de4561b1d5537" } Frame { msec: 4432 - hash: "333eb60e217fe1ea7469eab52ac461f1" + hash: "e1390ad02ae7a6e757df4a7af9032167" } Frame { msec: 4448 - hash: "ccbcd6f45cb529c2db71504c0f69d73e" + hash: "53a26f00bd49b8a9c065be99f9402d9c" } Frame { msec: 4464 - hash: "3445df9b41a0a3e74738cbf328ab7d5c" + hash: "b6e515e9a27af23b895f5024a41ce7b3" } Frame { msec: 4480 - hash: "bd2c072558479e9de7a97207e58cc57f" + hash: "85d143505d56f53c629358b37ad11581" } Frame { msec: 4496 - hash: "3d34b0b24a30eda93377dcb4585afed8" + hash: "de5cbdd848a07b78f9c5eb510cca2d3e" } Frame { msec: 4512 - hash: "d3045703863b0c5a327b9355c23d69f2" + hash: "0ad7411316031e22034c14e81ca3a806" } Frame { msec: 4528 - hash: "2f2eb55f693415b840a317211b250e9f" + hash: "32bef6f5005ad94e29ff59165958fbdc" } Frame { msec: 4544 - hash: "791b9ca7d47a3343474c30a35e336d4b" + hash: "87758dd311f91193bf1e3536c2f58525" } Frame { msec: 4560 - hash: "73a0c02ebad6d3d5f939d9a00dd898bf" + hash: "d4c34ed49317c6692d71681fcd9842b6" } Frame { msec: 4576 - hash: "d5c11135d586711b12f236430a2c2795" + hash: "abaa235bb946a8abaddd52981d632c2d" } Frame { msec: 4592 - hash: "34f9ea214fe714ff4e994f715ea6ea39" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4608 - hash: "8e49afa00983b156b818533923fb6edd" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4624 - hash: "e7e7bef17cee92eca9191fd734d7a577" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4640 - hash: "e407f6ed7cb3c130365ab5515d6308c0" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4656 - hash: "5bb06b4e74532ba5bc8c7bc38bf77d7f" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4672 - hash: "0ad7411316031e22034c14e81ca3a806" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4688 - hash: "dd81d7a9b48c922b4c42cba1b5f2b9d7" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4704 - hash: "32bef6f5005ad94e29ff59165958fbdc" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4720 - hash: "87758dd311f91193bf1e3536c2f58525" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4736 - hash: "015be92a4ff4e735fcc3cbc7a8b9d763" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4752 - hash: "d4c34ed49317c6692d71681fcd9842b6" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4768 - hash: "abaa235bb946a8abaddd52981d632c2d" + hash: "99f9988040a389576cb6420b5391f768" } Frame { msec: 4784 @@ -1650,7 +1650,7 @@ VisualTest { } Frame { msec: 5280 - hash: "95b380c9ab6f8db7b822faf023d94546" + hash: "99f9988040a389576cb6420b5391f768" } Mouse { type: 5 @@ -1670,7 +1670,7 @@ VisualTest { } Frame { msec: 5296 - hash: "bb79e53556698c62ec30c75be9f6b7d7" + hash: "6ffd2b79cf0e941a59e74bc6f9025bcb" } Mouse { type: 5 @@ -1698,115 +1698,115 @@ VisualTest { } Frame { msec: 5312 - hash: "285cc2f0df1f59f25a0135560ab6edf2" + hash: "4aa05d978267325ae00cb45e310a2f01" } Frame { msec: 5328 - hash: "93a731dc6f71b6ff5400bf74c87e6c46" + hash: "b5717b311259c77a0210e26ab99dd401" } Frame { msec: 5344 - hash: "eb555741ab128a50de5a18a454f2e639" + hash: "9b3fde82278fa2f0caaf64cf23bb6530" } Frame { msec: 5360 - hash: "5dbe6cf898c1e37fcaacecfcf57b2194" + hash: "e7795610115593e78bb32f7bcc0ae2eb" } Frame { msec: 5376 - hash: "e7795610115593e78bb32f7bcc0ae2eb" + hash: "0dc7c4c161e0b3c3d176e5e6bc08a805" } Frame { msec: 5392 - hash: "20e76f0eb4ec5f691999faf8ad313370" + hash: "7c2b0307c4040d8d9e88425b3bf3fb70" } Frame { msec: 5408 - hash: "d6a544c622e504c1b931e1a8a1310a6e" + hash: "cf2acc805e9707327b01eb979f2b67a3" } Frame { msec: 5424 - hash: "e7a3a21feed244c5b1c710a9254c15f0" + hash: "7aeec517e845c1c5012ed63be6bbd006" } Frame { msec: 5440 - hash: "5a4b1aca24f121d1373646e9d80b86fd" + hash: "a978890b419f9503e53d4d3f4f9b8c9b" } Frame { msec: 5456 - hash: "331d2ec7021655c86aa64e47718a1088" + hash: "73339b67e49210b4760b8e06fa4067b7" } Frame { msec: 5472 - hash: "92096bc872e7395aa5b75c44646a0b60" + hash: "d09a245890e813c248050132a76465f3" } Frame { msec: 5488 - hash: "0d9aa6cee4d21488cbb5153f8f3ed593" + hash: "35b874b3b4d7d1e59852233fce192b0b" } Frame { msec: 5504 - hash: "c1b943d43701605563fffffcb75f9fa7" + hash: "4f80a0da1941e9c208036f22df93bed8" } Frame { msec: 5520 - hash: "1b680025d5ad1ddd8f8d5f570ba73e71" + hash: "7bbdc4ce95bc12e505f24cb8b137a0f1" } Frame { msec: 5536 - hash: "5539a3b9f60ea747c10ed8328b467cbf" + hash: "e68b5fb604a45d4e7ee21f6e06460b47" } Frame { msec: 5552 - hash: "0a1317bcb606cd3488c5b14ee5d96585" + hash: "903059d468bed1ac8395e38a19c9dd38" } Frame { msec: 5568 - hash: "8844af68b11db7d92c69804c7371a746" + hash: "d7430ebf26f2de6f648471c19455cf0f" } Frame { msec: 5584 - hash: "28d7fd127739c6e3b8488651b725c802" + hash: "d5268cd58c222451d48038e715e83802" } Frame { msec: 5600 - hash: "0cf1a7d958a96aa2768995dddc5ccc09" + hash: "99b4534b0bf58dc8e28c1118a5baec33" } Frame { msec: 5616 - hash: "64b902fe7ab4d89ef0c7b760974e3488" + hash: "ade5beb259b5277c333ca806fc9bdbec" } Frame { msec: 5632 - hash: "aba11c597eba550fc1eaddbf554057f6" + hash: "f34d2248999f5f51210064315d631f60" } Frame { msec: 5648 - hash: "1bacaa3bb9dc3cac9ffc7491cb4dc1a5" + hash: "40382f644935dc4e99353fa29c3e0b21" } Frame { msec: 5664 - hash: "0ba8b582234d9f0c198c0c9e18e1cb02" + hash: "65af7a4a4aea5a983ea3fb9324e74256" } Frame { msec: 5680 - hash: "f66eaf2b5c3529987c0d9d005351ed73" + hash: "b8db9180b4ad15fdbd25a4e974512f92" } Frame { msec: 5696 - hash: "75b0bb720fa4c77da3783b3ff31c2fae" + hash: "2311ce1a83a43619ab7ce537a2b948e1" } Frame { msec: 5712 - hash: "345b235bb7f13409378e5c0c370f2a41" + hash: "35fe67a91e50f8ebc896451b39cb8f1c" } Frame { msec: 5728 - hash: "83b7e902dce4e0fdc4ef5d629188c23c" + hash: "35fe67a91e50f8ebc896451b39cb8f1c" } Frame { msec: 5744 - hash: "04b9041c6f10969889d92e94785c7e88" + hash: "0b7fc796f818bddcada99e9981f1cce0" } Frame { msec: 5760 @@ -1814,59 +1814,59 @@ VisualTest { } Frame { msec: 5776 - hash: "4f3a902addc34ecdaf390e2427cc52e7" + hash: "35fe67a91e50f8ebc896451b39cb8f1c" } Frame { msec: 5792 - hash: "68d443f16c16821ffc9ca68b17c76034" + hash: "35fe67a91e50f8ebc896451b39cb8f1c" } Frame { msec: 5808 - hash: "9d25adc77befa761ee376a9b43595b5e" + hash: "2311ce1a83a43619ab7ce537a2b948e1" } Frame { msec: 5824 - hash: "a68b1bc6c2963ee92c3a45f500667b3b" + hash: "127871a98123b7bd44f4c38f27cbc836" } Frame { msec: 5840 - hash: "d5268cd58c222451d48038e715e83802" + hash: "b8db9180b4ad15fdbd25a4e974512f92" } Frame { msec: 5856 - hash: "f37d461541a8ec7a4161b18748de6aea" + hash: "0974df6a7277bba11a3d3f400c68f4f1" } Frame { msec: 5872 - hash: "805319ac7ca842feb3649e92f8b5b72f" + hash: "65af7a4a4aea5a983ea3fb9324e74256" } Frame { msec: 5888 - hash: "73124472a05080891d4948d8ca273f8c" + hash: "b3e92eb4cfe548b92ac526066dfc7d23" } Frame { msec: 5904 - hash: "b6e433a23282a50db2e165a2447ba3f6" + hash: "40382f644935dc4e99353fa29c3e0b21" } Frame { msec: 5920 - hash: "fd8d3f5688b1806998c6087e18c6c730" + hash: "39fcad34db24d591e24c8ae1c7094d5b" } Frame { msec: 5936 - hash: "f132dd459950ef2d18aa93ca950d0692" + hash: "165b91b850bcb8dd1d9b1eaa6f81be57" } Frame { msec: 5952 - hash: "ade5beb259b5277c333ca806fc9bdbec" + hash: "f34d2248999f5f51210064315d631f60" } Frame { msec: 5968 - hash: "ade5beb259b5277c333ca806fc9bdbec" + hash: "b135c8c9975f4d45d2054cf31d0b1fe1" } Frame { msec: 5984 - hash: "bf47cc398a702dd17c8efebb3d2f8073" + hash: "b135c8c9975f4d45d2054cf31d0b1fe1" } Frame { msec: 6000 diff --git a/tests/auto/declarative/qmlvisual/ListView/listview.qml b/tests/auto/declarative/qmlvisual/ListView/listview.qml index 341311d..7e7af59 100644 --- a/tests/auto/declarative/qmlvisual/ListView/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/listview.qml @@ -49,7 +49,7 @@ Rectangle { Component { id: myHighlight - Rectangle { color: "black" } + Rectangle { width: 200; height: 50; color: "black" } } ListView { -- cgit v0.12 From 82159dbbfe7e36bc8f67ad1637a2285fb002eb11 Mon Sep 17 00:00:00 2001 From: Yann Bodson <yann.bodson@nokia.com> Date: Thu, 28 Oct 2010 18:18:41 +1000 Subject: Remove unnecessary layouting code from QDeclarativeText Task-number: QTBUG-14795 Reviewed-by: Michael Brasser --- src/declarative/graphicsitems/qdeclarativetext.cpp | 51 ++++------------------ 1 file changed, 8 insertions(+), 43 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativetext.cpp b/src/declarative/graphicsitems/qdeclarativetext.cpp index 0717b78..c8e3615 100644 --- a/src/declarative/graphicsitems/qdeclarativetext.cpp +++ b/src/declarative/graphicsitems/qdeclarativetext.cpp @@ -287,8 +287,7 @@ QSize QDeclarativeTextPrivate::setupTextLayout() Q_Q(QDeclarativeText); layout.setCacheEnabled(true); - int height = 0; - qreal widthUsed = 0; + qreal height = 0; qreal lineWidth = 0; //set manual width @@ -297,6 +296,7 @@ QSize QDeclarativeTextPrivate::setupTextLayout() QTextOption textOption = layout.textOption(); textOption.setWrapMode(QTextOption::WrapMode(wrapMode)); + textOption.setAlignment((Qt::Alignment)hAlign); layout.setTextOption(textOption); layout.beginLayout(); @@ -305,37 +305,15 @@ QSize QDeclarativeTextPrivate::setupTextLayout() if (!line.isValid()) break; - if ((wrapMode != QDeclarativeText::NoWrap || elideMode != QDeclarativeText::ElideNone) && q->widthValid()) + if ((wrapMode != QDeclarativeText::NoWrap || elideMode != QDeclarativeText::ElideNone) && q->widthValid()) { line.setLineWidth(lineWidth); - } - layout.endLayout(); - - for (int i = 0; i < layout.lineCount(); ++i) { - QTextLine line = layout.lineAt(i); - widthUsed = qMax(widthUsed, line.naturalTextWidth()); - } - - qreal layoutWidth = q->widthValid()?q->width():widthUsed; - - int x = 0; - for (int i = 0; i < layout.lineCount(); ++i) { - QTextLine line = layout.lineAt(i); - line.setPosition(QPointF(0, height)); - height += int(line.height()); - - if (!cacheAllTextAsImage) { - if (hAlign == QDeclarativeText::AlignLeft) { - x = 0; - } else if (hAlign == QDeclarativeText::AlignRight) { - x = layoutWidth - (int)line.naturalTextWidth(); - } else if (hAlign == QDeclarativeText::AlignHCenter) { - x = (layoutWidth - (int)line.naturalTextWidth()) / 2; - } - line.setPosition(QPoint(x, (int)line.y())); + line.setPosition(QPointF(0, height)); + height += line.height(); } } + layout.endLayout(); - return QSize(qCeil(widthUsed), height); + return QSize(qCeil(layout.boundingRect().width()), layout.boundingRect().height()); } /*! @@ -347,19 +325,6 @@ QPixmap QDeclarativeTextPrivate::textLayoutImage(bool drawStyle) //do layout QSize size = layedOutTextSize; - int x = 0; - for (int i = 0; i < layout.lineCount(); ++i) { - QTextLine line = layout.lineAt(i); - if (hAlign == QDeclarativeText::AlignLeft) { - x = 0; - } else if (hAlign == QDeclarativeText::AlignRight) { - x = size.width() - (int)line.naturalTextWidth(); - } else if (hAlign == QDeclarativeText::AlignHCenter) { - x = (size.width() - (int)line.naturalTextWidth()) / 2; - } - line.setPosition(QPoint(x, (int)line.y())); - } - //paint text QPixmap img(size); if (!size.isEmpty()) { @@ -1147,7 +1112,7 @@ void QDeclarativeText::geometryChanged(const QRectF &newGeometry, const QRectF & if ((!d->internalWidthUpdate && newGeometry.width() != oldGeometry.width()) && (d->wrapMode != QDeclarativeText::NoWrap || d->elideMode != QDeclarativeText::ElideNone - || d->hAlign != Qt::AlignLeft)) { + || d->hAlign != QDeclarativeText::AlignLeft)) { if (d->singleline && d->elideMode != QDeclarativeText::ElideNone && widthValid()) { // We need to re-elide d->updateLayout(); -- cgit v0.12 From 7537554040827dbaae327d27c77319e6b7e7c618 Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Thu, 28 Oct 2010 10:24:48 +0200 Subject: Network code: Fix code comment spellchecking errors. Me no speak americano. Reviewed-by: Peter Hartmann --- src/network/access/qhttp.cpp | 2 +- src/network/access/qhttpnetworkconnection.cpp | 2 +- src/network/socket/qlocalserver_unix.cpp | 2 +- src/network/socket/qnativesocketengine_win.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/network/access/qhttp.cpp b/src/network/access/qhttp.cpp index 13375f8..9c2f79a 100644 --- a/src/network/access/qhttp.cpp +++ b/src/network/access/qhttp.cpp @@ -2442,7 +2442,7 @@ void QHttpPrivate::_q_slotSendRequest() if (proxy.hostName().isEmpty()) { proxy.setType(QNetworkProxy::NoProxy); } else if (sslInUse) { - // Disallow use of cacheing proxy with HTTPS; instead fall back to + // Disallow use of caching proxy with HTTPS; instead fall back to // transparent HTTP CONNECT proxying. transparentProxyInUse = true; } else { diff --git a/src/network/access/qhttpnetworkconnection.cpp b/src/network/access/qhttpnetworkconnection.cpp index c335cd4..89f9b03 100644 --- a/src/network/access/qhttpnetworkconnection.cpp +++ b/src/network/access/qhttpnetworkconnection.cpp @@ -745,7 +745,7 @@ void QHttpNetworkConnectionPrivate::removeReply(QHttpNetworkReply *reply) // although it is called _q_startNextRequest, it will actually start multiple requests when possible void QHttpNetworkConnectionPrivate::_q_startNextRequest() { - // If the QHttpNetworkConnection is currently paused then bail out immediatly + // If the QHttpNetworkConnection is currently paused then bail out immediately if (state == PausedState) return; diff --git a/src/network/socket/qlocalserver_unix.cpp b/src/network/socket/qlocalserver_unix.cpp index 560f5f6..c218d89 100644 --- a/src/network/socket/qlocalserver_unix.cpp +++ b/src/network/socket/qlocalserver_unix.cpp @@ -119,7 +119,7 @@ bool QLocalServerPrivate::listen(const QString &requestedServerName) // subsequent call to accept will not block in any case // // This change can be removed once more generic fix to select thread - // syncronization problem is implemented. + // synchronization problem is implemented. int flags = fcntl(listenSocket, F_GETFL, 0); if (-1 == flags || -1 == (fcntl(listenSocket, F_SETFL, flags | O_NONBLOCK))) { diff --git a/src/network/socket/qnativesocketengine_win.cpp b/src/network/socket/qnativesocketengine_win.cpp index 477ef45..c1a4cfc 100644 --- a/src/network/socket/qnativesocketengine_win.cpp +++ b/src/network/socket/qnativesocketengine_win.cpp @@ -733,7 +733,7 @@ int QNativeSocketEnginePrivate::nativeAccept() { int acceptedDescriptor = WSAAccept(socketDescriptor, 0,0,0,0); if (acceptedDescriptor != -1 && QAbstractEventDispatcher::instance()) { - // Becuase of WSAAsyncSelect() WSAAccept returns a non blocking socket + // Because of WSAAsyncSelect() WSAAccept returns a non blocking socket // with the same attributes as the listening socket including the current // WSAAsyncSelect(). To be able to change the socket to blocking mode the // WSAAsyncSelect() call must be cancled. -- cgit v0.12 From 5a2a17ab60f8393f5e0bf47ff281eeb3e3fc3dc6 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Thu, 28 Oct 2010 18:32:52 +1000 Subject: Clean up qmlvisual/animation visual tests Add platform specific colorAnimation Visuals remove color animation from propertyAction remove gradient from qtbug10586 shrink scriptAction-visual.qml Task-number: QTUBG-14792 --- .../data-X11/colorAnimation-visual.0.png | Bin 0 -> 627 bytes .../data-X11/colorAnimation-visual.1.png | Bin 0 -> 626 bytes .../data-X11/colorAnimation-visual.2.png | Bin 0 -> 625 bytes .../data-X11/colorAnimation-visual.qml | 951 +++++++++++++++++++++ .../data/propertyAction-visual.0.png | Bin 1418 -> 335 bytes .../data/propertyAction-visual.1.png | Bin 1430 -> 345 bytes .../data/propertyAction-visual.2.png | Bin 1431 -> 336 bytes .../propertyAction/data/propertyAction-visual.qml | 546 +++++------- .../propertyAction/propertyAction-visual.qml | 13 +- .../animation/qtbug10586/data/qtbug10586.0.png | Bin 1149 -> 1135 bytes .../animation/qtbug10586/data/qtbug10586.1.png | Bin 1177 -> 1141 bytes .../animation/qtbug10586/data/qtbug10586.2.png | Bin 1173 -> 1150 bytes .../animation/qtbug10586/data/qtbug10586.3.png | Bin 1149 -> 1141 bytes .../animation/qtbug10586/data/qtbug10586.4.png | Bin 0 -> 1132 bytes .../animation/qtbug10586/data/qtbug10586.qml | 864 +++++++++---------- .../qmlvisual/animation/qtbug10586/qtbug10586.qml | 6 +- .../scriptAction/data/scriptAction-visual.0.png | Bin 0 -> 335 bytes .../scriptAction/data/scriptAction-visual.1.png | Bin 0 -> 335 bytes .../scriptAction/data/scriptAction-visual.qml | 298 +++---- .../animation/scriptAction/data/scriptAction.0.png | Bin 1418 -> 0 bytes .../animation/scriptAction/data/scriptAction.1.png | Bin 1431 -> 0 bytes .../animation/scriptAction/scriptAction-visual.qml | 4 +- 22 files changed, 1720 insertions(+), 962 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.0.png create mode 100644 tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.1.png create mode 100644 tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.2.png create mode 100644 tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.qml create mode 100644 tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.4.png create mode 100644 tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.0.png create mode 100644 tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.1.png delete mode 100644 tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction.0.png delete mode 100644 tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction.1.png diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.0.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.0.png new file mode 100644 index 0000000..c5e8029 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.0.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.1.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.1.png new file mode 100644 index 0000000..b0f69c2 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.1.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.2.png b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.2.png new file mode 100644 index 0000000..1317eef Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.2.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.qml b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.qml new file mode 100644 index 0000000..eb4564c --- /dev/null +++ b/tests/auto/declarative/qmlvisual/animation/colorAnimation/data-X11/colorAnimation-visual.qml @@ -0,0 +1,951 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 32 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 48 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 64 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 80 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 96 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 112 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 128 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 144 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 160 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 176 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 192 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 208 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 224 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 240 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 256 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 272 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 288 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 304 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 320 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 336 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 352 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 368 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 384 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 400 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 416 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 432 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 448 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 464 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 480 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 496 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 512 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 93; y: 136 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 528 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 544 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 560 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 576 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 592 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 93; y: 136 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 608 + hash: "acc736435c9f84aa82941ba561bc5dbc" + } + Frame { + msec: 624 + hash: "e5bda0daf98288ce18db6ce06eda3ba0" + } + Frame { + msec: 640 + hash: "d35008f75b8c992f80fb16ba7203649d" + } + Frame { + msec: 656 + hash: "14f43e0784ddf42ea8550db88c501bf1" + } + Frame { + msec: 672 + hash: "02276e158b5391480b1bdeaadf1fb903" + } + Frame { + msec: 688 + hash: "35d9513eb97a2c482b7cd197de910934" + } + Frame { + msec: 704 + hash: "faf0fd681e60bb2489099f5df772b6cd" + } + Frame { + msec: 720 + hash: "a863d3e346f94785a3a392fdc91526eb" + } + Frame { + msec: 736 + hash: "fdf328d3f6eb8410da59a91345e41a44" + } + Frame { + msec: 752 + hash: "83514a3b10d5be8f6c3b128d0f3e0b1c" + } + Frame { + msec: 768 + hash: "ead0eae76cd00189075964671effbaea" + } + Frame { + msec: 784 + hash: "24d2457fcd51490fda23071bf9929d12" + } + Frame { + msec: 800 + hash: "1478683446cf543dacbe31d0b76a98a6" + } + Frame { + msec: 816 + hash: "99f7da1f31fe920f6c02add4042ae925" + } + Frame { + msec: 832 + hash: "22def892006cf66667770b0f17baf6c0" + } + Frame { + msec: 848 + hash: "6a36d5a77099bfd58baf285478ff04e4" + } + Frame { + msec: 864 + hash: "6258150666b59b20ab476724c07fc20c" + } + Frame { + msec: 880 + hash: "f1636315bc950a6dd400d9c7ed263b88" + } + Frame { + msec: 896 + hash: "18447ea8dc2e8da956788e5b3cf3790a" + } + Frame { + msec: 912 + hash: "1d2a6e65997a73e9e670356c8e8b63b2" + } + Frame { + msec: 928 + hash: "bed0242c0f9ef229d1392835286d5782" + } + Frame { + msec: 944 + hash: "88923c190e9e5beadef8a409c06df9d6" + } + Frame { + msec: 960 + image: "colorAnimation-visual.0.png" + } + Frame { + msec: 976 + hash: "85b1821cc50f2a9f3ed6944f792b7a2f" + } + Frame { + msec: 992 + hash: "395195716d76bc0be7b2033ed37a7a1c" + } + Frame { + msec: 1008 + hash: "243dbffcf416926242bbcb7348974c4c" + } + Frame { + msec: 1024 + hash: "a755068679616d8ac65c2aa7431f2a19" + } + Frame { + msec: 1040 + hash: "e8249b35a47eb492cbdf2d91cc8426f0" + } + Frame { + msec: 1056 + hash: "15f3da1c0e6f0779b96859d51171dd27" + } + Frame { + msec: 1072 + hash: "258c0c756aac3de743b43051f2aace6b" + } + Frame { + msec: 1088 + hash: "a58b9fdf301d72b2cc5c93934cc8927b" + } + Frame { + msec: 1104 + hash: "a9181d30870d472521f8904818ce520f" + } + Frame { + msec: 1120 + hash: "7f9e94069ccf3897c26a71bd7becd903" + } + Frame { + msec: 1136 + hash: "bdf305c2f46cdb86dbf57b1e0cc5a65b" + } + Frame { + msec: 1152 + hash: "fe5b6865d7e4fc7d1d42c1e74f8666f7" + } + Frame { + msec: 1168 + hash: "734f0de45a6e34c9eab7ef606196f96a" + } + Frame { + msec: 1184 + hash: "02a361c4534fdf7f286dc3e6dc23275c" + } + Frame { + msec: 1200 + hash: "e649155ad69999c14b92f6561e4d1185" + } + Frame { + msec: 1216 + hash: "01af177084fab755d622973f64b92018" + } + Frame { + msec: 1232 + hash: "097cc4a082dfab995d213a3a73883c97" + } + Frame { + msec: 1248 + hash: "d7b4239a3280b1eb8e885e3f422df8e9" + } + Frame { + msec: 1264 + hash: "59893977994e34e83f91e7ce3ad65d6d" + } + Frame { + msec: 1280 + hash: "b68e3fbb5cdcd6bd96df7dec558db42b" + } + Frame { + msec: 1296 + hash: "94ad0580648f36a1e18a9ea7e249b04d" + } + Frame { + msec: 1312 + hash: "750a4c01d2f5806a89a1c6cc6a9b9a68" + } + Frame { + msec: 1328 + hash: "4f109f50f388f1bfa4bc6b03b3e6e514" + } + Frame { + msec: 1344 + hash: "c6168d5cf27a533e8ee636637667be47" + } + Frame { + msec: 1360 + hash: "f8120547bed987aa34c00da5a01a4d1e" + } + Frame { + msec: 1376 + hash: "cbff526136fa2c128c8b898fbbef9e5c" + } + Frame { + msec: 1392 + hash: "f29e52398fab1a239a63df4c32f2fc69" + } + Frame { + msec: 1408 + hash: "7178bfe86fd2fd513218b33760460f8d" + } + Frame { + msec: 1424 + hash: "ca83285bc8ac633403896fe976896eb0" + } + Frame { + msec: 1440 + hash: "96ba486c09cc69d5aa38c46c00df1181" + } + Frame { + msec: 1456 + hash: "b88eab335842787869f4a14824c19dd8" + } + Frame { + msec: 1472 + hash: "065aa59012729e1e1a246a2083142690" + } + Frame { + msec: 1488 + hash: "dd0e98c8398861002c5f178c5f9f612d" + } + Frame { + msec: 1504 + hash: "04192c2b545948048eccf4d81bbde198" + } + Frame { + msec: 1520 + hash: "bb7502c7208281ef9fd41714ab88a1a8" + } + Frame { + msec: 1536 + hash: "5397195471890d08b703dca101e5bc7c" + } + Frame { + msec: 1552 + hash: "4c678cdbebb2ffd2cbf012ca77800cde" + } + Frame { + msec: 1568 + hash: "0d7a34ecd0c7f52b2c015037bf1902c6" + } + Frame { + msec: 1584 + hash: "fd9d5048be749ac4369fda2d018b43ae" + } + Frame { + msec: 1600 + hash: "93ee03795cd57ae6f7fe3a020b039ad4" + } + Frame { + msec: 1616 + hash: "5e1118963f219c39761ca7fbf564a9ca" + } + Frame { + msec: 1632 + hash: "8f40038741903150136170503649d941" + } + Frame { + msec: 1648 + hash: "b087b7d0aa6224821f8e18718ff5e77d" + } + Frame { + msec: 1664 + hash: "aa46b04a3c67dc772265ed2901955565" + } + Frame { + msec: 1680 + hash: "ac024bf2aeb4becdf31a09fe0a6db8f3" + } + Frame { + msec: 1696 + hash: "13745a174e4d06e2108a5bf125ba50cc" + } + Frame { + msec: 1712 + hash: "bd972f0d8e230eca0b3fea1b8c960c08" + } + Frame { + msec: 1728 + hash: "cbdbec802a58e7ced0cf45b3ab0bc0ba" + } + Frame { + msec: 1744 + hash: "5128584c50305c7d218b81b8367fa3d5" + } + Frame { + msec: 1760 + hash: "a71461d3593f3685620668916de870bd" + } + Frame { + msec: 1776 + hash: "74ebac8f32cf044b58d9883dbcd9a722" + } + Frame { + msec: 1792 + hash: "fedc5b638f339b90fe59b478721e65b7" + } + Frame { + msec: 1808 + hash: "8593a81be812edf54ec94da8ae9c1314" + } + Frame { + msec: 1824 + hash: "4e9b083075bc5e9287a8abc982778b56" + } + Frame { + msec: 1840 + hash: "1d6f02aa99afa47d77fc49ab894b365a" + } + Frame { + msec: 1856 + hash: "a204feec783b3b05de4c209c21745826" + } + Frame { + msec: 1872 + hash: "665a2a8ff00b9663157802767f504754" + } + Frame { + msec: 1888 + hash: "624fb09ebe60cb87d767faf8d2420b1e" + } + Frame { + msec: 1904 + hash: "e5af0cdc33f3275a25abb09e9165f310" + } + Frame { + msec: 1920 + image: "colorAnimation-visual.1.png" + } + Frame { + msec: 1936 + hash: "e7aa6374c73832e57ceb2427a1e258aa" + } + Frame { + msec: 1952 + hash: "b5abd0dff1ab076faac7cc226e83f5d0" + } + Frame { + msec: 1968 + hash: "b759acc35bccff8efc2e6fe276ddc0f7" + } + Frame { + msec: 1984 + hash: "ce52e18c1f7732768779863b45314ff5" + } + Frame { + msec: 2000 + hash: "99d30652559dd6931e0c95543eeaa149" + } + Frame { + msec: 2016 + hash: "ffbd9a00e05e085b89296d19d5caec57" + } + Frame { + msec: 2032 + hash: "9c9d658b9c25602816b8066bf19105db" + } + Frame { + msec: 2048 + hash: "2b7fd058e6601e22a30bb7106b1c683b" + } + Frame { + msec: 2064 + hash: "f4c7e26b19ee0a3e7c9688685eb7bd05" + } + Frame { + msec: 2080 + hash: "0dc6d593bceff56b7f81f2a49d37fefb" + } + Frame { + msec: 2096 + hash: "9bfd7ad5091ccbdde43c593e133a7b10" + } + Frame { + msec: 2112 + hash: "2703b617937914a90ea42ebf249d79ee" + } + Frame { + msec: 2128 + hash: "b77e2983138254016c4cca53100f46fa" + } + Frame { + msec: 2144 + hash: "60c4dd24187d1281081479e586f02b37" + } + Frame { + msec: 2160 + hash: "62f2511abd99ef1231c9fa4b91d4abfe" + } + Frame { + msec: 2176 + hash: "e309b3353fd174e883d309571caddc98" + } + Frame { + msec: 2192 + hash: "1e2d6a134c7b12dde551b148ef4f088c" + } + Frame { + msec: 2208 + hash: "e5dc5450604a491cc24a0dcf5c278b58" + } + Frame { + msec: 2224 + hash: "c8dae97c10e1962c1e6a51ab3ab8579e" + } + Frame { + msec: 2240 + hash: "4e1b7e06f55fb084080689b474f1fe1d" + } + Frame { + msec: 2256 + hash: "b4639c907fa937bf15fac62421170cd8" + } + Frame { + msec: 2272 + hash: "c250208a0caeb5f6cb4d3aac3d7d350b" + } + Frame { + msec: 2288 + hash: "a73351eabecf0d71149efe31f197413e" + } + Frame { + msec: 2304 + hash: "479425f1b7aff79e4dfb7fca534af018" + } + Frame { + msec: 2320 + hash: "046d0f0040a52d1f26ba9f7c5de06ef4" + } + Frame { + msec: 2336 + hash: "655778bf13c6080903150b0eb43a7edc" + } + Frame { + msec: 2352 + hash: "72da0bbe81514870655fdd3354adac60" + } + Frame { + msec: 2368 + hash: "defe0bdf675c65fff55aaaced1e4dae7" + } + Frame { + msec: 2384 + hash: "c988628b6c3d3780e9a865c7694926cd" + } + Frame { + msec: 2400 + hash: "5ab17563655231089edd986ff13d6012" + } + Frame { + msec: 2416 + hash: "c1adff1d2e5800ed466d1691d3b17382" + } + Frame { + msec: 2432 + hash: "70129ba01fbb19592b9dc0d0a3b3e7df" + } + Frame { + msec: 2448 + hash: "0000829ef7ed908bf430d42904d59cc2" + } + Frame { + msec: 2464 + hash: "843d2927f50ab87b4a86b7a6aaeed91f" + } + Frame { + msec: 2480 + hash: "da86d21756025e7de8050586d5e2a1f8" + } + Frame { + msec: 2496 + hash: "48dd1bd6580133b0793fee327ea4f1e6" + } + Frame { + msec: 2512 + hash: "f0618193dcd0ba2837249515a1898b1c" + } + Frame { + msec: 2528 + hash: "a530184e57251065286c0cbba7301e9c" + } + Frame { + msec: 2544 + hash: "64a1d7203973d65dd342793007a61c58" + } + Frame { + msec: 2560 + hash: "5b830dfc6ba442772de87d75d5a578de" + } + Frame { + msec: 2576 + hash: "5563b056b0409b65f60dd16dd0dd890e" + } + Frame { + msec: 2592 + hash: "b8bcf9ad2ca8720c11563a23d8280804" + } + Frame { + msec: 2608 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2624 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2640 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2656 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2672 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2688 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2704 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2720 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2736 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2752 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2768 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2784 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2800 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2816 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2832 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2848 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2864 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2880 + image: "colorAnimation-visual.2.png" + } + Frame { + msec: 2896 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2912 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2928 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2944 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2960 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2976 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 2992 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3008 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3024 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3040 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3056 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3072 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3088 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3104 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3120 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3136 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3152 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3168 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3184 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3200 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3216 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3232 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3248 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3264 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3280 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3296 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3312 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3328 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3344 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3360 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3376 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3392 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3408 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3424 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3440 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3456 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3472 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3488 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3504 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3520 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3536 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3552 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3568 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3584 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3600 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3616 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3632 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3648 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3664 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } + Frame { + msec: 3680 + hash: "8c0fcda4f8956394c53fc4ba18caa850" + } +} diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.0.png b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.0.png index 64d6b06..a02c063 100644 Binary files a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.0.png and b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.0.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.1.png b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.1.png index f7fce15..0714b4a 100644 Binary files a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.1.png and b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.1.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.2.png b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.2.png index 3080df5..7d2b66e 100644 Binary files a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.2.png and b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.2.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml index 36b39fa..09febd7 100644 --- a/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/propertyAction/data/propertyAction-visual.qml @@ -6,239 +6,247 @@ VisualTest { } Frame { msec: 16 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 32 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 48 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 64 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 80 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 96 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 112 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 128 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 144 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 160 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 176 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 192 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 208 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 224 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 240 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 256 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 272 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 288 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 304 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 320 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 336 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 352 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 368 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 384 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 400 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 416 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 432 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 448 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 464 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 480 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 496 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 512 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 528 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 544 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 560 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 576 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 592 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 608 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 624 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 640 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 656 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 672 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 688 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 704 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 720 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 736 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 27; y: 19 + modifiers: 0 + sendToViewport: true } Frame { msec: 752 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 768 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "a858eee4b2753915ec84d2ffa098260c" } Frame { msec: 784 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "a858eee4b2753915ec84d2ffa098260c" } Frame { msec: 800 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "a858eee4b2753915ec84d2ffa098260c" } Frame { msec: 816 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "e8e6b7d7f81895ae556936ba5e0848a5" } Frame { msec: 832 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "b6ee5f74a5e91bcf6b9aad3cbb5d683f" } Frame { msec: 848 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "b6ee5f74a5e91bcf6b9aad3cbb5d683f" } Frame { msec: 864 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "02e3d071d5fc0832041688950d3610b8" } Frame { msec: 880 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "aad38d9678bdeeed750f381a40e22a61" } Frame { msec: 896 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "a8753ac7d026d94224c488fa16d5774a" } Frame { msec: 912 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "9de26e2d70bd285116df820ca87c2e4d" } Frame { msec: 928 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "985c6ee9cb5f259135a4eeb3c2f1d271" } Frame { msec: 944 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "985c6ee9cb5f259135a4eeb3c2f1d271" } Frame { msec: 960 @@ -246,247 +254,247 @@ VisualTest { } Frame { msec: 976 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "4ba1bf769de9bc45630485d06642dc30" } Frame { msec: 992 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "4ba1bf769de9bc45630485d06642dc30" } Frame { msec: 1008 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "9dbe8b62ec467f5b95b4bb8ab9fbab68" } Frame { msec: 1024 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "9dbe8b62ec467f5b95b4bb8ab9fbab68" } Frame { msec: 1040 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "81c157daf3086b21ea2ba39277a31f3d" } Frame { msec: 1056 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "a19d2e389a71472929fed6691dbe40ec" } Frame { msec: 1072 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "0fc67582f36db63dc3df1027bf7ad90b" } Frame { msec: 1088 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c53f1a42113fdc2e525c43460ed40f81" } Frame { msec: 1104 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c8968753e599419bc2d70adb95b643f2" } Frame { msec: 1120 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "449fbda0dc3e45d022832f9d15203466" } Frame { msec: 1136 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "7778e32071419dd53920536bac1eb21a" } Frame { msec: 1152 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "279510c6ca5429a22855a08e88a1b4b5" } Frame { msec: 1168 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "ac86ca53dc52c7c54bd993faa2daf0b9" } Frame { msec: 1184 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "7e20361da8a49f9699e290673bdd60ee" } Frame { msec: 1200 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "aa5f6e188212cee2dbf8d1e52692ac88" } Frame { msec: 1216 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "14018d9d2370c46b5f0c280cb169225e" } Frame { msec: 1232 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1248 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1264 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1280 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1296 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1312 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1328 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1344 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1360 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1376 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1392 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1408 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1424 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1440 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1456 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1472 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1488 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1504 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1520 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1536 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1552 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1568 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1584 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1600 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 109; y: 247 - modifiers: 0 - sendToViewport: true + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1616 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1632 - hash: "c91921dba899d7a86de3cd013773889f" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1648 - hash: "888c0fc86155e10b5fc577ef6ec5755a" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1664 - hash: "7fd61a8910bf7b0d2bf57653a268c5d8" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1680 - hash: "f42f5073f90a423adf011d0e168c8a9b" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1696 - hash: "a3d89deb6cfa2bbbaa1d7d5b5e5b48d5" + hash: "29ad10997d8045ccfd69fe78475dd2f3" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 27; y: 19 + modifiers: 0 + sendToViewport: true } Frame { msec: 1712 - hash: "f10e997d7a17c18251a32d58b018105a" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1728 - hash: "09ffb57d5f67edfa34d6aad36a002554" + hash: "29ad10997d8045ccfd69fe78475dd2f3" } Frame { msec: 1744 - hash: "01f3a2f5b9815f1397a907b099339360" + hash: "7b99c5dd3750291043f62479314ccb2f" } Frame { msec: 1760 - hash: "58c0910c49748edd2ef8472960179472" + hash: "d3409cf579db724440f3f59cfc902974" } Frame { msec: 1776 - hash: "cc82c5f7f93c5bc1af1c6c509268566a" + hash: "2ad2a4b3f933e3a27acb232adf06eb7f" } Frame { msec: 1792 - hash: "3ef272c6439b85fbc166375d1b98403c" + hash: "35074cf4f2753c77e112092e92630c71" } Frame { msec: 1808 - hash: "98c576f0900e4b8752d1f951bb6bf391" + hash: "f7038f7e6d7b6498ff1a4098c79f9d2a" } Frame { msec: 1824 - hash: "4d66dd64d8736ef50163e08723873478" + hash: "fec23135661d2368cf3cf64f7d62af73" } Frame { msec: 1840 - hash: "9a5d8455b6763456185625811253e0b1" + hash: "4143603bf203319f423d21f204fac3b0" } Frame { msec: 1856 - hash: "77e85731efa786a2492aae19a87523c6" + hash: "f3d41bdc8ae60f6fbf109206ac9023de" } Frame { msec: 1872 - hash: "f3199d0c860f1236e0b9472bef8785bc" + hash: "41064ea276aabfba45966130d2ec4b06" } Frame { msec: 1888 - hash: "f3199d0c860f1236e0b9472bef8785bc" + hash: "dfbe242fc8bc3c70207be901ac2db139" } Frame { msec: 1904 - hash: "32ccdab249268b01d9f1658a736052f1" + hash: "a8a9f435774def4255ae433646cc5263" } Frame { msec: 1920 @@ -494,247 +502,239 @@ VisualTest { } Frame { msec: 1936 - hash: "db3010ef552146df938c237f6c92bff5" + hash: "895ad99b422c5c6637f6569f391b4011" } Frame { msec: 1952 - hash: "101e8595d0301e88376ec52ba9361f84" + hash: "9dbe8b62ec467f5b95b4bb8ab9fbab68" } Frame { msec: 1968 - hash: "119d548c59baa7e47266d2ceca663288" + hash: "4ba1bf769de9bc45630485d06642dc30" } Frame { msec: 1984 - hash: "f141fafe102a0b9a2bf33e8c3fc800ff" + hash: "4ba1bf769de9bc45630485d06642dc30" } Frame { msec: 2000 - hash: "b01f9ca8d4fbff17b3d48c70898a044d" + hash: "4ba1bf769de9bc45630485d06642dc30" } Frame { msec: 2016 - hash: "cf67954a2d1b22e8d2cfdc26419bafb8" + hash: "4ba1bf769de9bc45630485d06642dc30" } Frame { msec: 2032 - hash: "7680b2b5a63dea13d733947297e01355" + hash: "985c6ee9cb5f259135a4eeb3c2f1d271" } Frame { msec: 2048 - hash: "af1c017acf6b3c8cff86c9ceb60db3cb" + hash: "9de26e2d70bd285116df820ca87c2e4d" } Frame { msec: 2064 - hash: "0b23ec51f71fddae5e2238ab5754f1db" + hash: "a8753ac7d026d94224c488fa16d5774a" } Frame { msec: 2080 - hash: "976643961ecbdc86335180ba812b874e" + hash: "aad38d9678bdeeed750f381a40e22a61" } Frame { msec: 2096 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "abddb88af9b07e782f6c2103479abe3d" } Frame { msec: 2112 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "02e3d071d5fc0832041688950d3610b8" } Frame { msec: 2128 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "b6ee5f74a5e91bcf6b9aad3cbb5d683f" } Frame { msec: 2144 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "e8e6b7d7f81895ae556936ba5e0848a5" } Frame { msec: 2160 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "a858eee4b2753915ec84d2ffa098260c" } Frame { msec: 2176 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "a858eee4b2753915ec84d2ffa098260c" } Frame { msec: 2192 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "a858eee4b2753915ec84d2ffa098260c" } Frame { msec: 2208 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2224 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2240 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2256 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2272 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2288 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2304 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2320 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2336 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2352 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2368 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2384 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2400 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2416 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2432 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2448 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2464 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2480 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2496 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2512 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2528 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2544 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2560 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2576 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2592 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2608 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2624 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2640 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2656 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2672 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2688 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2704 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2720 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2736 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2752 - hash: "aeed60899abb6c486a5b1df81f9a0224" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 109; y: 247 - modifiers: 0 - sendToViewport: true + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2768 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2784 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2800 - hash: "ab924ae435262e76381c2e4af5d64342" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2816 - hash: "d60758fc12471a19d31c85f058f2ded7" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2832 - hash: "c62e2956f8eb5d2c8cd76ba05c5929d5" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2848 - hash: "f2967ee7e035a9ff258116a2706529f8" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2864 - hash: "885c4705c6c29f69c56c44abc1251d75" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2880 @@ -742,198 +742,74 @@ VisualTest { } Frame { msec: 2896 - hash: "f4af6871e522511f95bc4c5abfc2a562" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2912 - hash: "b27e1e7e0d90468525309528ccfe2823" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2928 - hash: "78e7d84a4466258b40315fe61b7ca15c" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2944 - hash: "471013d921d8d6e7468fd6aba0b75c71" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2960 - hash: "856048da893c9136ac5740bc89b64128" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2976 - hash: "32ccdab249268b01d9f1658a736052f1" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 2992 - hash: "2264fa3acd979f104633c1301a0efd8f" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3008 - hash: "f3199d0c860f1236e0b9472bef8785bc" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3024 - hash: "ad899d1ecaa43a5541be7b70413caee5" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3040 - hash: "4e652524c992f5ee1b987275ca509728" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3056 - hash: "a44b3dec2a016694bc8553a51b29d46c" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3072 - hash: "7fbe20346bc3c28c345e0797b55599f3" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3088 - hash: "bcff18ad433bb4f08126ee66efb037d1" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3104 - hash: "836666c64f73c38e87de95944ff2fe72" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3120 - hash: "4379982d23db239b1741b5d72c53e160" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3136 - hash: "0ed9476337214e1493c1510b8a4c90f8" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3152 - hash: "dab637406577a1924c7dbb30680e1af3" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } Frame { msec: 3168 - hash: "38b7e5894cf49a19ac055264d6447b9f" - } - Frame { - msec: 3184 - hash: "5f207d1dfad4907f200d76104881bf56" - } - Frame { - msec: 3200 - hash: "3434fc7f81e859722585dae97c557864" - } - Frame { - msec: 3216 - hash: "7c775b9be8c5293d4962324574267c22" - } - Frame { - msec: 3232 - hash: "da0ff6955c2e4cd86421bdb9053f56e6" - } - Frame { - msec: 3248 - hash: "a1297d525a3ad41abbbb7c2f15efd4fb" - } - Frame { - msec: 3264 - hash: "5326b220995b2a1eaa308ad10fd353fa" - } - Frame { - msec: 3280 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3296 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3312 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3328 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3344 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 3360 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3376 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3392 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3408 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3424 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3440 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3456 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3472 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3488 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3504 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3520 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3536 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3552 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3568 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3584 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3600 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3616 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Frame { - msec: 3632 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e5ac43e0f553886bcb2b4016f7e3414" } } diff --git a/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml index 6c3e52d..3ff4214 100644 --- a/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/propertyAction/propertyAction-visual.qml @@ -1,17 +1,17 @@ import QtQuick 1.0 /* -This test starts with a red rectangle at 0,0. It should animate a color change to blue, +This test starts with a 30x40 rectangle at 0,0. It should animate a width change to 40, then jump 50 pixels right, and then animate moving 50 pixels down. Afer this it should do an exact visual reversal (animate up 50 pixels, jump left 50 pixels, and then animate -a change back to red). +a change back to 30px wide). */ Rectangle { - width: 400; height: 400 + width: 100; height: 100 Rectangle { id: myRect - width: 100; height: 100 + width: 30; height: 40 color: "red" } MouseArea { @@ -24,8 +24,7 @@ Rectangle { when: clickable.pressed PropertyChanges { target: myRect - x: 50; y: 50 - color: "blue" + x: 50; y: 50; width: 40 } } @@ -33,7 +32,7 @@ Rectangle { to: "state1" reversible: true SequentialAnimation { - ColorAnimation {} + NumberAnimation { properties: "width"; easing.type: "InOutQuad" } PropertyAction { properties: "x" } NumberAnimation { properties: "y"; easing.type: "InOutQuad" } } diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png index d8be67b..3545e5a 100644 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.0.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png index e5494aa..c7da359 100644 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.1.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png index fbb03de..d51e8e4 100644 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.2.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png index d8be67b..c7da359 100644 Binary files a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.3.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.4.png b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.4.png new file mode 100644 index 0000000..8552406 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.4.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml index 13ba289..774cc13 100644 --- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml +++ b/tests/auto/declarative/qmlvisual/animation/qtbug10586/data/qtbug10586.qml @@ -6,239 +6,335 @@ VisualTest { } Frame { msec: 16 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 32 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 48 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 64 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 80 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 96 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 112 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 128 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 144 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 160 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 176 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 192 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 208 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 224 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 240 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 256 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 272 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 288 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 304 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 320 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 336 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 352 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 368 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 384 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 400 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 416 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 432 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 448 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 464 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 480 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 496 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 512 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 528 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 544 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 560 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 576 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 592 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 608 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 624 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 640 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 656 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 672 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 688 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 704 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 155; y: 261 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 154; y: 260 + modifiers: 0 + sendToViewport: true } Frame { msec: 720 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 153; y: 260 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 144; y: 258 + modifiers: 0 + sendToViewport: true } Frame { msec: 736 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 126; y: 254 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 105; y: 249 + modifiers: 0 + sendToViewport: true } Frame { msec: 752 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "3e70a9fcacf40284c4bbf6a8376edfec" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 76; y: 247 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: 245 + modifiers: 0 + sendToViewport: true } Frame { msec: 768 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "3b65fbe0980fabd4bcba5757323c8fcf" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 20; y: 243 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: -25; y: 241 + modifiers: 0 + sendToViewport: true } Frame { msec: 784 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0a79d810c2ff479fcc42d40125f6ccda" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: -68; y: 238 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: -68; y: 238 + modifiers: 0 + sendToViewport: true } Frame { msec: 800 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "9e5b85c715a2a573f0dd3bc7e342625f" } Frame { msec: 816 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "371faa0d3bb3815470ef48713f0363b6" } Frame { msec: 832 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "2f948f765ec2d861841439f03e402bcf" } Frame { msec: 848 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "74dbda8d6d005fb8fb307fc4cf146e1e" } Frame { msec: 864 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "bdf1f0db0411a3456ddc0efff0584e9c" } Frame { msec: 880 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "cb5c7c9fc7e4707f1d8b7bbb9f19065d" } Frame { msec: 896 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "f60df4e47f5b9d16b576ab4107a0c11c" } Frame { msec: 912 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "6fcc1b9d2d1829c48cdfefba632c6a91" } Frame { msec: 928 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "e53272919fa23f7023ce66d3b15c2f05" } Frame { msec: 944 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "dc043143bf35a808fcdf2b692753dc86" } Frame { msec: 960 @@ -246,279 +342,327 @@ VisualTest { } Frame { msec: 976 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "8a5247a3847809f56a2fdce0f4ac9c99" } Frame { msec: 992 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d4122caf5fc8cfd59e6048b830acc3fb" } Frame { msec: 1008 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1024 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1040 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1056 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1072 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1088 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1104 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1120 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1136 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1152 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1168 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1184 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1200 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1216 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1232 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1248 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1264 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1280 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1296 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1312 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 174; y: 204 - modifiers: 0 - sendToViewport: true + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1328 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1344 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1360 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1376 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "be218d7ebfb01cf288b284cf40337913" } Frame { msec: 1392 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 204 - modifiers: 0 - sendToViewport: true + hash: "bd1af1e9187a58841b33862047ad4ae3" } Frame { msec: 1408 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 204 - modifiers: 0 - sendToViewport: true + hash: "6154c00e9290393daaf1e7a0618874c7" } Frame { msec: 1424 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "6ed42be04df8a4cc15d9d885e4b157f5" } Frame { msec: 1440 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 204 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 130; y: 204 - modifiers: 0 - sendToViewport: true + hash: "2187c8e798b2b60567284af6923a9418" } Frame { msec: 1456 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "39ef8ac3108be3c5b8c85aaa06539952" } Frame { msec: 1472 - hash: "09d6255a3fc628c52a386a878bdecb4e" + hash: "a30c2d3bbebdf3ae84c8148dfff53abf" } Frame { msec: 1488 - hash: "6d5e292fecfc2ec45a5695fa9e5173f3" + hash: "f9b5ef6675c326a3c6462f8ad173c875" } Frame { msec: 1504 - hash: "848051f677a2172d8cbe75a451026459" + hash: "eab82ad570e59a68c41450df5146aea6" } Frame { msec: 1520 - hash: "95b1a914c1d33866cd728ad1ad612884" + hash: "2caf2dae27a5603de6665c1cafbe6576" } Frame { msec: 1536 - hash: "780a03cd9aec2f0f7f61a51629261385" + hash: "601b397404250d01ec9e483683c32776" } Frame { msec: 1552 - hash: "c7ea3a54cfb618bb02d93f6e17e2a74d" + hash: "06dd6ec2e0f016fc0cb6bbce27e3dcd3" } Frame { msec: 1568 - hash: "85ea65c275c6217c44038c1bc87f2356" + hash: "9ebba3740bb33db00ebb62706e1d27a5" } Frame { msec: 1584 - hash: "af77f08c99d41295ef6c99089c322f61" + hash: "9ebba3740bb33db00ebb62706e1d27a5" } Frame { msec: 1600 - hash: "1427c98bee08b57e94cea220b7c017e4" + hash: "06dd6ec2e0f016fc0cb6bbce27e3dcd3" } Frame { msec: 1616 - hash: "fa1062676e7f2e429e3f5f3babbccc5f" + hash: "601b397404250d01ec9e483683c32776" } Frame { msec: 1632 - hash: "016c51ef6ad6729db5328b199c18c830" + hash: "a80dcdc8ce2c4e2653e01423ea053eba" } Frame { msec: 1648 - hash: "94a3647a5c98770d60a2b5f17281e87e" + hash: "8fe7230266084f07f8fd9c6991461163" } Frame { msec: 1664 - hash: "fc075081b0b7d8bc2556250962e52327" + hash: "5d9ed702af5c520f4b268077b957586a" } Frame { msec: 1680 - hash: "0ef1d28912378939e0f82387164ace07" + hash: "6cccabc3a6ac3eef95794e6712404234" } Frame { msec: 1696 - hash: "d55312d705b8ed5d188caf4f41820e0f" + hash: "8bfc492064d6c93727b59fd3ca2a8dc8" } Frame { msec: 1712 - hash: "41c9c187b208ec1cef4e9ffe976c38ce" + hash: "e506cf18d730f4ab1e8e803b7663238a" } Frame { msec: 1728 - hash: "6166be5f86adfc6b4c9438358529e5ce" + hash: "2187c8e798b2b60567284af6923a9418" } Frame { msec: 1744 - hash: "aaa81e964b5c5ef2ebf2c200e7a47c26" + hash: "6ed42be04df8a4cc15d9d885e4b157f5" } Frame { msec: 1760 - hash: "65dbdd2495e12b7dd7bbc31e1b2fa5b1" + hash: "b887f64a8e44a243f11e37692d54d2d1" } Frame { msec: 1776 - hash: "b2d10e7cbccb0fdf3286fef81999d37e" + hash: "d5f157d073cd8de8cc58124455a38675" } Frame { msec: 1792 - hash: "e239d20ee23a6ff680ded67182066430" + hash: "d39f213d4b91229bd76d48589a067623" } Frame { msec: 1808 - hash: "d4f2df7f9c7a7a9e98975e44393a2e37" + hash: "7b2413f4fd12fd4d38fc40ebbbd893f3" } Frame { msec: 1824 - hash: "9c1ce93161e16704feb7d37cd01acbe9" + hash: "bd1af1e9187a58841b33862047ad4ae3" } Frame { msec: 1840 - hash: "94e148b49b53cab2491a974eb85ab489" + hash: "1e54f1b5ef6bb7085a36d433af94a9b3" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 145; y: 286 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 286 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 195; y: 288 + modifiers: 0 + sendToViewport: true } Frame { msec: 1856 - hash: "9a1dfb6b09218c83c89f9a2d32f92ef6" + hash: "d84bf962449716cc64cb34b285926c48" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 224; y: 290 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 253; y: 290 + modifiers: 0 + sendToViewport: true } Frame { msec: 1872 - hash: "7cb78e2e5f6d35d456c95f2bd8652eb5" + hash: "d84bf962449716cc64cb34b285926c48" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 286; y: 292 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 315; y: 292 + modifiers: 0 + sendToViewport: true } Frame { msec: 1888 - hash: "e3a3be52fda460050db6d2d9947d3cf8" + hash: "d84bf962449716cc64cb34b285926c48" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 346; y: 294 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 385; y: 294 + modifiers: 0 + sendToViewport: true } Frame { msec: 1904 - hash: "6651ca6a31f281676a5ba312c306ee91" + hash: "d84bf962449716cc64cb34b285926c48" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 420; y: 294 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 420; y: 294 + modifiers: 0 + sendToViewport: true } Frame { msec: 1920 @@ -526,287 +670,239 @@ VisualTest { } Frame { msec: 1936 - hash: "feddbf269adfc8bb1b1a3656b5b5736d" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1952 - hash: "4710e2abb2d907686a5ef58c3d22b391" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1968 - hash: "2a479b302b425df282502e71b4ad7fbf" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 1984 - hash: "a912a2993c3a2a280e83caee932ff707" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2000 - hash: "022504443e57ee5593e5054961265a15" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2016 - hash: "a47ccf22b66f7d62c017aa1da19904d2" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2032 - hash: "133c29b49f3a98fb5eca71fff217252d" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2048 - hash: "058c2a759a415d548fec309bfb255a70" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2064 - hash: "662be553c32b0145b3f4fee9bb0d659d" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2080 - hash: "7c7460ff21e7c27af2326b399b5b9791" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2096 - hash: "e6b9049949a0ee4ff8a0fcaf5464f479" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2112 - hash: "39db5e52253948ca5059d9c102bedea0" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2128 - hash: "eb1939458851780b7bb51ee50f0a3bd7" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2144 - hash: "feaaa4fab78c73321dd9ab820ec2b746" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2160 - hash: "221c8afbedcfb8ca7e87e279e5406103" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2176 - hash: "41c8d2686ddb882981a7d3a5c8c69005" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2192 - hash: "abb2d6a76af5114b191a4373f95cdb6f" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2208 - hash: "7d3b1fc34082a160cbea4409af85fc9c" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2224 - hash: "55e07e33b231e3c7925c7b3cfada4839" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2240 - hash: "55e07e33b231e3c7925c7b3cfada4839" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2256 - hash: "3a616453adf2b16e23654f515d797e99" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2272 - hash: "b3461a3c55b9603905ad208c7396e1a9" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2288 - hash: "b3461a3c55b9603905ad208c7396e1a9" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2304 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2320 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2336 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2352 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2368 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2384 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2400 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2416 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2432 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2448 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2464 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2480 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2496 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d84bf962449716cc64cb34b285926c48" } Frame { msec: 2512 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "4c6ff9097308cb3840ef39a081bdc94f" } Frame { msec: 2528 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "93a2b229f21b76354a8cf94f150c69e2" } Frame { msec: 2544 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "e65350b411affe4274499fd577ccf842" } Frame { msec: 2560 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "499968d33068c7e08898a19cce691766" } Frame { msec: 2576 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "fe884e410a8c7b2167f814ebdf7700af" } Frame { msec: 2592 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "c0225009d42b670f5f1ce0871be90db6" } Frame { msec: 2608 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "320d205e147fa6470d71538d686ff458" } Frame { msec: 2624 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "ec0a1fa273e6568d041ee2497a715704" } Frame { msec: 2640 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "159c558e0d1b59db8e9459c4203d56f3" } Frame { msec: 2656 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "00d237cd7ad6df807b4f9281bbc72992" } Frame { msec: 2672 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "c472991635460a93f744538328cd89f4" } Frame { msec: 2688 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "318ba06f590d4e3a1dea6affcc60243b" } Frame { msec: 2704 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "d344b62df42e88e14d45def62565791a" } Frame { msec: 2720 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "5c2658568080a663440e09acbcf2fa8d" } Frame { msec: 2736 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 29; y: 239 - modifiers: 0 - sendToViewport: true + hash: "8e64867dabeaeae51149362c5f42545b" } Frame { msec: 2752 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "abd81e11370469803bad5de9a9c77f63" } Frame { msec: 2768 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "1cce356ebd61d7c88edb84c58a564def" } Frame { msec: 2784 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "0ab027423651612ceba2b35e57d75d91" } Frame { msec: 2800 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" + hash: "515b6375cf0fefc8580d62cd5b2680f7" } Frame { msec: 2816 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 35; y: 241 - modifiers: 0 - sendToViewport: true + hash: "f44c12b701e73a7e4d35fd10ea0f5003" } Frame { msec: 2832 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 63; y: 243 - modifiers: 0 - sendToViewport: true + hash: "76bee658c9915fda03967fcb2e595683" } Frame { msec: 2848 - hash: "fbd9a45fc6b5a96b4e521dc5c68dbf7e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 244 - modifiers: 0 - sendToViewport: true + hash: "064d5525e1fa7c8ec5f571a56e666754" } Frame { msec: 2864 - hash: "6f1a516cde59f142f5ac8b4e824a2bab" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 243 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 158; y: 243 - modifiers: 0 - sendToViewport: true + hash: "ffd23fa2b1281cd120d6b11912bb8641" } Frame { msec: 2880 @@ -814,338 +910,198 @@ VisualTest { } Frame { msec: 2896 - hash: "3f6d74079d8ec38eb1f12ddde18f864a" + hash: "c6d306961e1e574d8c57fd849029121c" } Frame { msec: 2912 - hash: "b58ac3c0ab5e556be249bfdc3fb85c56" + hash: "1fcf6b150607c0ea807026f8f9e28f61" } Frame { msec: 2928 - hash: "291dd50b6dd4ee71265631ce338f16d2" + hash: "e16a333231b3c65c85ff498e941f8c05" } Frame { msec: 2944 - hash: "6af30d160a3c1126718c62fcd5e85a89" + hash: "3e49589f1b4a6b8212f5c10d234f8ffa" } Frame { msec: 2960 - hash: "3f09b75f49f53e83d53fdc8cb2a1a2a7" + hash: "02ce2b719ddbd977bb933882a40024f5" } Frame { msec: 2976 - hash: "7c9e03c8bc2691253eb5be656bbcfaa5" + hash: "a161119d1f022885db1af71ededa2b8c" } Frame { msec: 2992 - hash: "95c1ca6b2550f5575c2297acad5bfd0f" + hash: "62a006aab9629dc1e8359c52664ee34b" } Frame { msec: 3008 - hash: "be05537c0b9246b0c4d48ae344275bb9" + hash: "62a006aab9629dc1e8359c52664ee34b" } Frame { msec: 3024 - hash: "59de97652e25f49b1bf016a9b124d324" + hash: "b98a2c58933bd4f49ed7a1d72bff7e66" } Frame { msec: 3040 - hash: "7194bacd56906f83948844224ce6a3e7" + hash: "b98a2c58933bd4f49ed7a1d72bff7e66" } Frame { msec: 3056 - hash: "09fe50cbbcc7432d6fa6bbe875eae5e3" + hash: "b98a2c58933bd4f49ed7a1d72bff7e66" } Frame { msec: 3072 - hash: "a95c1f6ca5a638c4d9229321a84e51a4" + hash: "b98a2c58933bd4f49ed7a1d72bff7e66" } Frame { msec: 3088 - hash: "c439b31b64510ce025ad326364e8f690" + hash: "b98a2c58933bd4f49ed7a1d72bff7e66" } Frame { msec: 3104 - hash: "c28c637ff5f0ae6d4532fba13cfb8ea4" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3120 - hash: "2e095e9433e1f504163aebc8450be923" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3136 - hash: "5fb49164c1bad4bb96a13cfbb336312b" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3152 - hash: "34b7976b3dbf0c5462ddf77153d9d2c9" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3168 - hash: "d4007272d676a896c99adb66afa0c10b" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3184 - hash: "07638f1f5eb5786a12cbc74414fe29b5" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3200 - hash: "1fe90791c573865f425ef0e43faf7a1c" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3216 - hash: "b149986c7b395106a808b1fcd1d8bcb2" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3232 - hash: "ecb2b6d44eafb8a0b5493520b64e5e5b" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3248 - hash: "fc66b2e38d477c16584eee4f541df511" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3264 - hash: "023152c61ad6cd0b8726e6c8fa6043a4" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3280 - hash: "b788f8a7e1e42f768fd1fe1198ca0344" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3296 - hash: "4f7f8b7f5bb78bb9327b6fa8142ce3a2" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3312 - hash: "30f041278c08174671568a0dfb7cbdf7" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3328 - hash: "30f041278c08174671568a0dfb7cbdf7" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3344 - hash: "6ecd90fc89ab9b6c4813fa6a6e9dffdb" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3360 - hash: "6ecd90fc89ab9b6c4813fa6a6e9dffdb" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3376 - hash: "6d79d9d0ba8da0b5654b39768b25591f" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3392 - hash: "6d79d9d0ba8da0b5654b39768b25591f" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3408 - hash: "6d79d9d0ba8da0b5654b39768b25591f" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3424 - hash: "6d79d9d0ba8da0b5654b39768b25591f" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3440 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3456 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3472 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3488 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3504 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3520 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3536 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3552 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3568 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3584 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3600 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3616 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3632 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3648 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } Frame { msec: 3664 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3680 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3696 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3712 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3728 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3744 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3760 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3776 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3792 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3808 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3824 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3840 - image: "qtbug10586.3.png" - } - Frame { - msec: 3856 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3872 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3888 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3904 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3920 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3936 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3952 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3968 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 3984 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4000 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4016 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4032 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4048 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4064 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 4080 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4096 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4112 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4128 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4144 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4160 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4176 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" - } - Frame { - msec: 4192 - hash: "cba9afe3f351e6cd6dc72d7f263401b0" + hash: "0755ae54acb6af587bbf7ca509146e0f" } } diff --git a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml index 9ccebfa..65caedd 100644 --- a/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml +++ b/tests/auto/declarative/qmlvisual/animation/qtbug10586/qtbug10586.qml @@ -1,5 +1,6 @@ import QtQuick 1.0 +/* This test checks that animations do occur while the flickable is flicking */ Rectangle { width: 200 height: 400 @@ -11,11 +12,6 @@ Rectangle { border.color: "black" border.width: 10 width: 1000; height: 1000 - rotation: 90 - gradient: Gradient { - GradientStop { position: 0; color: "black" } - GradientStop { position: 1; color: "white" } - } } } Rectangle { diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.0.png b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.0.png new file mode 100644 index 0000000..e7571f2 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.0.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.1.png b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.1.png new file mode 100644 index 0000000..60d09e9 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.1.png differ diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml index d1de5d0..82303ef 100644 --- a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction-visual.qml @@ -6,530 +6,510 @@ VisualTest { } Frame { msec: 16 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 32 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 48 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 64 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 80 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 96 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 112 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 128 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 144 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 160 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 176 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 192 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 208 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 224 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 240 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 256 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 272 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 288 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 304 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 320 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 336 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 352 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 368 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 384 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 400 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 416 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 432 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 448 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 54; y: 52 + modifiers: 0 + sendToViewport: true } Frame { msec: 464 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c5d2b291578c11c11452c29dc02bcad9" } Frame { msec: 480 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "650770d62a63031754b3c68f666a5805" } Frame { msec: 496 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "eb28945becabee0dffe618632d4db061" } Frame { msec: 512 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "6c7b66dff531723362418dacd23ea59e" } Frame { msec: 528 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "093bd3dd02a6d9f4dbd75a329bbf63f5" } Frame { msec: 544 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "5328b1f3932c8bf817a5031102e21c25" } Frame { msec: 560 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "ee2b8dc4ebdaaed41ae820385f56db83" } Frame { msec: 576 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "adf71c703dff4514d6ae247fd6b89030" } Frame { msec: 592 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c93d78e604406a3c61c2b34e5e0893a4" } Frame { msec: 608 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "c91dbb897289d2949d08c6381583ad5e" } Frame { msec: 624 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1e3a370e3d390e8d73731d659fae5908" } Frame { msec: 640 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "e6d3505120260677f5f1355abf0f2b1d" } Frame { msec: 656 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "251d68b91b37ef95ff61055f7b2ba0b5" } Frame { msec: 672 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "333a25691bafa88fbc92a153886c3b47" } Frame { msec: 688 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "e63367e5001732975bc4c002c079dbd8" } Frame { msec: 704 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "04e25f2fd913c38ee24558b52fb3ed37" } Frame { msec: 720 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "739f155ad3d703fa0255afed51baf51c" } Frame { msec: 736 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "739f155ad3d703fa0255afed51baf51c" } Frame { msec: 752 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "16de427e26afa1a1d91541fca1537033" } Frame { msec: 768 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "11a874ab1c429e1bcf5498808f3c42f7" } Frame { msec: 784 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "e97f33a71bf889815782c17067bcd736" } Frame { msec: 800 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "9f2f0728689a5ff76f87b13c92e9fd40" } Frame { msec: 816 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "9186cd14c3d9f2ad560be047cc483b50" } Frame { msec: 832 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "af2eb37824ad3567ce9db0329f647d50" } Frame { msec: 848 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "f09d264ed5f44313c19f2f985a26b9cd" } Frame { msec: 864 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "3ed8b3051d0d603bd514783fe04124a7" } Frame { msec: 880 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "38c7f8d39fd9a77400138da4e3ebb963" } Frame { msec: 896 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "6682f53fdda2d8662a31b725d23b08f6" } Frame { msec: 912 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "0f16d2640b51c9ada08c7aa0e8853d86" } Frame { msec: 928 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "22b9025d523dd1adb87f9b4c89295b29" } Frame { msec: 944 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 960 - image: "scriptAction.0.png" + image: "scriptAction-visual.0.png" } Frame { msec: 976 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 992 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1008 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1024 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1040 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1056 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1072 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1088 - hash: "55b713dcb7c810bf126e06cc97d26d24" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 146; y: 259 - modifiers: 0 - sendToViewport: true + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1104 - hash: "55b713dcb7c810bf126e06cc97d26d24" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1120 - hash: "9850cd8ed4643900409d1a87ef0bc4cf" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1136 - hash: "1cf03396b01e931e4e7e8e7e57e19c5f" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1152 - hash: "25fe648b85ec2d82621853dcbdbf695a" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1168 - hash: "1ca701e56fe387d5849f6933eb53aee9" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1184 - hash: "b39ecb792659a053a8985e2a849d6d51" + hash: "1761f6606bbdf5772594cf96412337ca" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 54; y: 52 + modifiers: 0 + sendToViewport: true } Frame { msec: 1200 - hash: "9a783432a054beec81cc5687f75a36dc" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1216 - hash: "edbd222d7ba6c6f819ded45fe316d461" + hash: "1761f6606bbdf5772594cf96412337ca" } Frame { msec: 1232 - hash: "eaf20159c4b90f90872bbd514d3a0cec" + hash: "77ab7b0bad67c80c5f685b02e264d333" } Frame { msec: 1248 - hash: "964807dd9b91e765577a773ef1ce2593" + hash: "27c3099b0e9f0607e9ebc983b2613eb9" } Frame { msec: 1264 - hash: "16e12026ab14657b0f36b8315684455d" + hash: "81bd467b2314fb877825323a6120de4a" } Frame { msec: 1280 - hash: "d001a6b2fec3c66baaa45d9ff93b3f63" + hash: "5cd632ac5399826249137ff2f27ef734" } Frame { msec: 1296 - hash: "fef11eb5f635bc11cd9679b7213b3b92" + hash: "3b6732d7539d7b9b6ac13b6f8291b993" } Frame { msec: 1312 - hash: "0a0cd5f5004048d88712cfe6943470c0" + hash: "6bde822175f1ee22a8bb0528d6170a5a" } Frame { msec: 1328 - hash: "0d83178afdae5feaa9915d56c24373ad" + hash: "a8401f0c19db5c395cf122f3fe6f3be2" } Frame { msec: 1344 - hash: "0a9e6e0b7b23ce93dc4e1f886cf9c7d1" + hash: "10e5126a9f97caf19df3d0ec4485222f" } Frame { msec: 1360 - hash: "f3199d0c860f1236e0b9472bef8785bc" + hash: "f7b0bde6f4c9e9c9aecdbf11f0ec525c" } Frame { msec: 1376 - hash: "f3199d0c860f1236e0b9472bef8785bc" + hash: "7501da757e6b0ba3923635765ef63f5b" } Frame { msec: 1392 - hash: "32ccdab249268b01d9f1658a736052f1" + hash: "c66f5f30f7a545fcf0b52debd68d96c1" } Frame { msec: 1408 - hash: "dc98f32a1a2d6e74998123b5232107b0" + hash: "ea679c31fd51733076716a325d2d4dc1" } Frame { msec: 1424 - hash: "db3010ef552146df938c237f6c92bff5" + hash: "01ffc159e0d0796e4de7cffd46685481" } Frame { msec: 1440 - hash: "101e8595d0301e88376ec52ba9361f84" + hash: "c53b75720a772a43a6c7d046ffb4d39b" } Frame { msec: 1456 - hash: "119d548c59baa7e47266d2ceca663288" + hash: "1338c0458f32869e35163a2dcb950b8e" } Frame { msec: 1472 - hash: "f141fafe102a0b9a2bf33e8c3fc800ff" + hash: "1338c0458f32869e35163a2dcb950b8e" } Frame { msec: 1488 - hash: "b01f9ca8d4fbff17b3d48c70898a044d" + hash: "d894739536bb7033d321f8862264b5e6" } Frame { msec: 1504 - hash: "cf67954a2d1b22e8d2cfdc26419bafb8" + hash: "52d5556f4b2404ae896ae36e0bc866ed" } Frame { msec: 1520 - hash: "7680b2b5a63dea13d733947297e01355" + hash: "5ff9d9ab8099b2b9469df9efe672f46d" } Frame { msec: 1536 - hash: "af1c017acf6b3c8cff86c9ceb60db3cb" + hash: "acadb950bd78c6fade9161f8e53628e7" } Frame { msec: 1552 - hash: "0b23ec51f71fddae5e2238ab5754f1db" + hash: "7583b99a5f3aede70fc10728d77f57cc" } Frame { msec: 1568 - hash: "976643961ecbdc86335180ba812b874e" + hash: "f72881eb92792727985482996bf689f9" } Frame { msec: 1584 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "26e0d64d5afeecdc4d93492f1eaaa54f" } Frame { msec: 1600 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "93206a830cf787d00a6bb2d3c91d40bc" } Frame { msec: 1616 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "af0a99b072a754cd0ecb75a7198849c1" } Frame { msec: 1632 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "84adc92e299feeb494b108a009d1b662" } Frame { msec: 1648 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "4fac6d471517625d4f5ce6ed6aaebe0b" } Frame { msec: 1664 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6952c27025740aca006a13da87379f9f" } Frame { msec: 1680 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "3297ed7bffb48a4f2ca90dd81eaf7c7a" } Frame { msec: 1696 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "3297ed7bffb48a4f2ca90dd81eaf7c7a" } Frame { msec: 1712 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1728 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1744 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1760 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1776 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1792 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1808 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1824 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1840 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1856 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1872 - hash: "aeed60899abb6c486a5b1df81f9a0224" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1888 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1904 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1920 - image: "scriptAction.1.png" + image: "scriptAction-visual.1.png" } Frame { msec: 1936 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1952 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } Frame { msec: 1968 - hash: "aeed60899abb6c486a5b1df81f9a0224" - } - Frame { - msec: 1984 - hash: "aeed60899abb6c486a5b1df81f9a0224" - } - Frame { - msec: 2000 - hash: "aeed60899abb6c486a5b1df81f9a0224" - } - Frame { - msec: 2016 - hash: "aeed60899abb6c486a5b1df81f9a0224" - } - Frame { - msec: 2032 - hash: "aeed60899abb6c486a5b1df81f9a0224" - } - Frame { - msec: 2048 - hash: "aeed60899abb6c486a5b1df81f9a0224" + hash: "6741d853f099a5a98fcdf87053b69ec8" } } diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction.0.png b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction.0.png deleted file mode 100644 index 64d6b06..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction.1.png b/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction.1.png deleted file mode 100644 index 1a25c63..0000000 Binary files a/tests/auto/declarative/qmlvisual/animation/scriptAction/data/scriptAction.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml b/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml index 1427c9d..0a14542 100644 --- a/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml +++ b/tests/auto/declarative/qmlvisual/animation/scriptAction/scriptAction-visual.qml @@ -6,10 +6,10 @@ then immediately change blue, and then animate moving 50 pixels down. */ Rectangle { - width: 400; height: 400 + width: 100; height: 100 Rectangle { id: myRect - width: 100; height: 100 + width: 50; height: 50 color: "red" } MouseArea { -- cgit v0.12 From eb286d008cf651bd0496c35fb3139cc37036882f Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Thu, 28 Oct 2010 18:39:35 +1000 Subject: Clean up qmlvisual/focusscope tests Remove text, to make them less platform specific Task-number: QTBUG-14792 --- .../qmlvisual/focusscope/data-MAC/test.0.png | Bin 14875 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test.1.png | Bin 14875 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test.2.png | Bin 14863 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test.3.png | Bin 14877 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test.4.png | Bin 14877 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test.5.png | Bin 14877 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test.qml | 1599 ----------- .../qmlvisual/focusscope/data-MAC/test2.0.png | Bin 5375 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test2.1.png | Bin 5375 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test2.qml | 607 ----- .../qmlvisual/focusscope/data-MAC/test3.0.png | Bin 12749 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.1.png | Bin 12667 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.2.png | Bin 12373 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.3.png | Bin 12150 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.4.png | Bin 11944 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.5.png | Bin 12150 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.6.png | Bin 12373 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.7.png | Bin 12667 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.8.png | Bin 12749 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.9.png | Bin 12710 -> 0 bytes .../qmlvisual/focusscope/data-MAC/test3.qml | 2879 -------------------- .../qmlvisual/focusscope/data-X11/test.0.png | Bin 11501 -> 0 bytes .../qmlvisual/focusscope/data-X11/test.1.png | Bin 11501 -> 0 bytes .../qmlvisual/focusscope/data-X11/test.2.png | Bin 11486 -> 0 bytes .../qmlvisual/focusscope/data-X11/test.3.png | Bin 11500 -> 0 bytes .../qmlvisual/focusscope/data-X11/test.4.png | Bin 11500 -> 0 bytes .../qmlvisual/focusscope/data-X11/test.5.png | Bin 11500 -> 0 bytes .../qmlvisual/focusscope/data-X11/test.qml | 1599 ----------- .../qmlvisual/focusscope/data-X11/test2.0.png | Bin 4656 -> 0 bytes .../qmlvisual/focusscope/data-X11/test2.1.png | Bin 4656 -> 0 bytes .../qmlvisual/focusscope/data-X11/test2.qml | 607 ----- .../qmlvisual/focusscope/data-X11/test3.0.png | Bin 10093 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.1.png | Bin 10051 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.2.png | Bin 9812 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.3.png | Bin 9625 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.4.png | Bin 9458 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.5.png | Bin 9645 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.6.png | Bin 9812 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.7.png | Bin 10051 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.8.png | Bin 10087 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.9.png | Bin 10072 -> 0 bytes .../qmlvisual/focusscope/data-X11/test3.qml | 2879 -------------------- .../qmlvisual/focusscope/data/test.0.png | Bin 14836 -> 1968 bytes .../qmlvisual/focusscope/data/test.1.png | Bin 14836 -> 1968 bytes .../qmlvisual/focusscope/data/test.2.png | Bin 14821 -> 1974 bytes .../qmlvisual/focusscope/data/test.3.png | Bin 14833 -> 0 bytes .../qmlvisual/focusscope/data/test.4.png | Bin 14833 -> 0 bytes .../qmlvisual/focusscope/data/test.5.png | Bin 14833 -> 0 bytes .../declarative/qmlvisual/focusscope/data/test.qml | 1324 +++------ .../qmlvisual/focusscope/data/test2.0.png | Bin 5359 -> 305 bytes .../qmlvisual/focusscope/data/test2.1.png | Bin 5359 -> 0 bytes .../qmlvisual/focusscope/data/test2.qml | 440 +-- .../qmlvisual/focusscope/data/test3.0.png | Bin 12616 -> 1333 bytes .../qmlvisual/focusscope/data/test3.1.png | Bin 12538 -> 994 bytes .../qmlvisual/focusscope/data/test3.2.png | Bin 12257 -> 1156 bytes .../qmlvisual/focusscope/data/test3.3.png | Bin 12035 -> 1057 bytes .../qmlvisual/focusscope/data/test3.4.png | Bin 11877 -> 0 bytes .../qmlvisual/focusscope/data/test3.5.png | Bin 12046 -> 0 bytes .../qmlvisual/focusscope/data/test3.6.png | Bin 12257 -> 0 bytes .../qmlvisual/focusscope/data/test3.7.png | Bin 12538 -> 0 bytes .../qmlvisual/focusscope/data/test3.8.png | Bin 12616 -> 0 bytes .../qmlvisual/focusscope/data/test3.9.png | Bin 12581 -> 0 bytes .../qmlvisual/focusscope/data/test3.qml | 2558 ++++------------- .../auto/declarative/qmlvisual/focusscope/test.qml | 13 +- .../declarative/qmlvisual/focusscope/test2.qml | 26 +- .../declarative/qmlvisual/focusscope/test3.qml | 13 +- 66 files changed, 933 insertions(+), 13611 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.0.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.1.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.2.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.3.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.4.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.5.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.0.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.1.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.0.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.1.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.2.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.3.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.4.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.5.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.6.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.7.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.8.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.9.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test.0.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test.1.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test.2.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test.3.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test.4.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test.5.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.0.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.1.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.0.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.1.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.2.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.3.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.4.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.5.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.6.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.7.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.8.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.9.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test.3.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test.4.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test.5.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test2.1.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test3.4.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test3.5.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test3.6.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test3.7.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test3.8.png delete mode 100644 tests/auto/declarative/qmlvisual/focusscope/data/test3.9.png diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.0.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.0.png deleted file mode 100644 index 0f33d99..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.1.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.1.png deleted file mode 100644 index 0f33d99..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.2.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.2.png deleted file mode 100644 index 06a3dbd..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.3.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.3.png deleted file mode 100644 index e0d02d6..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.4.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.4.png deleted file mode 100644 index e0d02d6..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.5.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.5.png deleted file mode 100644 index e0d02d6..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml deleted file mode 100644 index ee9a550..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test.qml +++ /dev/null @@ -1,1599 +0,0 @@ -import Qt.VisualTest 4.7 - -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/qmlvisual/focusscope/data-MAC/test2.0.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.0.png deleted file mode 100644 index fa711c1..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.1.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.1.png deleted file mode 100644 index fa711c1..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml deleted file mode 100644 index 5d84bfe..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test2.qml +++ /dev/null @@ -1,607 +0,0 @@ -import Qt.VisualTest 4.7 - -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/qmlvisual/focusscope/data-MAC/test3.0.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.0.png deleted file mode 100644 index 9309e37..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.1.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.1.png deleted file mode 100644 index 20e6c8e..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.2.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.2.png deleted file mode 100644 index c7559ac..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.3.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.3.png deleted file mode 100644 index bf2844b..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.4.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.4.png deleted file mode 100644 index beef0bf..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.5.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.5.png deleted file mode 100644 index 1847dc7..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.6.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.6.png deleted file mode 100644 index c7559ac..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.7.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.7.png deleted file mode 100644 index 20e6c8e..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.8.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.8.png deleted file mode 100644 index 9309e37..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.9.png b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.9.png deleted file mode 100644 index 7ac879b..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml deleted file mode 100644 index cd73a3c..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data-MAC/test3.qml +++ /dev/null @@ -1,2879 +0,0 @@ -import Qt.VisualTest 4.7 - -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/qmlvisual/focusscope/data-X11/test.0.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.0.png deleted file mode 100644 index f68f7dc..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.1.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.1.png deleted file mode 100644 index f68f7dc..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.2.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.2.png deleted file mode 100644 index e26c028..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.3.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.3.png deleted file mode 100644 index 9c4b2f2..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.4.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.4.png deleted file mode 100644 index 9c4b2f2..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.5.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.5.png deleted file mode 100644 index 9c4b2f2..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml deleted file mode 100644 index 8d36200..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test.qml +++ /dev/null @@ -1,1599 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 32 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 48 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 64 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 80 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 96 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 112 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 128 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 144 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 160 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 176 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 192 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 208 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 224 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 240 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 256 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 272 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 288 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 304 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 320 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 336 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 352 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 368 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 384 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 400 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 416 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 432 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 448 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 464 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 480 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 496 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 512 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 528 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 544 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 560 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 576 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 592 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 608 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 624 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 640 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 656 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 672 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 688 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 704 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 720 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 736 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 752 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 768 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 784 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 800 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 816 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 832 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 848 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 864 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 880 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 896 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 912 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 928 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 944 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 960 - image: "test.0.png" - } - Frame { - msec: 976 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 992 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1008 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1024 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1040 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1056 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1072 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1088 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1104 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1120 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1136 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1152 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1168 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1184 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1200 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1216 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1232 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1248 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1264 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1280 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1296 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1312 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1328 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1344 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1360 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1376 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1392 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1408 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1424 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1440 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1456 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1472 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1488 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1504 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1520 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1536 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1552 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1568 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1584 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1600 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1616 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1632 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1648 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1664 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1680 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1696 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1712 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1728 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1744 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1760 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1776 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1792 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 1808 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 1824 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1840 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1856 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1872 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1888 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1904 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1920 - image: "test.1.png" - } - Frame { - msec: 1936 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1952 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 1968 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 1984 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2000 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2016 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2032 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2048 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2064 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2080 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2096 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2112 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2128 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2144 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2160 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2176 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2192 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2208 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2224 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2240 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2256 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2272 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2288 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2304 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2320 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2336 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 2352 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 2368 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2384 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2400 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2416 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2432 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2448 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2464 - hash: "9157e592069482e801a091aa69758d26" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 2480 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2496 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2512 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2528 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2544 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2560 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2576 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2592 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2608 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2624 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2640 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2656 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2672 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2688 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2704 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2720 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2736 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2752 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2768 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2784 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2800 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2816 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2832 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2848 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2864 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2880 - image: "test.2.png" - } - Frame { - msec: 2896 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2912 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2928 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2944 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2960 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 2976 - hash: "9157e592069482e801a091aa69758d26" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 2992 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3008 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3024 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3040 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3056 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3072 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3088 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 3104 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3120 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3136 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3152 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3168 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3184 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3200 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3216 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3232 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3248 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3264 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3280 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3296 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3312 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3328 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3344 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3360 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3376 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3392 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3408 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3424 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3440 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3456 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3472 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3488 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3504 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3520 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Frame { - msec: 3536 - hash: "cd2aced96da9032ddd5e2cacf27d045d" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3552 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3568 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3584 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3600 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3616 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3632 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3648 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3664 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3680 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3696 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3712 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3728 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3744 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3760 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3776 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3792 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3808 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3824 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3840 - image: "test.3.png" - } - Frame { - msec: 3856 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3872 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3888 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3904 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3920 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3936 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3952 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3968 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 3984 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4000 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4016 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4032 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4048 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4064 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4080 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4096 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4112 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4128 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4144 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4160 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4176 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 4192 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4208 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4224 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4240 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4256 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4272 - hash: "9157e592069482e801a091aa69758d26" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 4288 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4304 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4320 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4336 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4352 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4368 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4384 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4400 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4416 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4432 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4448 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4464 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4480 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4496 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4512 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4528 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4544 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4560 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4576 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4592 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4608 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4624 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4640 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4656 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4672 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4688 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4704 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4720 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4736 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4752 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4768 - hash: "9157e592069482e801a091aa69758d26" - } - Frame { - msec: 4784 - hash: "9157e592069482e801a091aa69758d26" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 4800 - image: "test.4.png" - } - Frame { - msec: 4816 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4832 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4848 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4864 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4880 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4896 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 4912 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4928 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4944 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4960 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4976 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 4992 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5008 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5024 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5040 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5056 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5072 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5088 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5104 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5120 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5136 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5152 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5168 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5184 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5200 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5216 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5232 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5248 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5264 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5280 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5296 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5312 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5328 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5344 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5360 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5376 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5392 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5408 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5424 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5440 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5456 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5472 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5488 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5504 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5520 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5536 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5552 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5568 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5584 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5600 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5616 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5632 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5648 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5664 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5680 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5696 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5712 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5728 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5744 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5760 - image: "test.5.png" - } - Frame { - msec: 5776 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5792 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5808 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5824 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5840 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5856 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5872 - hash: "0de58b2460574baf17912e90ba8a89b2" - } - Frame { - msec: 5888 - hash: "0de58b2460574baf17912e90ba8a89b2" - } -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.0.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.0.png deleted file mode 100644 index 6be7aef..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.1.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.1.png deleted file mode 100644 index 6be7aef..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml deleted file mode 100644 index 813665d..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test2.qml +++ /dev/null @@ -1,607 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 32 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 48 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 64 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 80 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 96 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 112 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 128 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 144 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 160 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 176 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 192 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 208 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 224 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 240 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 256 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 272 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 288 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 304 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 320 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 336 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 352 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 368 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 384 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 400 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 416 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 432 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 448 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 464 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 480 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 496 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 512 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 528 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 544 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 560 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 576 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 592 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 608 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 624 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 640 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 656 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 672 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 688 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 704 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 720 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 736 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 752 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 768 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 784 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 800 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 816 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 832 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 848 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 864 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 880 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 896 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 912 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 928 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 944 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 960 - image: "test2.0.png" - } - Frame { - msec: 976 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 992 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1008 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1024 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1040 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1056 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1072 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1088 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1104 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1120 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1136 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1152 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1168 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1184 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1200 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1216 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1232 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1248 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1264 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1280 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1296 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1312 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1328 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1344 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1360 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1376 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1392 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1408 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1424 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1440 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1456 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1472 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1488 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1504 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1520 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1536 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1552 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1568 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1584 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1600 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1616 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1632 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1648 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1664 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1680 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1696 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1712 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1728 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1744 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1760 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1776 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1792 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1808 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1824 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1840 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1856 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1872 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1888 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1904 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1920 - image: "test2.1.png" - } - Frame { - msec: 1936 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1952 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1968 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 1984 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2000 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2016 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2032 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2048 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2064 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2080 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2096 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2112 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2128 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2144 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2160 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2176 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2192 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2208 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2224 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2240 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2256 - hash: "529409797f67656145ea88544bb8cc9f" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2272 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2288 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2304 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2320 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2336 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2352 - hash: "529409797f67656145ea88544bb8cc9f" - } - Frame { - msec: 2368 - hash: "529409797f67656145ea88544bb8cc9f" - } -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.0.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.0.png deleted file mode 100644 index 5f93c67..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.1.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.1.png deleted file mode 100644 index 3b4e0e6..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.2.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.2.png deleted file mode 100644 index 54a3934..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.3.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.3.png deleted file mode 100644 index 4f08fd2..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.4.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.4.png deleted file mode 100644 index 9aee1f8..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.5.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.5.png deleted file mode 100644 index 04eb05c..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.6.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.6.png deleted file mode 100644 index 54a3934..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.7.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.7.png deleted file mode 100644 index 3b4e0e6..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.8.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.8.png deleted file mode 100644 index 2df55df..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.9.png b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.9.png deleted file mode 100644 index 91816fd..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml deleted file mode 100644 index 0fba451..0000000 --- a/tests/auto/declarative/qmlvisual/focusscope/data-X11/test3.qml +++ /dev/null @@ -1,2879 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 32 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 48 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 64 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 80 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 96 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 112 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 128 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 144 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 160 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 176 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 192 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 208 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 224 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 240 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 256 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 272 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 288 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 304 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 320 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 336 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 352 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 368 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 384 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 400 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 416 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 432 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 448 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 464 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 480 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 496 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 512 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 528 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 544 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 560 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 576 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 592 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 608 - hash: "ed71dfbe146870d1a0869d60c35ff9d7" - } - Frame { - msec: 624 - hash: "ed71dfbe146870d1a0869d60c35ff9d7" - } - Frame { - msec: 640 - hash: "34796cef9feb92f7f0e2e8d837d87d34" - } - Frame { - msec: 656 - hash: "64fa8f195b57077aa03ca264fec9554a" - } - Frame { - msec: 672 - hash: "ae33318904415e937363787273ecb566" - } - Frame { - msec: 688 - hash: "67c3e1c8c728e7677a3554aadd9795c9" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 704 - hash: "1857db7aa9eefe429d50e5b2ad87064b" - } - Frame { - msec: 720 - hash: "507883a03bef0bc20755da1474731fdf" - } - Frame { - msec: 736 - hash: "dafe7464394460e04d482c1f7a1e9ad0" - } - Frame { - msec: 752 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 768 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 784 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 800 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 816 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 832 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 848 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 864 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 880 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 896 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 912 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 928 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 944 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 960 - image: "test3.0.png" - } - Frame { - msec: 976 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 992 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 1008 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 1024 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 1040 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 1056 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 1072 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 1088 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1104 - hash: "7fb8cb07b6bca30912706cec43984d92" - } - Frame { - msec: 1120 - hash: "7fb8cb07b6bca30912706cec43984d92" - } - Frame { - msec: 1136 - hash: "c1915978cda982f6062790b2a583211b" - } - Frame { - msec: 1152 - hash: "afdb50d740b3dc7be44021d826be4302" - } - Frame { - msec: 1168 - hash: "4682717b9375b4b02a70378ddca30885" - } - Frame { - msec: 1184 - hash: "aede0eebb3948a4a764e255b892b09be" - } - Frame { - msec: 1200 - hash: "b42a147daec14a3da2548fd4de3a9a44" - } - Frame { - msec: 1216 - hash: "2ff70f916f78fe3c199eb96ceb44ce4e" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1232 - hash: "707ac8e58d317b97113903b45a482f6b" - } - Frame { - msec: 1248 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1264 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1280 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1296 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1312 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1328 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1344 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1360 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1376 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1392 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1408 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1424 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1440 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1456 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1472 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1488 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1504 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 1520 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1536 - hash: "91525556fe23764f58b3a3f38a29cd76" - } - Frame { - msec: 1552 - hash: "91525556fe23764f58b3a3f38a29cd76" - } - Frame { - msec: 1568 - hash: "d1dc625bbf46fc51aaf47969ad27a8a4" - } - Frame { - msec: 1584 - hash: "7d868176c7a8363a79ef8b8f4da56867" - } - Frame { - msec: 1600 - hash: "d239e0b0e118d351680c6b4b2bc5d3b2" - } - Frame { - msec: 1616 - hash: "8f6d1640dbc655eb3b326c66fcb97d3c" - } - Frame { - msec: 1632 - hash: "d52b623b8449d71734f72c7bd661a1c4" - } - Frame { - msec: 1648 - hash: "f7c0c77f3b5ed71321edd6bc7b605512" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "8b26397ff1a83baa894f82594a12a190" - } - Frame { - msec: 1680 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1696 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1712 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1728 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1744 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1760 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1776 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1792 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1808 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1824 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1840 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1856 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1872 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1888 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1904 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1920 - image: "test3.1.png" - } - Frame { - msec: 1936 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1952 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1968 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 1984 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 2000 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2016 - hash: "f63308a7cd48a8cb4d413d17120f5a26" - } - Frame { - msec: 2032 - hash: "f63308a7cd48a8cb4d413d17120f5a26" - } - Frame { - msec: 2048 - hash: "2e97db8ed93524dc197e76cc2d270999" - } - Frame { - msec: 2064 - hash: "2b135d90684c0f94b8219c4b835b6da9" - } - Frame { - msec: 2080 - hash: "c700a76932bb3bf72868b9e95d095db2" - } - Frame { - msec: 2096 - hash: "08136d3c3de44ddab23d2d136ba1f310" - } - Frame { - msec: 2112 - hash: "de701d641e004b61a3c0609556f52fe0" - } - Frame { - msec: 2128 - hash: "4f7acd87f4de119ad88a53d2c9881037" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2144 - hash: "deaf3c8a4680ef6f52cb4674a97e0767" - } - Frame { - msec: 2160 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2176 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2192 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2208 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2224 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2240 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2256 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2272 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2288 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2304 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2320 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2336 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2352 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2368 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2384 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2400 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2416 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2432 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2448 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2464 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2480 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2496 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 2512 - hash: "224ade5c942415100b5418a11d043611" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2528 - hash: "fe67b3a48a8a074377be64f619d5922a" - } - Frame { - msec: 2544 - hash: "fe67b3a48a8a074377be64f619d5922a" - } - Frame { - msec: 2560 - hash: "088691f4f46f7a8c9a3b8ea766d9a437" - } - Frame { - msec: 2576 - hash: "bd747ea04c3b36378374f8ea1031458f" - } - Frame { - msec: 2592 - hash: "2ebd0e3373eb75a3ad986e203952f78a" - } - Frame { - msec: 2608 - hash: "b4d89e4f3aef9f351facd13bd83f3022" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2624 - hash: "091de1bd1719e1fa6d914cf9708f4ac6" - } - Frame { - msec: 2640 - hash: "0097d8ed156cb0c78c48dfacc557cba8" - } - Frame { - msec: 2656 - hash: "faeb379e01283cb21ea695e96727918d" - } - Frame { - msec: 2672 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2688 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2704 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2720 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2736 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2752 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2768 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2784 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2800 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2816 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2832 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2848 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2864 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2880 - image: "test3.2.png" - } - Frame { - msec: 2896 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2912 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2928 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2944 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2960 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 2976 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2992 - hash: "b00a29d67edc26e75f5298b2836d4e47" - } - Frame { - msec: 3008 - hash: "b00a29d67edc26e75f5298b2836d4e47" - } - Frame { - msec: 3024 - hash: "6e47c87b5063877a609e8d23ddf2d314" - } - Frame { - msec: 3040 - hash: "06f147a69c3e903905376ef1229290bf" - } - Frame { - msec: 3056 - hash: "5f02ff1a1207f17efd224ccc800b0057" - } - Frame { - msec: 3072 - hash: "6c0860fdb216bb79fd2da4647792628d" - } - Frame { - msec: 3088 - hash: "eb579f67620adb762722428d44a1d841" - } - Frame { - msec: 3104 - hash: "c579017a82e34a471a95f8a116a20b9e" - } - Frame { - msec: 3120 - hash: "bb5c08ff104b230829579dfb8015bdcc" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3136 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3152 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3168 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3184 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3200 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3216 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3232 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3248 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3264 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3280 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3296 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3312 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3328 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3344 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3360 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3376 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3392 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3408 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3424 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3440 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3456 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3472 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 3488 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3504 - hash: "5aa664f268433f2724a1ab2cea1d6d25" - } - Frame { - msec: 3520 - hash: "5aa664f268433f2724a1ab2cea1d6d25" - } - Frame { - msec: 3536 - hash: "9e4854fd0c533efa75aec7d9a8bc41dd" - } - Frame { - msec: 3552 - hash: "c4eee4eca804007dca6e6d9379cbfb1b" - } - Frame { - msec: 3568 - hash: "c59774f00d54c0353b41202a39fc0dbd" - } - Frame { - msec: 3584 - hash: "910e6b5b05530c60874eee00df0d62cf" - } - Frame { - msec: 3600 - hash: "5b606a7a697c6d53fbe42e33333f96cc" - } - Frame { - msec: 3616 - hash: "e1fce42312e8a31d74add4a447dd3df9" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3632 - hash: "6250cb9ea51309922cf0a6647593bfee" - } - Frame { - msec: 3648 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3664 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3680 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3696 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3712 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3728 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3744 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3760 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3776 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3792 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3808 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3824 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3840 - image: "test3.3.png" - } - Frame { - msec: 3856 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3872 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3888 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3904 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3920 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3936 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3952 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3968 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 3984 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4000 - hash: "d6eecfb695deacae4bb2fe5adb2d5c3d" - } - Frame { - msec: 4016 - hash: "d6eecfb695deacae4bb2fe5adb2d5c3d" - } - Frame { - msec: 4032 - hash: "b48f481a8149c03139e29b619dbb3f3c" - } - Frame { - msec: 4048 - hash: "994ba7fc208bbf081d54384d82d0fc07" - } - Frame { - msec: 4064 - hash: "05d30293c12eb6a3e21cebd42bb1f383" - } - Frame { - msec: 4080 - hash: "f2b4140a5d26f241a27e2a3027785559" - } - Frame { - msec: 4096 - hash: "1189e519fd1611c5603e598fbcadca44" - } - Frame { - msec: 4112 - hash: "ee98893d95e55cb76966c0cfe29d237b" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4128 - hash: "9ff3010efeb8707c864def782405ad4c" - } - Frame { - msec: 4144 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4160 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4176 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4192 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4208 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4224 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4240 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4256 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4272 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4288 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4304 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4320 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4336 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4352 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4368 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4384 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4400 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4416 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4432 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4448 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4464 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4480 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4496 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4512 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4528 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4544 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4560 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4576 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4592 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4608 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4624 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4640 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4656 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4672 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4688 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4704 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4720 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4736 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4752 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4768 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4784 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4800 - image: "test3.4.png" - } - Frame { - msec: 4816 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4832 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4848 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4864 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4880 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4896 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4912 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4928 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4944 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4960 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4976 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 4992 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 5008 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 5024 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 5040 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 5056 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 5072 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 5088 - hash: "c842d544f87332bc133833e8966240ee" - } - Frame { - msec: 5104 - hash: "c842d544f87332bc133833e8966240ee" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 5120 - hash: "a857238777462319fcedd4f359ce1a04" - } - Frame { - msec: 5136 - hash: "a857238777462319fcedd4f359ce1a04" - } - Frame { - msec: 5152 - hash: "d9248d1257bf0232dcdf29fca7536ad1" - } - Frame { - msec: 5168 - hash: "0405e029cc4b2fa80761c06fb8898b0d" - } - Frame { - msec: 5184 - hash: "a36fb7e32e6aafbb84b62ef56be3cf70" - } - Frame { - msec: 5200 - hash: "9846c73bbe57277bd36bbca1c489e644" - } - Frame { - msec: 5216 - hash: "8f4840715082c48d520ddb55501cf8eb" - } - Frame { - msec: 5232 - hash: "478fde3a6fd8cecc222b8c16743d231f" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 5248 - hash: "b2bb760c93d26c6db21ce6beccd36b66" - } - Frame { - msec: 5264 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5280 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5296 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5312 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5328 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5344 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5360 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5376 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5392 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5408 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5424 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5440 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5456 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5472 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5488 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5504 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5520 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5536 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5552 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5568 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5584 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5600 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5616 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5632 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5648 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5664 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5680 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5696 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Frame { - msec: 5712 - hash: "1ef605e1a68ff993f4f971a85a6bee97" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 5728 - hash: "4780d8094833831f27d1aff3e0f9689f" - } - Frame { - msec: 5744 - hash: "4780d8094833831f27d1aff3e0f9689f" - } - Frame { - msec: 5760 - image: "test3.5.png" - } - Frame { - msec: 5776 - hash: "93c8d7980de378a055b7ca824882ae4e" - } - Frame { - msec: 5792 - hash: "e0abe402f89c5d84e5a02f0e4bcbd5e3" - } - Frame { - msec: 5808 - hash: "067ca20bcfab459a28af7e8dc2830032" - } - Frame { - msec: 5824 - hash: "d27dc1a08c66cf5f4a84efe3be522ec3" - } - Frame { - msec: 5840 - hash: "639f7555adc7958e807c2e774694fe25" - } - Frame { - msec: 5856 - hash: "b55f5fcbc2284736695049b2cdc9c8ce" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 5872 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 5888 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 5904 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 5920 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 5936 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 5952 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 5968 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 5984 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6000 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6016 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6032 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6048 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6064 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6080 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6096 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6112 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6128 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6144 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6160 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6176 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6192 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6208 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6224 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6240 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6256 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Frame { - msec: 6272 - hash: "f209867bbf74dbe0385655a522e322f1" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 6288 - hash: "48910947dd160b33251c54ff45f6a0db" - } - Frame { - msec: 6304 - hash: "48910947dd160b33251c54ff45f6a0db" - } - Frame { - msec: 6320 - hash: "20b0f988a1517d67a0d3c78ae8af4e5a" - } - Frame { - msec: 6336 - hash: "355b5b161176c31bcbae198b1581f59b" - } - Frame { - msec: 6352 - hash: "19cbb853a93bd062a53d7908df54bfbd" - } - Frame { - msec: 6368 - hash: "13fbe723f288cffd09f0a86b71457161" - } - Frame { - msec: 6384 - hash: "0014ed3b1a868cf75bfffedb52674c5c" - } - Frame { - msec: 6400 - hash: "a1c444be02b90e69319096b8a508947d" - } - Frame { - msec: 6416 - hash: "b88a3f2f3290e4262757b1f5741cb5ce" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 6432 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6448 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6464 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6480 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6496 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6512 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6528 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6544 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6560 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6576 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6592 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6608 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6624 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6640 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6656 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6672 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6688 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6704 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6720 - image: "test3.6.png" - } - Frame { - msec: 6736 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6752 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6768 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6784 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6800 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6816 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6832 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Frame { - msec: 6848 - hash: "dc708a762ba7f1120eb14105571943f8" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 6864 - hash: "a44bb76233c69780c178dddd79cc1968" - } - Frame { - msec: 6880 - hash: "a44bb76233c69780c178dddd79cc1968" - } - Frame { - msec: 6896 - hash: "154b11fd0468aa18d1ef1895f2e2923c" - } - Frame { - msec: 6912 - hash: "fe7ecb02e63fbb7584405e7162f0ee21" - } - Frame { - msec: 6928 - hash: "90b6fea69d106c628a9c7ff23a97e6c2" - } - Frame { - msec: 6944 - hash: "3e233e837e24976d441b6cabc3b74098" - } - Frame { - msec: 6960 - hash: "7a490f7be5c4c0ae09421f884e9adadb" - } - Frame { - msec: 6976 - hash: "462d44603dd661ccf126c81197608056" - } - Frame { - msec: 6992 - hash: "0b7ca73497c37255bccad6787d690236" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 7008 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7024 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7040 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7056 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7072 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7088 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7104 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7120 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7136 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7152 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7168 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7184 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7200 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7216 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7232 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7248 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7264 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7280 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7296 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7312 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7328 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7344 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7360 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7376 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7392 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7408 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7424 - hash: "224ade5c942415100b5418a11d043611" - } - Frame { - msec: 7440 - hash: "224ade5c942415100b5418a11d043611" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 7456 - hash: "95ff2a535a13fcdded94229d53848f7c" - } - Frame { - msec: 7472 - hash: "95ff2a535a13fcdded94229d53848f7c" - } - Frame { - msec: 7488 - hash: "d2386e4137632f15aa5ba9dd1a138a67" - } - Frame { - msec: 7504 - hash: "9f2c40191c1a81f37543f5bfcb852bdf" - } - Frame { - msec: 7520 - hash: "5facdbcc9d7ab0adfcb2ca9d1812a3f5" - } - Frame { - msec: 7536 - hash: "7bbb08470e4f3eeabe710e0ea327c467" - } - Frame { - msec: 7552 - hash: "630abf60d09d3a685d79e6da627b3aa2" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 7568 - hash: "d8aed706508814cdbd1ef0984f112b94" - } - Frame { - msec: 7584 - hash: "d191c2dc3e2edd05bfd649dcfa51029e" - } - Frame { - msec: 7600 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7616 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7632 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7648 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7664 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7680 - image: "test3.7.png" - } - Frame { - msec: 7696 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7712 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7728 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7744 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7760 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7776 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7792 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7808 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7824 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7840 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7856 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7872 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7888 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7904 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7920 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7936 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7952 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Frame { - msec: 7968 - hash: "7ee37281a3f5788305f779bdd33852e5" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 7984 - hash: "fb386abfd73a3feb05b573d16ffa93f9" - } - Frame { - msec: 8000 - hash: "fb386abfd73a3feb05b573d16ffa93f9" - } - Frame { - msec: 8016 - hash: "fa1374155fc5427c72bd09ec5a315172" - } - Frame { - msec: 8032 - hash: "ee35a3edf91865e28b16b9fcab8b4c1c" - } - Frame { - msec: 8048 - hash: "10f2677f7c8efe9f64e401940dec3ef7" - } - Frame { - msec: 8064 - hash: "b2c53bb14a8a6643e69cad2bbb4aacf4" - } - Frame { - msec: 8080 - hash: "7b7c7d167aca55464d1874ed726ec646" - } - Frame { - msec: 8096 - hash: "19a828ca70133801f1f470f6e348857b" - } - Frame { - msec: 8112 - hash: "bc829873ea3cf8ca8484d990d4b80aa2" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 8128 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8144 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8160 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8176 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8192 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8208 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8224 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8240 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8256 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8272 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8288 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8304 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8320 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8336 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8352 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8368 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8384 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8400 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8416 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8432 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8448 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8464 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8480 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Frame { - msec: 8496 - hash: "201b90bc27073e945bb00c85501f4dc8" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 8512 - hash: "d0d487fd66bcf4177188d4862bd74bc0" - } - Frame { - msec: 8528 - hash: "d0d487fd66bcf4177188d4862bd74bc0" - } - Frame { - msec: 8544 - hash: "4a4c2e49e4852748916a4d68710e4ae6" - } - Frame { - msec: 8560 - hash: "0135092d8a296b7121495cc3994a0f9d" - } - Frame { - msec: 8576 - hash: "7e004aae70236568d635ba929e085b2b" - } - Frame { - msec: 8592 - hash: "3e6a4f60a57515a6bfe4d803c7c22da8" - } - Frame { - msec: 8608 - hash: "142b866861f539837b0bdabaf48028e7" - } - Frame { - msec: 8624 - hash: "32a4757602c923366566d9005c78f6cf" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 8640 - image: "test3.8.png" - } - Frame { - msec: 8656 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8672 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8688 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8704 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8720 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8736 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8752 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8768 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8784 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8800 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8816 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8832 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8848 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8864 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8880 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8896 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8912 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8928 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8944 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8960 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8976 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 8992 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 9008 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 9024 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 9040 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Frame { - msec: 9056 - hash: "358a3fbfa70526a40f2179cb2fd100d4" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 9072 - hash: "b1dc330f31b064f1e3ff4e913773cde8" - } - Frame { - msec: 9088 - hash: "b1dc330f31b064f1e3ff4e913773cde8" - } - Frame { - msec: 9104 - hash: "a0419dede71451f36c93960c8ef8c00c" - } - Frame { - msec: 9120 - hash: "b8141758fc93aa1b286fd60f91e6fa7e" - } - Frame { - msec: 9136 - hash: "8b0d786f239c545be3f51622c336f1e1" - } - Frame { - msec: 9152 - hash: "25ec52efac83de4f8cade8f257b93b8e" - } - Frame { - msec: 9168 - hash: "5a1476841b9aaa0e85c397c0447be352" - } - Frame { - msec: 9184 - hash: "d648b0911e6ab78e53121fde8b66b50b" - } - Frame { - msec: 9200 - hash: "f552863ff4b76286d03240409c0a928b" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 9216 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9232 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9248 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9264 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9280 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9296 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9312 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9328 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9344 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9360 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9376 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9392 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9408 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9424 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9440 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9456 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9472 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9488 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9504 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9520 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9536 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9552 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9568 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9584 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9600 - image: "test3.9.png" - } - Frame { - msec: 9616 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9632 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9648 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9664 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9680 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9696 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9712 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9728 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9744 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9760 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9776 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9792 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9808 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9824 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9840 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9856 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9872 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9888 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9904 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9920 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9936 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9952 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9968 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 9984 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10000 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10016 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10032 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10048 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10064 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10080 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10096 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10112 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10128 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10144 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10160 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10176 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10192 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10208 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10224 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10240 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10256 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10272 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10288 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10304 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10320 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10336 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10352 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10368 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10384 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10400 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10416 - hash: "f3b4cab7975190f756c923f16ce4c298" - } - Frame { - msec: 10432 - hash: "f3b4cab7975190f756c923f16ce4c298" - } -} diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.0.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.0.png index 67b99e0..986a164 100644 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.0.png and b/tests/auto/declarative/qmlvisual/focusscope/data/test.0.png differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.1.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.1.png index 67b99e0..986a164 100644 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.1.png and b/tests/auto/declarative/qmlvisual/focusscope/data/test.1.png differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.2.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.2.png index 69f0366..fd28a93 100644 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.2.png and b/tests/auto/declarative/qmlvisual/focusscope/data/test.2.png differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.3.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.3.png deleted file mode 100644 index afe0bd9..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.4.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.4.png deleted file mode 100644 index afe0bd9..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.5.png b/tests/auto/declarative/qmlvisual/focusscope/data/test.5.png deleted file mode 100644 index afe0bd9..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test.qml index 460ba1a..da99cfd 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test.qml @@ -6,239 +6,287 @@ VisualTest { } Frame { msec: 16 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 32 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 48 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 64 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 80 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 96 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 112 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 128 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 144 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 160 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 176 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 192 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 208 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 224 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 240 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 256 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 272 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 288 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 304 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 320 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 336 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 352 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 368 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 384 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 400 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 416 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 432 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 448 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 464 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 480 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 496 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 512 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 528 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 544 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 560 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 576 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" } Frame { msec: 592 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "7d929804a37a70ffd487e95a3be8ea5f" + } + Key { + type: 6 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 608 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 624 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 640 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 656 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 672 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 688 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" + } + Key { + type: 7 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 704 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 720 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 736 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 752 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 768 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 784 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 800 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 816 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 832 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 848 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 864 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 880 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 896 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 912 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 928 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 944 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 960 @@ -246,263 +294,303 @@ VisualTest { } Frame { msec: 976 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 992 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1008 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1024 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1040 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1056 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1072 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1088 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1104 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1120 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1136 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1152 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1168 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1184 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1200 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1216 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1232 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 1248 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Key { type: 6 key: 16777236 - modifiers: 536870912 - text: "1d" + modifiers: 0 + text: "" autorep: false count: 1 } Frame { msec: 1264 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1280 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1296 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1312 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1328 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" + } + Frame { + msec: 1344 + hash: "f369109744055d30eadf2832a028a104" } Key { type: 7 key: 16777236 - modifiers: 536870912 - text: "1d" + modifiers: 0 + text: "" autorep: false count: 1 } Frame { - msec: 1344 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { msec: 1360 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1376 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1392 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1408 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1424 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1440 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1456 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1472 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1488 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1504 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1520 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1536 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1552 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1568 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1584 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1600 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1616 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1632 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1648 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1664 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1680 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1696 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1712 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" } Frame { msec: 1728 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "0914d1f71cdaf1f1a37b95ea41c57d4f" + } + Key { + type: 6 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1744 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1760 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1776 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1792 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1808 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "f369109744055d30eadf2832a028a104" } Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" + type: 7 + key: 16777235 + modifiers: 0 + text: "" autorep: false count: 1 } Frame { msec: 1824 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1840 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1856 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1872 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1888 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1904 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1920 @@ -510,263 +598,287 @@ VisualTest { } Frame { msec: 1936 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 1952 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" + } + Frame { + msec: 1968 + hash: "f369109744055d30eadf2832a028a104" } Key { - type: 7 + type: 6 key: 16777234 - modifiers: 536870912 - text: "1c" + modifiers: 0 + text: "" autorep: false count: 1 } Frame { - msec: 1968 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { msec: 1984 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2000 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2016 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2032 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2048 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2064 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2080 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2096 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2112 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2128 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2144 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2160 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2176 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2192 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2208 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2224 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2240 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2256 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2272 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2288 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2304 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2320 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2336 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" } Frame { msec: 2352 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "f369109744055d30eadf2832a028a104" + } + Frame { + msec: 2368 + hash: "f369109744055d30eadf2832a028a104" } Key { type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" + key: 16777234 + modifiers: 0 + text: "" autorep: false count: 1 } Frame { - msec: 2368 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { msec: 2384 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2400 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2416 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2432 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2448 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2464 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Key { type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" + key: 16777234 + modifiers: 0 + text: "" autorep: false count: 1 } Frame { msec: 2480 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2496 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2512 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2528 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2544 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2560 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2576 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2592 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2608 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2624 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2640 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2656 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2672 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2688 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2704 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2720 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2736 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2752 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2768 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2784 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2800 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2816 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2832 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2848 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2864 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2880 @@ -774,826 +886,38 @@ VisualTest { } Frame { msec: 2896 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2912 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2928 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2944 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2960 - hash: "7e4814e27214ecbeb55992e319a88102" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2976 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 2992 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 3008 - hash: "e7722f02692fbae81b9ec78547e1e4e9" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } Frame { msec: 3024 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3040 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3056 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3072 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3088 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 3104 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3120 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3136 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3152 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3168 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3184 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3200 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3216 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3232 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3248 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3264 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3280 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3296 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3312 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3328 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3344 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3360 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3376 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3392 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3408 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3424 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3440 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3456 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3472 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3488 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3504 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3520 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Frame { - msec: 3536 - hash: "e7722f02692fbae81b9ec78547e1e4e9" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3552 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3568 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3584 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3600 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3616 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3632 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3648 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3664 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3680 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3696 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3712 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3728 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3744 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3760 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3776 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3792 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3808 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3824 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3840 - image: "test.3.png" - } - Frame { - msec: 3856 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3872 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3888 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3904 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3920 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3936 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3952 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3968 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 3984 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4000 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4016 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4032 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4048 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4064 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4080 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4096 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4112 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4128 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4144 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4160 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4176 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 4192 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4208 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4224 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4240 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4256 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4272 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 4288 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4304 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4320 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4336 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4352 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4368 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4384 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4400 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4416 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4432 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4448 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4464 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4480 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4496 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4512 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4528 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4544 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4560 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4576 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4592 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4608 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4624 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4640 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4656 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4672 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4688 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4704 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4720 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4736 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4752 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4768 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Frame { - msec: 4784 - hash: "7e4814e27214ecbeb55992e319a88102" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 4800 - image: "test.4.png" - } - Frame { - msec: 4816 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4832 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4848 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4864 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4880 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4896 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 4912 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4928 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4944 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4960 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4976 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 4992 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5008 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5024 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5040 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5056 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5072 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5088 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5104 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5120 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5136 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5152 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5168 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5184 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5200 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5216 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5232 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5248 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5264 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5280 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5296 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5312 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5328 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5344 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5360 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5376 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5392 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5408 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5424 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5440 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5456 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5472 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5488 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5504 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5520 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5536 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5552 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5568 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5584 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5600 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5616 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5632 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5648 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5664 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5680 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5696 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5712 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5728 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5744 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5760 - image: "test.5.png" - } - Frame { - msec: 5776 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5792 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 5808 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5824 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5840 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5856 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5872 - hash: "6f85c2226e6e408f4699762f687b83e1" - } - Frame { - msec: 5888 - hash: "6f85c2226e6e408f4699762f687b83e1" + hash: "94675f9c9afb6834b91a69fd0ce35a22" } } diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test2.0.png b/tests/auto/declarative/qmlvisual/focusscope/data/test2.0.png index 555a968..22d7496 100644 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test2.0.png and b/tests/auto/declarative/qmlvisual/focusscope/data/test2.0.png differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test2.1.png b/tests/auto/declarative/qmlvisual/focusscope/data/test2.1.png deleted file mode 100644 index 555a968..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml index 03ece10..ff977ac 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test2.qml @@ -6,239 +6,239 @@ VisualTest { } Frame { msec: 16 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 32 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 48 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 64 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 80 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 96 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 112 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 128 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 144 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 160 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 176 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 192 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 208 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 224 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 240 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 256 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 272 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 288 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 304 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 320 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 336 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 352 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 368 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 384 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 400 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 416 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 432 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 448 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 464 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 480 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 496 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 512 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 528 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 544 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 560 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 576 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 592 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 608 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 624 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 640 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 656 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 672 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 688 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 704 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 720 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 736 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 752 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 768 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 784 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 800 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 816 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 832 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 848 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 864 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 880 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 896 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 912 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 928 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 944 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 960 @@ -246,362 +246,78 @@ VisualTest { } Frame { msec: 976 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 992 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1008 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1024 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1040 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1056 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1072 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1088 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1104 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1120 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1136 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1152 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1168 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1184 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1200 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1216 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1232 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1248 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } Frame { msec: 1264 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1280 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1296 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1312 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1328 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1344 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1360 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1376 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1392 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1408 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1424 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1440 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1456 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1472 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1488 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1504 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1520 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1536 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1552 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1568 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1584 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1600 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1616 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1632 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1648 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1664 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1680 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1696 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1712 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1728 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1744 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1760 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1776 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1792 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1808 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1824 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1840 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1856 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1872 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1888 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1904 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1920 - image: "test2.1.png" - } - Frame { - msec: 1936 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1952 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1968 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 1984 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2000 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2016 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2032 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2048 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2064 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2080 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2096 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2112 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2128 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2144 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2160 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2176 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2192 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2208 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2224 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2240 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2256 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 2272 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2288 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2304 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2320 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2336 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2352 - hash: "bb4131579c66dc948f2e27e236deb4ab" - } - Frame { - msec: 2368 - hash: "bb4131579c66dc948f2e27e236deb4ab" + hash: "4823f4520db0c1f64d887f172b3efa17" } } diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.0.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.0.png index 374acf5..baac346 100644 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.0.png and b/tests/auto/declarative/qmlvisual/focusscope/data/test3.0.png differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.1.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.1.png index b75cb10..25d3c66 100644 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.1.png and b/tests/auto/declarative/qmlvisual/focusscope/data/test3.1.png differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.2.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.2.png index 9b2f919..fc90552 100644 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.2.png and b/tests/auto/declarative/qmlvisual/focusscope/data/test3.2.png differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.3.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.3.png index bf63032..2f0519e 100644 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.3.png and b/tests/auto/declarative/qmlvisual/focusscope/data/test3.3.png differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.4.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.4.png deleted file mode 100644 index 6981a06..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.5.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.5.png deleted file mode 100644 index 5856325..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.6.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.6.png deleted file mode 100644 index 9b2f919..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.7.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.7.png deleted file mode 100644 index b75cb10..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.8.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.8.png deleted file mode 100644 index 374acf5..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.9.png b/tests/auto/declarative/qmlvisual/focusscope/data/test3.9.png deleted file mode 100644 index 11a08bd..0000000 Binary files a/tests/auto/declarative/qmlvisual/focusscope/data/test3.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml index dd48e39..686fc8d 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/data/test3.qml @@ -6,255 +6,287 @@ VisualTest { } Frame { msec: 16 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 32 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 48 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 64 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 80 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 96 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 112 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 128 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 144 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 160 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 176 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 192 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 208 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 224 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 240 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 256 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 272 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 288 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 304 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 320 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 336 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 352 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 368 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 384 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 400 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 416 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 432 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 448 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 464 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 480 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 496 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 512 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 528 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 544 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "60101929d88be9177f4988573c35dcdb" } Frame { msec: 560 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "519bbcffcafe96253923994ce7cae971" } Frame { msec: 576 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "e46fd44935f37eadee7520f17ad7cf01" } Frame { msec: 592 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "2a0ed4cb9940ff82d4a56dc3dc94f333" + } + Frame { + msec: 608 + hash: "a97ff19bb6493b7a026c9c549aafff04" } Key { - type: 6 + type: 7 key: 16777236 - modifiers: 536870912 - text: "1d" + modifiers: 0 + text: "" autorep: false count: 1 } Frame { - msec: 608 - hash: "c114718c158f107e8a7d06bf49d30855" - } - Frame { msec: 624 - hash: "c71bf3c6ef7addc3c1f55e3f92c001ac" + hash: "52fe44fff5c72e1585e000e73086c2e9" } Frame { msec: 640 - hash: "b075c33ed606041dfb57a03f92cf5574" + hash: "76f62e0619ed15894d7fb6fe9e1a7700" } Frame { msec: 656 - hash: "1933a060fc0b889082df94054a2d3c7e" + hash: "aceb3ae38213d097bd0f50d64779fbda" } Frame { msec: 672 - hash: "cc4133e796a242493538131c789c392c" + hash: "c62f8846e1076adcd7c9a8bc1164c0a8" } Frame { msec: 688 - hash: "cbc16ad8bcb8dcf73ae101ca4899adac" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 + hash: "c62f8846e1076adcd7c9a8bc1164c0a8" } Frame { msec: 704 - hash: "1a5e008ef5640ad85a19b307244a36f7" + hash: "c62f8846e1076adcd7c9a8bc1164c0a8" } Frame { msec: 720 - hash: "6a0c9d0f3ac068d65d590c844dae4ebb" + hash: "c62f8846e1076adcd7c9a8bc1164c0a8" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 736 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "9f3ab4856c51ee635b8dbce4778053f0" } Frame { msec: 752 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "4fe79ffc2bb078c8cb8c3cdbb57d3c5e" } Frame { msec: 768 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "9caefb6edbfeadacd54a9f4e06e40ddc" } Frame { msec: 784 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "a8dc7e314b3bd2fb8d16bcf68bfbc7e8" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 800 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "342e75af68d345574c551ff65ac2f2de" } Frame { msec: 816 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "a26927b8cdfa8813c5e0661d154bb36b" } Frame { msec: 832 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "0214f5055daa4a761d2e791d06744ac5" } Frame { msec: 848 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "d2d4296a49de27da45381fa250fb1f38" } Frame { msec: 864 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "a375e3df0b00754fa4208aecbf1b218d" } Frame { msec: 880 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "a375e3df0b00754fa4208aecbf1b218d" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 896 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "0cd7a1cfb7fafdb406b5e3a612dd61b7" } Frame { msec: 912 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "0315c0011c75f254337cb5e557dc6dad" } Frame { msec: 928 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "2633ea851ec228dc1d5149ef65b1c910" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 944 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "cd8870a81860a9926f4d5580dabf3479" } Frame { msec: 960 @@ -262,271 +294,311 @@ VisualTest { } Frame { msec: 976 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "419ec77dceb052c41e072b9513124794" } Frame { msec: 992 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "68fd88f83bf707fbc3ae29840bfb2110" } Frame { msec: 1008 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "bfb514b9a9c57d6b78149b81f4adb177" } Frame { msec: 1024 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "bfb514b9a9c57d6b78149b81f4adb177" } Frame { msec: 1040 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "bfb514b9a9c57d6b78149b81f4adb177" } Frame { msec: 1056 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "bfb514b9a9c57d6b78149b81f4adb177" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1072 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "e0707db3c9da95ab02be8dec08d1eea9" } Frame { msec: 1088 - hash: "216a02433edb100e6ff3db4944f6b061" + hash: "78d405f63a5ed781ce36ed4844621a26" } Key { - type: 6 + type: 7 key: 16777236 - modifiers: 536870912 - text: "1d" + modifiers: 0 + text: "" autorep: false count: 1 } Frame { msec: 1104 - hash: "ac2f6e2f5f379ad8717aa3754f2aab80" + hash: "d7dc78c2a3cb4a059322b20622dfa0ed" } Frame { msec: 1120 - hash: "e896c5b5a4fd121e5c25aba0a17c11f3" + hash: "c7bfc322da4a3e112324bd024d271dda" } Frame { msec: 1136 - hash: "1d1228cf0b205e46a969a0016245bb9e" + hash: "a94d4a6f15404f10cad31ad5337f0f10" } Frame { msec: 1152 - hash: "d07b1d53655e549c503223fddfa62038" + hash: "49f03ed7afac886a45268aef990cb176" } Frame { msec: 1168 - hash: "d774614f13d1a19eff3c451c4abce7e5" + hash: "9fbacc43c6a796f81af102e95d05c17e" } Frame { msec: 1184 - hash: "0e8445283c961a41c22ede2f26ab0d0c" + hash: "ec3231a8ba136d2edd5265c51cd82d4f" } Frame { msec: 1200 - hash: "f85ced79a9d521b70b093d43d1335914" + hash: "070bec590f2379198933cf68db678821" } Frame { msec: 1216 - hash: "3f70531768847686f202336827ed5c51" + hash: "070bec590f2379198933cf68db678821" } Key { - type: 7 + type: 6 key: 16777236 - modifiers: 536870912 - text: "1d" + modifiers: 0 + text: "" autorep: false count: 1 } Frame { msec: 1232 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "b9bb4eee4ea2fe26178ece2be67111e3" } Frame { msec: 1248 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "06fe10dc99a8f28a64942bd76bdd401b" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1264 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "63f4e972f1b8f3273170436c673120ca" } Frame { msec: 1280 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "25a83b96f733add828557775d4aabe21" } Frame { msec: 1296 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "73de2ed5df81559c7a24d9a5b73a2ce9" } Frame { msec: 1312 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "43bdf31d652394c4d2b881ca6ad326ed" } Frame { msec: 1328 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "f5f564fcb39a7e007c30150c1a54283c" } Frame { msec: 1344 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1360 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1376 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1392 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1408 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1424 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1440 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1456 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1472 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 1488 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "270321ae5fe7a0e457d2897480e5bbbc" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1504 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "a56bcb200f3ed037bfea052df2910902" } Frame { msec: 1520 - hash: "30c5f9005238542c83b2d994cb61de16" + hash: "2b3561807f9681f6b875e7f4fcd33223" + } + Frame { + msec: 1536 + hash: "2cee5a4a22f72058a61cd9cb9d39e818" } Key { - type: 6 + type: 7 key: 16777236 - modifiers: 536870912 - text: "1d" + modifiers: 0 + text: "" autorep: false count: 1 } Frame { - msec: 1536 - hash: "c59557a62fb22756ecae00bf36589f19" - } - Frame { msec: 1552 - hash: "c2938aac121e121eb138b2cdc485a23c" + hash: "cd1f3f9a2bcd0efd4ba252454c51e261" } Frame { msec: 1568 - hash: "aa582bd07789a0ce000bb014b4924969" + hash: "b2d8e52a59d1141cfaf6b22ba9aa74cf" } Frame { msec: 1584 - hash: "59d7a7fed20a11ecb12de08c77f0f303" + hash: "f218a82081c0552d2caccaa840decfbb" } Frame { msec: 1600 - hash: "9a1d7649e44e2c2436855b92abbae030" + hash: "ae20ae49364bddbe3dcd9e09c36b7423" } Frame { msec: 1616 - hash: "e46c47a221da37bbdffcdf671e84774b" + hash: "63d8d2d948e3cab3a50ef4db61ca4c48" } Frame { msec: 1632 - hash: "85ff7ef61ef08dc97065b0536f9f8766" + hash: "f29a9aa2e469e3fb4bedfe11523212c9" } Frame { msec: 1648 - hash: "1159f274e5c2947875484d04a3ac6694" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 + hash: "f29a9aa2e469e3fb4bedfe11523212c9" } Frame { msec: 1664 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "f29a9aa2e469e3fb4bedfe11523212c9" } Frame { msec: 1680 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "f29a9aa2e469e3fb4bedfe11523212c9" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1696 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "c46539fd3ef1e01519b43855c0831213" } Frame { msec: 1712 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "40a4666320efaa62904d390add745bb3" } Frame { msec: 1728 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "a490a1904e909f3e2ade5ee8a7e9dbf3" } Frame { msec: 1744 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "2e67ac8bbc37731e590156348563bb98" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1760 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "daab7eba2dbf88b920b1cc61aa114435" } Frame { msec: 1776 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "5e6611b6024be9f48e6356bb46fe91db" } Frame { msec: 1792 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "6329448571671f77102e14f3f05d3a66" } Frame { msec: 1808 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "2a40d32c1c81fb85dab745a05cca500b" } Frame { msec: 1824 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "6579f0cfe1fd762818d69ded26e47c77" } Frame { msec: 1840 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "6579f0cfe1fd762818d69ded26e47c77" } Frame { msec: 1856 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "6579f0cfe1fd762818d69ded26e47c77" } Frame { msec: 1872 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "6579f0cfe1fd762818d69ded26e47c77" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1888 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "899d92a8106e85ff1131c07af3971879" } Frame { msec: 1904 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "8566d59024d7dcf410d4d87e234f477c" } Frame { msec: 1920 @@ -534,271 +606,295 @@ VisualTest { } Frame { msec: 1936 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "ba9b93e9762667c4a7c123933720fb06" } Frame { msec: 1952 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "cffb82799861d551cc208b7fe2922ea2" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1968 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "efe3ec54dfd82b06d6cb8d7813030894" } Frame { msec: 1984 - hash: "113dd40f9b5c9869ad04a00dda9078c6" + hash: "80934efe77a8e1d8460b55c0d5831a17" } Frame { msec: 2000 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 + hash: "5954c3e6ebe78c50776cfa48c152cf46" } Frame { msec: 2016 - hash: "26e5e7612374c7a4f7ac26a284c735b4" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2032 - hash: "03c63a8bab380ebcd02f2bf2f588df85" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2048 - hash: "1a7c4738de4f1123c7e639c935095476" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2064 - hash: "8362cb8a253dcb2e9ef7fb070579d639" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2080 - hash: "8fae548ad1f2e16738c14636b905efef" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2096 - hash: "05fca78fea63817204b2303495baaec7" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2112 - hash: "5bf7b04177db667f23f1bc4f0066bc44" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2128 - hash: "aa10d0614604f0563d4fc458b7bb9260" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2144 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2160 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2176 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2192 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2208 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2224 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2240 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2256 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2272 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2288 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2304 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2320 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2336 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2352 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2368 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2384 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2400 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2416 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2432 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2448 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" } Frame { msec: 2464 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "588140c8a668842ec06e424692b57918" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2480 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "4ba7e4ed21d496abc7ab4651afb5880b" } Frame { msec: 2496 - hash: "0461d0e31648d2c155bee0145094c153" + hash: "497188bf0ef98eb246399f025b9259bc" } Frame { msec: 2512 - hash: "0461d0e31648d2c155bee0145094c153" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 + hash: "173049c273e4ea2f63428c0838f029ef" } Frame { msec: 2528 - hash: "1823a5c00778550c6b46416e6a2b730f" + hash: "c8199565d52abb5bdf64b31c2f965038" } Frame { msec: 2544 - hash: "7ca64f71eee9d3a926335de026be5fe2" + hash: "995ca28ee06c376a8527992b1396374a" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2560 - hash: "5f9e44b8374a490793b479440ce3b701" + hash: "62b4b4b4e35cb3594b827a3f0488e016" } Frame { msec: 2576 - hash: "b0969884a9654d87da9941fb9eb4c99a" + hash: "5cd79f2fff8e35c2ce6167d3a3999bc2" } Frame { msec: 2592 - hash: "aeadf244a67b3c9e5c119b52aa0f15a0" + hash: "3c64ff196b49488d48214562849deec7" } Frame { msec: 2608 - hash: "2d990e5ae8d3660079bdea7f2b5245a7" + hash: "6579f0cfe1fd762818d69ded26e47c77" + } + Frame { + msec: 2624 + hash: "6579f0cfe1fd762818d69ded26e47c77" } Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" + type: 6 + key: 16777234 + modifiers: 0 + text: "" autorep: false count: 1 } Frame { - msec: 2624 - hash: "5998faffa17f9ffbf1cb39cdc09cdd54" - } - Frame { msec: 2640 - hash: "bf8089df5d863f627cd44294f322d796" + hash: "3ae9139845494acafc2212843271e80c" } Frame { msec: 2656 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "9bd81bd575c63bbedbcb19452e52f9aa" } Frame { msec: 2672 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "8a8fd3ec0ac02d3e8d37ade92e5b0b28" } Frame { msec: 2688 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "3da79a037c7c8fca1a133c65766cd7a4" } Frame { msec: 2704 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "31f24ec970184bf253ce0a80cca8c15d" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2720 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "8e41287dd7f3d17107336f79ea4a57b5" } Frame { msec: 2736 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "0eced41494be06a4a2d11aee076c0eab" } Frame { msec: 2752 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "f29a9aa2e469e3fb4bedfe11523212c9" } Frame { msec: 2768 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "f29a9aa2e469e3fb4bedfe11523212c9" } Frame { msec: 2784 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "f29a9aa2e469e3fb4bedfe11523212c9" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2800 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "2161ebbc0b1a8326d778657ded7993a8" } Frame { msec: 2816 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "65bdbbcea1cf5629e1c04ff09bd2b867" } Frame { msec: 2832 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "4cfe120b55285efb9484f696146fa297" } Frame { msec: 2848 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "d50ded95cf2418ef2ab3c4d7dd32babe" } Frame { msec: 2864 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "722e3342d833809e2e6c6ecb5774fb86" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2880 @@ -806,271 +902,319 @@ VisualTest { } Frame { msec: 2896 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "0193889d59dc40150eab584dd1665b5e" } Frame { msec: 2912 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "cd39f2cee2cf7507203a340ceaa961f5" } Frame { msec: 2928 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "270321ae5fe7a0e457d2897480e5bbbc" } Frame { msec: 2944 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "270321ae5fe7a0e457d2897480e5bbbc" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2960 - hash: "f75305426b87e1cdc325ae6668367be9" + hash: "d19642853fc07a54711b6afbca4453fd" } Frame { msec: 2976 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 + hash: "70db31594995fa6c05347ebc5aedd063" } Frame { msec: 2992 - hash: "d707cb6e2587eecba275d1e7ceb9d020" + hash: "8d8ab3076baae893037a1b16880db6b6" } Frame { msec: 3008 - hash: "fddd144d4d2e475330ff87f4e6febe35" + hash: "32c05a581d854a828f2049c5aa588afd" } Frame { msec: 3024 - hash: "06115e65296d1a77ab956cd3984303ee" + hash: "7f8f111aa6e8e802beca3b7fd2a28007" } Frame { msec: 3040 - hash: "6881ec448625fdc23f1241bd60362460" + hash: "c0ae8434516e2f77d78279c8e37a9f0a" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 3056 - hash: "d94fdfd178377328e3b840c32f774958" + hash: "7cc66b7432d2c73258e4c7910870d166" } Frame { msec: 3072 - hash: "d2cba0b3aac8002aa2de51f7b1442985" + hash: "070bec590f2379198933cf68db678821" } Frame { msec: 3088 - hash: "c0ea81cddf6b1f5b4b4157dade6b8ca0" + hash: "070bec590f2379198933cf68db678821" } Frame { msec: 3104 - hash: "964a80740cc7ba474d5d10b76cca1b14" + hash: "070bec590f2379198933cf68db678821" } Frame { msec: 3120 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "070bec590f2379198933cf68db678821" + } + Frame { + msec: 3136 + hash: "070bec590f2379198933cf68db678821" } Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" + type: 6 + key: 16777234 + modifiers: 0 + text: "" autorep: false count: 1 } Frame { - msec: 3136 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { msec: 3152 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "f45969e94df0c5ea7c153e6952479ec8" } Frame { msec: 3168 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "55f4733f50b90d723c88ef74d66ee8a9" } Frame { msec: 3184 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "980ea06fe8405ce29514cbc752a581c2" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 3200 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "0a5a6d62d13876c9562253645381702a" } Frame { msec: 3216 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "0ade580a20e10d9887d6bc544025770e" } Frame { msec: 3232 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "707524f7b0fad3879d41c8ff5d339b87" } Frame { msec: 3248 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "1786e49beb751b4b8cf4492f63b3db77" } Frame { msec: 3264 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "a44ca7861ccd844eb284ab310751351a" } Frame { msec: 3280 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "bfb514b9a9c57d6b78149b81f4adb177" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 3296 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "e36d2476c9954e6a4372ded19efd06a1" } Frame { msec: 3312 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "c324cc45624346f32a776a87ec5fcc7e" } Frame { msec: 3328 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "fcf1629f58a73492f1afa74672013602" } Frame { msec: 3344 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "853e27fd37b764a852a2c4fabbaae6bc" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 3360 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "a75d77b15211080e12b397c3cee93568" } Frame { msec: 3376 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "936fb8c2c0909a77a9bdc654d91d13ad" } Frame { msec: 3392 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "f11dde44c028dbd299bc6733218969f7" } Frame { msec: 3408 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "a375e3df0b00754fa4208aecbf1b218d" } Frame { msec: 3424 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "a375e3df0b00754fa4208aecbf1b218d" } Frame { msec: 3440 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "a375e3df0b00754fa4208aecbf1b218d" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 3456 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "3ce1288d66836b6224f471903454be37" } Frame { msec: 3472 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 3488 - hash: "3e44d7064e55c510401b5008a06d9b82" + hash: "9bff5f42f23b504ee013df4834ed884c" } Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" + type: 7 + key: 16777234 + modifiers: 0 + text: "" autorep: false count: 1 } Frame { + msec: 3488 + hash: "523df7cc8d991695722b521282824627" + } + Frame { msec: 3504 - hash: "56634199c96e5c4588c2954f0595fcaa" + hash: "5c16f8efbab40bcf8016bd7334eb99fa" } Frame { msec: 3520 - hash: "a51221b77045e51cba2b0913546961cb" + hash: "bee74f34ee101f0fef0967801498de75" } Frame { msec: 3536 - hash: "9910569a15164882056802e5ecfaef42" + hash: "a08ee211d870bc3f97f1e698cd887908" } Frame { msec: 3552 - hash: "17080817e0b23212828d2cee23eff98f" + hash: "89ac21176fd4ce1bbbd0b7dd6904c12c" } Frame { msec: 3568 - hash: "791fee9758645fe21fe52918e5435f7d" + hash: "95608d850a3c5cfbded1aafb33885bad" } Frame { msec: 3584 - hash: "e0fcea2889a4825075322524025a4bdf" - } - Frame { - msec: 3600 - hash: "825f58093f328182fa32b3cbc573101f" - } - Frame { - msec: 3616 - hash: "550972282584bd52108728290bd4aa5e" + hash: "c62f8846e1076adcd7c9a8bc1164c0a8" } Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" + type: 6 + key: 16777234 + modifiers: 0 + text: "" autorep: false count: 1 } Frame { + msec: 3600 + hash: "54705722d344bfbe829211019f2865ba" + } + Frame { + msec: 3616 + hash: "d63b2ce9e16583671a5e6d266393b11c" + } + Frame { msec: 3632 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "3979df5d0aa1c3610e1d3562e34385c6" } Frame { msec: 3648 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "782d14c3a1baf9a3017ec5b514492860" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 3664 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "0d219c97e1278474b74ed16f29fae1a1" } Frame { msec: 3680 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "3df0e87dd3d5f50b9c4bb3db8d73d421" } Frame { msec: 3696 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "1c5e5da874ae95548431677246c80734" } Frame { msec: 3712 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3728 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3744 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3760 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3776 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3792 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3808 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3824 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3840 @@ -1078,1802 +1222,106 @@ VisualTest { } Frame { msec: 3856 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3872 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3888 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3904 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3920 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3936 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3952 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3968 - hash: "0cf213791ef1263f9dfc867df96e8211" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 3984 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4000 - hash: "a2386a0135e8ffd9f2ac12345ede3553" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4016 - hash: "9550cdc0032bc3ea0a611f2584f43cca" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4032 - hash: "3f39909102a04f0e41a97b10dde4425a" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4048 - hash: "535d56a4d450cf0222f94573a88bbf80" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4064 - hash: "c4b782cfb9399689b0cbfc2a97305984" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4080 - hash: "23604b04198d53e0ba4a0955d8bcf124" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4096 - hash: "a440962d680f70eb47af38a91390b8c0" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4112 - hash: "da4b079f00248a073ce49f749ff0cc77" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4128 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4144 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4160 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4176 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4192 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4208 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4224 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4240 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } Frame { msec: 4256 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4272 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4288 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4304 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4320 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4336 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4352 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4368 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4384 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4400 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4416 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4432 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4448 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4464 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4480 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4496 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4512 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4528 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4544 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4560 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4576 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4592 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4608 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4624 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4640 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4656 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4672 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4688 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4704 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4720 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4736 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4752 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4768 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4784 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4800 - image: "test3.4.png" - } - Frame { - msec: 4816 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4832 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4848 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4864 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4880 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4896 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4912 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4928 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4944 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4960 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4976 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 4992 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 5008 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 5024 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 5040 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 5056 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 5072 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 5088 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Frame { - msec: 5104 - hash: "861a8438a60e8a937d96f6b11fa1e3b3" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 5120 - hash: "58be5253b74ac1cecf08714e670e30af" - } - Frame { - msec: 5136 - hash: "a8e15f6e28a67941730f9cfe8ea7f0ff" - } - Frame { - msec: 5152 - hash: "f1bfd2e2cd3a3ff08ae36e785d33e626" - } - Frame { - msec: 5168 - hash: "b61fd5c58ddaf806e72d77bed92e91f3" - } - Frame { - msec: 5184 - hash: "f192f6b779fa6bdfd4bc9c8671dd3147" - } - Frame { - msec: 5200 - hash: "1cf034cfdfe3cafa832e28950c90d67b" - } - Frame { - msec: 5216 - hash: "b0d2223f7f2c302784654f03cb3a5c1c" - } - Frame { - msec: 5232 - hash: "19d089ac37fd42c1be99facd38a954e3" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 5248 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5264 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5280 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5296 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5312 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5328 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5344 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5360 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5376 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5392 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5408 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5424 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5440 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5456 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5472 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5488 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5504 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5520 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5536 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5552 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5568 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5584 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5600 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5616 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5632 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5648 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5664 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5680 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5696 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Frame { - msec: 5712 - hash: "0cf213791ef1263f9dfc867df96e8211" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 5728 - hash: "51db47388acad98d18a8a2aaca279dba" - } - Frame { - msec: 5744 - hash: "c83747a4356fa12593020452dbf43fe8" - } - Frame { - msec: 5760 - image: "test3.5.png" - } - Frame { - msec: 5776 - hash: "39d476722de92703d0a2259b5c62554e" - } - Frame { - msec: 5792 - hash: "3f01e465470c3d5ab58b52f3e1517374" - } - Frame { - msec: 5808 - hash: "63570753ba8c5f1525bf4cee38e8cad8" - } - Frame { - msec: 5824 - hash: "31beab91ef4cadcf0b379b32786530ac" - } - Frame { - msec: 5840 - hash: "46cd2e22eb4ef988752e2b3441bdd450" - } - Frame { - msec: 5856 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 5872 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 5888 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 5904 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 5920 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 5936 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 5952 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 5968 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 5984 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6000 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6016 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6032 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6048 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6064 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6080 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6096 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6112 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6128 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6144 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6160 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6176 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6192 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6208 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6224 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6240 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6256 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Frame { - msec: 6272 - hash: "3e44d7064e55c510401b5008a06d9b82" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 6288 - hash: "78c4aaf2427e0aa9b6d11ddf95df55f7" - } - Frame { - msec: 6304 - hash: "d4859df2de6afa90c1997b1b4d6448ab" - } - Frame { - msec: 6320 - hash: "f885e6a8cc09d06985a83f60e29a0a34" - } - Frame { - msec: 6336 - hash: "41f27dbf80b0bc00498962162a5fe9db" - } - Frame { - msec: 6352 - hash: "41800797032deeed5ccc87375b4093cb" - } - Frame { - msec: 6368 - hash: "253276d23d8a0f195155361a27403496" - } - Frame { - msec: 6384 - hash: "274bf40aacababde8fde71abf065d1aa" - } - Frame { - msec: 6400 - hash: "86071a6486d35d3c10f318ab6bac7577" - } - Frame { - msec: 6416 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 6432 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6448 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6464 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6480 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6496 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6512 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6528 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6544 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6560 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6576 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6592 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6608 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6624 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6640 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6656 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6672 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6688 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6704 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6720 - image: "test3.6.png" - } - Frame { - msec: 6736 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6752 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6768 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6784 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6800 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6816 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6832 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Frame { - msec: 6848 - hash: "f75305426b87e1cdc325ae6668367be9" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 6864 - hash: "eea514e956369c55f9fe9bfc5b8bbda4" - } - Frame { - msec: 6880 - hash: "b28436abb5ce17310b63ed96a7034000" - } - Frame { - msec: 6896 - hash: "40c656f467200785a951dd8f98cf28f5" - } - Frame { - msec: 6912 - hash: "38c6c6b29c9a7f0eba87a538a336c338" - } - Frame { - msec: 6928 - hash: "b3f939577616f8ded1e11ee6e6dce882" - } - Frame { - msec: 6944 - hash: "d72b00208712f039a5d7a06fbfacd4bd" - } - Frame { - msec: 6960 - hash: "c7a079a37f6bd7a8da706e6ba5d048ee" - } - Frame { - msec: 6976 - hash: "561cdf098bdc35fc852fbe8fff2471e2" - } - Frame { - msec: 6992 - hash: "0461d0e31648d2c155bee0145094c153" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 7008 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7024 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7040 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7056 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7072 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7088 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7104 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7120 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7136 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7152 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7168 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7184 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7200 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7216 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7232 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7248 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7264 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7280 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7296 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7312 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7328 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7344 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7360 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7376 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7392 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7408 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7424 - hash: "0461d0e31648d2c155bee0145094c153" - } - Frame { - msec: 7440 - hash: "0461d0e31648d2c155bee0145094c153" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 7456 - hash: "096530df53ed21214cf93381ac0d23ea" - } - Frame { - msec: 7472 - hash: "36e7cee0725fb16c5d7e08875a3b88f7" - } - Frame { - msec: 7488 - hash: "a2b68c7e9e4ef04c1429190d01a3288b" - } - Frame { - msec: 7504 - hash: "6ee23f5d2c0ddc21499c8685ae46df64" - } - Frame { - msec: 7520 - hash: "dc423d32154882b99b7bde596697c83a" - } - Frame { - msec: 7536 - hash: "e82852d1d2a21f67029870601b00b124" - } - Frame { - msec: 7552 - hash: "7cd2773c33d7f34feb3b1e4752f63753" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 7568 - hash: "2371f0ddf1b0ddcdb36f24e72b62d3a5" - } - Frame { - msec: 7584 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7600 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7616 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7632 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7648 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7664 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7680 - image: "test3.7.png" - } - Frame { - msec: 7696 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7712 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7728 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7744 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7760 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7776 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7792 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7808 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7824 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7840 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7856 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7872 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7888 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7904 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7920 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7936 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7952 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Frame { - msec: 7968 - hash: "113dd40f9b5c9869ad04a00dda9078c6" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 7984 - hash: "93fd3abe0b99ed76d880f6f059636335" - } - Frame { - msec: 8000 - hash: "a273ec355c79968013c70aca1b2d5737" - } - Frame { - msec: 8016 - hash: "6b2df83c0645530ca007cde136838725" - } - Frame { - msec: 8032 - hash: "47d5ed89f7e9c89df33bab14ca967f77" - } - Frame { - msec: 8048 - hash: "c777e0d1a1f03e7a1bc16483f98c0622" - } - Frame { - msec: 8064 - hash: "ac7e693d7dbc8e8ff2318cb611b68b76" - } - Frame { - msec: 8080 - hash: "593e9711ae94a5b4f49544e0cf26d188" - } - Frame { - msec: 8096 - hash: "afce51158cb19dd6ae8c72ce19964251" - } - Frame { - msec: 8112 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 8128 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8144 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8160 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8176 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8192 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8208 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8224 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8240 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8256 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8272 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8288 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8304 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8320 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8336 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8352 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8368 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8384 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8400 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8416 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8432 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8448 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8464 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8480 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Frame { - msec: 8496 - hash: "30c5f9005238542c83b2d994cb61de16" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 8512 - hash: "136c689aca9aa0cf957035137a926653" - } - Frame { - msec: 8528 - hash: "b7418e46bca4bc8c953c15b03c23ec89" - } - Frame { - msec: 8544 - hash: "e99575fe130e741f13329704303b76ca" - } - Frame { - msec: 8560 - hash: "a2b7d528f9c145c4db0845bc76b3571f" - } - Frame { - msec: 8576 - hash: "77f8beccd0134b8991ddb2ac92d64ecb" - } - Frame { - msec: 8592 - hash: "fc359bc56852093020084af44987746a" - } - Frame { - msec: 8608 - hash: "9f3479a702bc79062fff916678e974f1" - } - Frame { - msec: 8624 - hash: "55c8c91ff26671f9f3049f1e1aaf5958" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 8640 - image: "test3.8.png" - } - Frame { - msec: 8656 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8672 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8688 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8704 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8720 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8736 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8752 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8768 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8784 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8800 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8816 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8832 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8848 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8864 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8880 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8896 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8912 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8928 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8944 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8960 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8976 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 8992 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 9008 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 9024 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 9040 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Frame { - msec: 9056 - hash: "216a02433edb100e6ff3db4944f6b061" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 9072 - hash: "367ee34ab6a6cb0197e064db85638be7" - } - Frame { - msec: 9088 - hash: "c61db7f2c0402a63efe779bec816a7db" - } - Frame { - msec: 9104 - hash: "29d4d2679a502a1cb8a21807c43153c2" - } - Frame { - msec: 9120 - hash: "3f531d4111efbbac256d4281db1fdeba" - } - Frame { - msec: 9136 - hash: "9f343d8b4dc12cc7ab5ae1ff08067baf" - } - Frame { - msec: 9152 - hash: "eb29b7d6ef2b5507425b2c30ddb58fa8" - } - Frame { - msec: 9168 - hash: "883c0d35567deb6de9125441da89a1fe" - } - Frame { - msec: 9184 - hash: "7c25e95ea2b38288b5ba5737108ef5d1" - } - Frame { - msec: 9200 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 9216 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9232 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9248 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9264 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9280 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9296 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9312 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9328 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9344 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9360 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9376 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9392 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9408 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9424 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9440 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9456 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9472 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9488 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9504 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9520 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9536 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9552 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9568 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9584 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9600 - image: "test3.9.png" - } - Frame { - msec: 9616 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9632 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9648 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9664 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9680 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9696 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9712 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9728 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9744 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9760 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9776 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9792 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9808 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9824 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9840 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9856 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9872 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9888 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9904 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9920 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9936 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9952 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9968 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 9984 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10000 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10016 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10032 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10048 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10064 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10080 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10096 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10112 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10128 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10144 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10160 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10176 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10192 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10208 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10224 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10240 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10256 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10272 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10288 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10304 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10320 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10336 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10352 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10368 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 10384 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10400 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10416 - hash: "f192b84337784a6d31c309af7e32b5f7" - } - Frame { - msec: 10432 - hash: "f192b84337784a6d31c309af7e32b5f7" + hash: "4a753a2b626eaf8336cd5e5d04d05d5b" } } diff --git a/tests/auto/declarative/qmlvisual/focusscope/test.qml b/tests/auto/declarative/qmlvisual/focusscope/test.qml index 6b2ee25..7342e35 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test.qml @@ -1,9 +1,16 @@ import QtQuick 1.0 +/* + Blue border indicates scoped focus + Black border indicates NOT scoped focus + Red box indicates active focus + Use arrow keys to navigate + Press "9" to print currently focused item +*/ Rectangle { color: "white" - width: 800 - height: 600 + width: 480 + height: 480 Keys.onDigit9Pressed: console.log("Error - Root") @@ -55,8 +62,6 @@ Rectangle { KeyNavigation.down: item3 } - Text { x:100; y:170; text: "Blue border indicates scoped focus\nBlack border indicates NOT scoped focus\nRed box indicates active focus\nUse arrow keys to navigate\nPress \"9\" to print currently focused item" } - Rectangle { id: item3 x: 10; y: 300 diff --git a/tests/auto/declarative/qmlvisual/focusscope/test2.qml b/tests/auto/declarative/qmlvisual/focusscope/test2.qml index 4df75cf..072eddb 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test2.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test2.qml @@ -2,35 +2,33 @@ import QtQuick 1.0 Rectangle { color: "white" - width: 800 - height: 600 - - Text { text: "All five rectangles should be red" } + width: 400 + height: 50 + //All five rectangles should be red FocusScope { - y: 100 focus: true - Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" } + Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } FocusScope { - y: 100 + x: 80 focus: true - Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" } + Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } FocusScope { - y: 100 + x: 80 focus: true - Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" } + Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } FocusScope { - y: 100 + x: 80 focus: true - Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" } + Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } FocusScope { - y: 100 + x: 80 focus: true - Rectangle { width: 50; height: 50; color: parent.activeFocus?"red":"blue" } + Rectangle { width: 40; height: 40; color: parent.activeFocus?"red":"blue" } } } } diff --git a/tests/auto/declarative/qmlvisual/focusscope/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/test3.qml index 184763a..01fb580 100644 --- a/tests/auto/declarative/qmlvisual/focusscope/test3.qml +++ b/tests/auto/declarative/qmlvisual/focusscope/test3.qml @@ -1,9 +1,14 @@ import QtQuick 1.0 +/* + Currently selected element should be red + Pressing "9" should print the number of the currently selected item + Be sure to scroll all the way to the right, pause, and then all the way to the left +*/ Rectangle { color: "white" - width: 800 - height: 600 + width: 400 + height: 100 ListModel { id: model @@ -45,8 +50,4 @@ Rectangle { } - Text { - y: 100; x: 50 - text: "Currently selected element should be red\nPressing \"9\" should print the number of the currently selected item\nBe sure to scroll all the way to the right, pause, and then all the way to the left." - } } -- cgit v0.12 From 8c183dc88d4ba0c14e29433294a6885f29ffc36c Mon Sep 17 00:00:00 2001 From: Michael Dominic K <mdk@codethink.co.uk> Date: Thu, 28 Oct 2010 11:35:53 +0200 Subject: Use QVarLengthArray to store accumulator data. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Merge-request: 2499 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com> --- src/plugins/graphicssystems/meego/dithering.cpp | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/plugins/graphicssystems/meego/dithering.cpp b/src/plugins/graphicssystems/meego/dithering.cpp index ba6b99b..b50826c 100644 --- a/src/plugins/graphicssystems/meego/dithering.cpp +++ b/src/plugins/graphicssystems/meego/dithering.cpp @@ -54,6 +54,7 @@ #include <stdio.h> #include <stdlib.h> #include <math.h> +#include <QVarLengthArray> // Gets a component (red = 1, green = 2...) from a RGBA data structure. // data is unsigned char. stride is the number of bytes per line. @@ -95,7 +96,11 @@ unsigned short* convertRGB32_to_RGB565(const unsigned char *in, int width, int h int x, y, c; // Pixel we're processing. c is component number (0, 1, 2 for r, b, b) short component[3]; // Stores the new components (r, g, b) for pixel produced during conversion short diff; // The difference between the converted value and the original one. To be accumulated. - short accumulator[3][width * 2]; // Three acumulators for r, g, b. Each accumulator is two lines. + QVarLengthArray <short> accumulatorData(3 * width * 2); // Data for three acumulators for r, g, b. Each accumulator is two lines. + short *accumulator[3]; // Helper for accessing the accumulator on a per-channel basis more easily. + accumulator[0] = accumulatorData.data(); + accumulator[1] = accumulatorData.data() + width; + accumulator[2] = accumulatorData.data() + (width * 2); // Produce the conversion lookup tables. for (i = 0; i < 256; i++) { @@ -195,7 +200,12 @@ unsigned short* convertARGB32_to_RGBA4444(const unsigned char *in, int width, in int x, y, c; // Pixel we're processing. c is component number (0, 1, 2, 3 for r, b, b, a) short component[4]; // Stores the new components (r, g, b, a) for pixel produced during conversion short diff; // The difference between the converted value and the original one. To be accumulated. - short accumulator[4][width * 2]; // Four acumulators for r, g, b, a. Each accumulator is two lines. + QVarLengthArray <short> accumulatorData(4 * width * 2); // Data for three acumulators for r, g, b. Each accumulator is two lines. + short *accumulator[4]; // Helper for accessing the accumulator on a per-channel basis more easily. + accumulator[0] = accumulatorData.data(); + accumulator[1] = accumulatorData.data() + width; + accumulator[2] = accumulatorData.data() + (width * 2); + accumulator[3] = accumulatorData.data() + (width * 3); // Produce the conversion lookup tables. for (i = 0; i < 256; i++) { -- cgit v0.12 From 28bd0c6568aefa552c5e37a4e2ef98969c68d0b4 Mon Sep 17 00:00:00 2001 From: Michael Dominic K <mdk@codethink.co.uk> Date: Thu, 28 Oct 2010 11:35:54 +0200 Subject: Do not support QImage::Format_ARGB32 in meego gfx for egl images. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was a bug/mistake to support that. Merge-request: 2499 Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com> --- src/plugins/graphicssystems/meego/qmeegographicssystem.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/plugins/graphicssystems/meego/qmeegographicssystem.cpp b/src/plugins/graphicssystems/meego/qmeegographicssystem.cpp index 96fbd6c..a633e2f 100644 --- a/src/plugins/graphicssystems/meego/qmeegographicssystem.cpp +++ b/src/plugins/graphicssystems/meego/qmeegographicssystem.cpp @@ -151,9 +151,8 @@ void QMeeGoGraphicsSystem::setTranslucent(bool translucent) QPixmapData *QMeeGoGraphicsSystem::pixmapDataFromEGLSharedImage(Qt::HANDLE handle, const QImage &softImage) { if (softImage.format() != QImage::Format_ARGB32_Premultiplied && - softImage.format() != QImage::Format_ARGB32 && softImage.format() != QImage::Format_RGB32) { - qFatal("For egl shared images, the soft image has to be ARGB32, ARGB32_Premultiplied or RGB32"); + qFatal("For egl shared images, the soft image has to be ARGB32_Premultiplied or RGB32"); return NULL; } -- cgit v0.12 From 746f4b50e9c13c720162f3bcc8795b7ef772fbba Mon Sep 17 00:00:00 2001 From: Kent Hansen <kent.hansen@nokia.com> Date: Thu, 28 Oct 2010 12:27:49 +0200 Subject: QScriptValue::construct(): Don't crash if function throws non-Object If an exception occurs, we should ignore the result of JSC::construct() and return the exception value, even if the exception is not an object. This makes the behavior match the documentation: "Calling construct() can cause an exception to occur in the script engine; in that case, construct() returns the value that was thrown". Task-number: QTBUG-14801 Reviewed-by: Jedrzej Nowacki --- src/script/api/qscriptvalue.cpp | 13 ++++++++----- tests/auto/qscriptvalue/tst_qscriptvalue.cpp | 25 +++++++++++++++++++++++++ tests/auto/qscriptvalue/tst_qscriptvalue.h | 1 + 3 files changed, 34 insertions(+), 5 deletions(-) diff --git a/src/script/api/qscriptvalue.cpp b/src/script/api/qscriptvalue.cpp index f6390bb..f494106 100644 --- a/src/script/api/qscriptvalue.cpp +++ b/src/script/api/qscriptvalue.cpp @@ -1736,10 +1736,12 @@ QScriptValue QScriptValue::construct(const QScriptValueList &args) JSC::JSValue savedException; QScriptEnginePrivate::saveException(exec, &savedException); - JSC::JSObject *result = JSC::construct(exec, callee, constructType, constructData, jscArgs); + JSC::JSValue result; + JSC::JSObject *newObject = JSC::construct(exec, callee, constructType, constructData, jscArgs); if (exec->hadException()) { - result = JSC::asObject(exec->exception()); + result = exec->exception(); } else { + result = newObject; QScriptEnginePrivate::restoreException(exec, savedException); } return d->engine->scriptValueFromJSCValue(result); @@ -1796,11 +1798,12 @@ QScriptValue QScriptValue::construct(const QScriptValue &arguments) JSC::JSValue savedException; QScriptEnginePrivate::saveException(exec, &savedException); - JSC::JSObject *result = JSC::construct(exec, callee, constructType, constructData, applyArgs); + JSC::JSValue result; + JSC::JSObject *newObject = JSC::construct(exec, callee, constructType, constructData, applyArgs); if (exec->hadException()) { - if (exec->exception().isObject()) - result = JSC::asObject(exec->exception()); + result = exec->exception(); } else { + result = newObject; QScriptEnginePrivate::restoreException(exec, savedException); } return d->engine->scriptValueFromJSCValue(result); diff --git a/tests/auto/qscriptvalue/tst_qscriptvalue.cpp b/tests/auto/qscriptvalue/tst_qscriptvalue.cpp index 83a3388..639df36 100644 --- a/tests/auto/qscriptvalue/tst_qscriptvalue.cpp +++ b/tests/auto/qscriptvalue/tst_qscriptvalue.cpp @@ -2739,6 +2739,31 @@ void tst_QScriptValue::construct() QVERIFY(!QScriptValue(QScriptValue::NullValue).construct().isValid()); } +void tst_QScriptValue::construct_constructorThrowsPrimitive() +{ + QScriptEngine eng; + QScriptValue fun = eng.evaluate("(function() { throw 123; })"); + QVERIFY(fun.isFunction()); + // construct(QScriptValueList) + { + QScriptValue ret = fun.construct(); + QVERIFY(ret.isNumber()); + QCOMPARE(ret.toNumber(), 123.0); + QVERIFY(eng.hasUncaughtException()); + QVERIFY(ret.strictlyEquals(eng.uncaughtException())); + eng.clearExceptions(); + } + // construct(QScriptValue) + { + QScriptValue ret = fun.construct(eng.newArray()); + QVERIFY(ret.isNumber()); + QCOMPARE(ret.toNumber(), 123.0); + QVERIFY(eng.hasUncaughtException()); + QVERIFY(ret.strictlyEquals(eng.uncaughtException())); + eng.clearExceptions(); + } +} + void tst_QScriptValue::lessThan_old() { QScriptEngine eng; diff --git a/tests/auto/qscriptvalue/tst_qscriptvalue.h b/tests/auto/qscriptvalue/tst_qscriptvalue.h index 8bfaa6a..462749a 100644 --- a/tests/auto/qscriptvalue/tst_qscriptvalue.h +++ b/tests/auto/qscriptvalue/tst_qscriptvalue.h @@ -219,6 +219,7 @@ private slots: void getSetScriptClass(); void call(); void construct(); + void construct_constructorThrowsPrimitive(); void castToPointer(); void prettyPrinter_data(); void prettyPrinter(); -- cgit v0.12 From 9129a27f733169c9a4baf46b1be1c749dabdfdd8 Mon Sep 17 00:00:00 2001 From: Lorn Potter <lorn.potter@nokia.com> Date: Fri, 29 Oct 2010 10:13:28 +1000 Subject: remove the connecting thread, and use async call to dbus instead. This fixes the case where the connection threads are never stopped until desctuctor. Task-number: QTBUG-14836 Reviewed-by: trust me --- src/plugins/bearer/connman/qconnmanengine.cpp | 83 ++++++---------------- src/plugins/bearer/connman/qconnmanengine.h | 27 ------- .../bearer/connman/qconnmanservice_linux.cpp | 21 +++--- src/plugins/bearer/connman/qofonoservice_linux.cpp | 12 ++-- 4 files changed, 36 insertions(+), 107 deletions(-) diff --git a/src/plugins/bearer/connman/qconnmanengine.cpp b/src/plugins/bearer/connman/qconnmanengine.cpp index a8b8911..184ceb4 100644 --- a/src/plugins/bearer/connman/qconnmanengine.cpp +++ b/src/plugins/bearer/connman/qconnmanengine.cpp @@ -170,13 +170,26 @@ bool QConnmanEngine::hasIdentifier(const QString &id) void QConnmanEngine::connectToId(const QString &id) { QMutexLocker locker(&mutex); - QConnmanConnectThread *thread; - thread = new QConnmanConnectThread(this); - thread->setServicePath(serviceFromId(id)); - thread->setIdentifier(id); - connect(thread,SIGNAL(connectionError(QString,QBearerEngineImpl::ConnectionError)), - this,SIGNAL(connectionError(QString,QBearerEngineImpl::ConnectionError))); - thread->start(); + QString servicePath = serviceFromId(id); + QConnmanServiceInterface serv(servicePath); + if(!serv.isValid()) { + emit connectionError(id, QBearerEngineImpl::InterfaceLookupError); + } else { + if(serv.getType() != "cellular") { + + serv.connect(); + } else { + QOfonoManagerInterface ofonoManager(0); + QString modemPath = ofonoManager.currentModem().path(); + QOfonoDataConnectionManagerInterface dc(modemPath,0); + foreach(const QDBusObjectPath dcPath,dc.getPrimaryContexts()) { + if(dcPath.path().contains(servicePath.section("_",-1))) { + QOfonoPrimaryDataContextInterface primaryContext(dcPath.path(),0); + primaryContext.setActive(true); + } + } + } + } } void QConnmanEngine::disconnectFromId(const QString &id) @@ -791,62 +804,6 @@ bool QConnmanEngine::requiresPolling() const return false; } - -QConnmanConnectThread::QConnmanConnectThread(QObject *parent) - :QThread(parent), - servicePath(), identifier() -{ -} - -QConnmanConnectThread::~QConnmanConnectThread() -{ -} - -void QConnmanConnectThread::stop() -{ - if(currentThread() != this) { - QMetaObject::invokeMethod(this, "quit", - Qt::QueuedConnection); - } else { - quit(); - } - wait(); -} - -void QConnmanConnectThread::run() -{ - QConnmanServiceInterface serv(servicePath); - if(!serv.isValid()) { - emit connectionError(identifier, QBearerEngineImpl::InterfaceLookupError); - } else { - if(serv.getType() != "cellular") { - serv.connect(); - } else { - QOfonoManagerInterface ofonoManager(0); - QString modemPath = ofonoManager.currentModem().path(); - QOfonoDataConnectionManagerInterface dc(modemPath,0); - foreach(const QDBusObjectPath dcPath,dc.getPrimaryContexts()) { - if(dcPath.path().contains(servicePath.section("_",-1))) { - QOfonoPrimaryDataContextInterface primaryContext(dcPath.path(),0); - primaryContext.setActive(true); - } - } - } - } -} - -void QConnmanConnectThread::setServicePath(const QString &path) -{ - QMutexLocker locker(&mutex); - servicePath = path; -} - -void QConnmanConnectThread::setIdentifier(const QString &id) -{ - QMutexLocker locker(&mutex); - identifier = id; -} - QT_END_NAMESPACE #endif // QT_NO_DBUS diff --git a/src/plugins/bearer/connman/qconnmanengine.h b/src/plugins/bearer/connman/qconnmanengine.h index 569bbc7..2a2308f 100644 --- a/src/plugins/bearer/connman/qconnmanengine.h +++ b/src/plugins/bearer/connman/qconnmanengine.h @@ -59,14 +59,12 @@ #include <QMap> #include <QVariant> -#include <QtCore/qthread.h> #ifndef QT_NO_BEARERMANAGEMENT #ifndef QT_NO_DBUS QT_BEGIN_NAMESPACE -class QConnmanConnectThread; class QConnmanEngine : public QBearerEngineImpl { Q_OBJECT @@ -141,33 +139,8 @@ private: bool isRoamingAllowed(const QString &context); protected: bool requiresPolling() const; - QConnmanConnectThread *connThread; }; -class QConnmanConnectThread : public QThread -{ - Q_OBJECT - -public: - QConnmanConnectThread(QObject *parent = 0); - ~QConnmanConnectThread(); - bool keepRunning; - void stop(); - void setServicePath(const QString &path); - void setIdentifier(const QString &id); - -Q_SIGNALS: - void connectionError(const QString &id, QBearerEngineImpl::ConnectionError error); - -protected: - void run(); - QString servicePath; - QString identifier; - -private: - QMutex mutex; - -}; QT_END_NAMESPACE diff --git a/src/plugins/bearer/connman/qconnmanservice_linux.cpp b/src/plugins/bearer/connman/qconnmanservice_linux.cpp index 549a07a..46b6e80 100644 --- a/src/plugins/bearer/connman/qconnmanservice_linux.cpp +++ b/src/plugins/bearer/connman/qconnmanservice_linux.cpp @@ -79,7 +79,7 @@ if (QLatin1String(signal) == SIGNAL(propertyChanged(QString,QDBusVariant))) { QLatin1String(CONNMAN_MANAGER_PATH), QLatin1String(CONNMAN_MANAGER_INTERFACE), QLatin1String("PropertyChanged"), - this,SIGNAL(propertyChanged(const QString &, const QDBusVariant & )))) { + this,SIGNAL(propertyChanged(const QString &, const QDBusVariant & ))), Qt::UniqueConnection) { qWarning() << "PropertyCHanged not connected"; } } @@ -89,7 +89,7 @@ if (QLatin1String(signal) == SIGNAL(propertyChanged(QString,QDBusVariant))) { QLatin1String(CONNMAN_MANAGER_PATH), QLatin1String(CONNMAN_MANAGER_INTERFACE), QLatin1String("StateChanged"), - this,SIGNAL(stateChanged(const QString&)))) { + this,SIGNAL(stateChanged(const QString&))), Qt::UniqueConnection) { qWarning() << "StateChanged not connected"; } @@ -106,7 +106,7 @@ if (QLatin1String(signal) == SIGNAL(propertyChanged(QString,QDBusVariant))) { QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } @@ -338,7 +338,7 @@ void QConnmanNetworkInterface::connectNotify(const char *signal) this->path(), QLatin1String(CONNMAN_NETWORK_INTERFACE), QLatin1String("PropertyChanged"), - this,SIGNAL(propertyChanged(QString,QDBusVariant))) ) { + this,SIGNAL(propertyChanged(QString,QDBusVariant))), Qt::UniqueConnection) { qWarning() << "network properties not connected"; } } @@ -350,10 +350,10 @@ void QConnmanNetworkInterface::connectNotify(const char *signal) this->path(), QLatin1String(CONNMAN_NETWORK_INTERFACE), QLatin1String("PropertyChanged"), - helper,SLOT(propertyChanged(QString,QDBusVariant))); + helper,SLOT(propertyChanged(QString,QDBusVariant))), Qt::UniqueConnection; QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } @@ -538,7 +538,7 @@ void QConnmanServiceInterface::connectNotify(const char *signal) helper,SLOT(propertyChanged(QString,QDBusVariant))); QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } @@ -569,10 +569,9 @@ QVariant QConnmanServiceInterface::getProperty(const QString &property) return var; } -// clearProperty void QConnmanServiceInterface::connect() { - QDBusReply<QVariantMap> reply = this->call(QLatin1String("Connect")); + this->asyncCall(QLatin1String("Connect")); } void QConnmanServiceInterface::disconnect() @@ -866,7 +865,7 @@ void QConnmanTechnologyInterface::connectNotify(const char *signal) helper,SLOT(propertyChanged(QString,QDBusVariant))); QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } @@ -1031,7 +1030,7 @@ void QConnmanDeviceInterface::connectNotify(const char *signal) helper,SLOT(propertyChanged(QString,QDBusVariant))); QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } diff --git a/src/plugins/bearer/connman/qofonoservice_linux.cpp b/src/plugins/bearer/connman/qofonoservice_linux.cpp index 955f4b1..52f596b 100644 --- a/src/plugins/bearer/connman/qofonoservice_linux.cpp +++ b/src/plugins/bearer/connman/qofonoservice_linux.cpp @@ -262,7 +262,7 @@ void QOfonoModemInterface::connectNotify(const char *signal) QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); }} void QOfonoModemInterface::disconnectNotify(const char *signal) @@ -385,7 +385,7 @@ if (QLatin1String(signal) == SIGNAL(propertyChanged(QString,QDBusVariant))) { QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } @@ -483,7 +483,7 @@ if (QLatin1String(signal) == SIGNAL(propertyChanged(QString,QDBusVariant))) { QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } @@ -586,7 +586,7 @@ if (QLatin1String(signal) == SIGNAL(propertyChanged(QString,QDBusVariant))) { QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } @@ -675,7 +675,7 @@ if (QLatin1String(signal) == SIGNAL(propertyChanged(QString,QDBusVariant))) { QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } @@ -794,7 +794,7 @@ if (QLatin1String(signal) == SIGNAL(propertyChanged(QString,QDBusVariant))) { QObject::connect(helper,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), - this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &))); + this,SIGNAL(propertyChangedContext(const QString &,const QString &,const QDBusVariant &)), Qt::UniqueConnection); } } -- cgit v0.12 From d1b0b364fc2c944ec5cf67ed9a3282881f4c324c Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Thu, 28 Oct 2010 18:45:11 +1000 Subject: Cleanup qmlvisual/qdeclarativetext visual tests Getting them running again, and smaller. Need to fix a bug before they pass again though. Task-number: QTBUG-14792 --- .../baseline/data-X11/parentanchor.qml | 62 +- .../qdeclarativetext/baseline/parentanchor.qml | 2 +- .../qdeclarativetext/elide/data-X11/elide.0.png | Bin 1002 -> 1167 bytes .../qdeclarativetext/elide/data-X11/elide.qml | 132 +-- .../qdeclarativetext/elide/data-X11/elide2.0.png | Bin 0 -> 2795 bytes .../qdeclarativetext/elide/data-X11/elide2.1.png | Bin 0 -> 2456 bytes .../qdeclarativetext/elide/data-X11/elide2.2.png | Bin 0 -> 2038 bytes .../qdeclarativetext/elide/data-X11/elide2.3.png | Bin 0 -> 1317 bytes .../qdeclarativetext/elide/data-X11/elide2.qml | 991 +++++++++++++++++ .../elide/data-X11/multilength.0.png | Bin 596 -> 2285 bytes .../elide/data-X11/multilength.1.png | Bin 0 -> 2284 bytes .../elide/data-X11/multilength.2.png | Bin 0 -> 1197 bytes .../elide/data-X11/multilength.3.png | Bin 0 -> 1197 bytes .../elide/data-X11/multilength.4.png | Bin 0 -> 556 bytes .../elide/data-X11/multilength.qml | 1166 ++++++++++++++++++-- .../qdeclarativetext/elide/data/elide.0.png | Bin 1604 -> 0 bytes .../qdeclarativetext/elide/data/elide.qml | 279 ----- .../qdeclarativetext/elide/data/elide2.0.png | Bin 4818 -> 0 bytes .../qdeclarativetext/elide/data/elide2.1.png | Bin 4089 -> 0 bytes .../qdeclarativetext/elide/data/elide2.2.png | Bin 3128 -> 0 bytes .../qdeclarativetext/elide/data/elide2.3.png | Bin 1963 -> 0 bytes .../qdeclarativetext/elide/data/elide2.qml | 991 ----------------- .../qdeclarativetext/font/data-MAC/plaintext.0.png | Bin 103018 -> 0 bytes .../qdeclarativetext/font/data-MAC/plaintext.qml | 351 ------ .../qdeclarativetext/font/data-MAC/richtext.0.png | Bin 136492 -> 0 bytes .../qdeclarativetext/font/data-MAC/richtext.qml | 359 ------ .../qdeclarativetext/font/data/plaintext.0.png | Bin 94120 -> 0 bytes .../qdeclarativetext/font/data/plaintext.qml | 351 ------ .../qdeclarativetext/font/data/richtext.0.png | Bin 121122 -> 0 bytes .../qdeclarativetext/font/data/richtext.qml | 359 ------ 30 files changed, 2182 insertions(+), 2861 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.2.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.3.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.2.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.3.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml index 880609b..c526f47 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/data-X11/parentanchor.qml @@ -6,126 +6,126 @@ VisualTest { } Frame { msec: 16 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 32 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 48 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 64 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 80 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 96 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 112 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 128 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 144 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 160 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 176 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 192 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 208 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 224 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 240 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 256 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 272 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 288 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 304 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 320 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 336 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 352 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 368 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 384 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 400 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 416 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 432 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 448 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 464 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 480 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } Frame { msec: 496 - hash: "3e022a120a2dbe688d53657508de36cf" + hash: "e38b59f2c271def037213e57a966bd95" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml index ec1f8b3..c1920db 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/baseline/parentanchor.qml @@ -1,7 +1,7 @@ import QtQuick 1.0 Rectangle { - id: s; width: 600; height: 100; color: "lightsteelblue" + id: s; width: 600; height: 100; property string text: "The quick brown fox jumps over the lazy dog." Text { text: s.text diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.0.png index 5631a46..b250b38 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml index d460514..f3bc1db 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide.qml @@ -6,239 +6,239 @@ VisualTest { } Frame { msec: 16 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 32 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 48 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 64 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 80 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 96 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 112 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 128 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 144 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 160 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 176 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 192 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 208 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 224 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 240 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 256 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 272 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 288 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 304 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 320 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 336 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 352 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 368 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 384 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 400 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 416 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 432 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 448 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 464 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 480 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 496 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 512 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 528 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 544 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 560 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 576 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 592 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 608 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 624 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 640 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 656 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 672 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 688 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 704 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 720 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 736 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 752 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 768 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 784 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 800 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 816 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 832 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 848 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 864 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 880 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 896 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 912 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 928 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 944 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 960 @@ -246,34 +246,34 @@ VisualTest { } Frame { msec: 976 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Key { type: 6 key: 16777249 - modifiers: 67108864 + modifiers: 0 text: "" autorep: false count: 1 } Frame { msec: 992 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 1008 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 1024 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 1040 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } Frame { msec: 1056 - hash: "48e2da07fd229d9db6afc0eda494cd11" + hash: "9992670f23580ce63cdd3ab3fed621a1" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.0.png new file mode 100644 index 0000000..03b6e5d Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.1.png new file mode 100644 index 0000000..43565b6 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.2.png new file mode 100644 index 0000000..f2df9b2 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.3.png new file mode 100644 index 0000000..11cf86c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.qml new file mode 100644 index 0000000..1c1d5eb --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/elide2.qml @@ -0,0 +1,991 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 32 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 48 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 64 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 80 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 96 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 112 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 128 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 144 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 160 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 176 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 192 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 208 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 224 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 240 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 256 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 272 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 288 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 304 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 320 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 336 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 352 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 368 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 384 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 400 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 416 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 432 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 448 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 464 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 480 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 496 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 512 + hash: "26a468619443250a160845a894643eb9" + } + Frame { + msec: 528 + hash: "250d6cd632ad176aacbb09fa50f6c099" + } + Frame { + msec: 544 + hash: "250d6cd632ad176aacbb09fa50f6c099" + } + Frame { + msec: 560 + hash: "250d6cd632ad176aacbb09fa50f6c099" + } + Frame { + msec: 576 + hash: "92cfcc9ee96124c5a3848f68228b286b" + } + Frame { + msec: 592 + hash: "92cfcc9ee96124c5a3848f68228b286b" + } + Frame { + msec: 608 + hash: "92cfcc9ee96124c5a3848f68228b286b" + } + Frame { + msec: 624 + hash: "92cfcc9ee96124c5a3848f68228b286b" + } + Frame { + msec: 640 + hash: "92cfcc9ee96124c5a3848f68228b286b" + } + Frame { + msec: 656 + hash: "235f581c767dc4a4f6133e570126a813" + } + Frame { + msec: 672 + hash: "235f581c767dc4a4f6133e570126a813" + } + Frame { + msec: 688 + hash: "235f581c767dc4a4f6133e570126a813" + } + Frame { + msec: 704 + hash: "235f581c767dc4a4f6133e570126a813" + } + Frame { + msec: 720 + hash: "235f581c767dc4a4f6133e570126a813" + } + Frame { + msec: 736 + hash: "c7d6b690224ae554f6200a5d2520ae25" + } + Frame { + msec: 752 + hash: "c7d6b690224ae554f6200a5d2520ae25" + } + Frame { + msec: 768 + hash: "23f5fb2275945e89bf856877b82f99de" + } + Frame { + msec: 784 + hash: "23f5fb2275945e89bf856877b82f99de" + } + Frame { + msec: 800 + hash: "23f5fb2275945e89bf856877b82f99de" + } + Frame { + msec: 816 + hash: "23f5fb2275945e89bf856877b82f99de" + } + Frame { + msec: 832 + hash: "23f5fb2275945e89bf856877b82f99de" + } + Frame { + msec: 848 + hash: "99e6e3d94bb90939dacadf20f791d415" + } + Frame { + msec: 864 + hash: "99e6e3d94bb90939dacadf20f791d415" + } + Frame { + msec: 880 + hash: "99e6e3d94bb90939dacadf20f791d415" + } + Frame { + msec: 896 + hash: "186db3738dc443d66b5b0352d7753b26" + } + Frame { + msec: 912 + hash: "186db3738dc443d66b5b0352d7753b26" + } + Frame { + msec: 928 + hash: "186db3738dc443d66b5b0352d7753b26" + } + Frame { + msec: 944 + hash: "186db3738dc443d66b5b0352d7753b26" + } + Frame { + msec: 960 + image: "elide2.0.png" + } + Frame { + msec: 976 + hash: "88be0433f060832e8345a43eb681998e" + } + Frame { + msec: 992 + hash: "88be0433f060832e8345a43eb681998e" + } + Frame { + msec: 1008 + hash: "88be0433f060832e8345a43eb681998e" + } + Frame { + msec: 1024 + hash: "88be0433f060832e8345a43eb681998e" + } + Frame { + msec: 1040 + hash: "88be0433f060832e8345a43eb681998e" + } + Frame { + msec: 1056 + hash: "89e8da94c1e4e1c031d58f1dd593104a" + } + Frame { + msec: 1072 + hash: "89e8da94c1e4e1c031d58f1dd593104a" + } + Frame { + msec: 1088 + hash: "786b7ea2e267ee6d593f18caa95be45d" + } + Frame { + msec: 1104 + hash: "786b7ea2e267ee6d593f18caa95be45d" + } + Frame { + msec: 1120 + hash: "786b7ea2e267ee6d593f18caa95be45d" + } + Frame { + msec: 1136 + hash: "830afd40f8ee9d0c969fbd61eb68ae94" + } + Frame { + msec: 1152 + hash: "830afd40f8ee9d0c969fbd61eb68ae94" + } + Frame { + msec: 1168 + hash: "d00b74868c2dbddc2d5ae5ec0469f9a1" + } + Frame { + msec: 1184 + hash: "d00b74868c2dbddc2d5ae5ec0469f9a1" + } + Frame { + msec: 1200 + hash: "d00b74868c2dbddc2d5ae5ec0469f9a1" + } + Frame { + msec: 1216 + hash: "d00b74868c2dbddc2d5ae5ec0469f9a1" + } + Frame { + msec: 1232 + hash: "1508cbb70b1221ccf169ff6376df4cc9" + } + Frame { + msec: 1248 + hash: "1508cbb70b1221ccf169ff6376df4cc9" + } + Frame { + msec: 1264 + hash: "1508cbb70b1221ccf169ff6376df4cc9" + } + Frame { + msec: 1280 + hash: "490d7425d117ebe23e3e3637fd3e7b09" + } + Frame { + msec: 1296 + hash: "490d7425d117ebe23e3e3637fd3e7b09" + } + Frame { + msec: 1312 + hash: "490d7425d117ebe23e3e3637fd3e7b09" + } + Frame { + msec: 1328 + hash: "490d7425d117ebe23e3e3637fd3e7b09" + } + Frame { + msec: 1344 + hash: "490d7425d117ebe23e3e3637fd3e7b09" + } + Frame { + msec: 1360 + hash: "048b3223ca262f5f3271f4ad81fbe41f" + } + Frame { + msec: 1376 + hash: "048b3223ca262f5f3271f4ad81fbe41f" + } + Frame { + msec: 1392 + hash: "048b3223ca262f5f3271f4ad81fbe41f" + } + Frame { + msec: 1408 + hash: "048b3223ca262f5f3271f4ad81fbe41f" + } + Frame { + msec: 1424 + hash: "048b3223ca262f5f3271f4ad81fbe41f" + } + Frame { + msec: 1440 + hash: "4e91391c852167a04c6224ef5426b17c" + } + Frame { + msec: 1456 + hash: "4e91391c852167a04c6224ef5426b17c" + } + Frame { + msec: 1472 + hash: "4e91391c852167a04c6224ef5426b17c" + } + Frame { + msec: 1488 + hash: "4e91391c852167a04c6224ef5426b17c" + } + Frame { + msec: 1504 + hash: "4e91391c852167a04c6224ef5426b17c" + } + Frame { + msec: 1520 + hash: "08e969be0cd428140cd079f5f6338b4f" + } + Frame { + msec: 1536 + hash: "08e969be0cd428140cd079f5f6338b4f" + } + Frame { + msec: 1552 + hash: "08e969be0cd428140cd079f5f6338b4f" + } + Frame { + msec: 1568 + hash: "08e969be0cd428140cd079f5f6338b4f" + } + Frame { + msec: 1584 + hash: "08e969be0cd428140cd079f5f6338b4f" + } + Frame { + msec: 1600 + hash: "458e10bb1d38ef8f1248be959a3ac8bc" + } + Frame { + msec: 1616 + hash: "458e10bb1d38ef8f1248be959a3ac8bc" + } + Frame { + msec: 1632 + hash: "458e10bb1d38ef8f1248be959a3ac8bc" + } + Frame { + msec: 1648 + hash: "fde9eccf9fa722d4321bd26ead3d6c5e" + } + Frame { + msec: 1664 + hash: "fde9eccf9fa722d4321bd26ead3d6c5e" + } + Frame { + msec: 1680 + hash: "fde9eccf9fa722d4321bd26ead3d6c5e" + } + Frame { + msec: 1696 + hash: "fde9eccf9fa722d4321bd26ead3d6c5e" + } + Frame { + msec: 1712 + hash: "fde9eccf9fa722d4321bd26ead3d6c5e" + } + Frame { + msec: 1728 + hash: "68ac9747d1b36351ac6677336d4e0bfd" + } + Frame { + msec: 1744 + hash: "68ac9747d1b36351ac6677336d4e0bfd" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1760 + hash: "68ac9747d1b36351ac6677336d4e0bfd" + } + Frame { + msec: 1776 + hash: "015658eeb53ce6937d0a0b3941cea138" + } + Frame { + msec: 1792 + hash: "015658eeb53ce6937d0a0b3941cea138" + } + Frame { + msec: 1808 + hash: "015658eeb53ce6937d0a0b3941cea138" + } + Frame { + msec: 1824 + hash: "015658eeb53ce6937d0a0b3941cea138" + } + Frame { + msec: 1840 + hash: "015658eeb53ce6937d0a0b3941cea138" + } + Frame { + msec: 1856 + hash: "4720bcf54fce0c680a983113dc009104" + } + Frame { + msec: 1872 + hash: "4720bcf54fce0c680a983113dc009104" + } + Frame { + msec: 1888 + hash: "4720bcf54fce0c680a983113dc009104" + } + Frame { + msec: 1904 + hash: "4720bcf54fce0c680a983113dc009104" + } + Frame { + msec: 1920 + image: "elide2.1.png" + } + Frame { + msec: 1936 + hash: "03123bcb0f4ff032257415f713a5873c" + } + Frame { + msec: 1952 + hash: "03123bcb0f4ff032257415f713a5873c" + } + Frame { + msec: 1968 + hash: "03123bcb0f4ff032257415f713a5873c" + } + Frame { + msec: 1984 + hash: "03123bcb0f4ff032257415f713a5873c" + } + Frame { + msec: 2000 + hash: "e93d314c5a19e771282bf09ff0983917" + } + Frame { + msec: 2016 + hash: "e93d314c5a19e771282bf09ff0983917" + } + Frame { + msec: 2032 + hash: "e93d314c5a19e771282bf09ff0983917" + } + Frame { + msec: 2048 + hash: "e93d314c5a19e771282bf09ff0983917" + } + Frame { + msec: 2064 + hash: "e93d314c5a19e771282bf09ff0983917" + } + Frame { + msec: 2080 + hash: "877e76006891001e574b39f60249ec8a" + } + Frame { + msec: 2096 + hash: "877e76006891001e574b39f60249ec8a" + } + Frame { + msec: 2112 + hash: "877e76006891001e574b39f60249ec8a" + } + Frame { + msec: 2128 + hash: "04213ba6fc23600c62c49bdd63725b3d" + } + Frame { + msec: 2144 + hash: "04213ba6fc23600c62c49bdd63725b3d" + } + Frame { + msec: 2160 + hash: "04213ba6fc23600c62c49bdd63725b3d" + } + Frame { + msec: 2176 + hash: "04213ba6fc23600c62c49bdd63725b3d" + } + Frame { + msec: 2192 + hash: "605fbd44c23d135d809e987fde15caf0" + } + Frame { + msec: 2208 + hash: "605fbd44c23d135d809e987fde15caf0" + } + Frame { + msec: 2224 + hash: "138d9fe345628797df8af84b71e76717" + } + Frame { + msec: 2240 + hash: "138d9fe345628797df8af84b71e76717" + } + Frame { + msec: 2256 + hash: "138d9fe345628797df8af84b71e76717" + } + Frame { + msec: 2272 + hash: "138d9fe345628797df8af84b71e76717" + } + Frame { + msec: 2288 + hash: "138d9fe345628797df8af84b71e76717" + } + Frame { + msec: 2304 + hash: "1a160138dbed69dd2fc6cdc335c39332" + } + Frame { + msec: 2320 + hash: "1a160138dbed69dd2fc6cdc335c39332" + } + Frame { + msec: 2336 + hash: "a40edd45d19a09b7b5b6601c2e4789ba" + } + Frame { + msec: 2352 + hash: "a40edd45d19a09b7b5b6601c2e4789ba" + } + Frame { + msec: 2368 + hash: "a40edd45d19a09b7b5b6601c2e4789ba" + } + Frame { + msec: 2384 + hash: "a40edd45d19a09b7b5b6601c2e4789ba" + } + Frame { + msec: 2400 + hash: "a40edd45d19a09b7b5b6601c2e4789ba" + } + Frame { + msec: 2416 + hash: "f8c24070f98d456925ce5fb5519ef20e" + } + Frame { + msec: 2432 + hash: "f8c24070f98d456925ce5fb5519ef20e" + } + Frame { + msec: 2448 + hash: "f8c24070f98d456925ce5fb5519ef20e" + } + Frame { + msec: 2464 + hash: "f8c24070f98d456925ce5fb5519ef20e" + } + Frame { + msec: 2480 + hash: "f8c24070f98d456925ce5fb5519ef20e" + } + Frame { + msec: 2496 + hash: "f383c8fc8764f8615937fcbe18a881cb" + } + Frame { + msec: 2512 + hash: "f383c8fc8764f8615937fcbe18a881cb" + } + Frame { + msec: 2528 + hash: "f383c8fc8764f8615937fcbe18a881cb" + } + Frame { + msec: 2544 + hash: "f383c8fc8764f8615937fcbe18a881cb" + } + Frame { + msec: 2560 + hash: "f383c8fc8764f8615937fcbe18a881cb" + } + Frame { + msec: 2576 + hash: "98355e4087b07e4bf85bd9dd6b2594e2" + } + Frame { + msec: 2592 + hash: "98355e4087b07e4bf85bd9dd6b2594e2" + } + Frame { + msec: 2608 + hash: "98355e4087b07e4bf85bd9dd6b2594e2" + } + Frame { + msec: 2624 + hash: "98355e4087b07e4bf85bd9dd6b2594e2" + } + Frame { + msec: 2640 + hash: "098f7051d2bc8b159a3c358c99ade1e5" + } + Frame { + msec: 2656 + hash: "098f7051d2bc8b159a3c358c99ade1e5" + } + Frame { + msec: 2672 + hash: "098f7051d2bc8b159a3c358c99ade1e5" + } + Frame { + msec: 2688 + hash: "fa588455c73bfd3d14ee322580d95015" + } + Frame { + msec: 2704 + hash: "fa588455c73bfd3d14ee322580d95015" + } + Frame { + msec: 2720 + hash: "fa588455c73bfd3d14ee322580d95015" + } + Frame { + msec: 2736 + hash: "fa588455c73bfd3d14ee322580d95015" + } + Frame { + msec: 2752 + hash: "fa588455c73bfd3d14ee322580d95015" + } + Frame { + msec: 2768 + hash: "ed69a2ab8e66fa397190b35cb942ec2d" + } + Frame { + msec: 2784 + hash: "ed69a2ab8e66fa397190b35cb942ec2d" + } + Frame { + msec: 2800 + hash: "ed69a2ab8e66fa397190b35cb942ec2d" + } + Frame { + msec: 2816 + hash: "ed69a2ab8e66fa397190b35cb942ec2d" + } + Frame { + msec: 2832 + hash: "ed69a2ab8e66fa397190b35cb942ec2d" + } + Frame { + msec: 2848 + hash: "905d42c34198abdc68a3c6f69bfbd293" + } + Frame { + msec: 2864 + hash: "905d42c34198abdc68a3c6f69bfbd293" + } + Frame { + msec: 2880 + image: "elide2.2.png" + } + Frame { + msec: 2896 + hash: "2e796a963fee85d51be536a00baa0c45" + } + Frame { + msec: 2912 + hash: "2e796a963fee85d51be536a00baa0c45" + } + Frame { + msec: 2928 + hash: "2e796a963fee85d51be536a00baa0c45" + } + Frame { + msec: 2944 + hash: "b73b94832ede92794187b9ed452f96e0" + } + Frame { + msec: 2960 + hash: "b73b94832ede92794187b9ed452f96e0" + } + Frame { + msec: 2976 + hash: "b73b94832ede92794187b9ed452f96e0" + } + Frame { + msec: 2992 + hash: "b73b94832ede92794187b9ed452f96e0" + } + Frame { + msec: 3008 + hash: "b73b94832ede92794187b9ed452f96e0" + } + Frame { + msec: 3024 + hash: "4f000e957cd4c7ef4845855088801c2d" + } + Frame { + msec: 3040 + hash: "4f000e957cd4c7ef4845855088801c2d" + } + Frame { + msec: 3056 + hash: "4f000e957cd4c7ef4845855088801c2d" + } + Frame { + msec: 3072 + hash: "4f000e957cd4c7ef4845855088801c2d" + } + Frame { + msec: 3088 + hash: "4f000e957cd4c7ef4845855088801c2d" + } + Frame { + msec: 3104 + hash: "a432c8b664352e585f732813df2e861f" + } + Frame { + msec: 3120 + hash: "a432c8b664352e585f732813df2e861f" + } + Frame { + msec: 3136 + hash: "a432c8b664352e585f732813df2e861f" + } + Frame { + msec: 3152 + hash: "e06abd91449d3b5d18582b9da2d20c97" + } + Frame { + msec: 3168 + hash: "e06abd91449d3b5d18582b9da2d20c97" + } + Frame { + msec: 3184 + hash: "e06abd91449d3b5d18582b9da2d20c97" + } + Frame { + msec: 3200 + hash: "c4cecc3832935d59d9808ea70385632d" + } + Frame { + msec: 3216 + hash: "c4cecc3832935d59d9808ea70385632d" + } + Frame { + msec: 3232 + hash: "c4cecc3832935d59d9808ea70385632d" + } + Frame { + msec: 3248 + hash: "56942f99b8b2a6c491b8635ae5619a4f" + } + Frame { + msec: 3264 + hash: "56942f99b8b2a6c491b8635ae5619a4f" + } + Frame { + msec: 3280 + hash: "56942f99b8b2a6c491b8635ae5619a4f" + } + Frame { + msec: 3296 + hash: "56942f99b8b2a6c491b8635ae5619a4f" + } + Frame { + msec: 3312 + hash: "a3bf780a2ae09fb3fee6215a24b8bb53" + } + Frame { + msec: 3328 + hash: "a3bf780a2ae09fb3fee6215a24b8bb53" + } + Frame { + msec: 3344 + hash: "a3bf780a2ae09fb3fee6215a24b8bb53" + } + Frame { + msec: 3360 + hash: "a3bf780a2ae09fb3fee6215a24b8bb53" + } + Frame { + msec: 3376 + hash: "822cff91269181ddb5a3b24ca0227583" + } + Frame { + msec: 3392 + hash: "822cff91269181ddb5a3b24ca0227583" + } + Frame { + msec: 3408 + hash: "822cff91269181ddb5a3b24ca0227583" + } + Frame { + msec: 3424 + hash: "822cff91269181ddb5a3b24ca0227583" + } + Frame { + msec: 3440 + hash: "20f06bbb130e81d6eb2612aa79bb7968" + } + Frame { + msec: 3456 + hash: "20f06bbb130e81d6eb2612aa79bb7968" + } + Frame { + msec: 3472 + hash: "fcb03904d0e628f95c9b665c65b10266" + } + Frame { + msec: 3488 + hash: "fcb03904d0e628f95c9b665c65b10266" + } + Frame { + msec: 3504 + hash: "fcb03904d0e628f95c9b665c65b10266" + } + Frame { + msec: 3520 + hash: "fcb03904d0e628f95c9b665c65b10266" + } + Frame { + msec: 3536 + hash: "fcb03904d0e628f95c9b665c65b10266" + } + Frame { + msec: 3552 + hash: "1c17eaf20f5c16fea97a263d2aad1918" + } + Frame { + msec: 3568 + hash: "1c17eaf20f5c16fea97a263d2aad1918" + } + Frame { + msec: 3584 + hash: "1c17eaf20f5c16fea97a263d2aad1918" + } + Frame { + msec: 3600 + hash: "1c17eaf20f5c16fea97a263d2aad1918" + } + Frame { + msec: 3616 + hash: "1c17eaf20f5c16fea97a263d2aad1918" + } + Frame { + msec: 3632 + hash: "3c91d205312aefc4af746cea413c9344" + } + Frame { + msec: 3648 + hash: "3c91d205312aefc4af746cea413c9344" + } + Frame { + msec: 3664 + hash: "3c91d205312aefc4af746cea413c9344" + } + Frame { + msec: 3680 + hash: "3c91d205312aefc4af746cea413c9344" + } + Frame { + msec: 3696 + hash: "3c91d205312aefc4af746cea413c9344" + } + Frame { + msec: 3712 + hash: "6cb467aa12d6ae76edbfa324c0ad26d1" + } + Frame { + msec: 3728 + hash: "6cb467aa12d6ae76edbfa324c0ad26d1" + } + Frame { + msec: 3744 + hash: "c8ec3da9c651eadf4aa8a4051d326f91" + } + Frame { + msec: 3760 + hash: "c8ec3da9c651eadf4aa8a4051d326f91" + } + Frame { + msec: 3776 + hash: "c8ec3da9c651eadf4aa8a4051d326f91" + } + Frame { + msec: 3792 + hash: "6cea311c6007463480b71ffd66074557" + } + Frame { + msec: 3808 + hash: "6cea311c6007463480b71ffd66074557" + } + Frame { + msec: 3824 + hash: "6cea311c6007463480b71ffd66074557" + } + Frame { + msec: 3840 + image: "elide2.3.png" + } + Frame { + msec: 3856 + hash: "6e800f4aacf0096f34acdf13678cab25" + } + Frame { + msec: 3872 + hash: "6e800f4aacf0096f34acdf13678cab25" + } + Frame { + msec: 3888 + hash: "fc336a43eaf9974cd6ad82bfee128ead" + } + Frame { + msec: 3904 + hash: "fc336a43eaf9974cd6ad82bfee128ead" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.0.png index 6e2b625..7980f23 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.1.png new file mode 100644 index 0000000..cbfae6e Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.2.png new file mode 100644 index 0000000..5e2527e Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.3.png new file mode 100644 index 0000000..901551e Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.4.png new file mode 100644 index 0000000..32a5ba2 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml index ee06b1a..5d36d48 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data-X11/multilength.qml @@ -6,239 +6,239 @@ VisualTest { } Frame { msec: 16 - hash: "873e914454b7a040b05649ebd1a2f8c5" + hash: "a9dc5058e29f9c129087eaa013002185" } Frame { msec: 32 - hash: "7682a4f1e361ca252da9713734a598e8" + hash: "da0d63697414c19f57235c4d133faf63" } Frame { msec: 48 - hash: "fa8884b550c8df872f96b61557163bcf" + hash: "e3992f5512959c061d53fc3899acec14" } Frame { msec: 64 - hash: "b84ecf9e38f126c3e32defee831d9462" + hash: "e225de5dc21fee719ebc43fa8838f841" } Frame { msec: 80 - hash: "21cc08f22d1f1fcb38b27a3a4259debe" + hash: "a5673b8b7ad5a9d67e785beaaa4c0307" } Frame { msec: 96 - hash: "93bdfeab813e25e85917f49c0d5f1314" + hash: "2c126bf2d794039e1380595b9c40ae2e" } Frame { msec: 112 - hash: "5f03c252602e60fe19879945fa77c203" + hash: "f974072b4863b842b520b4c11c427f5d" } Frame { msec: 128 - hash: "f0b2079f6c512bf80989ebfdbec4cfd8" + hash: "bf06ec5a2c1c46e780cdd0d859b2becb" } Frame { msec: 144 - hash: "9e7bb12d5b7605fc1d78ed9b2a549527" + hash: "3a58b1900912a5a6ace72757f3af4d1a" } Frame { msec: 160 - hash: "242bbbe6da87708c92fd47607ecb789d" + hash: "3fa86df29f53e7f6f65fb6e605f5e705" } Frame { msec: 176 - hash: "f1db5c3a230b4d3e2e1dfefe6bf032a1" + hash: "6d29c12395050b049537819cf0a65746" } Frame { msec: 192 - hash: "a416e820efd8e173cc52372218513e33" + hash: "352a390ab4e3e31b645f025e65885cfc" } Frame { msec: 208 - hash: "df711ab70c6087f8138fded16167f069" + hash: "7c3be9d325f023a356b6ed73332bc804" } Frame { msec: 224 - hash: "fb28eb2eeccfab28299640ef996c1115" + hash: "09dd10566eda09e0366b7bf0a8ce9e1b" } Frame { msec: 240 - hash: "c72c6d79a50dd7147f6b33784880eb36" + hash: "6cafcba107e48f7efe2db60a14c3749d" } Frame { msec: 256 - hash: "4421027e65e95f98499ca53c57220ede" + hash: "a4b6df2874ce48ed5a17aab43f32e665" } Frame { msec: 272 - hash: "b7fbfb90d8cc167809e8e846d9021b4b" + hash: "b6a3df4b704fa7e8284572b9c520b03d" } Frame { msec: 288 - hash: "004614b1bf18e9aa78e78509c4f289aa" + hash: "618c53edf13177d433fdcca5b0cedfaa" } Frame { msec: 304 - hash: "1792bbd8b69bae1d92fed2a6bcfe0187" + hash: "ce96d70a89f7701ce069e93c192196ed" } Frame { msec: 320 - hash: "957a8b95d6e85885d854b8eb1db10b04" + hash: "5826b56af5a4670d479c5f8e649d29d4" } Frame { msec: 336 - hash: "d00c3e4d6d8e8d04b949840c28d73a33" + hash: "5aaf7fc6295d4ab6377bd77e91f73ae8" } Frame { msec: 352 - hash: "2b79feaa62d773d92d8a684685b2004c" + hash: "26cb0b5e60de63d582b4c4d1c4120746" } Frame { msec: 368 - hash: "ef2f11b187028de0c56b23db3168fbc8" + hash: "41b6c379d7fb678abbcccde7bca7f243" } Frame { msec: 384 - hash: "3a489a96aaeca80355313198b935691d" + hash: "46668408674d3e94048375152f991427" } Frame { msec: 400 - hash: "389f1798f900795a8686c38ace755974" + hash: "c966370fbbdd8b32cafc06cdc551e020" } Frame { msec: 416 - hash: "34fc20be52fe3843420819b9adb90b22" + hash: "025aab500846dab22713ccada8f93a51" } Frame { msec: 432 - hash: "fa715c5b6640eafe204bf3b8095c74b9" + hash: "a6a68f04ea34fba46025a1415dc46bbb" } Frame { msec: 448 - hash: "8e8315edcf23167ac58228b8c28b43e6" + hash: "1afc5b8b094056695b09088d13ab1612" } Frame { msec: 464 - hash: "c18e82038f57dd869112cb1be14e4cfe" + hash: "efff72e37e0c23e0cd51169d0c06c065" } Frame { msec: 480 - hash: "3f07e95b09e39f2e5d93216850f4a4d9" + hash: "ed425b23ea5340ac5b176b4fbb377fe3" } Frame { msec: 496 - hash: "20f0e6eaeac04d6f93565adfab485218" + hash: "9df20063ec67aa06e44bf292f05469a6" } Frame { msec: 512 - hash: "e3f66d1dfe88dd868a54a8493828ef5f" + hash: "d3400c655403d00df7e202a42b75476d" } Frame { msec: 528 - hash: "d39d34f63e1b29c187249cb388552b38" + hash: "336fd54ae209ba7c28a69939a021341b" } Frame { msec: 544 - hash: "5d2e8df5003732f3b53fff4aaddea06c" + hash: "621c3b64fc6214b8a48c216d46d5615d" } Frame { msec: 560 - hash: "35c3aa2dae481a8f817d849b3f3151f2" + hash: "5f9ac0b6830dbfa4cba83adc0cce232f" } Frame { msec: 576 - hash: "966b78018879224948b4d85fe73d7985" + hash: "2b829253ed85f5ffe5e3867accadd218" } Frame { msec: 592 - hash: "0db067bf9debc3f36dd539cf83652fb8" + hash: "61325a770fb501d88f6bb2700294ca44" } Frame { msec: 608 - hash: "ea1c3249ffd2439533907ceaeaafbc56" + hash: "807dea2954afa902694b1ef98ef5f2c1" } Frame { msec: 624 - hash: "da85c0e14b95ca9a729984b67ebd52ad" + hash: "43edc754d8155c198dd1db6d55d25abf" } Frame { msec: 640 - hash: "5c26ae844ac52dbe131fed0638787aac" + hash: "4c800c2b8ab7b1500e80f50ee925b73b" } Frame { msec: 656 - hash: "4b09c23ad624db80afcb2a6c1d5ddb96" + hash: "17b60d375c02b55923b94b147015bc7d" } Frame { msec: 672 - hash: "9995deb3d22b418a19093b4b988b3fcc" + hash: "591e79b034700b514c84894e0fc27e27" } Frame { msec: 688 - hash: "77e53358f2d4392d0ba988187e7e272c" + hash: "61624e674a0994cedae75b2e56958612" } Frame { msec: 704 - hash: "3fbbb73e790cf4a0583531fe1580f761" + hash: "7f662b3978191ef5812ccad4d1d687b8" } Frame { msec: 720 - hash: "9d562e141095a258ee61463e644d9889" + hash: "d07560950476d08ce51661356ea53753" } Frame { msec: 736 - hash: "d05633ca49f96bf327bed5c9c0f6ac98" + hash: "1cbbf48c54d373bbb3fdfe42fe8396b7" } Frame { msec: 752 - hash: "34c38e40e831dbede8fa83de31ed76aa" + hash: "f95205fb90069a13ab395d7a3e1775ad" } Frame { msec: 768 - hash: "288e52c8be54f4914f687cef4ce1f24a" + hash: "f40a57afb29c1cc161f71a1b134a5d0d" } Frame { msec: 784 - hash: "0b8b744aaf67e8b17fa459bb0ffb6db5" + hash: "3311a6a6197df79e5fcf2a1729368618" } Frame { msec: 800 - hash: "273dbe3e8c21bfeafa516d07778928c8" + hash: "597ae977e27d0cac57b1fc8b0564a15b" } Frame { msec: 816 - hash: "ef94ee1885287c72fa78038547d98b96" + hash: "aca451b1a1e8f727315f8d13d4b21aec" } Frame { msec: 832 - hash: "965e6387672319ac04fdc42768e581f1" + hash: "c0437b88a05a7aa1b7b645b5151773d7" } Frame { msec: 848 - hash: "95553d8aaece94c7017e57b03cd46c9a" + hash: "be8659747f0b6e76acaf17851b599b7b" } Frame { msec: 864 - hash: "bdaf35b920e5b08b8639d452afd2d51e" + hash: "2b0033b95e853368cff2d6032ff707f6" } Frame { msec: 880 - hash: "0ed16f00e89327dc8679bec42179c4ce" + hash: "12a747305311ea86ce681a3ff56f394f" } Frame { msec: 896 - hash: "8c93e0ac399e09e98e34b90654e0e42a" + hash: "00b041e67e3ac3e1678eae72580107f7" } Frame { msec: 912 - hash: "93798fbb33adb6c813018757cfa34017" + hash: "09f69db7a724401388e4b7fefeb3df89" } Frame { msec: 928 - hash: "db4d7581e9a1f082a2c29ef7482a7893" + hash: "15e96d009e101d6869d1cc69e0a9092a" } Frame { msec: 944 - hash: "67e074c1e083334de84a3549f4ee9ca4" + hash: "b1a900f6ca81bf556ef126211afb8b0c" } Frame { msec: 960 @@ -246,58 +246,1078 @@ VisualTest { } Frame { msec: 976 - hash: "b1122c815a755c9988bcf03a3f7d7d6d" + hash: "87ea64b511b6d990f66cd4e3a141caf2" } Frame { msec: 992 - hash: "31148bae6653bdc3f1827d06de845663" + hash: "cc5281bca844570d36ab193ba074dfcb" } Frame { msec: 1008 - hash: "812428a944086ca46e102891964dac69" + hash: "cf430f604050734c455206b974587d76" } Frame { msec: 1024 - hash: "ee7bb66bd7e8623325200ac994f8b41a" + hash: "b10b053a551dda58e626062b6721009f" } Frame { msec: 1040 - hash: "6bd21a98e5c373a2c78334a0255e7750" + hash: "0ab24cb42bf4db645c779a48a060919d" } Frame { msec: 1056 - hash: "2e8e1eea14068b0e82464ed52ec1ab7a" + hash: "0cba8d41e70c3ab23c55d02328954fd3" } Frame { msec: 1072 - hash: "6dca5756e20eeb778e31d7b602ce77d7" + hash: "1f25027c81418c8f511d3d866948ea97" } Frame { msec: 1088 - hash: "3cbb6700b9e30864a2b1e3d4d71d2a78" + hash: "d4ef5c5de73e515ea3eb841d87d3916c" } Frame { msec: 1104 - hash: "c4d0230d2c4f73191a514e5df4c0b083" + hash: "bbdb93e72c966b3801cbc27a42f0e29f" } Frame { msec: 1120 - hash: "a33df967fe43151dfc503d2ac78f8ca8" + hash: "f2b12153d449e6b2476af44272b6d54f" } Frame { msec: 1136 - hash: "0c7ff101efe60b600cacaf8d04d79053" + hash: "5605809550a9c5151d3f6eb04de76587" } Frame { msec: 1152 - hash: "d246cfb75d89b9666877860aaf45ba60" + hash: "c887e88030c58144e6bb253e369b3bac" } Frame { msec: 1168 - hash: "1130998aa2618a29ec6bc4b9219eedfa" + hash: "9d9f4aaea9d55118fac9cf78e6785ef7" } Frame { msec: 1184 - hash: "741dd83003633bbf8d28c2d4ddd8a2d0" + hash: "08dcb6457d8556aec27fdd38095f9058" + } + Frame { + msec: 1200 + hash: "45052b296f95976b22d5933ced4e259c" + } + Frame { + msec: 1216 + hash: "3bae979929efc4e3e315f3b00eb8da49" + } + Frame { + msec: 1232 + hash: "af52455d0e2d8e30a4c27aaa58d61702" + } + Frame { + msec: 1248 + hash: "760a6b74a31adb04f220e4bb7457bc2b" + } + Frame { + msec: 1264 + hash: "bfb0d7dab25007c20a45f98f69fa97ff" + } + Frame { + msec: 1280 + hash: "eac34dc1254c606a7b866e25967796dd" + } + Frame { + msec: 1296 + hash: "f2577d86f3b90ff49339e9eb208b2b55" + } + Frame { + msec: 1312 + hash: "11beecfe87619f1c90ab1aa79e5cc0d9" + } + Frame { + msec: 1328 + hash: "8f721400a444750f11a9f6a5b1f9b1f1" + } + Frame { + msec: 1344 + hash: "be5082d93788b91f251a174b2889b58f" + } + Frame { + msec: 1360 + hash: "22527c1c29923577e90f506745230573" + } + Frame { + msec: 1376 + hash: "a6ab98f02be95359a939a7841123ef17" + } + Frame { + msec: 1392 + hash: "c23c3352261f3c94e5f329b6a872dda2" + } + Frame { + msec: 1408 + hash: "0b4987678b416bafd922c47d2b540fe1" + } + Frame { + msec: 1424 + hash: "8e3335e136e7ff01df146dcba4ae49c2" + } + Frame { + msec: 1440 + hash: "28d20b81feb20325613d5a5d16238eb3" + } + Frame { + msec: 1456 + hash: "04405979c68d1354f8b3fff03ad5ff5f" + } + Frame { + msec: 1472 + hash: "51929671bccb25ec5fd9d6d6df29483b" + } + Frame { + msec: 1488 + hash: "4bc938a8620242ca07e73adcd0219934" + } + Frame { + msec: 1504 + hash: "73f5ddd56c836813a2754cefcddcecaa" + } + Frame { + msec: 1520 + hash: "08ab374f2911207dddddf4cf18d26769" + } + Frame { + msec: 1536 + hash: "0a91b4c009079159340040067dfc0cc8" + } + Frame { + msec: 1552 + hash: "bdd54a222ba5bc0deb97e26071732e68" + } + Frame { + msec: 1568 + hash: "1b75d3b34f7fd74451d22d03dd7e4e65" + } + Frame { + msec: 1584 + hash: "a34ad1878b0bd1316d4ceb0c22709c6f" + } + Frame { + msec: 1600 + hash: "8a25b513f0c6371e81065f3f0594ddfe" + } + Frame { + msec: 1616 + hash: "09063acfe8bf1cbc521cd84ecd718930" + } + Frame { + msec: 1632 + hash: "6607cab8e4b4b6a1671cdf63582b625b" + } + Frame { + msec: 1648 + hash: "5662b3252b5dd640ce9055ff11c11e47" + } + Frame { + msec: 1664 + hash: "2267ff61b2af23a15d6d5263d52c3ecb" + } + Frame { + msec: 1680 + hash: "99d86069a3ea0c49a8f37f5124f2850b" + } + Frame { + msec: 1696 + hash: "acfa238bcb12c6197acb990aa4ddc03f" + } + Frame { + msec: 1712 + hash: "6c4c804f6e0e46fcfe25b04836db80f7" + } + Frame { + msec: 1728 + hash: "5c1868d36ad767cd9923fab8605220dd" + } + Frame { + msec: 1744 + hash: "a1279c79d3be6a62b5aebff4c66971e5" + } + Frame { + msec: 1760 + hash: "f1d9f03f77b224ec355d4b5ae1ef8551" + } + Frame { + msec: 1776 + hash: "3ad06495838986ef570f1c0f9d9f4a52" + } + Frame { + msec: 1792 + hash: "e4122ccbc4da03797738a949654fb555" + } + Frame { + msec: 1808 + hash: "0178b04a0c2e91b5a409c28a2b3c4cca" + } + Frame { + msec: 1824 + hash: "04b3fdd361985d1f108551dafca851f6" + } + Frame { + msec: 1840 + hash: "f7e8e73dcb009fc160122b64f2e4857e" + } + Frame { + msec: 1856 + hash: "e8575db453082b6601107b20ec15fb86" + } + Frame { + msec: 1872 + hash: "18b8bc3993275a0a1e096084ada871f0" + } + Frame { + msec: 1888 + hash: "1a1229d6c945cc1a0df7ca4ac61dfff0" + } + Frame { + msec: 1904 + hash: "bf43232fccfedfca1cac48206cacfaf2" + } + Frame { + msec: 1920 + image: "multilength.1.png" + } + Frame { + msec: 1936 + hash: "c0c2396b5e5dc36853a28d6c5a6274f3" + } + Frame { + msec: 1952 + hash: "9b49951115444bf17e96ded2837e5eff" + } + Frame { + msec: 1968 + hash: "422d01a547ce612233bfa5e85bf73c7f" + } + Frame { + msec: 1984 + hash: "fe2cb2fb4aefb5da1cf27e709a0acd5f" + } + Frame { + msec: 2000 + hash: "e106fbd81f7a057e3bf5d8a42c92e4f1" + } + Frame { + msec: 2016 + hash: "b1b60361a929ccb109a9e9e8a10065d0" + } + Frame { + msec: 2032 + hash: "35858a35e56a48804d3cedda908ca2eb" + } + Frame { + msec: 2048 + hash: "a8fb42ed2c55d3396133acf28064283c" + } + Frame { + msec: 2064 + hash: "479291530784175abc7d564ac2319d2a" + } + Frame { + msec: 2080 + hash: "75e7b2930143d610659cf42a3604374e" + } + Frame { + msec: 2096 + hash: "3d9438b11c89d76353943e5d2f656e7d" + } + Frame { + msec: 2112 + hash: "cb23d7c508c8e3169bab39aaa4de01fd" + } + Frame { + msec: 2128 + hash: "bc7805e391bc272a837c9b1df9cf8f77" + } + Frame { + msec: 2144 + hash: "020d270f6a93e05dacd70a2b41a3ea8a" + } + Frame { + msec: 2160 + hash: "8f23f9ea2fa630111f0481b6a6ec09a6" + } + Frame { + msec: 2176 + hash: "6b42c823da044ae69d9600260d7437e6" + } + Frame { + msec: 2192 + hash: "d31e1a434a9fcd12e439640776f8c8be" + } + Frame { + msec: 2208 + hash: "48bb7782d57e195d3f0f3dfb25fed571" + } + Frame { + msec: 2224 + hash: "76922f380f3c6c83edb5ff2a4208a4d0" + } + Frame { + msec: 2240 + hash: "9027d61a3b91a9f56230f4ee740b6db8" + } + Frame { + msec: 2256 + hash: "043455a71c91e3d65f1eed632b152fea" + } + Frame { + msec: 2272 + hash: "6bfc058bd9f8986d306606f8c7b06ae2" + } + Frame { + msec: 2288 + hash: "49f1e17d33f1ac690bcac7e85668cb3b" + } + Frame { + msec: 2304 + hash: "2090befb760a16d73bea960a6e835405" + } + Frame { + msec: 2320 + hash: "e99382309c4419f38642333386595211" + } + Frame { + msec: 2336 + hash: "2c7a49bcb6eca031984d7a96b607d402" + } + Frame { + msec: 2352 + hash: "b55be701b19739713d532f3d6cbd5393" + } + Frame { + msec: 2368 + hash: "fdad916849eeae7b9b276f57bb022321" + } + Frame { + msec: 2384 + hash: "e3a8dd9da5c767a60dab121fb3a2811b" + } + Frame { + msec: 2400 + hash: "73262e2250337b8f02d8e672b66ae273" + } + Frame { + msec: 2416 + hash: "84dca99c97f837ecfb9b3195db556687" + } + Frame { + msec: 2432 + hash: "4f82d7a5f3b286a2d8ccc0a07c35a1a0" + } + Frame { + msec: 2448 + hash: "63f6eec01262783a421040dd44740577" + } + Frame { + msec: 2464 + hash: "e98f39a3a9379155081014cdf761c055" + } + Frame { + msec: 2480 + hash: "c084db070c74596551190dd49dfc2ed2" + } + Frame { + msec: 2496 + hash: "f6866290d95f0d85fcf05de39bcadcc7" + } + Frame { + msec: 2512 + hash: "d919eb26a2d8874ed1e4051769b525c6" + } + Frame { + msec: 2528 + hash: "1967d42c7a23b8d11e6accf27de24ce7" + } + Frame { + msec: 2544 + hash: "2fe4f7fe66f820b2738598e85da9f0b9" + } + Frame { + msec: 2560 + hash: "4fa2b66d2d4beaa56ed8c387b62f4817" + } + Frame { + msec: 2576 + hash: "eef73ebb85223a5f99b5f5ec7dfaae94" + } + Frame { + msec: 2592 + hash: "acb7a8c1939633f16e8b7989b2d598c2" + } + Frame { + msec: 2608 + hash: "b5e67eb3ace1d1d7f9fa1f1c907bd442" + } + Frame { + msec: 2624 + hash: "552035a9d76f4dd65d86533535c00a5d" + } + Frame { + msec: 2640 + hash: "d2e25e33232ec8ddd326818fabf15a65" + } + Frame { + msec: 2656 + hash: "65c4dfbb48c1c9115c37ed5c294d7bd1" + } + Frame { + msec: 2672 + hash: "3aceb756fa460a767194f2923871e2d3" + } + Frame { + msec: 2688 + hash: "759a7bd99c6e630929216eb89f6b27fa" + } + Frame { + msec: 2704 + hash: "81aa0091d86f745bcddd279473df1f8d" + } + Frame { + msec: 2720 + hash: "cce5b12ab54251ea6df458d492bc92e9" + } + Frame { + msec: 2736 + hash: "5637b7aeb8b9d754e0a96b6f5d0dcb03" + } + Frame { + msec: 2752 + hash: "ad7644a8994888bc562590ff8942eabf" + } + Frame { + msec: 2768 + hash: "490a3da685f73c45f4be697c3f37ccd1" + } + Frame { + msec: 2784 + hash: "190cc35ecc32ed8ea6ebd135fb8d7a00" + } + Frame { + msec: 2800 + hash: "89511367c186947f9173dc30932c4454" + } + Frame { + msec: 2816 + hash: "880c05184406232db9d3830e46d47bd7" + } + Frame { + msec: 2832 + hash: "db907e2573c385bc2545cfba4fda4be1" + } + Frame { + msec: 2848 + hash: "c96ad05fd3ab4cd71d33738448029e0c" + } + Frame { + msec: 2864 + hash: "112ecf3b2fcd5919402842044d052272" + } + Frame { + msec: 2880 + image: "multilength.2.png" + } + Frame { + msec: 2896 + hash: "dc1aa5563a76f20d8200fbd9794b3249" + } + Frame { + msec: 2912 + hash: "3f72adedabe9e2896750e2738df71566" + } + Frame { + msec: 2928 + hash: "3f78a5a9312126e6a6ca699886dd05d0" + } + Frame { + msec: 2944 + hash: "75a199efbdf119abbc1598137e974e28" + } + Frame { + msec: 2960 + hash: "e4d068e2ba9c65a0e910faf431e4df7e" + } + Frame { + msec: 2976 + hash: "817e686a44b4eaced58c251facd5e89d" + } + Frame { + msec: 2992 + hash: "0c5e7217f5b68e0b2158c512f66177c2" + } + Frame { + msec: 3008 + hash: "253a765019170fe4f649825b4cd17832" + } + Frame { + msec: 3024 + hash: "cf3f774316868179f6766e5dbdab2b17" + } + Frame { + msec: 3040 + hash: "7cf30923200a9b8524909bdfbb20b33c" + } + Frame { + msec: 3056 + hash: "1dd14bc90dfab3d8864c177e56c25b63" + } + Frame { + msec: 3072 + hash: "aaa4074319d1656b58f874d6843e66c4" + } + Frame { + msec: 3088 + hash: "b2a3479eb8087138f20b0dbd539f0592" + } + Frame { + msec: 3104 + hash: "1ab4358f6008ce87a5b1c6a54d04b343" + } + Frame { + msec: 3120 + hash: "4425e58b30da6edd1730421e990dd6e7" + } + Frame { + msec: 3136 + hash: "9b4e62af65c064ca2fe4de5d03255b56" + } + Frame { + msec: 3152 + hash: "edf9b8b0cc18942b23c03ee1ed837dd6" + } + Frame { + msec: 3168 + hash: "b05a1bc33ce2e4c2383f7ecc9544020c" + } + Frame { + msec: 3184 + hash: "73304724e5b4d7c556859da310c31a0a" + } + Frame { + msec: 3200 + hash: "4cf88e365cd9651e2fb86452ff81e4be" + } + Frame { + msec: 3216 + hash: "7b42902b17781f98075bfdf50950addd" + } + Frame { + msec: 3232 + hash: "8806b9cb7e352a67b23085593b61606b" + } + Frame { + msec: 3248 + hash: "d2fdf78fa3b7261683f2ed4f2dee62c8" + } + Frame { + msec: 3264 + hash: "dafa72fd7aae2c9bfa5f6aa2694235d2" + } + Frame { + msec: 3280 + hash: "d784b9b39ab063ab68b85d6485257ce0" + } + Frame { + msec: 3296 + hash: "991ef068c26b304fb19d03fdfeb2e3f4" + } + Frame { + msec: 3312 + hash: "c6014d497f4db9121c539a53115a847f" + } + Frame { + msec: 3328 + hash: "88c778d811febd165e28ae7698f774b8" + } + Frame { + msec: 3344 + hash: "51fbf553794b8a2303d2e0dff44c80fa" + } + Frame { + msec: 3360 + hash: "ba1abdcf3a04231ce9439cb6d93e8717" + } + Frame { + msec: 3376 + hash: "56a5d2fe8af1ef1e08ce545eb65e6ba0" + } + Frame { + msec: 3392 + hash: "8337eb7d11500676921de0b13812ca02" + } + Frame { + msec: 3408 + hash: "8f50f53ed00ad9b9bbf9423b3274efa7" + } + Frame { + msec: 3424 + hash: "bf5ca931d00d3dc4fcfe5e93d08bde2f" + } + Frame { + msec: 3440 + hash: "f2619492bbb96bd3958f4d61bb23c42e" + } + Frame { + msec: 3456 + hash: "3b1afefbc7e0990059bd3990f17a7312" + } + Frame { + msec: 3472 + hash: "30041f2cb8c071e7dc8f9c8ef1e49743" + } + Frame { + msec: 3488 + hash: "f8bef9f28823fdebec0b39e1044ac03c" + } + Frame { + msec: 3504 + hash: "4c0282e6a48dbbcdbbffde55457eee12" + } + Frame { + msec: 3520 + hash: "7956ea76120b9292b2f3c6123187ac0e" + } + Frame { + msec: 3536 + hash: "dce82656442ff1a0823bac5ded7c0290" + } + Frame { + msec: 3552 + hash: "96151e49fd0f07817d27583c22afe30f" + } + Frame { + msec: 3568 + hash: "262a38546540ecb81065cbdbace4fa28" + } + Frame { + msec: 3584 + hash: "4ea3a1a93be2ef25ca6f05d144b50d3b" + } + Frame { + msec: 3600 + hash: "77d321f837b720d4e63fb028e885dce7" + } + Frame { + msec: 3616 + hash: "e0e40d426a13ef3d9caa6ba474a1a460" + } + Frame { + msec: 3632 + hash: "6bd5645b808206dd9a4e9c0e423db06b" + } + Frame { + msec: 3648 + hash: "791538cf21cfa32ab4595137a655e0a3" + } + Frame { + msec: 3664 + hash: "59266a6f73c217f0c68f7dac69d4b25d" + } + Frame { + msec: 3680 + hash: "ee730ce23e84942c5fe2587ce0ecd3f6" + } + Frame { + msec: 3696 + hash: "b1353eee7a68d1ab0057ab7a6dd0774c" + } + Frame { + msec: 3712 + hash: "0ea828127568afa52ecc31e335e69d11" + } + Frame { + msec: 3728 + hash: "d95fc327253500563d0e05a4b80a7c8a" + } + Frame { + msec: 3744 + hash: "e3aff011332ccf9cbebbff2803733038" + } + Frame { + msec: 3760 + hash: "27ee147b62bfa2d1183321bba3ccb8d3" + } + Frame { + msec: 3776 + hash: "245578d636b5486da0210a0dd7b84a80" + } + Frame { + msec: 3792 + hash: "87be77d90d9e7a2d282026e63d14ddfd" + } + Frame { + msec: 3808 + hash: "25cf672e69b7c61eab9f53437b40956e" + } + Frame { + msec: 3824 + hash: "10606e7b0ecb8ec204fe025aece90004" + } + Frame { + msec: 3840 + image: "multilength.3.png" + } + Frame { + msec: 3856 + hash: "a3c411c8c3da3975205994a7da97320f" + } + Frame { + msec: 3872 + hash: "1491ce2867ad4f116e705d259b773550" + } + Frame { + msec: 3888 + hash: "8f2fe6175fa45213d84e4c0b0b7cb4a7" + } + Frame { + msec: 3904 + hash: "bc77ad13f5015fc1b5bb85dc51b207b3" + } + Frame { + msec: 3920 + hash: "5fb9a7834a5358077952c20ca025fcf0" + } + Frame { + msec: 3936 + hash: "09ba094e2cfb1033019e85f66910a593" + } + Frame { + msec: 3952 + hash: "43db976e63a8fd71da67198942aa7943" + } + Frame { + msec: 3968 + hash: "6298a0aa4b84ee1722d83897b3553fe1" + } + Frame { + msec: 3984 + hash: "6b87ba7d3fe468229b29cd28590e17b1" + } + Frame { + msec: 4000 + hash: "1b4e219629a1f19b135544ac2e961788" + } + Frame { + msec: 4016 + hash: "087e95cbd0549be1bbe4a32520858514" + } + Frame { + msec: 4032 + hash: "2c51a434fc3633623e10bedeba4e260d" + } + Frame { + msec: 4048 + hash: "f29b87d80779a7f4d38e8058d984c386" + } + Frame { + msec: 4064 + hash: "b8055e4b3c2ee551a7becf176cd173e3" + } + Frame { + msec: 4080 + hash: "3c35391e1c1d230e0a085cb7f7f0e8ef" + } + Frame { + msec: 4096 + hash: "dd8a63cdeefc6ce5a35ceb700f7b3755" + } + Frame { + msec: 4112 + hash: "5b4a322f768d426a56a82d714cf4f705" + } + Frame { + msec: 4128 + hash: "08830f630c15419d79c459891a8fff64" + } + Frame { + msec: 4144 + hash: "84c90e454dcdbf00c441ff326760d2cd" + } + Frame { + msec: 4160 + hash: "17c7311faee569b077f85848f7155319" + } + Frame { + msec: 4176 + hash: "17b5aeff8f03828c1851a6b984d4e69e" + } + Frame { + msec: 4192 + hash: "3bcc28ab875d3b5f62df0d5cede3e850" + } + Frame { + msec: 4208 + hash: "a4c861d766af1378e21a91a6e1bca06d" + } + Frame { + msec: 4224 + hash: "fa6e17c9c35c41ac5270a55f0cc4dcd2" + } + Frame { + msec: 4240 + hash: "48d8c7ce0b6f2e9840a2f5cb40e41449" + } + Frame { + msec: 4256 + hash: "713a391414fffe3cf01248e7c0919d71" + } + Frame { + msec: 4272 + hash: "472282080ae357f5fb0dac1bf411f6f5" + } + Frame { + msec: 4288 + hash: "660d37f1b3c5dd6e2de22ad2be818675" + } + Frame { + msec: 4304 + hash: "334f12d83fdc7bd8f3d97697061a75f8" + } + Frame { + msec: 4320 + hash: "4bfe83273913bad702290db2b1c81d52" + } + Frame { + msec: 4336 + hash: "9ddc0238b0fbb42c503da8782d750d81" + } + Frame { + msec: 4352 + hash: "43081559ed8f1d62baed1ab5dde34c5c" + } + Frame { + msec: 4368 + hash: "4bf955a94901588cf37a1fe9b82feef3" + } + Frame { + msec: 4384 + hash: "3a3a987096f2a11f495af4ee20c2452b" + } + Frame { + msec: 4400 + hash: "290647a4f73c42ea33f841281bf6f3d6" + } + Frame { + msec: 4416 + hash: "1a18f4f658997710aa7be9409c75a602" + } + Frame { + msec: 4432 + hash: "1bc52bc68633464654410f59bf97142b" + } + Frame { + msec: 4448 + hash: "33e3a5e0ec745046f7a7cceffd516a71" + } + Frame { + msec: 4464 + hash: "7e61c48d2e0e6e195d527d6aeb4ffe8c" + } + Frame { + msec: 4480 + hash: "42c42f7e02f6cd72afa92cf97494a1eb" + } + Frame { + msec: 4496 + hash: "d1876d371284e41f4d553a470a9970fb" + } + Frame { + msec: 4512 + hash: "479960a289b598591a4bf3c66dc6258a" + } + Frame { + msec: 4528 + hash: "0ea8965e095c73499b5abc4ac44e07ef" + } + Frame { + msec: 4544 + hash: "cc7fe014a856896ce3871743e552d6f2" + } + Frame { + msec: 4560 + hash: "5b3cd6bec24ae4a215ec28651e9a3ed0" + } + Frame { + msec: 4576 + hash: "63d60a2c6d27e30dda001c202446d221" + } + Frame { + msec: 4592 + hash: "22f30d377fb90c433881d17211a9f9bd" + } + Frame { + msec: 4608 + hash: "acfbf010e93723185792009ed372ccb9" + } + Frame { + msec: 4624 + hash: "91f3335706d5037d9c579091e29d1219" + } + Frame { + msec: 4640 + hash: "83ad6be4ecaa6495b25f9b55bb11796a" + } + Frame { + msec: 4656 + hash: "39a68ee7f4ddb8059ef42eb9e42b7659" + } + Frame { + msec: 4672 + hash: "0ad1facc49beaa2c3510fe1612ba3b4f" + } + Frame { + msec: 4688 + hash: "d780a7f3dc1a313d462084fffda989c7" + } + Frame { + msec: 4704 + hash: "0f1ad6155d4ed2a11d2fa91c63b62678" + } + Frame { + msec: 4720 + hash: "26f4bb010704911d87b96a9f31a0a121" + } + Frame { + msec: 4736 + hash: "7772aaabb6418d71fb7566a0aac4279f" + } + Frame { + msec: 4752 + hash: "47bf1ec73915b369d653ff71ce7758da" + } + Frame { + msec: 4768 + hash: "fcc1ed23c1678bf1b11bf59dbaba5186" + } + Frame { + msec: 4784 + hash: "0d66fbc0b99c35dae53e1026c2041252" + } + Frame { + msec: 4800 + image: "multilength.4.png" + } + Frame { + msec: 4816 + hash: "d1fbba4331fd640a40fe7e07fcfce20b" + } + Frame { + msec: 4832 + hash: "f79f9ac08c779fd1646450ef4cc21f01" + } + Frame { + msec: 4848 + hash: "2095da58125d29b815c44ec9a22598d3" + } + Frame { + msec: 4864 + hash: "01d4805a90443a6c20a5ae2cb83ec151" + } + Frame { + msec: 4880 + hash: "f329ce7199c2137e8c32a25f96ee5c6b" + } + Frame { + msec: 4896 + hash: "72c0c2c7660974827acc1fcb54e7ca6c" + } + Frame { + msec: 4912 + hash: "6902d2a637733171699684baf07bb86e" + } + Frame { + msec: 4928 + hash: "615683e3bc07792ee38ca8146657a88a" + } + Frame { + msec: 4944 + hash: "9fe981f60fd1d974f063fccd2ae205ab" + } + Frame { + msec: 4960 + hash: "b403e21b14646ac0cdaee2027125c0ad" + } + Frame { + msec: 4976 + hash: "d037545cc68b7582c400c8c9da49ff2a" + } + Frame { + msec: 4992 + hash: "551435ecb008ff217eb65a5a77a28090" + } + Frame { + msec: 5008 + hash: "a1684c1c0938386bbfb309969114beee" + } + Frame { + msec: 5024 + hash: "a9dc5058e29f9c129087eaa013002185" + } + Frame { + msec: 5040 + hash: "5d06ae83ab9cc218175013042922b908" + } + Frame { + msec: 5056 + hash: "e225de5dc21fee719ebc43fa8838f841" + } + Frame { + msec: 5072 + hash: "b89bf31a945cb6c880e95bf2d2a6e944" + } + Frame { + msec: 5088 + hash: "fa54db3c383bc1da121c0d3b09e942d3" + } + Frame { + msec: 5104 + hash: "2c126bf2d794039e1380595b9c40ae2e" + } + Frame { + msec: 5120 + hash: "1e9639693e5ec1edb72e71d126c434bb" + } + Frame { + msec: 5136 + hash: "3a58b1900912a5a6ace72757f3af4d1a" + } + Frame { + msec: 5152 + hash: "11a846d93430e622a9750e4e2a7b76fe" + } + Frame { + msec: 5168 + hash: "801d7707e86b776fe2459c42b26337f5" + } + Frame { + msec: 5184 + hash: "6d29c12395050b049537819cf0a65746" + } + Frame { + msec: 5200 + hash: "5a68af870474ffb8a694710b10f52bc7" + } + Frame { + msec: 5216 + hash: "09dd10566eda09e0366b7bf0a8ce9e1b" + } + Frame { + msec: 5232 + hash: "f43b377f99f74e2cf07e419887f7ee0b" + } + Frame { + msec: 5248 + hash: "108287fc253d36a5ebf8582ef2a5fd57" + } + Frame { + msec: 5264 + hash: "a4b6df2874ce48ed5a17aab43f32e665" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.0.png deleted file mode 100644 index 1a8c89b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml deleted file mode 100644 index 3b8ae0c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide.qml +++ /dev/null @@ -1,279 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 32 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 48 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 64 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 80 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 96 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 112 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 128 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 144 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 160 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 176 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 192 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 208 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 224 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 240 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 256 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 272 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 288 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 304 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 320 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 336 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 352 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 368 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 384 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 400 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 416 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 432 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 448 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 464 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 480 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 496 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 512 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 528 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 544 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 560 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 576 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 592 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 608 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 624 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 640 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 656 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 672 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 688 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 704 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 720 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 736 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 752 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 768 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 784 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 800 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 816 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 832 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 848 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 864 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 880 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 896 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 912 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 928 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 944 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 960 - image: "elide.0.png" - } - Frame { - msec: 976 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 992 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 1008 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 1024 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 1040 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } - Frame { - msec: 1056 - hash: "c80d2bcd4be99c73e6c628870206ce8c" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.0.png deleted file mode 100644 index 3dfade5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.1.png deleted file mode 100644 index 1ee2076..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.2.png deleted file mode 100644 index ae680be..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.3.png deleted file mode 100644 index c2859be..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml deleted file mode 100644 index 27fbaf4..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/elide/data/elide2.qml +++ /dev/null @@ -1,991 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 32 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 48 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 64 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 80 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 96 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 112 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 128 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 144 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 160 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 176 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 192 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 208 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 224 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 240 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 256 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 272 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 288 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 304 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 320 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 336 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 352 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 368 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 384 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 400 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 416 - hash: "086a46352aa1221b5e57f5624b0c256b" - } - Frame { - msec: 432 - hash: "fc3a7e898d6bfa2af4d774b20609f967" - } - Frame { - msec: 448 - hash: "fc3a7e898d6bfa2af4d774b20609f967" - } - Frame { - msec: 464 - hash: "fc3a7e898d6bfa2af4d774b20609f967" - } - Frame { - msec: 480 - hash: "3bcaa6426796bc9097e0aeba90dd5e39" - } - Frame { - msec: 496 - hash: "3bcaa6426796bc9097e0aeba90dd5e39" - } - Frame { - msec: 512 - hash: "3bcaa6426796bc9097e0aeba90dd5e39" - } - Frame { - msec: 528 - hash: "3bcaa6426796bc9097e0aeba90dd5e39" - } - Frame { - msec: 544 - hash: "3bcaa6426796bc9097e0aeba90dd5e39" - } - Frame { - msec: 560 - hash: "3bcaa6426796bc9097e0aeba90dd5e39" - } - Frame { - msec: 576 - hash: "4daa612cd7e7ee455ff1a93329202865" - } - Frame { - msec: 592 - hash: "4daa612cd7e7ee455ff1a93329202865" - } - Frame { - msec: 608 - hash: "4daa612cd7e7ee455ff1a93329202865" - } - Frame { - msec: 624 - hash: "4daa612cd7e7ee455ff1a93329202865" - } - Frame { - msec: 640 - hash: "4daa612cd7e7ee455ff1a93329202865" - } - Frame { - msec: 656 - hash: "3f362ad550db910f1d9f261557c65913" - } - Frame { - msec: 672 - hash: "3f362ad550db910f1d9f261557c65913" - } - Frame { - msec: 688 - hash: "f159011c2b85fe212a32a7b5d2a57016" - } - Frame { - msec: 704 - hash: "f159011c2b85fe212a32a7b5d2a57016" - } - Frame { - msec: 720 - hash: "f159011c2b85fe212a32a7b5d2a57016" - } - Frame { - msec: 736 - hash: "f159011c2b85fe212a32a7b5d2a57016" - } - Frame { - msec: 752 - hash: "f159011c2b85fe212a32a7b5d2a57016" - } - Frame { - msec: 768 - hash: "f159011c2b85fe212a32a7b5d2a57016" - } - Frame { - msec: 784 - hash: "a892c67199c23e5d9012a6a24cb45d16" - } - Frame { - msec: 800 - hash: "a892c67199c23e5d9012a6a24cb45d16" - } - Frame { - msec: 816 - hash: "a892c67199c23e5d9012a6a24cb45d16" - } - Frame { - msec: 832 - hash: "532e01ed6ede95eca68e641e2edb7f1c" - } - Frame { - msec: 848 - hash: "532e01ed6ede95eca68e641e2edb7f1c" - } - Frame { - msec: 864 - hash: "532e01ed6ede95eca68e641e2edb7f1c" - } - Frame { - msec: 880 - hash: "532e01ed6ede95eca68e641e2edb7f1c" - } - Frame { - msec: 896 - hash: "532e01ed6ede95eca68e641e2edb7f1c" - } - Frame { - msec: 912 - hash: "a7dc1d7dde956d62834de0968261386f" - } - Frame { - msec: 928 - hash: "a7dc1d7dde956d62834de0968261386f" - } - Frame { - msec: 944 - hash: "a7dc1d7dde956d62834de0968261386f" - } - Frame { - msec: 960 - image: "elide2.0.png" - } - Frame { - msec: 976 - hash: "a7dc1d7dde956d62834de0968261386f" - } - Frame { - msec: 992 - hash: "a590e1358fac567dda9fdfc6bfe4ab89" - } - Frame { - msec: 1008 - hash: "a590e1358fac567dda9fdfc6bfe4ab89" - } - Frame { - msec: 1024 - hash: "778d34ca89b5db88fe26619576e9d337" - } - Frame { - msec: 1040 - hash: "778d34ca89b5db88fe26619576e9d337" - } - Frame { - msec: 1056 - hash: "778d34ca89b5db88fe26619576e9d337" - } - Frame { - msec: 1072 - hash: "778d34ca89b5db88fe26619576e9d337" - } - Frame { - msec: 1088 - hash: "778d34ca89b5db88fe26619576e9d337" - } - Frame { - msec: 1104 - hash: "9424caee019aa9bccd4156b0b9ca2723" - } - Frame { - msec: 1120 - hash: "9424caee019aa9bccd4156b0b9ca2723" - } - Frame { - msec: 1136 - hash: "9424caee019aa9bccd4156b0b9ca2723" - } - Frame { - msec: 1152 - hash: "000061a140ab71a44c0480a92ad3bc70" - } - Frame { - msec: 1168 - hash: "000061a140ab71a44c0480a92ad3bc70" - } - Frame { - msec: 1184 - hash: "000061a140ab71a44c0480a92ad3bc70" - } - Frame { - msec: 1200 - hash: "5dec9638853165428cd15ae02e1d03ce" - } - Frame { - msec: 1216 - hash: "5dec9638853165428cd15ae02e1d03ce" - } - Frame { - msec: 1232 - hash: "5dec9638853165428cd15ae02e1d03ce" - } - Frame { - msec: 1248 - hash: "ecb69bdbd13114715f738b1ace3ecf51" - } - Frame { - msec: 1264 - hash: "ecb69bdbd13114715f738b1ace3ecf51" - } - Frame { - msec: 1280 - hash: "ecb69bdbd13114715f738b1ace3ecf51" - } - Frame { - msec: 1296 - hash: "ecb69bdbd13114715f738b1ace3ecf51" - } - Frame { - msec: 1312 - hash: "ecb69bdbd13114715f738b1ace3ecf51" - } - Frame { - msec: 1328 - hash: "923b4f4f4a3dbaefbf003859067b2ea9" - } - Frame { - msec: 1344 - hash: "923b4f4f4a3dbaefbf003859067b2ea9" - } - Frame { - msec: 1360 - hash: "923b4f4f4a3dbaefbf003859067b2ea9" - } - Frame { - msec: 1376 - hash: "923b4f4f4a3dbaefbf003859067b2ea9" - } - Frame { - msec: 1392 - hash: "923b4f4f4a3dbaefbf003859067b2ea9" - } - Frame { - msec: 1408 - hash: "d4230a476237f9e13a132e775f1b960c" - } - Frame { - msec: 1424 - hash: "d4230a476237f9e13a132e775f1b960c" - } - Frame { - msec: 1440 - hash: "d4230a476237f9e13a132e775f1b960c" - } - Frame { - msec: 1456 - hash: "d4230a476237f9e13a132e775f1b960c" - } - Frame { - msec: 1472 - hash: "d4230a476237f9e13a132e775f1b960c" - } - Frame { - msec: 1488 - hash: "504ad2ba8543f7ad6490bd45d86fbef9" - } - Frame { - msec: 1504 - hash: "504ad2ba8543f7ad6490bd45d86fbef9" - } - Frame { - msec: 1520 - hash: "504ad2ba8543f7ad6490bd45d86fbef9" - } - Frame { - msec: 1536 - hash: "504ad2ba8543f7ad6490bd45d86fbef9" - } - Frame { - msec: 1552 - hash: "504ad2ba8543f7ad6490bd45d86fbef9" - } - Frame { - msec: 1568 - hash: "504ad2ba8543f7ad6490bd45d86fbef9" - } - Frame { - msec: 1584 - hash: "dd412c6a2e5cb8890cb43142c84a5673" - } - Frame { - msec: 1600 - hash: "dd412c6a2e5cb8890cb43142c84a5673" - } - Frame { - msec: 1616 - hash: "dd412c6a2e5cb8890cb43142c84a5673" - } - Frame { - msec: 1632 - hash: "38b1fa7bd4e2f13b05caa62903c56ab6" - } - Frame { - msec: 1648 - hash: "38b1fa7bd4e2f13b05caa62903c56ab6" - } - Frame { - msec: 1664 - hash: "38b1fa7bd4e2f13b05caa62903c56ab6" - } - Frame { - msec: 1680 - hash: "38b1fa7bd4e2f13b05caa62903c56ab6" - } - Frame { - msec: 1696 - hash: "ffb2cb01c868c1dfa6b5154c4e8a7fd8" - } - Frame { - msec: 1712 - hash: "ffb2cb01c868c1dfa6b5154c4e8a7fd8" - } - Frame { - msec: 1728 - hash: "ffb2cb01c868c1dfa6b5154c4e8a7fd8" - } - Frame { - msec: 1744 - hash: "9effd5fc19246cfe3d2f5968c5caaa4e" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1760 - hash: "9effd5fc19246cfe3d2f5968c5caaa4e" - } - Frame { - msec: 1776 - hash: "9effd5fc19246cfe3d2f5968c5caaa4e" - } - Frame { - msec: 1792 - hash: "9effd5fc19246cfe3d2f5968c5caaa4e" - } - Frame { - msec: 1808 - hash: "4fa14ae57d170b16fd90d59d5ec83561" - } - Frame { - msec: 1824 - hash: "4fa14ae57d170b16fd90d59d5ec83561" - } - Frame { - msec: 1840 - hash: "4fa14ae57d170b16fd90d59d5ec83561" - } - Frame { - msec: 1856 - hash: "4fa14ae57d170b16fd90d59d5ec83561" - } - Frame { - msec: 1872 - hash: "4fa14ae57d170b16fd90d59d5ec83561" - } - Frame { - msec: 1888 - hash: "976dd5bc154522438f92790f28639512" - } - Frame { - msec: 1904 - hash: "976dd5bc154522438f92790f28639512" - } - Frame { - msec: 1920 - image: "elide2.1.png" - } - Frame { - msec: 1936 - hash: "976dd5bc154522438f92790f28639512" - } - Frame { - msec: 1952 - hash: "976dd5bc154522438f92790f28639512" - } - Frame { - msec: 1968 - hash: "4ae1d6ddb9a78cc2f4e81b58fcca6a20" - } - Frame { - msec: 1984 - hash: "4ae1d6ddb9a78cc2f4e81b58fcca6a20" - } - Frame { - msec: 2000 - hash: "4ae1d6ddb9a78cc2f4e81b58fcca6a20" - } - Frame { - msec: 2016 - hash: "4ae1d6ddb9a78cc2f4e81b58fcca6a20" - } - Frame { - msec: 2032 - hash: "4ae1d6ddb9a78cc2f4e81b58fcca6a20" - } - Frame { - msec: 2048 - hash: "84bdf634cfd4de588f2b0984aa3e97bd" - } - Frame { - msec: 2064 - hash: "84bdf634cfd4de588f2b0984aa3e97bd" - } - Frame { - msec: 2080 - hash: "84bdf634cfd4de588f2b0984aa3e97bd" - } - Frame { - msec: 2096 - hash: "1a978ed6951afe40912efcfb54dcce65" - } - Frame { - msec: 2112 - hash: "1a978ed6951afe40912efcfb54dcce65" - } - Frame { - msec: 2128 - hash: "1a978ed6951afe40912efcfb54dcce65" - } - Frame { - msec: 2144 - hash: "a57eea59fe6475164e24688489977869" - } - Frame { - msec: 2160 - hash: "a57eea59fe6475164e24688489977869" - } - Frame { - msec: 2176 - hash: "a57eea59fe6475164e24688489977869" - } - Frame { - msec: 2192 - hash: "69ac1d93bd51f495783dbc6a0f7b27be" - } - Frame { - msec: 2208 - hash: "69ac1d93bd51f495783dbc6a0f7b27be" - } - Frame { - msec: 2224 - hash: "69ac1d93bd51f495783dbc6a0f7b27be" - } - Frame { - msec: 2240 - hash: "69ac1d93bd51f495783dbc6a0f7b27be" - } - Frame { - msec: 2256 - hash: "69ac1d93bd51f495783dbc6a0f7b27be" - } - Frame { - msec: 2272 - hash: "04c62a4d01e9309eaeea87902013c8b9" - } - Frame { - msec: 2288 - hash: "04c62a4d01e9309eaeea87902013c8b9" - } - Frame { - msec: 2304 - hash: "fac2f5730a600d6b69280d5e6962c1d2" - } - Frame { - msec: 2320 - hash: "fac2f5730a600d6b69280d5e6962c1d2" - } - Frame { - msec: 2336 - hash: "fac2f5730a600d6b69280d5e6962c1d2" - } - Frame { - msec: 2352 - hash: "fac2f5730a600d6b69280d5e6962c1d2" - } - Frame { - msec: 2368 - hash: "fac2f5730a600d6b69280d5e6962c1d2" - } - Frame { - msec: 2384 - hash: "13f7ce73c0a2f1c7958294e4fbf3d30d" - } - Frame { - msec: 2400 - hash: "13f7ce73c0a2f1c7958294e4fbf3d30d" - } - Frame { - msec: 2416 - hash: "13f7ce73c0a2f1c7958294e4fbf3d30d" - } - Frame { - msec: 2432 - hash: "13f7ce73c0a2f1c7958294e4fbf3d30d" - } - Frame { - msec: 2448 - hash: "13f7ce73c0a2f1c7958294e4fbf3d30d" - } - Frame { - msec: 2464 - hash: "96a5678ee5bcbf28df6a2bf66b2b6189" - } - Frame { - msec: 2480 - hash: "96a5678ee5bcbf28df6a2bf66b2b6189" - } - Frame { - msec: 2496 - hash: "96a5678ee5bcbf28df6a2bf66b2b6189" - } - Frame { - msec: 2512 - hash: "96a5678ee5bcbf28df6a2bf66b2b6189" - } - Frame { - msec: 2528 - hash: "96a5678ee5bcbf28df6a2bf66b2b6189" - } - Frame { - msec: 2544 - hash: "abb220abcd579abd988b6f9f7e0bc2b7" - } - Frame { - msec: 2560 - hash: "abb220abcd579abd988b6f9f7e0bc2b7" - } - Frame { - msec: 2576 - hash: "abb220abcd579abd988b6f9f7e0bc2b7" - } - Frame { - msec: 2592 - hash: "abb220abcd579abd988b6f9f7e0bc2b7" - } - Frame { - msec: 2608 - hash: "8a8585eb9a5cd1d6c38dc7076923e7f7" - } - Frame { - msec: 2624 - hash: "8a8585eb9a5cd1d6c38dc7076923e7f7" - } - Frame { - msec: 2640 - hash: "8a8585eb9a5cd1d6c38dc7076923e7f7" - } - Frame { - msec: 2656 - hash: "c13ec1d294921e6a56f6ac4198e084eb" - } - Frame { - msec: 2672 - hash: "c13ec1d294921e6a56f6ac4198e084eb" - } - Frame { - msec: 2688 - hash: "c13ec1d294921e6a56f6ac4198e084eb" - } - Frame { - msec: 2704 - hash: "c13ec1d294921e6a56f6ac4198e084eb" - } - Frame { - msec: 2720 - hash: "53295720dbabe6fbfff56bea0e0ba7f1" - } - Frame { - msec: 2736 - hash: "53295720dbabe6fbfff56bea0e0ba7f1" - } - Frame { - msec: 2752 - hash: "53295720dbabe6fbfff56bea0e0ba7f1" - } - Frame { - msec: 2768 - hash: "53295720dbabe6fbfff56bea0e0ba7f1" - } - Frame { - msec: 2784 - hash: "53295720dbabe6fbfff56bea0e0ba7f1" - } - Frame { - msec: 2800 - hash: "53295720dbabe6fbfff56bea0e0ba7f1" - } - Frame { - msec: 2816 - hash: "53295720dbabe6fbfff56bea0e0ba7f1" - } - Frame { - msec: 2832 - hash: "f44b88b80219497370b5d2ad380d03bf" - } - Frame { - msec: 2848 - hash: "f44b88b80219497370b5d2ad380d03bf" - } - Frame { - msec: 2864 - hash: "a093510751799f3466156f9775988044" - } - Frame { - msec: 2880 - image: "elide2.2.png" - } - Frame { - msec: 2896 - hash: "a093510751799f3466156f9775988044" - } - Frame { - msec: 2912 - hash: "6327bcbb2d78d3c33eb964643b0d09a5" - } - Frame { - msec: 2928 - hash: "6327bcbb2d78d3c33eb964643b0d09a5" - } - Frame { - msec: 2944 - hash: "6327bcbb2d78d3c33eb964643b0d09a5" - } - Frame { - msec: 2960 - hash: "6327bcbb2d78d3c33eb964643b0d09a5" - } - Frame { - msec: 2976 - hash: "6327bcbb2d78d3c33eb964643b0d09a5" - } - Frame { - msec: 2992 - hash: "d7da3826914ad1d2696803b659992e73" - } - Frame { - msec: 3008 - hash: "d7da3826914ad1d2696803b659992e73" - } - Frame { - msec: 3024 - hash: "d7da3826914ad1d2696803b659992e73" - } - Frame { - msec: 3040 - hash: "d7da3826914ad1d2696803b659992e73" - } - Frame { - msec: 3056 - hash: "d7da3826914ad1d2696803b659992e73" - } - Frame { - msec: 3072 - hash: "ad40dc153a57c35ea62d9d044f08c9ac" - } - Frame { - msec: 3088 - hash: "ad40dc153a57c35ea62d9d044f08c9ac" - } - Frame { - msec: 3104 - hash: "ad40dc153a57c35ea62d9d044f08c9ac" - } - Frame { - msec: 3120 - hash: "df90afe882b18f3fd7b12e52ff36e66f" - } - Frame { - msec: 3136 - hash: "df90afe882b18f3fd7b12e52ff36e66f" - } - Frame { - msec: 3152 - hash: "5b84785ffe15c15c3b94c845db7a4a44" - } - Frame { - msec: 3168 - hash: "5b84785ffe15c15c3b94c845db7a4a44" - } - Frame { - msec: 3184 - hash: "5b84785ffe15c15c3b94c845db7a4a44" - } - Frame { - msec: 3200 - hash: "f5ca71af8d9fa1809ab88b60f9170bb5" - } - Frame { - msec: 3216 - hash: "f5ca71af8d9fa1809ab88b60f9170bb5" - } - Frame { - msec: 3232 - hash: "f5ca71af8d9fa1809ab88b60f9170bb5" - } - Frame { - msec: 3248 - hash: "f5ca71af8d9fa1809ab88b60f9170bb5" - } - Frame { - msec: 3264 - hash: "f5ca71af8d9fa1809ab88b60f9170bb5" - } - Frame { - msec: 3280 - hash: "39f1b201715413f13a60f449eef29706" - } - Frame { - msec: 3296 - hash: "39f1b201715413f13a60f449eef29706" - } - Frame { - msec: 3312 - hash: "39f1b201715413f13a60f449eef29706" - } - Frame { - msec: 3328 - hash: "39f1b201715413f13a60f449eef29706" - } - Frame { - msec: 3344 - hash: "39f1b201715413f13a60f449eef29706" - } - Frame { - msec: 3360 - hash: "4baf5c1227de45f9e620fe6eb0590014" - } - Frame { - msec: 3376 - hash: "4baf5c1227de45f9e620fe6eb0590014" - } - Frame { - msec: 3392 - hash: "4baf5c1227de45f9e620fe6eb0590014" - } - Frame { - msec: 3408 - hash: "e1ce9c06e59fb6348fff3ce650c7943e" - } - Frame { - msec: 3424 - hash: "e1ce9c06e59fb6348fff3ce650c7943e" - } - Frame { - msec: 3440 - hash: "ad812bdef31b4f1f42c35f7d56b3af83" - } - Frame { - msec: 3456 - hash: "ad812bdef31b4f1f42c35f7d56b3af83" - } - Frame { - msec: 3472 - hash: "ad812bdef31b4f1f42c35f7d56b3af83" - } - Frame { - msec: 3488 - hash: "ad812bdef31b4f1f42c35f7d56b3af83" - } - Frame { - msec: 3504 - hash: "ad812bdef31b4f1f42c35f7d56b3af83" - } - Frame { - msec: 3520 - hash: "ad812bdef31b4f1f42c35f7d56b3af83" - } - Frame { - msec: 3536 - hash: "c08c8bcfc8c23f5e0e89d7f632fde2ca" - } - Frame { - msec: 3552 - hash: "c08c8bcfc8c23f5e0e89d7f632fde2ca" - } - Frame { - msec: 3568 - hash: "c08c8bcfc8c23f5e0e89d7f632fde2ca" - } - Frame { - msec: 3584 - hash: "c08c8bcfc8c23f5e0e89d7f632fde2ca" - } - Frame { - msec: 3600 - hash: "c08c8bcfc8c23f5e0e89d7f632fde2ca" - } - Frame { - msec: 3616 - hash: "b8853dc109d063d982952780aa80419a" - } - Frame { - msec: 3632 - hash: "b8853dc109d063d982952780aa80419a" - } - Frame { - msec: 3648 - hash: "b8853dc109d063d982952780aa80419a" - } - Frame { - msec: 3664 - hash: "b8853dc109d063d982952780aa80419a" - } - Frame { - msec: 3680 - hash: "b8853dc109d063d982952780aa80419a" - } - Frame { - msec: 3696 - hash: "6bfd7cfd6369df1eb570fda103d9e009" - } - Frame { - msec: 3712 - hash: "6bfd7cfd6369df1eb570fda103d9e009" - } - Frame { - msec: 3728 - hash: "b6dba4a456cd8d1b62501039cb796625" - } - Frame { - msec: 3744 - hash: "b6dba4a456cd8d1b62501039cb796625" - } - Frame { - msec: 3760 - hash: "f43892fffe4a8ce005b60ec43ce0aa4a" - } - Frame { - msec: 3776 - hash: "f43892fffe4a8ce005b60ec43ce0aa4a" - } - Frame { - msec: 3792 - hash: "f43892fffe4a8ce005b60ec43ce0aa4a" - } - Frame { - msec: 3808 - hash: "f43892fffe4a8ce005b60ec43ce0aa4a" - } - Frame { - msec: 3824 - hash: "f43892fffe4a8ce005b60ec43ce0aa4a" - } - Frame { - msec: 3840 - image: "elide2.3.png" - } - Frame { - msec: 3856 - hash: "d2e873e69aed3e0b6e53123cd63e386c" - } - Frame { - msec: 3872 - hash: "d2e873e69aed3e0b6e53123cd63e386c" - } - Frame { - msec: 3888 - hash: "baa8edfce77628c7a1ec83adce96e2c6" - } - Frame { - msec: 3904 - hash: "baa8edfce77628c7a1ec83adce96e2c6" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.0.png deleted file mode 100644 index 67b497f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml deleted file mode 100644 index a39c340..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/plaintext.qml +++ /dev/null @@ -1,351 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 32 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 48 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 64 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 80 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 96 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 112 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 128 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 144 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 160 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 176 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 192 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 208 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 224 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 240 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 256 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 272 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 288 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 304 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 320 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 336 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 352 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 368 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 384 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 400 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 416 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 432 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 448 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 464 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 480 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 496 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 512 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 528 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 544 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 560 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 576 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 592 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 608 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 624 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 640 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 656 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 672 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 688 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 704 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 720 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 736 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 752 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 768 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 784 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 800 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 816 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 832 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 848 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 864 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 880 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 896 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 912 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 928 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 944 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 960 - image: "plaintext.0.png" - } - Frame { - msec: 976 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 992 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1008 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1024 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1040 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1056 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1072 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1088 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1104 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1120 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1136 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1152 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1168 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1184 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1216 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1232 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1248 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1264 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1280 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1296 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1312 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1328 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } - Frame { - msec: 1344 - hash: "cbf65bcb64a4781b79132b87f98d5fc7" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.0.png deleted file mode 100644 index 6379942..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml deleted file mode 100644 index 8529b92..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-MAC/richtext.qml +++ /dev/null @@ -1,359 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 32 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 48 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 64 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 80 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 96 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 112 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 128 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 144 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 160 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 176 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 192 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 208 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 224 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 240 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 256 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 272 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 288 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 304 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 320 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 336 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 352 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 368 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 384 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 400 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 416 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 432 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 448 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 464 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 480 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 496 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 512 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 528 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 544 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 560 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 576 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 592 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 608 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 624 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 640 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 656 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 672 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 688 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 704 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 720 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 736 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 752 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 768 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 784 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 800 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 816 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 832 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 848 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 864 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 880 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 896 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 912 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 928 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 944 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 960 - image: "richtext.0.png" - } - Frame { - msec: 976 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 992 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1008 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1024 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1040 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1056 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1072 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1088 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1104 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1120 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1136 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1152 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1168 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1184 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1200 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1216 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1232 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1248 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1264 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1280 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1296 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1312 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1328 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1344 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1360 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } - Frame { - msec: 1376 - hash: "b902ff73e7c943bb09b5d2ae6c7a760e" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png deleted file mode 100644 index 50d56dc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml deleted file mode 100644 index bf3aea6..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml +++ /dev/null @@ -1,351 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 32 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 48 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 64 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 80 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 96 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 112 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 128 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 144 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 160 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 176 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 192 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 208 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 224 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 240 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 256 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 272 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 288 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 304 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 320 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 336 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 352 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 368 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 384 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 400 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 416 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 432 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 448 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 464 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 480 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 496 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 512 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 528 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 544 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 560 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 576 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 592 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 608 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 624 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 640 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 656 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 672 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 688 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 704 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 720 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 736 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 752 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 768 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 784 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 800 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 816 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 832 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 848 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 864 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 880 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 896 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 912 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 928 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 944 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 960 - image: "plaintext.0.png" - } - Frame { - msec: 976 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 992 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1008 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1024 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1040 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1056 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1072 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1088 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1104 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1120 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1136 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1152 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1168 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1184 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1216 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1232 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1248 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1264 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1280 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1296 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1312 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1328 - hash: "d553014bc56a46787e30459b0f44f57a" - } - Frame { - msec: 1344 - hash: "d553014bc56a46787e30459b0f44f57a" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png deleted file mode 100644 index 2910670..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml deleted file mode 100644 index 4a87240..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml +++ /dev/null @@ -1,359 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 32 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 48 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 64 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 80 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 96 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 112 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 128 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 144 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 160 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 176 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 192 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 208 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 224 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 240 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 256 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 272 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 288 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 304 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 320 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 336 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 352 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 368 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 384 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 400 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 416 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 432 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 448 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 464 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 480 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 496 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 512 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 528 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 544 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 560 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 576 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 592 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 608 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 624 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 640 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 656 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 672 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 688 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 704 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 720 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 736 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 752 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 768 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 784 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 800 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 816 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 832 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 848 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 864 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 880 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 896 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 912 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 928 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 944 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 960 - image: "richtext.0.png" - } - Frame { - msec: 976 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 992 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1008 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1024 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1040 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1056 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1072 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1088 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1104 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1120 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1136 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1152 - hash: "dfea78484b840b8cab690e277b960723" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1168 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1184 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1200 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1216 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1232 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1248 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1264 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1280 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1296 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1312 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1328 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1344 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1360 - hash: "dfea78484b840b8cab690e277b960723" - } - Frame { - msec: 1376 - hash: "dfea78484b840b8cab690e277b960723" - } -} -- cgit v0.12 From 46bcfe78c17e35c378b7788fdd8dcd0f38ade9f0 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Thu, 28 Oct 2010 18:57:01 +1000 Subject: Cleanup qmlvisual/qdeclarativetextedit tests Platform visuals and working again after a long period of neglect Task-number: QTBUG-14792 --- .../qdeclarativetextedit/MultilineEdit.qml | 3 +- .../qdeclarativetextedit/cursorDelegate.qml | 15 +- .../data-X11/cursorDelegate.0.png | Bin 0 -> 3171 bytes .../data-X11/cursorDelegate.1.png | Bin 0 -> 3603 bytes .../data-X11/cursorDelegate.2.png | Bin 0 -> 3152 bytes .../data-X11/cursorDelegate.3.png | Bin 0 -> 3147 bytes .../data-X11/cursorDelegate.4.png | Bin 0 -> 3145 bytes .../data-X11/cursorDelegate.5.png | Bin 0 -> 3147 bytes .../data-X11/cursorDelegate.6.png | Bin 0 -> 3145 bytes .../data-X11/cursorDelegate.7.png | Bin 0 -> 3146 bytes .../data-X11/cursorDelegate.8.png | Bin 0 -> 3144 bytes .../data-X11/cursorDelegate.9.png | Bin 0 -> 3135 bytes .../data-X11/cursorDelegate.qml | 1499 +++++++ .../qdeclarativetextedit/data-X11/qt-669.0.png | Bin 0 -> 2483 bytes .../qdeclarativetextedit/data-X11/qt-669.1.png | Bin 0 -> 2474 bytes .../qdeclarativetextedit/data-X11/qt-669.2.png | Bin 0 -> 2480 bytes .../qdeclarativetextedit/data-X11/qt-669.3.png | Bin 0 -> 2443 bytes .../qdeclarativetextedit/data-X11/qt-669.qml | 1371 ++++++ .../data-X11/usingMultilineEdit.0.png | Bin 0 -> 4006 bytes .../data-X11/usingMultilineEdit.1.png | Bin 0 -> 4293 bytes .../data-X11/usingMultilineEdit.10.png | Bin 0 -> 6074 bytes .../data-X11/usingMultilineEdit.11.png | Bin 0 -> 6074 bytes .../data-X11/usingMultilineEdit.2.png | Bin 0 -> 4683 bytes .../data-X11/usingMultilineEdit.3.png | Bin 0 -> 5114 bytes .../data-X11/usingMultilineEdit.4.png | Bin 0 -> 5270 bytes .../data-X11/usingMultilineEdit.5.png | Bin 0 -> 5401 bytes .../data-X11/usingMultilineEdit.6.png | Bin 0 -> 5591 bytes .../data-X11/usingMultilineEdit.7.png | Bin 0 -> 5261 bytes .../data-X11/usingMultilineEdit.8.png | Bin 0 -> 6072 bytes .../data-X11/usingMultilineEdit.9.png | Bin 0 -> 6074 bytes .../data-X11/usingMultilineEdit.qml | 4687 ++++++++++++++++++++ .../qdeclarativetextedit/data-X11/wrap.0.png | Bin 1110 -> 8764 bytes .../qdeclarativetextedit/data-X11/wrap.1.png | Bin 1110 -> 8922 bytes .../qdeclarativetextedit/data-X11/wrap.2.png | Bin 1110 -> 9175 bytes .../qdeclarativetextedit/data-X11/wrap.3.png | Bin 1110 -> 9553 bytes .../qdeclarativetextedit/data-X11/wrap.4.png | Bin 1110 -> 9975 bytes .../qdeclarativetextedit/data-X11/wrap.5.png | Bin 1110 -> 9977 bytes .../qdeclarativetextedit/data-X11/wrap.6.png | Bin 1110 -> 9977 bytes .../qdeclarativetextedit/data-X11/wrap.qml | 844 ++-- .../qdeclarativetextedit/data/cursorDelegate.0.png | Bin 3322 -> 3171 bytes .../qdeclarativetextedit/data/cursorDelegate.1.png | Bin 3323 -> 3603 bytes .../qdeclarativetextedit/data/cursorDelegate.2.png | Bin 3325 -> 3152 bytes .../qdeclarativetextedit/data/cursorDelegate.3.png | Bin 3332 -> 3147 bytes .../qdeclarativetextedit/data/cursorDelegate.4.png | Bin 3329 -> 3145 bytes .../qdeclarativetextedit/data/cursorDelegate.5.png | Bin 3818 -> 3147 bytes .../qdeclarativetextedit/data/cursorDelegate.6.png | Bin 3333 -> 3145 bytes .../qdeclarativetextedit/data/cursorDelegate.7.png | Bin 3332 -> 3146 bytes .../qdeclarativetextedit/data/cursorDelegate.8.png | Bin 3347 -> 3144 bytes .../qdeclarativetextedit/data/cursorDelegate.9.png | Bin 0 -> 3135 bytes .../qdeclarativetextedit/data/cursorDelegate.qml | 3050 +++---------- .../data/usingMultilineEdit.0.png | Bin 0 -> 4006 bytes .../data/usingMultilineEdit.1.png | Bin 0 -> 4293 bytes .../data/usingMultilineEdit.10.png | Bin 0 -> 6074 bytes .../data/usingMultilineEdit.11.png | Bin 0 -> 6074 bytes .../data/usingMultilineEdit.2.png | Bin 0 -> 4683 bytes .../data/usingMultilineEdit.3.png | Bin 0 -> 5114 bytes .../data/usingMultilineEdit.4.png | Bin 0 -> 5270 bytes .../data/usingMultilineEdit.5.png | Bin 0 -> 5401 bytes .../data/usingMultilineEdit.6.png | Bin 0 -> 5591 bytes .../data/usingMultilineEdit.7.png | Bin 0 -> 5261 bytes .../data/usingMultilineEdit.8.png | Bin 0 -> 6072 bytes .../data/usingMultilineEdit.9.png | Bin 0 -> 6074 bytes .../data/usingMultilineEdit.qml | 4687 ++++++++++++++++++++ .../qmlvisual/qdeclarativetextedit/qt-669.qml | 5 +- .../qdeclarativetextedit/usingMultilineEdit.qml | 5 +- 65 files changed, 13177 insertions(+), 2989 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml index c987568..fd29eb6 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/MultilineEdit.qml @@ -36,9 +36,10 @@ Item { if(cursorRectangle.y < topMargin - textEdit.y){//Cursor went off the front textEdit.y = topMargin - Math.max(0, cursorRectangle.y); }else if(cursorRectangle.y > parent.height - topMargin - bottomMargin - textEdit.y){//Cursor went off the end - textEdit.y = topMargin - Math.max(0, cursorRectangle.y - (parent.height - topMargin - bottomMargin)) - cursorRectangle.height; + textEdit.y = topMargin - Math.max(0, cursorRectangle.y - (parent.height - topMargin - bottomMargin) + cursorRectangle.height); } } + onHeightChanged: y=topMargin//reset scroll text:"" horizontalAlignment: TextInput.AlignLeft diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml index c0eeb82..8798a5f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/cursorDelegate.qml @@ -3,17 +3,16 @@ import QtQuick 1.0 resources: [ Component { id: cursorA Item { id: cPage; - x: Behavior { NumberAnimation { } } - y: Behavior { NumberAnimation { } } - height: Behavior { NumberAnimation { duration: 200 } } + Behavior on x { NumberAnimation { } } + Behavior on y { NumberAnimation { } } + Behavior on height { NumberAnimation { duration: 200 } } Rectangle { id: cRectangle; color: "black"; y: 1; width: 1; height: parent.height-2; Rectangle { id:top; color: "black"; width: 3; height: 1; x: -1; y:0} Rectangle { id:bottom; color: "black"; width: 3; height: 1; x: -1; anchors.bottom: parent.bottom;} - opacity: 1 - opacity: SequentialAnimation { running: cPage.parent.focus == true; loops: Animation.Infinite; - NumberAnimation { properties: "opacity"; to: 1; duration: 500; easing.type: "InQuad"} - NumberAnimation { properties: "opacity"; to: 0; duration: 500; easing.type: "OutQuad"} - } + } + SequentialAnimation on opacity { running: true; loops: Animation.Infinite; + NumberAnimation { to: 0; duration: 500; easing.type: "OutQuad"} + NumberAnimation { to: 1; duration: 500; easing.type: "InQuad"} } width: 1; } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png new file mode 100644 index 0000000..b24344c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png new file mode 100644 index 0000000..5e29359 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png new file mode 100644 index 0000000..0ffee64 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png new file mode 100644 index 0000000..6c56e9c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png new file mode 100644 index 0000000..276170d Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png new file mode 100644 index 0000000..3d8709f Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png new file mode 100644 index 0000000..80b960c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png new file mode 100644 index 0000000..7247277 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.7.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png new file mode 100644 index 0000000..af5a996 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.8.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png new file mode 100644 index 0000000..b254164 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.9.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml new file mode 100644 index 0000000..0407aaf --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/cursorDelegate.qml @@ -0,0 +1,1499 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "6e8324bf913d9df21a59ab4337257c15" + } + Frame { + msec: 32 + hash: "4e068995d68e8939e6560e35b685e839" + } + Frame { + msec: 48 + hash: "761b09bce25b3b240093d16ad02268d7" + } + Frame { + msec: 64 + hash: "1ecb6d7d08d4e4e14db28e24a60eccc4" + } + Frame { + msec: 80 + hash: "642417a56b3d6b8b35f5aec1bf0a9d2c" + } + Frame { + msec: 96 + hash: "2e24870a44d3fc6c6d5c920bab29d417" + } + Frame { + msec: 112 + hash: "9a59d0672f2a752943561af89fd71d7f" + } + Frame { + msec: 128 + hash: "c359dd36910678a30f935a13c8680ee4" + } + Frame { + msec: 144 + hash: "245f1e127549e9b28c7574ffb143fcde" + } + Frame { + msec: 160 + hash: "8df3d3dbce673311d88c055e8dffaeb5" + } + Frame { + msec: 176 + hash: "590fdeaddb3df033a1908a8a95fcd17a" + } + Frame { + msec: 192 + hash: "a158891c8d2ee3899463412a3363e48c" + } + Frame { + msec: 208 + hash: "e9ec2c82f46b36fbd0285ce6795c7cf9" + } + Frame { + msec: 224 + hash: "0a02598af770dfe1d332f10c9482e770" + } + Frame { + msec: 240 + hash: "8765475468bccbd0df897a533241f3c5" + } + Frame { + msec: 256 + hash: "4cd9deed66bfdfadde8f8bf34f0e5513" + } + Frame { + msec: 272 + hash: "139bf5a1811beb2438df4ecfa3bbaac7" + } + Frame { + msec: 288 + hash: "9d51555afd71a7035e67a543846dcf7f" + } + Frame { + msec: 304 + hash: "de187b58fc8dfaad2d62e9463691b0c0" + } + Frame { + msec: 320 + hash: "9f88ac6d71246b06ca7ce9d8d983c91b" + } + Frame { + msec: 336 + hash: "a43c12a7d6597d171112dc43085a439e" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 352 + hash: "ad38f32755f669837ec2243e355ebc85" + } + Frame { + msec: 368 + hash: "d87bd14345c785cc7e78a5c5462b90ec" + } + Frame { + msec: 384 + hash: "77850031e012246dd967ac689e353eb3" + } + Frame { + msec: 400 + hash: "f1bd048cd9167a8f162d1c39aca4f7c1" + } + Frame { + msec: 416 + hash: "0fa030c5da23f23a0665a535e23b84a2" + } + Frame { + msec: 432 + hash: "af3a5f1982459164dfec26746172b0eb" + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 448 + hash: "0de90659472b63dd41a5602197ff502e" + } + Frame { + msec: 464 + hash: "81e40abf91017614a52e03bb2474549f" + } + Frame { + msec: 480 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 496 + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 512 + hash: "0416581d32ab84680dfc26b6f546d2c5" + } + Frame { + msec: 528 + hash: "0416581d32ab84680dfc26b6f546d2c5" + } + Frame { + msec: 544 + hash: "0416581d32ab84680dfc26b6f546d2c5" + } + Frame { + msec: 560 + hash: "0416581d32ab84680dfc26b6f546d2c5" + } + Frame { + msec: 576 + hash: "ac98b973e6d12193829139661d3e5847" + } + Frame { + msec: 592 + hash: "366907376adae4d88d42d1b9e7533ec0" + } + Frame { + msec: 608 + hash: "5f486d0a21c74f2ba50afcafa8c15453" + } + Frame { + msec: 624 + hash: "a3bf6dde525e528745272a8e43fc895c" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 640 + hash: "4ffb297d2a98a3d13b848af569b1b5b5" + } + Frame { + msec: 656 + hash: "3679a17658e417bf08fc86d4bef0d4e9" + } + Frame { + msec: 672 + hash: "5c6a25284ffd13350425e792fd143421" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 688 + hash: "09a2c1032d0206e20340ae4267525f98" + } + Frame { + msec: 704 + hash: "0036070d9a7ee854b3612858af46ab59" + } + Frame { + msec: 720 + hash: "8774509eaa5fc29385da89214ef77589" + } + Frame { + msec: 736 + hash: "6d4f8ebf046148e5079f498396c119b4" + } + Frame { + msec: 752 + hash: "4c7d5d2f77116c96357b0791348af058" + } + Frame { + msec: 768 + hash: "398c927a3525d5b90a5dd7a05ba9467b" + } + Frame { + msec: 784 + hash: "d84b45f6acb8cbd399d4ed6bf80ce132" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 800 + hash: "40c597d9e04e8e0daf62f58b9e7973b3" + } + Frame { + msec: 816 + hash: "2c7fdd47e29d924e3e008a6840e0e6be" + } + Frame { + msec: 832 + hash: "2b3229bb1aa220499114f274cf643ce9" + } + Frame { + msec: 848 + hash: "e55446874c1a343ce3607d679d69d1d4" + } + Frame { + msec: 864 + hash: "6824708eb176a9cf92f241d4054800dd" + } + Frame { + msec: 880 + hash: "d386230dd416740625eb4f677ef4531b" + } + Frame { + msec: 896 + hash: "9b2fbddab890dbe43e84e85bf320e6c1" + } + Frame { + msec: 912 + hash: "1d1065aca7eb47f0096bc2c8c4320880" + } + Frame { + msec: 928 + hash: "d97ba6e2bfc021fe993afdb5b28316ba" + } + Frame { + msec: 944 + hash: "3a3a2f340bf1ccb14eab0562d7ecfe87" + } + Frame { + msec: 960 + image: "cursorDelegate.0.png" + } + Frame { + msec: 976 + hash: "ea4f4c1de5bfb1be43ab0188afb7189c" + } + Frame { + msec: 992 + hash: "399ca2d4411d3fb226c94bd32a17d0cd" + } + Frame { + msec: 1008 + hash: "ca78503396613536c8e4076884354cb1" + } + Frame { + msec: 1024 + hash: "ca78503396613536c8e4076884354cb1" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1040 + hash: "399ca2d4411d3fb226c94bd32a17d0cd" + } + Frame { + msec: 1056 + hash: "ea4f4c1de5bfb1be43ab0188afb7189c" + } + Frame { + msec: 1072 + hash: "d23d7492b85e4f30994ecd64e8273ff6" + } + Frame { + msec: 1088 + hash: "3a3a2f340bf1ccb14eab0562d7ecfe87" + } + Frame { + msec: 1104 + hash: "d97ba6e2bfc021fe993afdb5b28316ba" + } + Frame { + msec: 1120 + hash: "1d1065aca7eb47f0096bc2c8c4320880" + } + Frame { + msec: 1136 + hash: "9b2fbddab890dbe43e84e85bf320e6c1" + } + Frame { + msec: 1152 + hash: "d386230dd416740625eb4f677ef4531b" + } + Frame { + msec: 1168 + hash: "6824708eb176a9cf92f241d4054800dd" + } + Key { + type: 6 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1184 + hash: "e8e14dbba33578a36d9c69214333c537" + } + Frame { + msec: 1200 + hash: "95c6e967f6f445748945c51943cf532f" + } + Frame { + msec: 1216 + hash: "d145d4cbd0e3a98686b3bac1c5c17093" + } + Frame { + msec: 1232 + hash: "09348a4108a585dd23c3a252a5c596f6" + } + Frame { + msec: 1248 + hash: "55126f2c879771e1aa5ced51b54c827a" + } + Frame { + msec: 1264 + hash: "ebb36a4c2fcb85107033ec2731fc5743" + } + Frame { + msec: 1280 + hash: "0581a4432d4b3d0c1555a31e772c2575" + } + Key { + type: 7 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1296 + hash: "b4030774f06935f1b43fc8f1a69e53a5" + } + Frame { + msec: 1312 + hash: "655e1739c130888ff83a3b69bb0ab7e3" + } + Frame { + msec: 1328 + hash: "99fc97c572e7c8949693b32910e6eefb" + } + Frame { + msec: 1344 + hash: "e9c8bb13c2549047c05d671daa378496" + } + Frame { + msec: 1360 + hash: "cb344e0d39b5b07ca7d094bf30ce9f53" + } + Frame { + msec: 1376 + hash: "15ba6e62c693f2bf74bdf86668139985" + } + Frame { + msec: 1392 + hash: "48133ec73eb9723059eb6e6af3139f2b" + } + Frame { + msec: 1408 + hash: "0b19e777a04f03774f2d5f5398bdb10f" + } + Frame { + msec: 1424 + hash: "fc41d9a9aedf9274a68b33603ed6ccd0" + } + Frame { + msec: 1440 + hash: "fa6e65f0c835b12dc10463711bd73350" + } + Frame { + msec: 1456 + hash: "25a02c3388e52df550a0332efde90fcd" + } + Frame { + msec: 1472 + hash: "2390443be82acf291856be59fa18fc26" + } + Frame { + msec: 1488 + hash: "2390443be82acf291856be59fa18fc26" + } + Frame { + msec: 1504 + hash: "2390443be82acf291856be59fa18fc26" + } + Frame { + msec: 1520 + hash: "2390443be82acf291856be59fa18fc26" + } + Frame { + msec: 1536 + hash: "2390443be82acf291856be59fa18fc26" + } + Frame { + msec: 1552 + hash: "2390443be82acf291856be59fa18fc26" + } + Frame { + msec: 1568 + hash: "284cd356d551a048d4a000b90217ac72" + } + Frame { + msec: 1584 + hash: "94fb20c3767e09d1b4254ee6122cf24e" + } + Frame { + msec: 1600 + hash: "bfac920384425ce9f34505b44eceb523" + } + Frame { + msec: 1616 + hash: "4a2d434efcb9a57f2013dc6b366e0e4e" + } + Frame { + msec: 1632 + hash: "d0fbe98dc34c4bb0d1ceb7e4678cc1d5" + } + Frame { + msec: 1648 + hash: "28ab147983a71e93e5610f53e14bd113" + } + Key { + type: 6 + key: 16777249 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1664 + hash: "2e6ee60fe9ff07fa4558134e6b1d6da8" + } + Frame { + msec: 1680 + hash: "f181e578e865981d7a2073080b381ec1" + } + Frame { + msec: 1696 + hash: "d7c0558ea16829b52ea6d09814c301b9" + } + Frame { + msec: 1712 + hash: "c9304cb66c04566cf4374b46ab85e6e7" + } + Frame { + msec: 1728 + hash: "024dde64822afc9eea63974851fe57e1" + } + Frame { + msec: 1744 + hash: "8e4520e95a8acc8f1d4b710c4a14898f" + } + Frame { + msec: 1760 + hash: "6b271c3f1d9d49bbd80a8ee33f3fc09c" + } + Frame { + msec: 1776 + hash: "eb76a46632856bf07b005cad2ba2f6ab" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "a29bd83f6b4e877f3c7b89c82dfcab54" + } + Frame { + msec: 1808 + hash: "dca39b6b6fff5e4a6309e4c0e42811c0" + } + Frame { + msec: 1824 + hash: "88ad3f9f638a97bed98f00ec7d78dfe4" + } + Frame { + msec: 1840 + hash: "5697a705f36283213bbe4b5848baa764" + } + Frame { + msec: 1856 + hash: "8850842afae3060a91d612f7b869fd48" + } + Frame { + msec: 1872 + hash: "4f08dbd1cab0bfcc8b9f232d46cf42db" + } + Frame { + msec: 1888 + hash: "f7df5b96d0983a918e3c81aa7bee3950" + } + Frame { + msec: 1904 + hash: "b28681bcb414d428588acda377fef838" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1920 + image: "cursorDelegate.1.png" + } + Frame { + msec: 1936 + hash: "5c154b54776ed555563d3e5196a8aedd" + } + Frame { + msec: 1952 + hash: "ee64c0452b325880de3a4fea599c18cc" + } + Frame { + msec: 1968 + hash: "0776e1557b2d32db1c7c43331c532331" + } + Frame { + msec: 1984 + hash: "24b68da9a63bbf00ffffeca649f771fa" + } + Frame { + msec: 2000 + hash: "00d49d91b51f5bd428c07e9be65f551a" + } + Frame { + msec: 2016 + hash: "874d4b599cb92cd9160960e3b3af74e0" + } + Frame { + msec: 2032 + hash: "00d49d91b51f5bd428c07e9be65f551a" + } + Frame { + msec: 2048 + hash: "24b68da9a63bbf00ffffeca649f771fa" + } + Frame { + msec: 2064 + hash: "0776e1557b2d32db1c7c43331c532331" + } + Frame { + msec: 2080 + hash: "ee64c0452b325880de3a4fea599c18cc" + } + Frame { + msec: 2096 + hash: "5c154b54776ed555563d3e5196a8aedd" + } + Frame { + msec: 2112 + hash: "a5f90da82b51bc866648304a20a1dcd3" + } + Frame { + msec: 2128 + hash: "b28681bcb414d428588acda377fef838" + } + Frame { + msec: 2144 + hash: "f7df5b96d0983a918e3c81aa7bee3950" + } + Frame { + msec: 2160 + hash: "4f08dbd1cab0bfcc8b9f232d46cf42db" + } + Frame { + msec: 2176 + hash: "8850842afae3060a91d612f7b869fd48" + } + Frame { + msec: 2192 + hash: "5697a705f36283213bbe4b5848baa764" + } + Frame { + msec: 2208 + hash: "88ad3f9f638a97bed98f00ec7d78dfe4" + } + Frame { + msec: 2224 + hash: "dca39b6b6fff5e4a6309e4c0e42811c0" + } + Key { + type: 7 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2240 + hash: "a29bd83f6b4e877f3c7b89c82dfcab54" + } + Frame { + msec: 2256 + hash: "7defd2ecefeb86b457a2ee76d97424ee" + } + Frame { + msec: 2272 + hash: "ccf6d45e8822d72482d9b585909b612b" + } + Frame { + msec: 2288 + hash: "996dddf091394513adda1b1f00bf0c68" + } + Frame { + msec: 2304 + hash: "3cf94e90eddb4b0815762b89f58f8325" + } + Frame { + msec: 2320 + hash: "ab9f876450526b37774c6c4a5794c7b1" + } + Frame { + msec: 2336 + hash: "9109880e9201e92eb17ae87a3648dca7" + } + Frame { + msec: 2352 + hash: "0e759f2f279057c1f4d1147be5b41214" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "d87bd14345c785cc7e78a5c5462b90ec" + } + Frame { + msec: 2384 + hash: "77850031e012246dd967ac689e353eb3" + } + Frame { + msec: 2400 + hash: "f1bd048cd9167a8f162d1c39aca4f7c1" + } + Frame { + msec: 2416 + hash: "0fa030c5da23f23a0665a535e23b84a2" + } + Frame { + msec: 2432 + hash: "af3a5f1982459164dfec26746172b0eb" + } + Frame { + msec: 2448 + hash: "0de90659472b63dd41a5602197ff502e" + } + Frame { + msec: 2464 + hash: "81e40abf91017614a52e03bb2474549f" + } + Frame { + msec: 2480 + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2496 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 2512 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 2528 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 2544 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 2560 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 2576 + hash: "e26dbfb26415b21198add56d5de02cb2" + } + Frame { + msec: 2592 + hash: "fa2877a963417789b82170b32e0af7a0" + } + Frame { + msec: 2608 + hash: "860b39f92c412a7d946f882d8f99d837" + } + Frame { + msec: 2624 + hash: "d7b8c52aef183965a97d82a18b03ed94" + } + Frame { + msec: 2640 + hash: "b1ce9cf0ebd8e1e783e5bd43bbd72072" + } + Frame { + msec: 2656 + hash: "d214b419ec5b4cff8f877bdeb1b9ef96" + } + Frame { + msec: 2672 + hash: "95e7057104508b3919d722d4befde7b7" + } + Frame { + msec: 2688 + hash: "270489ec5da5bf9a93fa4e52f47a71f5" + } + Frame { + msec: 2704 + hash: "46646e396ab0c1c20427dadd71d45ba9" + } + Frame { + msec: 2720 + hash: "65e2fd167565f876310d56fa9203c118" + } + Frame { + msec: 2736 + hash: "aff0da79bd9bd8c285139d7737a1316f" + } + Frame { + msec: 2752 + hash: "bf264fe7d774a597a3ff0965d912fa90" + } + Frame { + msec: 2768 + hash: "f00358343437f6e058848c7237601632" + } + Frame { + msec: 2784 + hash: "88c9e1d58397a81ed23931c7fdae1e7d" + } + Frame { + msec: 2800 + hash: "44d46b459f6bb89510e52b0d999fd499" + } + Frame { + msec: 2816 + hash: "0c196a24c9ca7143d382688db678d855" + } + Frame { + msec: 2832 + hash: "9df6d3d3b9981cb907ab89e65b743e97" + } + Frame { + msec: 2848 + hash: "501a644d6cde64ad041b086e00fd3950" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2864 + hash: "83f297406b1c6311da3a216024836d15" + } + Frame { + msec: 2880 + image: "cursorDelegate.2.png" + } + Frame { + msec: 2896 + hash: "93f79f8717948bde8ee55c668af2d397" + } + Frame { + msec: 2912 + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" + } + Frame { + msec: 2928 + hash: "be72fe7c27901db62f2dbd9a757e4838" + } + Frame { + msec: 2944 + hash: "c83c973fb1253ccab333fb1e604155b8" + } + Frame { + msec: 2960 + hash: "dd6072d204812c23e24db1e7a81c6f57" + } + Frame { + msec: 2976 + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "fc8ede705bfe8f339fe47041c502b0d6" + } + Frame { + msec: 3008 + hash: "00fa0306d3fdc7e384cfc0660a3a355d" + } + Frame { + msec: 3024 + hash: "00fa0306d3fdc7e384cfc0660a3a355d" + } + Frame { + msec: 3040 + hash: "fc8ede705bfe8f339fe47041c502b0d6" + } + Frame { + msec: 3056 + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" + } + Frame { + msec: 3072 + hash: "dd6072d204812c23e24db1e7a81c6f57" + } + Frame { + msec: 3088 + hash: "c83c973fb1253ccab333fb1e604155b8" + } + Frame { + msec: 3104 + hash: "be72fe7c27901db62f2dbd9a757e4838" + } + Frame { + msec: 3120 + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" + } + Frame { + msec: 3136 + hash: "93f79f8717948bde8ee55c668af2d397" + } + Frame { + msec: 3152 + hash: "1bb236db749ef514c00d0a3dd698d24f" + } + Frame { + msec: 3168 + hash: "83f297406b1c6311da3a216024836d15" + } + Frame { + msec: 3184 + hash: "3d284b4000d2849ed4af2f7c1b859492" + } + Frame { + msec: 3200 + hash: "de315e6836334fd0a2da855f5be4ff30" + } + Frame { + msec: 3216 + hash: "5ca117709284f4a1cbd64cdba4079340" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3232 + hash: "308a4220f5c74fd56bd218cd695b9822" + } + Frame { + msec: 3248 + hash: "4ac4e09e987f2ba9661ed52fb1bdf236" + } + Frame { + msec: 3264 + hash: "9ffd39a8a540ec88ff2b20a16ef083ee" + } + Frame { + msec: 3280 + hash: "4a36ed8e68811954fef171d5734ccbaf" + } + Frame { + msec: 3296 + hash: "714a6231aca70cfa8e83ea71b7ae90dc" + } + Frame { + msec: 3312 + hash: "1fa9e35449ee87c972e3189ad0651a68" + } + Frame { + msec: 3328 + hash: "d602008fada2f4edb6ad00fe759f9db9" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3344 + hash: "bf16cc38f109e761b5ac2b0c63a1a2fe" + } + Frame { + msec: 3360 + hash: "30f26041533455ed92c4984f55e3c6ff" + } + Frame { + msec: 3376 + hash: "5838d666902bc693de505522dad13254" + } + Frame { + msec: 3392 + hash: "6c8ada09b627050e4340da6e8ddd646e" + } + Frame { + msec: 3408 + hash: "b33cd5bbb90d435dd7ea3ab67bef88ee" + } + Frame { + msec: 3424 + hash: "692d4029938c01044b4210958dd1ee7e" + } + Frame { + msec: 3440 + hash: "7e2e55555ee2c7e172e61ddb6365355d" + } + Frame { + msec: 3456 + hash: "87ca0584879b25336a1023ac3252fc9a" + } + Frame { + msec: 3472 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 3488 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 3504 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 3520 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 3536 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 3552 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 3568 + hash: "8c6052eb4cf03d7742a73874d9f15285" + } + Frame { + msec: 3584 + hash: "8a1b63c42867f87a1cf4b47944b3860a" + } + Frame { + msec: 3600 + hash: "90712efd7c17b0ad33d2c2c02e9eaa97" + } + Frame { + msec: 3616 + hash: "8099972420ffd03e2bfc3ea45918a543" + } + Frame { + msec: 3632 + hash: "2b78b1179a34319c287a6659406e23c3" + } + Frame { + msec: 3648 + hash: "ad9458ab4d6376c87350a2356c280f94" + } + Frame { + msec: 3664 + hash: "a74bc230e310a2826b2fed962db22f7a" + } + Frame { + msec: 3680 + hash: "bd72e8f4757050c41673a6f0d38f2285" + } + Frame { + msec: 3696 + hash: "379bad4fa4b605cb6a16434bdb031e2b" + } + Frame { + msec: 3712 + hash: "e144a8e9586f29f9b2f042b47e7739ae" + } + Frame { + msec: 3728 + hash: "bd74c9e79bc1a88dd6a17a3aed21e368" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3744 + hash: "144724168f42372e10ec6c39662a5ed8" + } + Frame { + msec: 3760 + hash: "d8859888802e7b54e2d2a44cf252eb54" + } + Frame { + msec: 3776 + hash: "20561e2faf7e8fe1d6337248e6cd5e94" + } + Frame { + msec: 3792 + hash: "184cff262d1004ce702c117a6b5b9699" + } + Frame { + msec: 3808 + hash: "61b156acacefa6e4f4ddd8adaca90d08" + } + Frame { + msec: 3824 + hash: "0906852b1e62a936694a22d6ffa4f5dd" + } + Frame { + msec: 3840 + image: "cursorDelegate.3.png" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3856 + hash: "cc0fb2ae2dd1ccad94c453bc4c4b6d32" + } + Frame { + msec: 3872 + hash: "6a6baee5ca76d331c47fca4d0f7168e5" + } + Frame { + msec: 3888 + hash: "32032d7ce55af41c97ac5bf33aca40bb" + } + Frame { + msec: 3904 + hash: "a8781226e5e494324a34e120aa446cd1" + } + Frame { + msec: 3920 + hash: "0dd5df088fcc0228a97ffe715c95e2b6" + } + Frame { + msec: 3936 + hash: "774b161fe9645bc69b89e580b3e41f71" + } + Frame { + msec: 3952 + hash: "5756d7ffd8ff656db54f4329ea909553" + } + Frame { + msec: 3968 + hash: "2b4a5c97ff4d8792a7706bb78385ec35" + } + Frame { + msec: 3984 + hash: "f9765e4def564b64861402e1a873b169" + } + Frame { + msec: 4000 + hash: "287b07ef6288dcea13fffd2b95aafd54" + } + Frame { + msec: 4016 + hash: "7abcb9d6cf223c1655f6265f780a321a" + } + Frame { + msec: 4032 + hash: "287b07ef6288dcea13fffd2b95aafd54" + } + Frame { + msec: 4048 + hash: "f9765e4def564b64861402e1a873b169" + } + Frame { + msec: 4064 + hash: "2b4a5c97ff4d8792a7706bb78385ec35" + } + Key { + type: 7 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "5756d7ffd8ff656db54f4329ea909553" + } + Frame { + msec: 4096 + hash: "774b161fe9645bc69b89e580b3e41f71" + } + Frame { + msec: 4112 + hash: "0dd5df088fcc0228a97ffe715c95e2b6" + } + Frame { + msec: 4128 + hash: "a8781226e5e494324a34e120aa446cd1" + } + Frame { + msec: 4144 + hash: "32032d7ce55af41c97ac5bf33aca40bb" + } + Frame { + msec: 4160 + hash: "6a6baee5ca76d331c47fca4d0f7168e5" + } + Frame { + msec: 4176 + hash: "cc0fb2ae2dd1ccad94c453bc4c4b6d32" + } + Frame { + msec: 4192 + hash: "2d1b406be294727a278ba6bbc97be62a" + } + Frame { + msec: 4208 + hash: "0906852b1e62a936694a22d6ffa4f5dd" + } + Frame { + msec: 4224 + hash: "61b156acacefa6e4f4ddd8adaca90d08" + } + Frame { + msec: 4240 + hash: "184cff262d1004ce702c117a6b5b9699" + } + Frame { + msec: 4256 + hash: "20561e2faf7e8fe1d6337248e6cd5e94" + } + Frame { + msec: 4272 + hash: "d8859888802e7b54e2d2a44cf252eb54" + } + Frame { + msec: 4288 + hash: "144724168f42372e10ec6c39662a5ed8" + } + Frame { + msec: 4304 + hash: "d2da36fbf73289f545133bd608af66a2" + } + Frame { + msec: 4320 + hash: "b1d7da6b42a31bba91148ab37b111945" + } + Frame { + msec: 4336 + hash: "6f226a3b20d95e17df69e2c4e5aff3d1" + } + Frame { + msec: 4352 + hash: "1109da0f043a9418661fc05e53fe3b45" + } + Frame { + msec: 4368 + hash: "f3e901db9efd1d9fadf1cb6858040d51" + } + Frame { + msec: 4384 + hash: "c8e50c0e924b11a3f1943abb9a4008a4" + } + Frame { + msec: 4400 + hash: "431226a27488ed1dba237de3d43f94c5" + } + Frame { + msec: 4416 + hash: "420d316430c84f10d7cd24d29b918149" + } + Frame { + msec: 4432 + hash: "ccbd4d1e4865ebd9b0fe923e6ab05e5c" + } + Frame { + msec: 4448 + hash: "231bff73758a1c6f7c7c0365159ba3e6" + } + Frame { + msec: 4464 + hash: "d1ac7ceda7303bbf3392d33f47037ed6" + } + Frame { + msec: 4480 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4496 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4512 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4528 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4544 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4560 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4576 + hash: "a2ad07326fafcb3012cdb869f39af466" + } + Frame { + msec: 4592 + hash: "8622eb25a6da44926b5161bce213a483" + } + Frame { + msec: 4608 + hash: "fe563aa9dae9655871f82a779063cdbd" + } + Frame { + msec: 4624 + hash: "775cd79b012f79b773449a0ad8457149" + } + Frame { + msec: 4640 + hash: "01e9fab344a148a0877a7332d561be5a" + } + Frame { + msec: 4656 + hash: "935566d139599a30197850774fb059ba" + } + Frame { + msec: 4672 + hash: "4aae1ac532624417decddd978f516b6e" + } + Frame { + msec: 4688 + hash: "34dc78df6e9941988712c1f8f79c3db0" + } + Frame { + msec: 4704 + hash: "23a96c11d5917c44bd48239ed2b5777f" + } + Frame { + msec: 4720 + hash: "f8f13e097eae3152db3ccebff1343fe0" + } + Frame { + msec: 4736 + hash: "02f8fca7c4ab80ecf425e4b39e966b86" + } + Frame { + msec: 4752 + hash: "c3356367750e797ff81bc4102f948134" + } + Frame { + msec: 4768 + hash: "7b5de3772b8bcb4b10f3d265d5603afb" + } + Frame { + msec: 4784 + hash: "ed3c741639232377f61867fd353ce58a" + } + Frame { + msec: 4800 + image: "cursorDelegate.4.png" + } + Frame { + msec: 4816 + hash: "5ca117709284f4a1cbd64cdba4079340" + } + Frame { + msec: 4832 + hash: "de315e6836334fd0a2da855f5be4ff30" + } + Frame { + msec: 4848 + hash: "3d284b4000d2849ed4af2f7c1b859492" + } + Frame { + msec: 4864 + hash: "83f297406b1c6311da3a216024836d15" + } + Frame { + msec: 4880 + hash: "1bb236db749ef514c00d0a3dd698d24f" + } + Frame { + msec: 4896 + hash: "93f79f8717948bde8ee55c668af2d397" + } + Frame { + msec: 4912 + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" + } + Frame { + msec: 4928 + hash: "be72fe7c27901db62f2dbd9a757e4838" + } + Frame { + msec: 4944 + hash: "c83c973fb1253ccab333fb1e604155b8" + } + Frame { + msec: 4960 + hash: "dd6072d204812c23e24db1e7a81c6f57" + } + Frame { + msec: 4976 + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" + } + Frame { + msec: 4992 + hash: "fc8ede705bfe8f339fe47041c502b0d6" + } + Frame { + msec: 5008 + hash: "00fa0306d3fdc7e384cfc0660a3a355d" + } + Frame { + msec: 5024 + hash: "00fa0306d3fdc7e384cfc0660a3a355d" + } + Frame { + msec: 5040 + hash: "fc8ede705bfe8f339fe47041c502b0d6" + } + Frame { + msec: 5056 + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" + } + Frame { + msec: 5072 + hash: "dd6072d204812c23e24db1e7a81c6f57" + } + Frame { + msec: 5088 + hash: "c83c973fb1253ccab333fb1e604155b8" + } + Frame { + msec: 5104 + hash: "be72fe7c27901db62f2dbd9a757e4838" + } + Frame { + msec: 5120 + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" + } + Frame { + msec: 5136 + hash: "93f79f8717948bde8ee55c668af2d397" + } + Frame { + msec: 5152 + hash: "1bb236db749ef514c00d0a3dd698d24f" + } + Frame { + msec: 5168 + hash: "83f297406b1c6311da3a216024836d15" + } + Frame { + msec: 5184 + hash: "3d284b4000d2849ed4af2f7c1b859492" + } + Frame { + msec: 5200 + hash: "de315e6836334fd0a2da855f5be4ff30" + } + Frame { + msec: 5216 + hash: "5ca117709284f4a1cbd64cdba4079340" + } + Frame { + msec: 5232 + hash: "4f0d49aff27a1c83287d38e760c10f16" + } + Frame { + msec: 5248 + hash: "ed3c741639232377f61867fd353ce58a" + } + Frame { + msec: 5264 + hash: "7b5de3772b8bcb4b10f3d265d5603afb" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png new file mode 100644 index 0000000..7c68d9c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png new file mode 100644 index 0000000..96afa8d Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png new file mode 100644 index 0000000..58b168d Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png new file mode 100644 index 0000000..95f0c98 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml new file mode 100644 index 0000000..7b00cdd --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/qt-669.qml @@ -0,0 +1,1371 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 32 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 48 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 64 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 80 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 96 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 112 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 128 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 144 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 160 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 176 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 192 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 208 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 224 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 240 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 256 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 272 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 288 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 304 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 320 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 336 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 352 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 368 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 384 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 400 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 416 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 432 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 448 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 464 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 480 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 496 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 512 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 528 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 544 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 560 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 576 + hash: "b6f3847d394c87873e34814e332e205a" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 592 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 608 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 624 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 640 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 656 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 672 + hash: "b6f3847d394c87873e34814e332e205a" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 688 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 704 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 720 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 736 + hash: "40504095d8877e37cd24ac694ca94758" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 752 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 768 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 784 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 800 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 816 + hash: "40504095d8877e37cd24ac694ca94758" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 832 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 848 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 864 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 880 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 896 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 912 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 928 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 944 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 960 + image: "qt-669.0.png" + } + Frame { + msec: 976 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 992 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 1008 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1024 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 1040 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 1056 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 1072 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 1088 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1104 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 1120 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 1136 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1152 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 1168 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 1184 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 1200 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 1216 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1232 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 1248 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 1264 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 1280 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1296 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 1312 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 1328 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 1344 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1360 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1376 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1392 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1408 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1424 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1440 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1456 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1472 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1488 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1504 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1520 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1536 + hash: "6a76601730228708049c79b414b3cbe2" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1552 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1568 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1584 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1600 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1616 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1632 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1648 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1664 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1680 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1696 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1712 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1728 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1744 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1760 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1776 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1792 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1808 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1824 + hash: "6a76601730228708049c79b414b3cbe2" + } + Frame { + msec: 1840 + hash: "6a76601730228708049c79b414b3cbe2" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1856 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1872 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1888 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1904 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1920 + image: "qt-669.1.png" + } + Frame { + msec: 1936 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1952 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1968 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 1984 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2000 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 2016 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 2032 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 2048 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Frame { + msec: 2064 + hash: "2dc196a65cb13214901e0189c2b1984b" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2080 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 2096 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 2112 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 2128 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 2144 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 2176 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 2192 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 2208 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Frame { + msec: 2224 + hash: "2da2b87d285f27ee4cdd82c2c03cdf08" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2240 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 2256 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2272 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 2288 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 2304 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 2320 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Frame { + msec: 2336 + hash: "5e8b89638494bceaed69ce3d75245458" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2352 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2368 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2384 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2400 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2416 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2432 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2448 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2464 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2480 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2496 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2512 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2528 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2544 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2560 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2576 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Frame { + msec: 2592 + hash: "0c7162e2bf228c76c7b9247e7ee1cf63" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2608 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 2624 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 2640 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 2656 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 2672 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2688 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 2704 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 2720 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 2736 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Frame { + msec: 2752 + hash: "ad3b0560a1e896c39acff9a7cf53b043" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2768 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 2784 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 2800 + hash: "40504095d8877e37cd24ac694ca94758" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2816 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 2832 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 2848 + hash: "40504095d8877e37cd24ac694ca94758" + } + Frame { + msec: 2864 + hash: "40504095d8877e37cd24ac694ca94758" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2880 + image: "qt-669.2.png" + } + Frame { + msec: 2896 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 2912 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 2928 + hash: "b6f3847d394c87873e34814e332e205a" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2944 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 2960 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 2976 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 2992 + hash: "b6f3847d394c87873e34814e332e205a" + } + Frame { + msec: 3008 + hash: "b6f3847d394c87873e34814e332e205a" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3024 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3040 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3056 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3072 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3088 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3104 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3120 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3136 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3152 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3168 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3184 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3200 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3216 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3232 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3248 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3264 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3280 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3296 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3312 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3328 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3344 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3360 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3376 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3392 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3408 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3424 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3440 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3456 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3472 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3488 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3504 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3520 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3536 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3552 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3568 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3584 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3600 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3616 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3632 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3648 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3664 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3680 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Frame { + msec: 3696 + hash: "3f5f573f37883dc025e21a1fd99eef63" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3712 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3728 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3744 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3760 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3776 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3792 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3808 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3824 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3840 + image: "qt-669.3.png" + } + Frame { + msec: 3856 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3872 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3888 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3904 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3920 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3936 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3952 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3968 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 3984 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4000 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4016 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4032 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4048 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4064 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4080 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4096 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4112 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4128 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4144 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4160 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4176 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4192 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4208 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4224 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4240 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4256 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4272 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4288 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } + Frame { + msec: 4304 + hash: "8d8671fb6c3413f38308a0dd15026eae" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png new file mode 100644 index 0000000..e69860e Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png new file mode 100644 index 0000000..1db3c26 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png new file mode 100644 index 0000000..9c72d52 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.10.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png new file mode 100644 index 0000000..9c72d52 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.11.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png new file mode 100644 index 0000000..fbef805 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png new file mode 100644 index 0000000..dc56c7e Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png new file mode 100644 index 0000000..04ea496 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png new file mode 100644 index 0000000..98bf7de Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png new file mode 100644 index 0000000..d95b895 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png new file mode 100644 index 0000000..9954344 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.7.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png new file mode 100644 index 0000000..d49c2ff Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.8.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png new file mode 100644 index 0000000..9c72d52 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.9.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml new file mode 100644 index 0000000..c12094e --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/usingMultilineEdit.qml @@ -0,0 +1,4687 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 32 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 48 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 64 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 80 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 96 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 112 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 128 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 144 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 160 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 176 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 192 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 208 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 224 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 240 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 256 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 272 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 288 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 304 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 320 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 336 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 352 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 368 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 384 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 400 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 416 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 432 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 448 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 464 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 480 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 496 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 512 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 528 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 544 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 560 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 576 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 592 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 608 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 624 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 640 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 656 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 672 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 688 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 704 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 720 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 736 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 752 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 768 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 784 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 800 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 816 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 832 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 848 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 864 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 880 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 896 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 912 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 928 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 944 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 960 + image: "usingMultilineEdit.0.png" + } + Frame { + msec: 976 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 992 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1008 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1024 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1040 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1056 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1072 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1088 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1104 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1120 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1136 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1152 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1168 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1184 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1200 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1216 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1232 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1248 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1264 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1280 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1296 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Key { + type: 6 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1312 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1328 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1344 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1360 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1376 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Key { + type: 7 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1408 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1424 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1440 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1456 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1472 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1488 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1504 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1520 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1536 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1552 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Key { + type: 6 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1568 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Frame { + msec: 1584 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Frame { + msec: 1600 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Key { + type: 7 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1616 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1632 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1648 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1664 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1680 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1696 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1712 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1728 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1744 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1760 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1776 + hash: "cea68eaed3000fe598917688b49525b7" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1808 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1824 + hash: "cea68eaed3000fe598917688b49525b7" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 1840 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1856 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1872 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1888 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1904 + hash: "968932500933300e0a0ca711067d6659" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1920 + image: "usingMultilineEdit.1.png" + } + Frame { + msec: 1936 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Frame { + msec: 1952 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Frame { + msec: 1968 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 1984 + hash: "067182091936c99dfa5c29b226bd4351" + } + Frame { + msec: 2000 + hash: "067182091936c99dfa5c29b226bd4351" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 2016 + hash: "067182091936c99dfa5c29b226bd4351" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2032 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2048 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2080 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2096 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2112 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2128 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2144 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2176 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2192 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2208 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2224 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2240 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Key { + type: 6 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2256 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2272 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2288 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2304 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2320 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Key { + type: 7 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2336 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2352 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2384 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2400 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2416 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2432 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Key { + type: 6 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2464 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2480 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2496 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2512 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2528 + hash: "35c0c51dd874faa28058251164836dcb" + } + Key { + type: 7 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2544 + hash: "35c0c51dd874faa28058251164836dcb" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2560 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2576 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2592 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2608 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2624 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2640 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2656 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2672 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2688 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Key { + type: 6 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2704 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2720 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2736 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2752 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2768 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2784 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Key { + type: 6 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2800 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 7 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2816 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2832 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2848 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2864 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 7 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2880 + image: "usingMultilineEdit.2.png" + } + Frame { + msec: 2896 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2912 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2928 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 6 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Frame { + msec: 2944 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Frame { + msec: 2960 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Frame { + msec: 2976 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Key { + type: 7 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3008 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3024 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3040 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 3056 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3072 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3088 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3104 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3120 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 7 + key: 32 + modifiers: 33554432 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3136 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3152 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 6 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3168 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3184 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3200 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3216 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Key { + type: 7 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3232 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3248 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3264 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3280 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3296 + hash: "982d48e7ef886a74791306f055ddc714" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3312 + hash: "982d48e7ef886a74791306f055ddc714" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3328 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3344 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3360 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3376 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3392 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3408 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 3424 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3440 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3456 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3472 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3488 + hash: "18d37190d139a1567d91882fdac411d6" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Key { + type: 6 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3504 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3520 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3536 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3552 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3568 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3584 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Key { + type: 7 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3600 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3616 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3632 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3648 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3664 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3680 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3696 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3712 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3728 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3744 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3760 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3776 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3792 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3808 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3824 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3840 + image: "usingMultilineEdit.3.png" + } + Frame { + msec: 3856 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3872 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3888 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3904 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3920 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3936 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3952 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3968 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 3984 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4000 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4016 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4032 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4048 + hash: "72d952ff90862b93ccec046f61d85360" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4064 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4096 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4112 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4128 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4144 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4160 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4176 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4192 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4208 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4224 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4240 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4256 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4272 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4288 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4304 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4320 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4336 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4352 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4368 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4384 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4400 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4416 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4432 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4448 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4464 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4480 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4496 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4512 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4528 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4544 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4560 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4576 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4592 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4608 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4624 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4640 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4656 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4672 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4688 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4704 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4720 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4736 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4752 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4768 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4784 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4800 + image: "usingMultilineEdit.4.png" + } + Frame { + msec: 4816 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4832 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 6 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4848 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4864 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4880 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4896 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4912 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4928 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4944 + hash: "a616e994d83964ff75d95b702f355937" + } + Key { + type: 7 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4960 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4976 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4992 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5008 + hash: "a616e994d83964ff75d95b702f355937" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5024 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5040 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5056 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5072 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5088 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5104 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5120 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5136 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5152 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5168 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5184 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5200 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5216 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5232 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5248 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5264 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5280 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5296 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5312 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5328 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5344 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5360 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5376 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5392 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5408 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5424 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5440 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5456 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5472 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5488 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5504 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5520 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5536 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5552 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5568 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5584 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5600 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5616 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5632 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5648 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5664 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5680 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5696 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5712 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5728 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5744 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5760 + image: "usingMultilineEdit.5.png" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 48; y: 19 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5776 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5792 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5808 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5824 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: 21 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 22 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5840 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 23 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: 26 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5856 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 33 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5872 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 36 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 41 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5888 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 44 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5904 + hash: "4e620c1b847274f691e80a384eac5320" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 58; y: 52 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5920 + hash: "1a246aa1be0878c38da2eaac6befb738" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 69 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5936 + hash: "7d6d4a33aacd1d2f530834af31069793" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 62; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5952 + hash: "eba517141a4dc94025801fabc8c5e813" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 86 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 90 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5968 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 97 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5984 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 101 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 105 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6000 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 111 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6016 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 114 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 116 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6032 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 119 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 122 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6048 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 124 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 128 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6064 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 130 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 132 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6080 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 134 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 137 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6096 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 138 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 140 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6112 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 141 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 144 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6128 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 148 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6144 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 149 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 151 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6160 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 153 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6176 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 155 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6192 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6208 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6224 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6240 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6256 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6272 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 152 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 149 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6288 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 139 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6304 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 126 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6320 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 63; y: 98 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6336 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 88 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6352 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 72 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6368 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 51 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6384 + hash: "b6589493e0225846be0af57024e25d98" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 37 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6400 + hash: "b6589493e0225846be0af57024e25d98" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 30 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6416 + hash: "d8a1bee2a0e57944d8268a2ce7e6c3c1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 16 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 6 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6432 + hash: "a609d3c9cb375240e66dd316af27543c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -9 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6448 + hash: "0d376060ba0f9843ed814a8d8150d047" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6464 + hash: "9ad787bf41f0ab66beffff056a115c23" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6480 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6496 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6512 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6528 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6544 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6560 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6576 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6592 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6608 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6624 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6640 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6656 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6672 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -47 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -46 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6688 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -42 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6704 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -39 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -36 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6720 + image: "usingMultilineEdit.6.png" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -33 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 46; y: -28 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6736 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -25 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -21 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6752 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -18 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -14 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6768 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -10 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -8 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6784 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -6 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6800 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -1 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 0 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6816 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6832 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 5 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 7 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6848 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 8 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 10 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6864 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 11 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6880 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6896 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6912 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6928 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6944 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6960 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6976 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6992 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7008 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7024 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7040 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7056 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7072 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7088 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7104 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7120 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7136 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7152 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7168 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7184 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7200 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7216 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7232 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7248 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7264 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7280 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7296 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7312 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7328 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7344 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7360 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7376 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7392 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7408 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7424 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7440 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7456 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7472 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7488 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7504 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7520 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7536 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7552 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7568 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7584 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7600 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7616 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7632 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7648 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7664 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7680 + image: "usingMultilineEdit.7.png" + } + Frame { + msec: 7696 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7712 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7728 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7744 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7760 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7776 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7792 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7808 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7824 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7840 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7856 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7872 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7888 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7904 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7920 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7936 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7952 + hash: "d1f43fa2f710725527736ac3439577df" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 7968 + hash: "1553d42725394fa4d4c9b97dc12a78b9" + } + Frame { + msec: 7984 + hash: "1553d42725394fa4d4c9b97dc12a78b9" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8000 + hash: "a62df700f3209668a813e765a79e7859" + } + Frame { + msec: 8016 + hash: "a62df700f3209668a813e765a79e7859" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8032 + hash: "e8928770969b82523e828e3036bbe106" + } + Frame { + msec: 8048 + hash: "e8928770969b82523e828e3036bbe106" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8064 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8080 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8096 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8112 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8128 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8144 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8160 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8176 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8192 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8208 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8224 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8240 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8256 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8272 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8288 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8304 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8320 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8336 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8352 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8368 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8384 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8400 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8416 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8432 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8448 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8464 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8480 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8496 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8512 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8528 + hash: "b65c439a091d3293352de410d28aaca1" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8544 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8560 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8576 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8592 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8608 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8624 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8640 + image: "usingMultilineEdit.8.png" + } + Frame { + msec: 8656 + hash: "b65c439a091d3293352de410d28aaca1" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8672 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8688 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8704 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8720 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8736 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8752 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8768 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8784 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8800 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8816 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8832 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8848 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8864 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8880 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8896 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8912 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8928 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8944 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8960 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8976 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8992 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9008 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9024 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9040 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9056 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9072 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9088 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9104 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9120 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9136 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9152 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9168 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9184 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9200 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 70; y: 73 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9216 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9232 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 74 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9248 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 76 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9264 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 77 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9280 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9296 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9312 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9328 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9344 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9360 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9376 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9392 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9408 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9424 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9440 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9456 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9472 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9488 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9504 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9520 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9536 + hash: "3d08eff16edf54f522a75df1734150df" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9552 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9568 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9584 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9600 + image: "usingMultilineEdit.9.png" + } + Frame { + msec: 9616 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9632 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9648 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9664 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 6 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 9680 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9696 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9712 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9728 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9744 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9760 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9776 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9792 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9808 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9824 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9840 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9856 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9872 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9888 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9904 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9920 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9936 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9952 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9968 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9984 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10000 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10016 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10032 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10048 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10064 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10080 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10096 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 6 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10112 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10128 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10144 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10160 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10176 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10192 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10208 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10224 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10240 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10256 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10272 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10288 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10304 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10320 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10336 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10352 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10368 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10384 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10400 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10416 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10432 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10448 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10464 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10480 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10496 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10512 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10528 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10544 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10560 + image: "usingMultilineEdit.10.png" + } + Frame { + msec: 10576 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10592 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10608 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10624 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10640 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10656 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10672 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10688 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10704 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10720 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10736 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10752 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10768 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10784 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10800 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10816 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10832 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10848 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10864 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10880 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10896 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10912 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10928 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10944 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10960 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10976 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10992 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11008 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11024 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11040 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11056 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11072 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11088 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11104 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11120 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11136 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11152 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11168 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11184 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11200 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11216 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11232 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11248 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11264 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11280 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11296 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11312 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11328 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11344 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11360 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11376 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11392 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11408 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11424 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11440 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11456 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11472 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11488 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11504 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11520 + image: "usingMultilineEdit.11.png" + } + Frame { + msec: 11536 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11552 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11568 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11584 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11600 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11616 + hash: "3d08eff16edf54f522a75df1734150df" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png index ec65f49..4f51246 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png index ec65f49..a27067f 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png index ec65f49..e33a8b0 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png index ec65f49..fb35f56 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png index ec65f49..9eab398 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png index ec65f49..66edb6b 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png index ec65f49..66edb6b 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml index 1f5b365..defaf78 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data-X11/wrap.qml @@ -6,7 +6,7 @@ VisualTest { } Frame { msec: 16 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d9acaa85ca366aac5a63f59b8913039a" } Key { type: 6 @@ -18,7 +18,7 @@ VisualTest { } Frame { msec: 32 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "81b7e0be317f0ca4425fa75ac5a73be9" } Key { type: 7 @@ -30,11 +30,11 @@ VisualTest { } Frame { msec: 48 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "81b7e0be317f0ca4425fa75ac5a73be9" } Frame { msec: 64 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "81b7e0be317f0ca4425fa75ac5a73be9" } Key { type: 7 @@ -46,11 +46,11 @@ VisualTest { } Frame { msec: 80 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "81b7e0be317f0ca4425fa75ac5a73be9" } Frame { msec: 96 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "81b7e0be317f0ca4425fa75ac5a73be9" } Key { type: 6 @@ -62,15 +62,15 @@ VisualTest { } Frame { msec: 112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ad65e3fe3973343e9b6feb1c28ee40f4" } Frame { msec: 128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ad65e3fe3973343e9b6feb1c28ee40f4" } Frame { msec: 144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ad65e3fe3973343e9b6feb1c28ee40f4" } Key { type: 6 @@ -82,15 +82,15 @@ VisualTest { } Frame { msec: 160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "187c3d689a5b217d8e886464303840aa" } Frame { msec: 176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "187c3d689a5b217d8e886464303840aa" } Frame { msec: 192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "187c3d689a5b217d8e886464303840aa" } Key { type: 7 @@ -102,11 +102,11 @@ VisualTest { } Frame { msec: 208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "187c3d689a5b217d8e886464303840aa" } Frame { msec: 224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "187c3d689a5b217d8e886464303840aa" } Key { type: 6 @@ -118,7 +118,7 @@ VisualTest { } Frame { msec: 240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "572954512211be45ec468ca0c541f87b" } Key { type: 7 @@ -130,19 +130,19 @@ VisualTest { } Frame { msec: 256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "572954512211be45ec468ca0c541f87b" } Frame { msec: 272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "572954512211be45ec468ca0c541f87b" } Frame { msec: 288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "572954512211be45ec468ca0c541f87b" } Frame { msec: 304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "572954512211be45ec468ca0c541f87b" } Key { type: 7 @@ -154,11 +154,11 @@ VisualTest { } Frame { msec: 320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "572954512211be45ec468ca0c541f87b" } Frame { msec: 336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "572954512211be45ec468ca0c541f87b" } Key { type: 6 @@ -170,19 +170,19 @@ VisualTest { } Frame { msec: 352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a3ea4d6ebf0b267a01e18d4d7139cace" } Frame { msec: 368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a3ea4d6ebf0b267a01e18d4d7139cace" } Frame { msec: 384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a3ea4d6ebf0b267a01e18d4d7139cace" } Frame { msec: 400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a3ea4d6ebf0b267a01e18d4d7139cace" } Key { type: 7 @@ -194,19 +194,19 @@ VisualTest { } Frame { msec: 416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a3ea4d6ebf0b267a01e18d4d7139cace" } Frame { msec: 432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a3ea4d6ebf0b267a01e18d4d7139cace" } Frame { msec: 448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a3ea4d6ebf0b267a01e18d4d7139cace" } Frame { msec: 464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a3ea4d6ebf0b267a01e18d4d7139cace" } Key { type: 6 @@ -218,19 +218,19 @@ VisualTest { } Frame { msec: 480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "36fb24a55e2cda02c3001adaa67e82a7" } Frame { msec: 496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "36fb24a55e2cda02c3001adaa67e82a7" } Frame { msec: 512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "36fb24a55e2cda02c3001adaa67e82a7" } Frame { msec: 528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41fc29e728daf52d54a3acacceabab39" } Key { type: 6 @@ -250,23 +250,23 @@ VisualTest { } Frame { msec: 544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cc3eb1d7263556949e5f7ad3862d9959" } Frame { msec: 560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cc3eb1d7263556949e5f7ad3862d9959" } Frame { msec: 576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cc3eb1d7263556949e5f7ad3862d9959" } Frame { msec: 592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cc3eb1d7263556949e5f7ad3862d9959" } Frame { msec: 608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "cc3eb1d7263556949e5f7ad3862d9959" } Key { type: 7 @@ -286,19 +286,19 @@ VisualTest { } Frame { msec: 624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1ebd7df1875dc93984c9b663791c058e" } Frame { msec: 640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1ebd7df1875dc93984c9b663791c058e" } Frame { msec: 656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1ebd7df1875dc93984c9b663791c058e" } Frame { msec: 672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1ebd7df1875dc93984c9b663791c058e" } Key { type: 7 @@ -310,11 +310,11 @@ VisualTest { } Frame { msec: 688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1ebd7df1875dc93984c9b663791c058e" } Frame { msec: 704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1ebd7df1875dc93984c9b663791c058e" } Key { type: 6 @@ -326,23 +326,23 @@ VisualTest { } Frame { msec: 720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "35ad49d6517b35bd410db9770818918d" } Frame { msec: 736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "35ad49d6517b35bd410db9770818918d" } Frame { msec: 752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "35ad49d6517b35bd410db9770818918d" } Frame { msec: 768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "35ad49d6517b35bd410db9770818918d" } Frame { msec: 784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "35ad49d6517b35bd410db9770818918d" } Key { type: 7 @@ -354,7 +354,7 @@ VisualTest { } Frame { msec: 800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "35ad49d6517b35bd410db9770818918d" } Key { type: 6 @@ -366,15 +366,15 @@ VisualTest { } Frame { msec: 816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af5ec042c8a5e5b1942cb3e14a646b3a" } Frame { msec: 832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af5ec042c8a5e5b1942cb3e14a646b3a" } Frame { msec: 848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af5ec042c8a5e5b1942cb3e14a646b3a" } Key { type: 7 @@ -386,15 +386,15 @@ VisualTest { } Frame { msec: 864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af5ec042c8a5e5b1942cb3e14a646b3a" } Frame { msec: 880 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af5ec042c8a5e5b1942cb3e14a646b3a" } Frame { msec: 896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "af5ec042c8a5e5b1942cb3e14a646b3a" } Key { type: 6 @@ -406,15 +406,15 @@ VisualTest { } Frame { msec: 912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e21db7face603e4a41010e10fdc35eb" } Frame { msec: 928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e21db7face603e4a41010e10fdc35eb" } Frame { msec: 944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e21db7face603e4a41010e10fdc35eb" } Frame { msec: 960 @@ -422,11 +422,11 @@ VisualTest { } Frame { msec: 976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e21db7face603e4a41010e10fdc35eb" } Frame { msec: 992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3e21db7face603e4a41010e10fdc35eb" } Key { type: 6 @@ -446,23 +446,23 @@ VisualTest { } Frame { msec: 1008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "f681181b9e889f2fe0ac5ccddaa8c39f" } Frame { msec: 1024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Key { type: 7 @@ -474,31 +474,31 @@ VisualTest { } Frame { msec: 1088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Frame { msec: 1184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6d8069ea1f16634ebcf94ba45041984f" } Key { type: 6 @@ -510,23 +510,23 @@ VisualTest { } Frame { msec: 1200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4058b4a448b3836e980e2167628d5d45" } Frame { msec: 1216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4058b4a448b3836e980e2167628d5d45" } Frame { msec: 1232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4058b4a448b3836e980e2167628d5d45" } Frame { msec: 1248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4058b4a448b3836e980e2167628d5d45" } Frame { msec: 1264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4058b4a448b3836e980e2167628d5d45" } Key { type: 7 @@ -546,11 +546,11 @@ VisualTest { } Frame { msec: 1280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9546e50697fd316e17b990d3ab235b8c" } Frame { msec: 1296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9546e50697fd316e17b990d3ab235b8c" } Key { type: 6 @@ -562,15 +562,15 @@ VisualTest { } Frame { msec: 1312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Frame { msec: 1328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Frame { msec: 1344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Key { type: 7 @@ -582,11 +582,11 @@ VisualTest { } Frame { msec: 1360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Frame { msec: 1376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Key { type: 7 @@ -598,19 +598,19 @@ VisualTest { } Frame { msec: 1392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Frame { msec: 1408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Frame { msec: 1424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Frame { msec: 1440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "4f7a3795af41fc641483b6de3829a9b5" } Key { type: 6 @@ -622,23 +622,23 @@ VisualTest { } Frame { msec: 1456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a086058fa845a399a222c2571ef25442" } Frame { msec: 1472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a086058fa845a399a222c2571ef25442" } Frame { msec: 1488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a086058fa845a399a222c2571ef25442" } Frame { msec: 1504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a086058fa845a399a222c2571ef25442" } Frame { msec: 1520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "7e63c2f83280eee33bb3c954d769e297" } Key { type: 7 @@ -650,11 +650,11 @@ VisualTest { } Frame { msec: 1536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "7e63c2f83280eee33bb3c954d769e297" } Frame { msec: 1552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "7e63c2f83280eee33bb3c954d769e297" } Key { type: 6 @@ -666,23 +666,23 @@ VisualTest { } Frame { msec: 1568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a4a912ce9cee7ba833e70df683668d8e" } Frame { msec: 1584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a4a912ce9cee7ba833e70df683668d8e" } Frame { msec: 1600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a4a912ce9cee7ba833e70df683668d8e" } Frame { msec: 1616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a4a912ce9cee7ba833e70df683668d8e" } Frame { msec: 1632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a4a912ce9cee7ba833e70df683668d8e" } Key { type: 6 @@ -702,23 +702,23 @@ VisualTest { } Frame { msec: 1648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0ca0b36e56019968875c059bf95e133" } Frame { msec: 1664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0ca0b36e56019968875c059bf95e133" } Frame { msec: 1680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0ca0b36e56019968875c059bf95e133" } Frame { msec: 1696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0ca0b36e56019968875c059bf95e133" } Frame { msec: 1712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0ca0b36e56019968875c059bf95e133" } Key { type: 6 @@ -730,15 +730,15 @@ VisualTest { } Frame { msec: 1728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3c06f171b86ed55a425fdb316591a4f4" } Frame { msec: 1744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3c06f171b86ed55a425fdb316591a4f4" } Frame { msec: 1760 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3c06f171b86ed55a425fdb316591a4f4" } Key { type: 7 @@ -750,7 +750,7 @@ VisualTest { } Frame { msec: 1776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "3c06f171b86ed55a425fdb316591a4f4" } Key { type: 6 @@ -762,11 +762,11 @@ VisualTest { } Frame { msec: 1792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Frame { msec: 1808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Key { type: 7 @@ -778,19 +778,19 @@ VisualTest { } Frame { msec: 1824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Frame { msec: 1840 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Frame { msec: 1856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Frame { msec: 1872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Key { type: 7 @@ -802,11 +802,11 @@ VisualTest { } Frame { msec: 1888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Frame { msec: 1904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Frame { msec: 1920 @@ -814,11 +814,11 @@ VisualTest { } Frame { msec: 1936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Frame { msec: 1952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "e5100e36d546b8af34bfc7a68317fa74" } Key { type: 6 @@ -830,27 +830,27 @@ VisualTest { } Frame { msec: 1968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2ddf4c1b9ec2d5540c456e10c2af775e" } Frame { msec: 1984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2ddf4c1b9ec2d5540c456e10c2af775e" } Frame { msec: 2000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "2ddf4c1b9ec2d5540c456e10c2af775e" } Frame { msec: 2016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6e626464dfc68af86649589a23fe5368" } Frame { msec: 2032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6e626464dfc68af86649589a23fe5368" } Frame { msec: 2048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6e626464dfc68af86649589a23fe5368" } Key { type: 6 @@ -862,7 +862,7 @@ VisualTest { } Frame { msec: 2064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Key { type: 7 @@ -874,15 +874,15 @@ VisualTest { } Frame { msec: 2080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Frame { msec: 2096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Frame { msec: 2112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Key { type: 7 @@ -894,27 +894,27 @@ VisualTest { } Frame { msec: 2128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Frame { msec: 2144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Frame { msec: 2160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Frame { msec: 2176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Frame { msec: 2192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Frame { msec: 2208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "9e3a9ddf097022722e9e7ebb5e0bbeed" } Key { type: 6 @@ -926,23 +926,23 @@ VisualTest { } Frame { msec: 2224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d715ce5ca080ba5045c16f88211ca2a7" } Frame { msec: 2240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d715ce5ca080ba5045c16f88211ca2a7" } Frame { msec: 2256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d715ce5ca080ba5045c16f88211ca2a7" } Frame { msec: 2272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d715ce5ca080ba5045c16f88211ca2a7" } Frame { msec: 2288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "d715ce5ca080ba5045c16f88211ca2a7" } Key { type: 6 @@ -954,7 +954,7 @@ VisualTest { } Frame { msec: 2304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "11f9035d665a6eed88ea9e3030b111c7" } Key { type: 7 @@ -966,15 +966,15 @@ VisualTest { } Frame { msec: 2320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "11f9035d665a6eed88ea9e3030b111c7" } Frame { msec: 2336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "11f9035d665a6eed88ea9e3030b111c7" } Frame { msec: 2352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "11f9035d665a6eed88ea9e3030b111c7" } Key { type: 6 @@ -986,11 +986,11 @@ VisualTest { } Frame { msec: 2368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8277b43c48def7e966bbb96309042fe6" } Frame { msec: 2384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8277b43c48def7e966bbb96309042fe6" } Key { type: 7 @@ -1002,15 +1002,15 @@ VisualTest { } Frame { msec: 2400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8277b43c48def7e966bbb96309042fe6" } Frame { msec: 2416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8277b43c48def7e966bbb96309042fe6" } Frame { msec: 2432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8277b43c48def7e966bbb96309042fe6" } Key { type: 7 @@ -1022,15 +1022,15 @@ VisualTest { } Frame { msec: 2448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8277b43c48def7e966bbb96309042fe6" } Frame { msec: 2464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8277b43c48def7e966bbb96309042fe6" } Frame { msec: 2480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8277b43c48def7e966bbb96309042fe6" } Key { type: 6 @@ -1042,19 +1042,19 @@ VisualTest { } Frame { msec: 2496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1475ec7421f2c16f7dbb13eeb35f21c8" } Frame { msec: 2512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1475ec7421f2c16f7dbb13eeb35f21c8" } Frame { msec: 2528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0a5589c5877c807b8d9540a1dd86e265" } Frame { msec: 2544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0a5589c5877c807b8d9540a1dd86e265" } Key { type: 7 @@ -1066,27 +1066,27 @@ VisualTest { } Frame { msec: 2560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0a5589c5877c807b8d9540a1dd86e265" } Frame { msec: 2576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0a5589c5877c807b8d9540a1dd86e265" } Frame { msec: 2592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0a5589c5877c807b8d9540a1dd86e265" } Frame { msec: 2608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0a5589c5877c807b8d9540a1dd86e265" } Frame { msec: 2624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0a5589c5877c807b8d9540a1dd86e265" } Frame { msec: 2640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0a5589c5877c807b8d9540a1dd86e265" } Key { type: 6 @@ -1098,19 +1098,19 @@ VisualTest { } Frame { msec: 2656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "eff9abb425dbd30a0eb8ee940c2a0fdc" } Frame { msec: 2672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "eff9abb425dbd30a0eb8ee940c2a0fdc" } Frame { msec: 2688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "eff9abb425dbd30a0eb8ee940c2a0fdc" } Frame { msec: 2704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "eff9abb425dbd30a0eb8ee940c2a0fdc" } Key { type: 7 @@ -1122,15 +1122,15 @@ VisualTest { } Frame { msec: 2720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "eff9abb425dbd30a0eb8ee940c2a0fdc" } Frame { msec: 2736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "eff9abb425dbd30a0eb8ee940c2a0fdc" } Frame { msec: 2752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "eff9abb425dbd30a0eb8ee940c2a0fdc" } Key { type: 6 @@ -1142,23 +1142,23 @@ VisualTest { } Frame { msec: 2768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "dbc4c1e9f452575a2b543f3cc9ed53eb" } Frame { msec: 2784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "dbc4c1e9f452575a2b543f3cc9ed53eb" } Frame { msec: 2800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "dbc4c1e9f452575a2b543f3cc9ed53eb" } Frame { msec: 2816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "dbc4c1e9f452575a2b543f3cc9ed53eb" } Frame { msec: 2832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "dbc4c1e9f452575a2b543f3cc9ed53eb" } Key { type: 6 @@ -1178,11 +1178,11 @@ VisualTest { } Frame { msec: 2848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8ea955780d76128c025cf1a51c995075" } Frame { msec: 2864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8ea955780d76128c025cf1a51c995075" } Frame { msec: 2880 @@ -1190,7 +1190,7 @@ VisualTest { } Frame { msec: 2896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8ea955780d76128c025cf1a51c995075" } Key { type: 6 @@ -1202,11 +1202,11 @@ VisualTest { } Frame { msec: 2912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ab08c67bc5c8f53bba66ad48f618d9c9" } Frame { msec: 2928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ab08c67bc5c8f53bba66ad48f618d9c9" } Key { type: 7 @@ -1218,11 +1218,11 @@ VisualTest { } Frame { msec: 2944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ab08c67bc5c8f53bba66ad48f618d9c9" } Frame { msec: 2960 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ab08c67bc5c8f53bba66ad48f618d9c9" } Key { type: 7 @@ -1234,35 +1234,35 @@ VisualTest { } Frame { msec: 2976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ab08c67bc5c8f53bba66ad48f618d9c9" } Frame { msec: 2992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ab08c67bc5c8f53bba66ad48f618d9c9" } Frame { msec: 3008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "ab08c67bc5c8f53bba66ad48f618d9c9" } Frame { msec: 3024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "718894676b3feeff1924b9b315838551" } Frame { msec: 3040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "718894676b3feeff1924b9b315838551" } Frame { msec: 3056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "718894676b3feeff1924b9b315838551" } Frame { msec: 3072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "718894676b3feeff1924b9b315838551" } Frame { msec: 3088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "718894676b3feeff1924b9b315838551" } Key { type: 6 @@ -1274,23 +1274,23 @@ VisualTest { } Frame { msec: 3104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Frame { msec: 3120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Frame { msec: 3136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Frame { msec: 3152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Frame { msec: 3168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Key { type: 7 @@ -1302,23 +1302,23 @@ VisualTest { } Frame { msec: 3184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Frame { msec: 3200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Frame { msec: 3216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Frame { msec: 3232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Frame { msec: 3248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "32ee9af5d9f714bbcc32206be600f309" } Key { type: 6 @@ -1330,15 +1330,15 @@ VisualTest { } Frame { msec: 3264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0e5a0e32f40d3e02758a394797cb3947" } Frame { msec: 3280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0e5a0e32f40d3e02758a394797cb3947" } Frame { msec: 3296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0e5a0e32f40d3e02758a394797cb3947" } Key { type: 7 @@ -1350,15 +1350,15 @@ VisualTest { } Frame { msec: 3312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0e5a0e32f40d3e02758a394797cb3947" } Frame { msec: 3328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0e5a0e32f40d3e02758a394797cb3947" } Frame { msec: 3344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "0e5a0e32f40d3e02758a394797cb3947" } Key { type: 6 @@ -1370,23 +1370,23 @@ VisualTest { } Frame { msec: 3360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "31079d862bb5b41e36e146201f8c34d2" } Frame { msec: 3376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "31079d862bb5b41e36e146201f8c34d2" } Frame { msec: 3392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "31079d862bb5b41e36e146201f8c34d2" } Frame { msec: 3408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "31079d862bb5b41e36e146201f8c34d2" } Frame { msec: 3424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "31079d862bb5b41e36e146201f8c34d2" } Key { type: 7 @@ -1398,15 +1398,15 @@ VisualTest { } Frame { msec: 3440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "31079d862bb5b41e36e146201f8c34d2" } Frame { msec: 3456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "31079d862bb5b41e36e146201f8c34d2" } Frame { msec: 3472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "31079d862bb5b41e36e146201f8c34d2" } Key { type: 6 @@ -1418,19 +1418,19 @@ VisualTest { } Frame { msec: 3488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1e5e9ab44b9c703637e58bb248026b51" } Frame { msec: 3504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1e5e9ab44b9c703637e58bb248026b51" } Frame { msec: 3520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1e5e9ab44b9c703637e58bb248026b51" } Frame { msec: 3536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1e5e9ab44b9c703637e58bb248026b51" } Key { type: 7 @@ -1442,11 +1442,11 @@ VisualTest { } Frame { msec: 3552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1e5e9ab44b9c703637e58bb248026b51" } Frame { msec: 3568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "1e5e9ab44b9c703637e58bb248026b51" } Key { type: 6 @@ -1458,27 +1458,27 @@ VisualTest { } Frame { msec: 3584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "18f5f77a48858fb5584d55ba3f3a94d3" } Frame { msec: 3600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "18f5f77a48858fb5584d55ba3f3a94d3" } Frame { msec: 3616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "18f5f77a48858fb5584d55ba3f3a94d3" } Frame { msec: 3632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "18f5f77a48858fb5584d55ba3f3a94d3" } Frame { msec: 3648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "18f5f77a48858fb5584d55ba3f3a94d3" } Frame { msec: 3664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "18f5f77a48858fb5584d55ba3f3a94d3" } Key { type: 6 @@ -1490,7 +1490,7 @@ VisualTest { } Frame { msec: 3680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Key { type: 7 @@ -1502,23 +1502,23 @@ VisualTest { } Frame { msec: 3696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3760 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Key { type: 7 @@ -1530,19 +1530,19 @@ VisualTest { } Frame { msec: 3776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3840 @@ -1550,19 +1550,19 @@ VisualTest { } Frame { msec: 3856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Frame { msec: 3904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "63d557c9ea24a9e63d6bdfc6259c8bf9" } Key { type: 6 @@ -1574,23 +1574,23 @@ VisualTest { } Frame { msec: 3920 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "67b49fc16da9390bff9814b34659baca" } Frame { msec: 3936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "67b49fc16da9390bff9814b34659baca" } Frame { msec: 3952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "67b49fc16da9390bff9814b34659baca" } Frame { msec: 3968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "67b49fc16da9390bff9814b34659baca" } Frame { msec: 3984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "67b49fc16da9390bff9814b34659baca" } Key { type: 7 @@ -1602,11 +1602,11 @@ VisualTest { } Frame { msec: 4000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "67b49fc16da9390bff9814b34659baca" } Frame { msec: 4016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "8c949a494d7bd5f9b6e5ac5bf3baec59" } Key { type: 6 @@ -1618,15 +1618,15 @@ VisualTest { } Frame { msec: 4032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a06c039bc65f399f7dcb1a484e557f34" } Frame { msec: 4048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a06c039bc65f399f7dcb1a484e557f34" } Frame { msec: 4064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a06c039bc65f399f7dcb1a484e557f34" } Key { type: 7 @@ -1638,7 +1638,7 @@ VisualTest { } Frame { msec: 4080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a06c039bc65f399f7dcb1a484e557f34" } Key { type: 6 @@ -1650,19 +1650,19 @@ VisualTest { } Frame { msec: 4096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6471c3319fbe937080bd40d91770898f" } Frame { msec: 4112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6471c3319fbe937080bd40d91770898f" } Frame { msec: 4128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6471c3319fbe937080bd40d91770898f" } Frame { msec: 4144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6471c3319fbe937080bd40d91770898f" } Key { type: 7 @@ -1674,15 +1674,15 @@ VisualTest { } Frame { msec: 4160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6471c3319fbe937080bd40d91770898f" } Frame { msec: 4176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6471c3319fbe937080bd40d91770898f" } Frame { msec: 4192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6471c3319fbe937080bd40d91770898f" } Key { type: 6 @@ -1694,23 +1694,23 @@ VisualTest { } Frame { msec: 4208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "124451f5a072f626642a85ebc36c0914" } Frame { msec: 4224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "124451f5a072f626642a85ebc36c0914" } Frame { msec: 4240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "124451f5a072f626642a85ebc36c0914" } Frame { msec: 4256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "124451f5a072f626642a85ebc36c0914" } Frame { msec: 4272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "124451f5a072f626642a85ebc36c0914" } Key { type: 6 @@ -1722,7 +1722,7 @@ VisualTest { } Frame { msec: 4288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Key { type: 7 @@ -1734,15 +1734,15 @@ VisualTest { } Frame { msec: 4304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Frame { msec: 4320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Frame { msec: 4336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Key { type: 7 @@ -1754,23 +1754,23 @@ VisualTest { } Frame { msec: 4352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Frame { msec: 4368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Frame { msec: 4384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Frame { msec: 4400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Frame { msec: 4416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "963ee26238b20cd414e69b50ffa5a186" } Key { type: 6 @@ -1782,15 +1782,15 @@ VisualTest { } Frame { msec: 4432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c5ce4fc832787535e66e64c546383d28" } Frame { msec: 4448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c5ce4fc832787535e66e64c546383d28" } Frame { msec: 4464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c5ce4fc832787535e66e64c546383d28" } Key { type: 7 @@ -1802,23 +1802,23 @@ VisualTest { } Frame { msec: 4480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c5ce4fc832787535e66e64c546383d28" } Frame { msec: 4496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c5ce4fc832787535e66e64c546383d28" } Frame { msec: 4512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "c5ce4fc832787535e66e64c546383d28" } Frame { msec: 4528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "55e236c3b51b7104cf3254a44b0f1c92" } Frame { msec: 4544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "55e236c3b51b7104cf3254a44b0f1c92" } Key { type: 6 @@ -1830,19 +1830,19 @@ VisualTest { } Frame { msec: 4560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "57bcfc2fbc8e5993f0908980bdef2e79" } Frame { msec: 4576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "57bcfc2fbc8e5993f0908980bdef2e79" } Frame { msec: 4592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "57bcfc2fbc8e5993f0908980bdef2e79" } Frame { msec: 4608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "57bcfc2fbc8e5993f0908980bdef2e79" } Key { type: 7 @@ -1854,19 +1854,19 @@ VisualTest { } Frame { msec: 4624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "57bcfc2fbc8e5993f0908980bdef2e79" } Frame { msec: 4640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "57bcfc2fbc8e5993f0908980bdef2e79" } Frame { msec: 4656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "57bcfc2fbc8e5993f0908980bdef2e79" } Frame { msec: 4672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "57bcfc2fbc8e5993f0908980bdef2e79" } Key { type: 6 @@ -1878,19 +1878,19 @@ VisualTest { } Frame { msec: 4688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "60b5ec304c447a3bf54da75f964e9fff" } Frame { msec: 4704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "60b5ec304c447a3bf54da75f964e9fff" } Frame { msec: 4720 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "60b5ec304c447a3bf54da75f964e9fff" } Frame { msec: 4736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "60b5ec304c447a3bf54da75f964e9fff" } Key { type: 7 @@ -1902,15 +1902,15 @@ VisualTest { } Frame { msec: 4752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "60b5ec304c447a3bf54da75f964e9fff" } Frame { msec: 4768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "60b5ec304c447a3bf54da75f964e9fff" } Frame { msec: 4784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "60b5ec304c447a3bf54da75f964e9fff" } Key { type: 6 @@ -1926,7 +1926,7 @@ VisualTest { } Frame { msec: 4816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6ae6a9c38541546561db9049a300bce6" } Key { type: 7 @@ -1938,19 +1938,19 @@ VisualTest { } Frame { msec: 4832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6ae6a9c38541546561db9049a300bce6" } Frame { msec: 4848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6ae6a9c38541546561db9049a300bce6" } Frame { msec: 4864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6ae6a9c38541546561db9049a300bce6" } Frame { msec: 4880 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "6ae6a9c38541546561db9049a300bce6" } Key { type: 6 @@ -1962,19 +1962,19 @@ VisualTest { } Frame { msec: 4896 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 4912 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 4928 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 4944 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Key { type: 7 @@ -1986,203 +1986,203 @@ VisualTest { } Frame { msec: 4960 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 4976 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 4992 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5008 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5024 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5040 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5056 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5072 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5088 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5104 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5120 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5136 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5152 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5168 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5184 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5200 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5216 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5232 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5248 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5264 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5280 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5296 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5312 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5328 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5344 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5360 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5376 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5392 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5408 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5424 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5440 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5456 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5472 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5488 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5504 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 5520 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5536 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5552 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5568 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5584 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5600 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5616 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5632 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5648 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5664 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5680 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5696 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5712 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5728 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5744 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5760 @@ -2190,239 +2190,239 @@ VisualTest { } Frame { msec: 5776 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5792 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5808 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5824 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5840 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5856 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5872 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5888 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5904 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5920 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5936 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5952 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5968 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 5984 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6000 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6016 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6032 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6048 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6064 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6080 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6096 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6112 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6128 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6144 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6160 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6176 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6192 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6208 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6224 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6240 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6256 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6272 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6288 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6304 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6320 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6336 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6352 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6368 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6384 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6400 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6416 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6432 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6448 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6464 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6480 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6496 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6512 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "a0208b5276f3f26500f40535017563a6" } Frame { msec: 6528 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6544 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6560 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6576 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6592 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6608 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6624 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6640 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6656 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6672 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6688 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6704 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6720 @@ -2430,38 +2430,38 @@ VisualTest { } Frame { msec: 6736 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6752 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6768 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6784 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6800 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6816 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6832 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6848 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } Frame { msec: 6864 - hash: "e165a0b90fdc1eef2c8244ad8545bd6f" + hash: "41179a181fd4ae8bd15a259b66d90eea" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png index 555996a..b24344c 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png index b705bad..5e29359 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png index 094cd2a..0ffee64 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png index 9c519c7..6c56e9c 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png index 3ec77b5..276170d 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png index 579a66e..3d8709f 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png index 9e5ac90..80b960c 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png index 9f3acfc..7247277 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.7.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png index f27518a..af5a996 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.8.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png new file mode 100644 index 0000000..b254164 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.9.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml index ef9ba33..3819043 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/cursorDelegate.qml @@ -6,239 +6,287 @@ VisualTest { } Frame { msec: 16 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "6e8324bf913d9df21a59ab4337257c15" } Frame { msec: 32 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "4e068995d68e8939e6560e35b685e839" } Frame { msec: 48 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "761b09bce25b3b240093d16ad02268d7" } Frame { msec: 64 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "1ecb6d7d08d4e4e14db28e24a60eccc4" } Frame { msec: 80 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "642417a56b3d6b8b35f5aec1bf0a9d2c" } Frame { msec: 96 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "2e24870a44d3fc6c6d5c920bab29d417" } Frame { msec: 112 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "9a59d0672f2a752943561af89fd71d7f" } Frame { msec: 128 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "c359dd36910678a30f935a13c8680ee4" } Frame { msec: 144 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "245f1e127549e9b28c7574ffb143fcde" } Frame { msec: 160 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "8df3d3dbce673311d88c055e8dffaeb5" } Frame { msec: 176 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "590fdeaddb3df033a1908a8a95fcd17a" } Frame { msec: 192 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "a158891c8d2ee3899463412a3363e48c" } Frame { msec: 208 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "e9ec2c82f46b36fbd0285ce6795c7cf9" } Frame { msec: 224 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0a02598af770dfe1d332f10c9482e770" } Frame { msec: 240 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "8765475468bccbd0df897a533241f3c5" } Frame { msec: 256 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "4cd9deed66bfdfadde8f8bf34f0e5513" } Frame { msec: 272 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "139bf5a1811beb2438df4ecfa3bbaac7" } Frame { msec: 288 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "9d51555afd71a7035e67a543846dcf7f" } Frame { msec: 304 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "de187b58fc8dfaad2d62e9463691b0c0" } Frame { msec: 320 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "9f88ac6d71246b06ca7ce9d8d983c91b" } Frame { msec: 336 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "a43c12a7d6597d171112dc43085a439e" + } + Key { + type: 6 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 352 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "ad38f32755f669837ec2243e355ebc85" } Frame { msec: 368 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "d87bd14345c785cc7e78a5c5462b90ec" } Frame { msec: 384 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "77850031e012246dd967ac689e353eb3" } Frame { msec: 400 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "f1bd048cd9167a8f162d1c39aca4f7c1" } Frame { msec: 416 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0fa030c5da23f23a0665a535e23b84a2" } Frame { msec: 432 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "af3a5f1982459164dfec26746172b0eb" + } + Key { + type: 6 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 448 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0de90659472b63dd41a5602197ff502e" } Frame { msec: 464 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "81e40abf91017614a52e03bb2474549f" } Frame { msec: 480 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 496 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 512 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0416581d32ab84680dfc26b6f546d2c5" } Frame { msec: 528 - hash: "15da97430bcbac3a16d9897bbf2e4dbd" + hash: "0416581d32ab84680dfc26b6f546d2c5" } Frame { msec: 544 - hash: "2aec32493055ad17f4aac9b3c9b84c5f" + hash: "0416581d32ab84680dfc26b6f546d2c5" } Frame { msec: 560 - hash: "e0826ff09b628a5e3ddf6d9e5593f937" + hash: "0416581d32ab84680dfc26b6f546d2c5" } Frame { msec: 576 - hash: "eacfa8db605b9e386a55508e8943e7d1" + hash: "ac98b973e6d12193829139661d3e5847" } Frame { msec: 592 - hash: "2dbe9b5bbb5baf12cd2cbfb4190be316" + hash: "366907376adae4d88d42d1b9e7533ec0" } Frame { msec: 608 - hash: "60a60e06237318bf005f87bbba386fef" + hash: "5f486d0a21c74f2ba50afcafa8c15453" } Frame { msec: 624 - hash: "97549f388c02adb8884c2e79510adc7e" + hash: "a3bf6dde525e528745272a8e43fc895c" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 640 - hash: "d882fe91d9df9862d620cf984e27d0bd" + hash: "4ffb297d2a98a3d13b848af569b1b5b5" } Frame { msec: 656 - hash: "6310b65572e39256122c7620f7e87442" + hash: "3679a17658e417bf08fc86d4bef0d4e9" } Frame { msec: 672 - hash: "4e7374a683050ff440056b6e7c971d2b" + hash: "5c6a25284ffd13350425e792fd143421" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 688 - hash: "35c0d55cda3a02eb4c441a5832bcbbf4" + hash: "09a2c1032d0206e20340ae4267525f98" } Frame { msec: 704 - hash: "8d71c418593eb3e4834d5e608ffd3f29" + hash: "0036070d9a7ee854b3612858af46ab59" } Frame { msec: 720 - hash: "0da2c1cd0138172698a3bee5d19168c5" + hash: "8774509eaa5fc29385da89214ef77589" } Frame { msec: 736 - hash: "8ca757a4fd1987329488f63251b0f6b4" + hash: "6d4f8ebf046148e5079f498396c119b4" } Frame { msec: 752 - hash: "70c827f1b34b44cbd775b666913556d6" + hash: "4c7d5d2f77116c96357b0791348af058" } Frame { msec: 768 - hash: "2b91dcef1b3ca66059dd9db4c8e335f3" + hash: "398c927a3525d5b90a5dd7a05ba9467b" } Frame { msec: 784 - hash: "38abc77b2361ce257d39c0cf268ba42b" + hash: "d84b45f6acb8cbd399d4ed6bf80ce132" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 800 - hash: "59865194eb63465dd0f3925c7a500340" + hash: "40c597d9e04e8e0daf62f58b9e7973b3" } Frame { msec: 816 - hash: "7bed5747d6b771db0fe5802153e54f2f" + hash: "2c7fdd47e29d924e3e008a6840e0e6be" } Frame { msec: 832 - hash: "9ac1bf268749bc8e58bc4d04b55ef849" + hash: "2b3229bb1aa220499114f274cf643ce9" } Frame { msec: 848 - hash: "64ea5cb46782d250c46a7a2c8cceea20" + hash: "e55446874c1a343ce3607d679d69d1d4" } Frame { msec: 864 - hash: "d81037eb21bfcb434b6c7f3bbd21ad12" + hash: "6824708eb176a9cf92f241d4054800dd" } Frame { msec: 880 - hash: "1079ea3a1a62e2cca9a8e907bc5aa4e1" + hash: "d386230dd416740625eb4f677ef4531b" } Frame { msec: 896 - hash: "96422f9bfbc11775cd7d1fae2ba357bd" + hash: "9b2fbddab890dbe43e84e85bf320e6c1" } Frame { msec: 912 - hash: "0d247385059a6f68b37bc34f6b2214b1" + hash: "1d1065aca7eb47f0096bc2c8c4320880" } Frame { msec: 928 - hash: "7c513361e13a90eef229b42e68ffaa18" + hash: "d97ba6e2bfc021fe993afdb5b28316ba" } Frame { msec: 944 - hash: "510b8441c613f0637dfc46e03c278112" + hash: "3a3a2f340bf1ccb14eab0562d7ecfe87" } Frame { msec: 960 @@ -246,271 +294,287 @@ VisualTest { } Frame { msec: 976 - hash: "8d90112e2e1c6f226a1a5f4f75785939" + hash: "ea4f4c1de5bfb1be43ab0188afb7189c" } Frame { msec: 992 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "399ca2d4411d3fb226c94bd32a17d0cd" } Frame { msec: 1008 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "ca78503396613536c8e4076884354cb1" } Frame { msec: 1024 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "ca78503396613536c8e4076884354cb1" + } + Key { + type: 7 + key: 16777249 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 1040 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "399ca2d4411d3fb226c94bd32a17d0cd" } Frame { msec: 1056 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "ea4f4c1de5bfb1be43ab0188afb7189c" } Frame { msec: 1072 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "d23d7492b85e4f30994ecd64e8273ff6" } Frame { msec: 1088 - hash: "8d90112e2e1c6f226a1a5f4f75785939" + hash: "3a3a2f340bf1ccb14eab0562d7ecfe87" } Frame { msec: 1104 - hash: "85e6af1f5fd15338a15f984e24d5ec9d" + hash: "d97ba6e2bfc021fe993afdb5b28316ba" } Frame { msec: 1120 - hash: "510b8441c613f0637dfc46e03c278112" + hash: "1d1065aca7eb47f0096bc2c8c4320880" } Frame { msec: 1136 - hash: "7c513361e13a90eef229b42e68ffaa18" + hash: "9b2fbddab890dbe43e84e85bf320e6c1" } Frame { msec: 1152 - hash: "0d247385059a6f68b37bc34f6b2214b1" + hash: "d386230dd416740625eb4f677ef4531b" } Frame { msec: 1168 - hash: "96422f9bfbc11775cd7d1fae2ba357bd" + hash: "6824708eb176a9cf92f241d4054800dd" + } + Key { + type: 6 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 1184 - hash: "1079ea3a1a62e2cca9a8e907bc5aa4e1" + hash: "e8e14dbba33578a36d9c69214333c537" } Frame { msec: 1200 - hash: "d81037eb21bfcb434b6c7f3bbd21ad12" + hash: "95c6e967f6f445748945c51943cf532f" } Frame { msec: 1216 - hash: "64ea5cb46782d250c46a7a2c8cceea20" + hash: "d145d4cbd0e3a98686b3bac1c5c17093" } Frame { msec: 1232 - hash: "9ac1bf268749bc8e58bc4d04b55ef849" + hash: "09348a4108a585dd23c3a252a5c596f6" } Frame { msec: 1248 - hash: "7bed5747d6b771db0fe5802153e54f2f" + hash: "55126f2c879771e1aa5ced51b54c827a" } Frame { msec: 1264 - hash: "59865194eb63465dd0f3925c7a500340" + hash: "ebb36a4c2fcb85107033ec2731fc5743" } Frame { msec: 1280 - hash: "38abc77b2361ce257d39c0cf268ba42b" + hash: "0581a4432d4b3d0c1555a31e772c2575" + } + Key { + type: 7 + key: 16777234 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 1296 - hash: "2b91dcef1b3ca66059dd9db4c8e335f3" + hash: "b4030774f06935f1b43fc8f1a69e53a5" } Frame { msec: 1312 - hash: "70c827f1b34b44cbd775b666913556d6" + hash: "655e1739c130888ff83a3b69bb0ab7e3" } Frame { msec: 1328 - hash: "8ca757a4fd1987329488f63251b0f6b4" + hash: "99fc97c572e7c8949693b32910e6eefb" } Frame { msec: 1344 - hash: "0da2c1cd0138172698a3bee5d19168c5" + hash: "e9c8bb13c2549047c05d671daa378496" } Frame { msec: 1360 - hash: "8d71c418593eb3e4834d5e608ffd3f29" + hash: "cb344e0d39b5b07ca7d094bf30ce9f53" } Frame { msec: 1376 - hash: "35c0d55cda3a02eb4c441a5832bcbbf4" - } - Key { - type: 6 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "15ba6e62c693f2bf74bdf86668139985" } Frame { msec: 1392 - hash: "4e7374a683050ff440056b6e7c971d2b" + hash: "48133ec73eb9723059eb6e6af3139f2b" } Frame { msec: 1408 - hash: "6310b65572e39256122c7620f7e87442" + hash: "0b19e777a04f03774f2d5f5398bdb10f" } Frame { msec: 1424 - hash: "d882fe91d9df9862d620cf984e27d0bd" + hash: "fc41d9a9aedf9274a68b33603ed6ccd0" } Frame { msec: 1440 - hash: "97549f388c02adb8884c2e79510adc7e" + hash: "fa6e65f0c835b12dc10463711bd73350" } Frame { msec: 1456 - hash: "60a60e06237318bf005f87bbba386fef" - } - Key { - type: 7 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "25a02c3388e52df550a0332efde90fcd" } Frame { msec: 1472 - hash: "2dbe9b5bbb5baf12cd2cbfb4190be316" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1488 - hash: "eacfa8db605b9e386a55508e8943e7d1" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1504 - hash: "e0826ff09b628a5e3ddf6d9e5593f937" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1520 - hash: "2aec32493055ad17f4aac9b3c9b84c5f" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1536 - hash: "c0e72cdf776b0c62742aa9c3683cd523" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1552 - hash: "ea3f512181b3ee94d8cdd4d9f59ed962" + hash: "2390443be82acf291856be59fa18fc26" } Frame { msec: 1568 - hash: "de924155855e76d0591217448f79bdb6" + hash: "284cd356d551a048d4a000b90217ac72" } Frame { msec: 1584 - hash: "51da770a75102de9ad1920f1f6c44146" + hash: "94fb20c3767e09d1b4254ee6122cf24e" } Frame { msec: 1600 - hash: "e3c0e8f6385ef2ab9b671be3243774c4" + hash: "bfac920384425ce9f34505b44eceb523" } Frame { msec: 1616 - hash: "eac6de65ea6726f0cc50b6d30c1b7ba5" + hash: "4a2d434efcb9a57f2013dc6b366e0e4e" } Frame { msec: 1632 - hash: "2ee111386bd646c4ee577405e490a2f7" + hash: "d0fbe98dc34c4bb0d1ceb7e4678cc1d5" + } + Frame { + msec: 1648 + hash: "28ab147983a71e93e5610f53e14bd113" } Key { type: 6 - key: 16777233 - modifiers: 0 + key: 16777249 + modifiers: 100663296 text: "" autorep: false count: 1 } Frame { - msec: 1648 - hash: "24c376d5a2b3555126b156c8bc7a7a0c" - } - Frame { msec: 1664 - hash: "d9c35de8b02f11db321d9bdcdcd65403" + hash: "2e6ee60fe9ff07fa4558134e6b1d6da8" } Frame { msec: 1680 - hash: "0b32a66497ec3cdd05dc27c0ef9c5718" + hash: "f181e578e865981d7a2073080b381ec1" } Frame { msec: 1696 - hash: "9626f80ef170af2db135792337203265" + hash: "d7c0558ea16829b52ea6d09814c301b9" } Frame { msec: 1712 - hash: "6e4ce7599da579f764ff10e982888889" + hash: "c9304cb66c04566cf4374b46ab85e6e7" } Frame { msec: 1728 - hash: "5ad4dd681be780c0068734ca5c722507" - } - Key { - type: 7 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "024dde64822afc9eea63974851fe57e1" } Frame { msec: 1744 - hash: "7d620ef53049f9195cc832d6f9dfd52b" + hash: "8e4520e95a8acc8f1d4b710c4a14898f" } Frame { msec: 1760 - hash: "0f54144c574af01958505eedd69162f6" + hash: "6b271c3f1d9d49bbd80a8ee33f3fc09c" } Frame { msec: 1776 - hash: "50f168354e3901283708a4ae9088783d" + hash: "eb76a46632856bf07b005cad2ba2f6ab" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1792 - hash: "c55fdf2fd0a4eeb9ca0e3072aa3e60c4" + hash: "a29bd83f6b4e877f3c7b89c82dfcab54" } Frame { msec: 1808 - hash: "d351de13e7bb5b273ec3aebb88dffbd5" + hash: "dca39b6b6fff5e4a6309e4c0e42811c0" } Frame { msec: 1824 - hash: "977d44194d1ef05801167157714891af" + hash: "88ad3f9f638a97bed98f00ec7d78dfe4" } Frame { msec: 1840 - hash: "ef3694ca78764709abbe2f8781578fb4" + hash: "5697a705f36283213bbe4b5848baa764" } Frame { msec: 1856 - hash: "77afbc0e0b828d03148ed7fe342dfbda" + hash: "8850842afae3060a91d612f7b869fd48" } Frame { msec: 1872 - hash: "0d94e37430d8b835e65750a6af525ef7" + hash: "4f08dbd1cab0bfcc8b9f232d46cf42db" } Frame { msec: 1888 - hash: "e009a8d2cb7c7f1200055666cf2efd9c" + hash: "f7df5b96d0983a918e3c81aa7bee3950" } Frame { msec: 1904 - hash: "096a2742962d7b22dba768577373e656" + hash: "b28681bcb414d428588acda377fef838" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1920 @@ -518,271 +582,271 @@ VisualTest { } Frame { msec: 1936 - hash: "905b6c7ab24fd1a12f17494fc1935e98" + hash: "5c154b54776ed555563d3e5196a8aedd" } Frame { msec: 1952 - hash: "9bc98b4a32ea933fcc3a40eaae9b3516" + hash: "ee64c0452b325880de3a4fea599c18cc" } Frame { msec: 1968 - hash: "70f0313540b3517f3b6d403c3ab1199c" + hash: "0776e1557b2d32db1c7c43331c532331" } Frame { msec: 1984 - hash: "309ae1af1ef7dbaf0b892ad60fd3eb93" + hash: "24b68da9a63bbf00ffffeca649f771fa" } Frame { msec: 2000 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "00d49d91b51f5bd428c07e9be65f551a" } Frame { msec: 2016 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "874d4b599cb92cd9160960e3b3af74e0" } Frame { msec: 2032 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "00d49d91b51f5bd428c07e9be65f551a" } Frame { msec: 2048 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "24b68da9a63bbf00ffffeca649f771fa" } Frame { msec: 2064 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "0776e1557b2d32db1c7c43331c532331" } Frame { msec: 2080 - hash: "309ae1af1ef7dbaf0b892ad60fd3eb93" + hash: "ee64c0452b325880de3a4fea599c18cc" } Frame { msec: 2096 - hash: "70f0313540b3517f3b6d403c3ab1199c" + hash: "5c154b54776ed555563d3e5196a8aedd" } Frame { msec: 2112 - hash: "9bc98b4a32ea933fcc3a40eaae9b3516" - } - Key { - type: 6 - key: 16777248 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "a5f90da82b51bc866648304a20a1dcd3" } Frame { msec: 2128 - hash: "905b6c7ab24fd1a12f17494fc1935e98" + hash: "b28681bcb414d428588acda377fef838" } Frame { msec: 2144 - hash: "31adf3a3bfbd1083c50cae7ed5d64334" + hash: "f7df5b96d0983a918e3c81aa7bee3950" } Frame { msec: 2160 - hash: "096a2742962d7b22dba768577373e656" + hash: "4f08dbd1cab0bfcc8b9f232d46cf42db" } Frame { msec: 2176 - hash: "e009a8d2cb7c7f1200055666cf2efd9c" + hash: "8850842afae3060a91d612f7b869fd48" } Frame { msec: 2192 - hash: "0d94e37430d8b835e65750a6af525ef7" + hash: "5697a705f36283213bbe4b5848baa764" } Frame { msec: 2208 - hash: "77afbc0e0b828d03148ed7fe342dfbda" + hash: "88ad3f9f638a97bed98f00ec7d78dfe4" } Frame { msec: 2224 - hash: "ef3694ca78764709abbe2f8781578fb4" + hash: "dca39b6b6fff5e4a6309e4c0e42811c0" + } + Key { + type: 7 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2240 - hash: "977d44194d1ef05801167157714891af" + hash: "a29bd83f6b4e877f3c7b89c82dfcab54" } Frame { msec: 2256 - hash: "d351de13e7bb5b273ec3aebb88dffbd5" + hash: "7defd2ecefeb86b457a2ee76d97424ee" } Frame { msec: 2272 - hash: "c55fdf2fd0a4eeb9ca0e3072aa3e60c4" + hash: "ccf6d45e8822d72482d9b585909b612b" } Frame { msec: 2288 - hash: "50f168354e3901283708a4ae9088783d" + hash: "996dddf091394513adda1b1f00bf0c68" } Frame { msec: 2304 - hash: "0f54144c574af01958505eedd69162f6" + hash: "3cf94e90eddb4b0815762b89f58f8325" } Frame { msec: 2320 - hash: "7d620ef53049f9195cc832d6f9dfd52b" - } - Key { - type: 6 - key: 16777232 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "ab9f876450526b37774c6c4a5794c7b1" } Frame { msec: 2336 - hash: "03e906dfb3bf98f521d805331d3b5b9c" + hash: "9109880e9201e92eb17ae87a3648dca7" } Frame { msec: 2352 - hash: "c2376393ea9541b909b6b4fe188fa03e" + hash: "0e759f2f279057c1f4d1147be5b41214" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2368 - hash: "9b3935370412c75acdf6e91100cf2f53" + hash: "d87bd14345c785cc7e78a5c5462b90ec" } Frame { msec: 2384 - hash: "30ab7913bdfc51d2df5ab9f3863d28c7" + hash: "77850031e012246dd967ac689e353eb3" } Frame { msec: 2400 - hash: "593656e93d6e01419002dbb581aa6cbd" + hash: "f1bd048cd9167a8f162d1c39aca4f7c1" } Frame { msec: 2416 - hash: "33800dd560e44ce39d6325bbdee689de" + hash: "0fa030c5da23f23a0665a535e23b84a2" } Frame { msec: 2432 - hash: "c41a9c4f08053d5d18fb2d530ed8b5ad" - } - Key { - type: 7 - key: 16777232 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "af3a5f1982459164dfec26746172b0eb" } Frame { msec: 2448 - hash: "b3f2d4a2cb9a9d1304a2a2d07ad41ff2" + hash: "0de90659472b63dd41a5602197ff502e" } Frame { msec: 2464 - hash: "93cf7fe53bc1fd749c523d40b27d17b4" + hash: "81e40abf91017614a52e03bb2474549f" } Frame { msec: 2480 - hash: "6e9226d01dd93cff763e851148da8dfd" + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2496 - hash: "79fdbda495bbc6c9ae8be03e1467de92" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2512 - hash: "c30fc0fa9351dbcdbe4f2a297cba9a52" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2528 - hash: "eaf26162fd5ce42262ea08ef39a7123d" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2544 - hash: "7bf0d6a5753a60eefae6d3c3819fabe4" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2560 - hash: "a2ee3a3b9cd22d7c0e54524cad32e647" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 2576 - hash: "822298cfc4e2d64db1bf3e442dd891e6" + hash: "e26dbfb26415b21198add56d5de02cb2" } Frame { msec: 2592 - hash: "d075c64000b045eae1b42dce701787b7" + hash: "fa2877a963417789b82170b32e0af7a0" } Frame { msec: 2608 - hash: "5ca7f15af781f896c83c81077f6b072e" + hash: "860b39f92c412a7d946f882d8f99d837" } Frame { msec: 2624 - hash: "7d0f14896e67c56ed5238472dc127cb1" + hash: "d7b8c52aef183965a97d82a18b03ed94" } Frame { msec: 2640 - hash: "dca161e8a9d786ba9d50aa655ccbecd3" + hash: "b1ce9cf0ebd8e1e783e5bd43bbd72072" } Frame { msec: 2656 - hash: "73bfcb0f5104efd056f25f7d73126369" + hash: "d214b419ec5b4cff8f877bdeb1b9ef96" } Frame { msec: 2672 - hash: "0090459043b05bf9504434f36230b32b" + hash: "95e7057104508b3919d722d4befde7b7" } Frame { msec: 2688 - hash: "f64315858f375c6ded480b2017fc18a5" + hash: "270489ec5da5bf9a93fa4e52f47a71f5" } Frame { msec: 2704 - hash: "fe4c0ecfa9779c9fe052d4ffc9386d46" + hash: "46646e396ab0c1c20427dadd71d45ba9" } Frame { msec: 2720 - hash: "849ad15f0ca893881165e956e8a26174" + hash: "65e2fd167565f876310d56fa9203c118" } Frame { msec: 2736 - hash: "c4373fa63ed00832c70a6b94cb729397" + hash: "aff0da79bd9bd8c285139d7737a1316f" } Frame { msec: 2752 - hash: "0c7e08fb7f0dd954b0f171a37ef2a310" + hash: "bf264fe7d774a597a3ff0965d912fa90" } Frame { msec: 2768 - hash: "505071572df7aa300a675f8a808bc7f4" + hash: "f00358343437f6e058848c7237601632" } Frame { msec: 2784 - hash: "52839867e81d52746196f299a8371453" - } - Key { - type: 7 - key: 16777248 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "88c9e1d58397a81ed23931c7fdae1e7d" } Frame { msec: 2800 - hash: "c4d214a7e0fc52c2a45fc6e3df12550a" + hash: "44d46b459f6bb89510e52b0d999fd499" } Frame { msec: 2816 - hash: "f1fa48d796667bd053fff4af7ec1d8ce" + hash: "0c196a24c9ca7143d382688db678d855" } Frame { msec: 2832 - hash: "081e46decc8aba911f018acfd761cda1" + hash: "9df6d3d3b9981cb907ab89e65b743e97" } Frame { msec: 2848 - hash: "fa417c9bfda1da66320a8e59fbaeb5b6" + hash: "501a644d6cde64ad041b086e00fd3950" + } + Key { + type: 6 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2864 - hash: "83dfa353fd20f3bf7caa8e6ca9a9933c" + hash: "83f297406b1c6311da3a216024836d15" } Frame { msec: 2880 @@ -790,511 +854,527 @@ VisualTest { } Frame { msec: 2896 - hash: "c11459b1d3e51f3d2f5bd30049bcca42" + hash: "93f79f8717948bde8ee55c668af2d397" } Frame { msec: 2912 - hash: "997ff3fa82ba2fb27a9c41ed9abe8991" + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" } Frame { msec: 2928 - hash: "f8baaadde147266416c9ab3f9d9106ce" + hash: "be72fe7c27901db62f2dbd9a757e4838" } Frame { msec: 2944 - hash: "79d1d34fd343d8de631aa3259167fe26" + hash: "c83c973fb1253ccab333fb1e604155b8" } Frame { msec: 2960 - hash: "8b1445ca6131a0fc4377ded24a60186a" + hash: "dd6072d204812c23e24db1e7a81c6f57" } Frame { msec: 2976 - hash: "784cc01604ecadf74a45164f73f0336d" + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" + } + Key { + type: 7 + key: 16777236 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 2992 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "fc8ede705bfe8f339fe47041c502b0d6" } Frame { msec: 3008 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "00fa0306d3fdc7e384cfc0660a3a355d" } Frame { msec: 3024 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "00fa0306d3fdc7e384cfc0660a3a355d" } Frame { msec: 3040 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "fc8ede705bfe8f339fe47041c502b0d6" } Frame { msec: 3056 - hash: "b9aeac2be5c8e16e7938e141f32776be" + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" } Frame { msec: 3072 - hash: "b9aeac2be5c8e16e7938e141f32776be" - } - Key { - type: 6 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "dd6072d204812c23e24db1e7a81c6f57" } Frame { msec: 3088 - hash: "00dfc5f4468482cb5f74e62be235b1d2" + hash: "c83c973fb1253ccab333fb1e604155b8" } Frame { msec: 3104 - hash: "62bc9c57724f7ab6bcf7d75d8ff68097" + hash: "be72fe7c27901db62f2dbd9a757e4838" } Frame { msec: 3120 - hash: "ad65de5a6887c0a31a9d8f72a2a651db" + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" } Frame { msec: 3136 - hash: "75e854ccaad087bfe776a843f0bd7284" + hash: "93f79f8717948bde8ee55c668af2d397" } Frame { msec: 3152 - hash: "1e3f580f37a0dc063a383bdf435e85ea" + hash: "1bb236db749ef514c00d0a3dd698d24f" } Frame { msec: 3168 - hash: "3d78320cb021944d7c6cee1a42056663" + hash: "83f297406b1c6311da3a216024836d15" } Frame { msec: 3184 - hash: "fca865f762c1a6cc3e487e0e908eef73" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "3d284b4000d2849ed4af2f7c1b859492" } Frame { msec: 3200 - hash: "fb7ad9156658f3866d19e43f006cf013" + hash: "de315e6836334fd0a2da855f5be4ff30" } Frame { msec: 3216 - hash: "6f7411363c66d0959ea5a16a9b610e61" - } - Frame { - msec: 3232 - hash: "a33dce3c55b1b1541cfb9b85a75fcb53" - } - Frame { - msec: 3248 - hash: "56b81435dc4ce193bb98c3d02c781242" + hash: "5ca117709284f4a1cbd64cdba4079340" } Key { type: 6 - key: 16777234 - modifiers: 0 + key: 16777236 + modifiers: 67108864 text: "" autorep: false count: 1 } Frame { + msec: 3232 + hash: "308a4220f5c74fd56bd218cd695b9822" + } + Frame { + msec: 3248 + hash: "4ac4e09e987f2ba9661ed52fb1bdf236" + } + Frame { msec: 3264 - hash: "59865194eb63465dd0f3925c7a500340" + hash: "9ffd39a8a540ec88ff2b20a16ef083ee" } Frame { msec: 3280 - hash: "38abc77b2361ce257d39c0cf268ba42b" + hash: "4a36ed8e68811954fef171d5734ccbaf" } Frame { msec: 3296 - hash: "2b91dcef1b3ca66059dd9db4c8e335f3" + hash: "714a6231aca70cfa8e83ea71b7ae90dc" } Frame { msec: 3312 - hash: "70c827f1b34b44cbd775b666913556d6" + hash: "1fa9e35449ee87c972e3189ad0651a68" } Frame { msec: 3328 - hash: "8ca757a4fd1987329488f63251b0f6b4" - } - Frame { - msec: 3344 - hash: "0da2c1cd0138172698a3bee5d19168c5" - } - Frame { - msec: 3360 - hash: "8d71c418593eb3e4834d5e608ffd3f29" + hash: "d602008fada2f4edb6ad00fe759f9db9" } Key { type: 7 - key: 16777234 - modifiers: 0 + key: 16777236 + modifiers: 67108864 text: "" autorep: false count: 1 } Frame { + msec: 3344 + hash: "bf16cc38f109e761b5ac2b0c63a1a2fe" + } + Frame { + msec: 3360 + hash: "30f26041533455ed92c4984f55e3c6ff" + } + Frame { msec: 3376 - hash: "35c0d55cda3a02eb4c441a5832bcbbf4" + hash: "5838d666902bc693de505522dad13254" } Frame { msec: 3392 - hash: "4e7374a683050ff440056b6e7c971d2b" + hash: "6c8ada09b627050e4340da6e8ddd646e" } Frame { msec: 3408 - hash: "6310b65572e39256122c7620f7e87442" + hash: "b33cd5bbb90d435dd7ea3ab67bef88ee" } Frame { msec: 3424 - hash: "d882fe91d9df9862d620cf984e27d0bd" + hash: "692d4029938c01044b4210958dd1ee7e" } Frame { msec: 3440 - hash: "97549f388c02adb8884c2e79510adc7e" + hash: "7e2e55555ee2c7e172e61ddb6365355d" } Frame { msec: 3456 - hash: "60a60e06237318bf005f87bbba386fef" + hash: "87ca0584879b25336a1023ac3252fc9a" } Frame { msec: 3472 - hash: "2dbe9b5bbb5baf12cd2cbfb4190be316" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3488 - hash: "eacfa8db605b9e386a55508e8943e7d1" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3504 - hash: "e0826ff09b628a5e3ddf6d9e5593f937" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3520 - hash: "2aec32493055ad17f4aac9b3c9b84c5f" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3536 - hash: "c0e72cdf776b0c62742aa9c3683cd523" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3552 - hash: "ea3f512181b3ee94d8cdd4d9f59ed962" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 3568 - hash: "de924155855e76d0591217448f79bdb6" + hash: "8c6052eb4cf03d7742a73874d9f15285" } Frame { msec: 3584 - hash: "51da770a75102de9ad1920f1f6c44146" + hash: "8a1b63c42867f87a1cf4b47944b3860a" } Frame { msec: 3600 - hash: "e3c0e8f6385ef2ab9b671be3243774c4" + hash: "90712efd7c17b0ad33d2c2c02e9eaa97" } Frame { msec: 3616 - hash: "eac6de65ea6726f0cc50b6d30c1b7ba5" + hash: "8099972420ffd03e2bfc3ea45918a543" } Frame { msec: 3632 - hash: "2ee111386bd646c4ee577405e490a2f7" + hash: "2b78b1179a34319c287a6659406e23c3" } Frame { msec: 3648 - hash: "fe95122352effcf1815bc237fc6ce6ab" + hash: "ad9458ab4d6376c87350a2356c280f94" } Frame { msec: 3664 - hash: "e3bb1ec3b84df25712f06e0d6963efdd" + hash: "a74bc230e310a2826b2fed962db22f7a" } Frame { msec: 3680 - hash: "a10d3184acc85c46e171fe4cf82e1c23" + hash: "bd72e8f4757050c41673a6f0d38f2285" } Frame { msec: 3696 - hash: "d566b2763312e5e823593806acd9e809" + hash: "379bad4fa4b605cb6a16434bdb031e2b" } Frame { msec: 3712 - hash: "7db073b7487ddea48e7c9df8b9bfdc00" + hash: "e144a8e9586f29f9b2f042b47e7739ae" } Frame { msec: 3728 - hash: "85c663b943f67d158367dba0508980a5" + hash: "bd74c9e79bc1a88dd6a17a3aed21e368" + } + Key { + type: 6 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 3744 - hash: "6336ce0d912ee63773475c4c6c5d59be" + hash: "144724168f42372e10ec6c39662a5ed8" } Frame { msec: 3760 - hash: "c75ba80484af36633b6a4d17b666b1c9" + hash: "d8859888802e7b54e2d2a44cf252eb54" } Frame { msec: 3776 - hash: "08b7d4eef2d15bc717ff1a981a11f275" + hash: "20561e2faf7e8fe1d6337248e6cd5e94" } Frame { msec: 3792 - hash: "0ab8bebb0e43786a7e51ea780745080c" + hash: "184cff262d1004ce702c117a6b5b9699" } Frame { msec: 3808 - hash: "6fa1811f520eff9893b3c7b00e53fa7d" + hash: "61b156acacefa6e4f4ddd8adaca90d08" } Frame { msec: 3824 - hash: "6feb44655bfbec651cc2902676bd08b4" + hash: "0906852b1e62a936694a22d6ffa4f5dd" } Frame { msec: 3840 image: "cursorDelegate.3.png" } + Key { + type: 7 + key: 16777234 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } Frame { msec: 3856 - hash: "00b7714df163d8055514e0dbd8a83bac" + hash: "cc0fb2ae2dd1ccad94c453bc4c4b6d32" } Frame { msec: 3872 - hash: "6ef2a330d70a7e0ce343bb352c46f126" + hash: "6a6baee5ca76d331c47fca4d0f7168e5" } Frame { msec: 3888 - hash: "f4e26309fa3b8a6d55f44bf146544101" + hash: "32032d7ce55af41c97ac5bf33aca40bb" } Frame { msec: 3904 - hash: "dfa1e24149f2662a4a552da3bb64348c" + hash: "a8781226e5e494324a34e120aa446cd1" } Frame { msec: 3920 - hash: "9ab9d6ef4aeb5863401a9e251f684e2d" + hash: "0dd5df088fcc0228a97ffe715c95e2b6" } Frame { msec: 3936 - hash: "c9f7591a37a3743b3b48de5337fd2fa0" + hash: "774b161fe9645bc69b89e580b3e41f71" } Frame { msec: 3952 - hash: "2d38f17db530050574d9192c805c142d" + hash: "5756d7ffd8ff656db54f4329ea909553" } Frame { msec: 3968 - hash: "38a4ad2cf9fa3015eff67014900a44cc" + hash: "2b4a5c97ff4d8792a7706bb78385ec35" } Frame { msec: 3984 - hash: "9d9ce4ac0de6caa2f0bb78eac414ba65" + hash: "f9765e4def564b64861402e1a873b169" } Frame { msec: 4000 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "287b07ef6288dcea13fffd2b95aafd54" } Frame { msec: 4016 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "7abcb9d6cf223c1655f6265f780a321a" } Frame { msec: 4032 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "287b07ef6288dcea13fffd2b95aafd54" } Frame { msec: 4048 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "f9765e4def564b64861402e1a873b169" } Frame { msec: 4064 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" + hash: "2b4a5c97ff4d8792a7706bb78385ec35" + } + Key { + type: 7 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 4080 - hash: "9d9ce4ac0de6caa2f0bb78eac414ba65" + hash: "5756d7ffd8ff656db54f4329ea909553" } Frame { msec: 4096 - hash: "38a4ad2cf9fa3015eff67014900a44cc" + hash: "774b161fe9645bc69b89e580b3e41f71" } Frame { msec: 4112 - hash: "2d38f17db530050574d9192c805c142d" + hash: "0dd5df088fcc0228a97ffe715c95e2b6" } Frame { msec: 4128 - hash: "c9f7591a37a3743b3b48de5337fd2fa0" + hash: "a8781226e5e494324a34e120aa446cd1" } Frame { msec: 4144 - hash: "9ab9d6ef4aeb5863401a9e251f684e2d" + hash: "32032d7ce55af41c97ac5bf33aca40bb" } Frame { msec: 4160 - hash: "dfa1e24149f2662a4a552da3bb64348c" + hash: "6a6baee5ca76d331c47fca4d0f7168e5" } Frame { msec: 4176 - hash: "f4e26309fa3b8a6d55f44bf146544101" + hash: "cc0fb2ae2dd1ccad94c453bc4c4b6d32" } Frame { msec: 4192 - hash: "6ef2a330d70a7e0ce343bb352c46f126" + hash: "2d1b406be294727a278ba6bbc97be62a" } Frame { msec: 4208 - hash: "00b7714df163d8055514e0dbd8a83bac" + hash: "0906852b1e62a936694a22d6ffa4f5dd" } Frame { msec: 4224 - hash: "ae46d672649a4b0fc5171f776af93a2c" + hash: "61b156acacefa6e4f4ddd8adaca90d08" } Frame { msec: 4240 - hash: "6feb44655bfbec651cc2902676bd08b4" + hash: "184cff262d1004ce702c117a6b5b9699" } Frame { msec: 4256 - hash: "6fa1811f520eff9893b3c7b00e53fa7d" + hash: "20561e2faf7e8fe1d6337248e6cd5e94" } Frame { msec: 4272 - hash: "0ab8bebb0e43786a7e51ea780745080c" + hash: "d8859888802e7b54e2d2a44cf252eb54" } Frame { msec: 4288 - hash: "08b7d4eef2d15bc717ff1a981a11f275" + hash: "144724168f42372e10ec6c39662a5ed8" } Frame { msec: 4304 - hash: "c75ba80484af36633b6a4d17b666b1c9" + hash: "d2da36fbf73289f545133bd608af66a2" } Frame { msec: 4320 - hash: "6336ce0d912ee63773475c4c6c5d59be" + hash: "b1d7da6b42a31bba91148ab37b111945" } Frame { msec: 4336 - hash: "85c663b943f67d158367dba0508980a5" + hash: "6f226a3b20d95e17df69e2c4e5aff3d1" } Frame { msec: 4352 - hash: "7db073b7487ddea48e7c9df8b9bfdc00" + hash: "1109da0f043a9418661fc05e53fe3b45" } Frame { msec: 4368 - hash: "d566b2763312e5e823593806acd9e809" + hash: "f3e901db9efd1d9fadf1cb6858040d51" } Frame { msec: 4384 - hash: "a10d3184acc85c46e171fe4cf82e1c23" + hash: "c8e50c0e924b11a3f1943abb9a4008a4" } Frame { msec: 4400 - hash: "e3bb1ec3b84df25712f06e0d6963efdd" + hash: "431226a27488ed1dba237de3d43f94c5" } Frame { msec: 4416 - hash: "fe95122352effcf1815bc237fc6ce6ab" + hash: "420d316430c84f10d7cd24d29b918149" } Frame { msec: 4432 - hash: "2ee111386bd646c4ee577405e490a2f7" + hash: "ccbd4d1e4865ebd9b0fe923e6ab05e5c" } Frame { msec: 4448 - hash: "eac6de65ea6726f0cc50b6d30c1b7ba5" + hash: "231bff73758a1c6f7c7c0365159ba3e6" } Frame { msec: 4464 - hash: "e3c0e8f6385ef2ab9b671be3243774c4" + hash: "d1ac7ceda7303bbf3392d33f47037ed6" } Frame { msec: 4480 - hash: "51da770a75102de9ad1920f1f6c44146" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4496 - hash: "de924155855e76d0591217448f79bdb6" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4512 - hash: "ea3f512181b3ee94d8cdd4d9f59ed962" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4528 - hash: "c0e72cdf776b0c62742aa9c3683cd523" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4544 - hash: "2aec32493055ad17f4aac9b3c9b84c5f" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4560 - hash: "e0826ff09b628a5e3ddf6d9e5593f937" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4576 - hash: "eacfa8db605b9e386a55508e8943e7d1" + hash: "a2ad07326fafcb3012cdb869f39af466" } Frame { msec: 4592 - hash: "2dbe9b5bbb5baf12cd2cbfb4190be316" + hash: "8622eb25a6da44926b5161bce213a483" } Frame { msec: 4608 - hash: "60a60e06237318bf005f87bbba386fef" + hash: "fe563aa9dae9655871f82a779063cdbd" } Frame { msec: 4624 - hash: "97549f388c02adb8884c2e79510adc7e" + hash: "775cd79b012f79b773449a0ad8457149" } Frame { msec: 4640 - hash: "d882fe91d9df9862d620cf984e27d0bd" + hash: "01e9fab344a148a0877a7332d561be5a" } Frame { msec: 4656 - hash: "6310b65572e39256122c7620f7e87442" + hash: "935566d139599a30197850774fb059ba" } Frame { msec: 4672 - hash: "4e7374a683050ff440056b6e7c971d2b" + hash: "4aae1ac532624417decddd978f516b6e" } Frame { msec: 4688 - hash: "35c0d55cda3a02eb4c441a5832bcbbf4" + hash: "34dc78df6e9941988712c1f8f79c3db0" } Frame { msec: 4704 - hash: "8d71c418593eb3e4834d5e608ffd3f29" + hash: "23a96c11d5917c44bd48239ed2b5777f" } Frame { msec: 4720 - hash: "0da2c1cd0138172698a3bee5d19168c5" + hash: "f8f13e097eae3152db3ccebff1343fe0" } Frame { msec: 4736 - hash: "8ca757a4fd1987329488f63251b0f6b4" + hash: "02f8fca7c4ab80ecf425e4b39e966b86" } Frame { msec: 4752 - hash: "70c827f1b34b44cbd775b666913556d6" + hash: "c3356367750e797ff81bc4102f948134" } Frame { msec: 4768 - hash: "2b91dcef1b3ca66059dd9db4c8e335f3" + hash: "7b5de3772b8bcb4b10f3d265d5603afb" } Frame { msec: 4784 - hash: "38abc77b2361ce257d39c0cf268ba42b" + hash: "ed3c741639232377f61867fd353ce58a" } Frame { msec: 4800 @@ -1302,2254 +1382,118 @@ VisualTest { } Frame { msec: 4816 - hash: "7bed5747d6b771db0fe5802153e54f2f" + hash: "5ca117709284f4a1cbd64cdba4079340" } Frame { msec: 4832 - hash: "9ac1bf268749bc8e58bc4d04b55ef849" + hash: "de315e6836334fd0a2da855f5be4ff30" } Frame { msec: 4848 - hash: "64ea5cb46782d250c46a7a2c8cceea20" + hash: "3d284b4000d2849ed4af2f7c1b859492" } Frame { msec: 4864 - hash: "d81037eb21bfcb434b6c7f3bbd21ad12" + hash: "83f297406b1c6311da3a216024836d15" } Frame { msec: 4880 - hash: "1079ea3a1a62e2cca9a8e907bc5aa4e1" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 130; y: 101 - modifiers: 0 - sendToViewport: true + hash: "1bb236db749ef514c00d0a3dd698d24f" } Frame { msec: 4896 - hash: "3d78320cb021944d7c6cee1a42056663" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 102 - modifiers: 0 - sendToViewport: true + hash: "93f79f8717948bde8ee55c668af2d397" } Frame { msec: 4912 - hash: "1e3f580f37a0dc063a383bdf435e85ea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 102 - modifiers: 0 - sendToViewport: true + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" } Frame { msec: 4928 - hash: "75e854ccaad087bfe776a843f0bd7284" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 132; y: 103 - modifiers: 0 - sendToViewport: true + hash: "be72fe7c27901db62f2dbd9a757e4838" } Frame { msec: 4944 - hash: "ad65de5a6887c0a31a9d8f72a2a651db" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 133; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 134; y: 103 - modifiers: 0 - sendToViewport: true + hash: "c83c973fb1253ccab333fb1e604155b8" } Frame { msec: 4960 - hash: "62bc9c57724f7ab6bcf7d75d8ff68097" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 135; y: 103 - modifiers: 0 - sendToViewport: true + hash: "dd6072d204812c23e24db1e7a81c6f57" } Frame { msec: 4976 - hash: "00dfc5f4468482cb5f74e62be235b1d2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 136; y: 103 - modifiers: 0 - sendToViewport: true + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" } Frame { msec: 4992 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 137; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 102 - modifiers: 0 - sendToViewport: true + hash: "fc8ede705bfe8f339fe47041c502b0d6" } Frame { msec: 5008 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 139; y: 101 - modifiers: 0 - sendToViewport: true + hash: "00fa0306d3fdc7e384cfc0660a3a355d" } Frame { msec: 5024 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 101 - modifiers: 0 - sendToViewport: true + hash: "00fa0306d3fdc7e384cfc0660a3a355d" } Frame { msec: 5040 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 141; y: 100 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 143; y: 100 - modifiers: 0 - sendToViewport: true + hash: "fc8ede705bfe8f339fe47041c502b0d6" } Frame { msec: 5056 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 100 - modifiers: 0 - sendToViewport: true + hash: "fb342743dc5ab9ade2b8a48a2a11dc8f" } Frame { msec: 5072 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 99 - modifiers: 0 - sendToViewport: true + hash: "dd6072d204812c23e24db1e7a81c6f57" } Frame { msec: 5088 - hash: "748dc58a3ad83d7b99d7b26ad2f82786" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 99 - modifiers: 0 - sendToViewport: true + hash: "c83c973fb1253ccab333fb1e604155b8" } Frame { msec: 5104 - hash: "242cc0ee7c3bdb44e8933068d3a93b61" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 150; y: 99 - modifiers: 0 - sendToViewport: true + hash: "be72fe7c27901db62f2dbd9a757e4838" } Frame { msec: 5120 - hash: "3be6f0a35fb085dcf6c9481cf1c23f9d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 99 - modifiers: 0 - sendToViewport: true + hash: "881b5c2ccd0bbdaea4d61abbec600fc5" } Frame { msec: 5136 - hash: "a6f63267eaba9aefd2c9ab338571ef33" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 98 - modifiers: 0 - sendToViewport: true + hash: "93f79f8717948bde8ee55c668af2d397" } Frame { msec: 5152 - hash: "ba37dd9ba649e294465dc707f6b768ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 98 - modifiers: 0 - sendToViewport: true + hash: "1bb236db749ef514c00d0a3dd698d24f" } Frame { msec: 5168 - hash: "35b186609721ec0b8a121d15bc54ce49" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 98 - modifiers: 0 - sendToViewport: true + hash: "83f297406b1c6311da3a216024836d15" } Frame { msec: 5184 - hash: "700ff15e4e48af93362455a149d90363" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 98 - modifiers: 0 - sendToViewport: true + hash: "3d284b4000d2849ed4af2f7c1b859492" } Frame { msec: 5200 - hash: "1c51eb8d4d25d086bda4d595a49c3a86" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 98 - modifiers: 0 - sendToViewport: true + hash: "de315e6836334fd0a2da855f5be4ff30" } Frame { msec: 5216 - hash: "2f085b047d24384d463163df7fac2bd3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 98 - modifiers: 0 - sendToViewport: true + hash: "5ca117709284f4a1cbd64cdba4079340" } Frame { msec: 5232 - hash: "46d7aff6eb47e50e23c061ecb149fbf9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 98 - modifiers: 0 - sendToViewport: true + hash: "4f0d49aff27a1c83287d38e760c10f16" } Frame { msec: 5248 - hash: "48d7a8f749f7501dbaa4599ca41096a5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 97 - modifiers: 0 - sendToViewport: true + hash: "ed3c741639232377f61867fd353ce58a" } Frame { msec: 5264 - hash: "4c2a085c69c118fedfa15fe46cdc508b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5280 - hash: "25f25828a4d22fe85db0de5c562f658e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "e9fb14ec21e9ec1235d2fea6e055b69d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "66417881aeb85778be66566241c45f5a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5328 - hash: "c8c136690ffd8e5cc3e58f7376693b4f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 178; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5344 - hash: "c58c4fb5b7197cd8bd95742dc8715bbf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 179; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5360 - hash: "2e0c93380883fcf2d0e56024fecba605" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 180; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5376 - hash: "5f169f09e3d868eb0425a331d4bc3144" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 182; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5392 - hash: "ed648742be4b0ded04e713e83ed24b27" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5408 - hash: "92131288bb38480469f4578282dedaf8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5424 - hash: "e16773f750bb0f635552b1eeadb2d625" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 189; y: 93 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5440 - hash: "6e653cd552d82f38f30b8027d1951534" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 192; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5456 - hash: "cfc1d6efa8d1b3b86396704f0be031ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5472 - hash: "5848af73f5ab7c811639a6d01921d502" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 92 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5488 - hash: "3823e7da05678f63e6761a81ed7233e2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5504 - hash: "d095abe9814a60824914960a11663f12" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 91 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5520 - hash: "18922bb3269d903a36e0b690249b473a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 91 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5536 - hash: "4d8400a3ca2b782e7b054bb2f71d4543" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5552 - hash: "24ed25d7a767f01fb02f545fc6c6931a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5568 - hash: "55fb16784e3655ae70f97d6c32853cdc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5584 - hash: "694e6979f0de62b61324dc4b144a2d5d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5600 - hash: "e61b8b03251f6312e3de4e0c8af684d5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5616 - hash: "6203321f87d53692dbb2b2aaf7dd3944" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5632 - hash: "297b77029475d77cd8e481199b23da30" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 214; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5648 - hash: "414615d772b4c80bf85eabfdca6fd0e0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5664 - hash: "46d70882552a21267eebb3505da086f3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5680 - hash: "372acafc63624307bcb384c48a803ab7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 84 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5696 - hash: "1b98094dd4f192af8229b7058b8ce396" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5712 - hash: "d627fa0ce696e46650225e43134643f5" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 84 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5728 - hash: "0410f4b504d768bc00940b20d3d942f9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 85 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 86 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5744 - hash: "5f8011b44681d769800af8d205c757cb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5760 - image: "cursorDelegate.5.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5776 - hash: "99f7a46f841f96445962b5fb3496d996" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5792 - hash: "ed8bba2823ca2fe7cf138af0fcc52806" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5808 - hash: "c9007b7ae5038ba59bfc6fac15c80d5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 226; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5824 - hash: "2db81c955a99652bcfef958e870054af" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 228; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "1e3906d7f3ee5a29c3c90b8e1f6c1eb0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 96 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 231; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "fc59738903cc9e6f36ef4d27bfde9496" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "768aaf4ef2b13b40b75bdf15787966b6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "3085baedc0c58a6757b134bb4f80fa9e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "0a1b8cad167bf93801f4d0dd34bf872e" - } - Frame { - msec: 5920 - hash: "6366e04808ee015feed44d95cc117e1e" - } - Frame { - msec: 5936 - hash: "dd67a8542a243aac9462e25dc1586e6e" - } - Frame { - msec: 5952 - hash: "e06c8788b2ef327d005b4048f0807334" - } - Frame { - msec: 5968 - hash: "dda2beda1253bd477d04cada4ec4df27" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 233; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "d659d1724637d90497c8e417764d3477" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 232; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 231; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 230; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 229; y: 99 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 228; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "91035aecf2ac15f3c2c3dbc4b73b540f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 225; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "bdc53613cad59416ed79287874eb59f8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 224; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "54efe0acb07fb69827024a566773a36e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "860530a5ac3d89193f3cf234e21f8f6a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "ade5f8e28159304b22866f688efdbb46" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 102 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "7d5f5cf34910527d899e89ea07fb7254" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "c201ed0f2419396a229d8396152aba01" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "b99135e2cb03ab252ff379c8001c26ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 102 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "768aaf4ef2b13b40b75bdf15787966b6" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6208 - hash: "71a5bed1a87e16c986b2f4b245e956b8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 210; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6224 - hash: "7155607add8c7254286097cda52b5888" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 208; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 207; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6240 - hash: "e516e4d8a4ef0195ae04b3287f536ffd" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6256 - hash: "afa06d10b37d8ad8b57e392142ff50f2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 205; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "88c3fe68f7251d87a5bf197b9d59b899" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 204; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 203; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6288 - hash: "b2687baf5148539ee2181b18077e0a3d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6304 - hash: "457aed68cee2b9f3ff3c7d5f0eb2b6aa" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 201; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6320 - hash: "48bb4683718a3b7c34baea29260fbe8c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 103 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 199; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6336 - hash: "7c32fbf799bbfc10d0fbdd96bcfa9d95" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 197; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6352 - hash: "68cee3b8213a9d38e2ed431d06eb6756" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 196; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 194; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6368 - hash: "596c732c40a86d16bc649f164b919457" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 191; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6384 - hash: "d9cb5bf69d4f8aaebefae6d680a99185" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6400 - hash: "bb6759f3aff00f027f4f426efb775d2d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6416 - hash: "a408d88f97c30ab8ab12a222b03571b4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 182; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6432 - hash: "bb2e8994dc014eb6d4e4e33257269c2a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 176; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6448 - hash: "190e9df0b8d20b0f37a198e9f3976416" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6464 - hash: "aa7be52534c8550948deea6ae174330d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6480 - hash: "533caac613ea1279a51a5b5b29acdccc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6496 - hash: "288cc34879d9ed8ed381ba6cc31de3e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6512 - hash: "2a57602c47ab788f288daa81b985fc1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "fa3540fafa1a9e3c5e796b598dce8fb1" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6544 - hash: "7e9b17ae7c10cb30153539911ac6eb13" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6560 - hash: "9e62b16c858e80ff1294ec53e2390498" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 94 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6576 - hash: "287470e6cf9bd4b9acfd1cd1512307e3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "4086c7c7a573a1b9f98d22ebf9b46c5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 149; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6608 - hash: "7d0868f000a1102916720a29a332543f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6624 - hash: "bda3cfdca81f7cba54514c512eb6b12e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6640 - hash: "923ff9fac39c3fba2c9cf7b52fc652ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6656 - hash: "269718e3586affbbdf0b9599e12f5677" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6672 - hash: "d12e03b5da6ea7b162d7dec6930c1a54" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "96edf1f15c674c5d8c4e4ce9e1d34f1d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "70ce229fae6985dd49de8cca01c031e6" - } - Frame { - msec: 6720 - image: "cursorDelegate.6.png" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 144; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - hash: "56215b7d24ac382ff1ed256c80d14091" - } - Frame { - msec: 6752 - hash: "ac132304e072806431803d26e345b264" - } - Frame { - msec: 6768 - hash: "a8f3e7fbb95ed8fe2b83871eb3d2c151" - } - Frame { - msec: 6784 - hash: "43906030c2572af0f8f0577dbc86e346" - } - Frame { - msec: 6800 - hash: "d64b58801430d5063225dceac1603bca" - } - Frame { - msec: 6816 - hash: "56b81435dc4ce193bb98c3d02c781242" - } - Frame { - msec: 6832 - hash: "a33dce3c55b1b1541cfb9b85a75fcb53" - } - Frame { - msec: 6848 - hash: "6f7411363c66d0959ea5a16a9b610e61" - } - Frame { - msec: 6864 - hash: "fb7ad9156658f3866d19e43f006cf013" - } - Frame { - msec: 6880 - hash: "fca865f762c1a6cc3e487e0e908eef73" - } - Frame { - msec: 6896 - hash: "3d78320cb021944d7c6cee1a42056663" - } - Frame { - msec: 6912 - hash: "1e3f580f37a0dc063a383bdf435e85ea" - } - Frame { - msec: 6928 - hash: "75e854ccaad087bfe776a843f0bd7284" - } - Frame { - msec: 6944 - hash: "ad65de5a6887c0a31a9d8f72a2a651db" - } - Frame { - msec: 6960 - hash: "62bc9c57724f7ab6bcf7d75d8ff68097" - } - Frame { - msec: 6976 - hash: "00dfc5f4468482cb5f74e62be235b1d2" - } - Frame { - msec: 6992 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7008 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7024 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7040 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7056 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7072 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 7088 - hash: "00dfc5f4468482cb5f74e62be235b1d2" - } - Frame { - msec: 7104 - hash: "62bc9c57724f7ab6bcf7d75d8ff68097" - } - Frame { - msec: 7120 - hash: "ad65de5a6887c0a31a9d8f72a2a651db" - } - Frame { - msec: 7136 - hash: "75e854ccaad087bfe776a843f0bd7284" - } - Frame { - msec: 7152 - hash: "1e3f580f37a0dc063a383bdf435e85ea" - } - Frame { - msec: 7168 - hash: "3d78320cb021944d7c6cee1a42056663" - } - Frame { - msec: 7184 - hash: "fca865f762c1a6cc3e487e0e908eef73" - } - Frame { - msec: 7200 - hash: "fb7ad9156658f3866d19e43f006cf013" - } - Frame { - msec: 7216 - hash: "6f7411363c66d0959ea5a16a9b610e61" - } - Frame { - msec: 7232 - hash: "a33dce3c55b1b1541cfb9b85a75fcb53" - } - Frame { - msec: 7248 - hash: "56b81435dc4ce193bb98c3d02c781242" - } - Frame { - msec: 7264 - hash: "d64b58801430d5063225dceac1603bca" - } - Frame { - msec: 7280 - hash: "43906030c2572af0f8f0577dbc86e346" - } - Frame { - msec: 7296 - hash: "a8f3e7fbb95ed8fe2b83871eb3d2c151" - } - Frame { - msec: 7312 - hash: "ac132304e072806431803d26e345b264" - } - Frame { - msec: 7328 - hash: "56215b7d24ac382ff1ed256c80d14091" - } - Frame { - msec: 7344 - hash: "4d5c97925b21d699f1c3720a3f51ebbb" - } - Frame { - msec: 7360 - hash: "70ce229fae6985dd49de8cca01c031e6" - } - Frame { - msec: 7376 - hash: "96edf1f15c674c5d8c4e4ce9e1d34f1d" - } - Frame { - msec: 7392 - hash: "d12e03b5da6ea7b162d7dec6930c1a54" - } - Frame { - msec: 7408 - hash: "269718e3586affbbdf0b9599e12f5677" - } - Frame { - msec: 7424 - hash: "42d19ea6dd328c505da5a4eee23a257d" - } - Frame { - msec: 7440 - hash: "e4d9d77859759dd95cf3ffee8f142cd8" - } - Frame { - msec: 7456 - hash: "445e4c6e9872b63a1461e3277dd8185c" - } - Frame { - msec: 7472 - hash: "d6343c629acd987179eae0d158d2504c" - } - Frame { - msec: 7488 - hash: "a5340087baa2c3694ed0cc2bbc3e2ad9" - } - Frame { - msec: 7504 - hash: "205973c30aaca71d1f20e740ce971d82" - } - Frame { - msec: 7520 - hash: "ed28c7e07755e177222c7e322116bfb4" - } - Frame { - msec: 7536 - hash: "6cebfc407a985694c803940608ab1303" - } - Frame { - msec: 7552 - hash: "87f825fc820d3942e4d9b5ece5be3714" - } - Frame { - msec: 7568 - hash: "9aa56dfe90ed2eba58eee0ff6ff3822c" - } - Frame { - msec: 7584 - hash: "c93acf87a918f21a55cf39ea255315a3" - } - Frame { - msec: 7600 - hash: "f8ce1bec5d5016c56fc66d52c28e69d1" - } - Frame { - msec: 7616 - hash: "a365dba2f7c4be77ea98b727813c2f03" - } - Frame { - msec: 7632 - hash: "e8d1c35ee9ef74c4070adfce5e4560f1" - } - Frame { - msec: 7648 - hash: "f5f2dbb041eeb4de1821761f4fbca506" - } - Frame { - msec: 7664 - hash: "f4ea6e9dff51778e9b5d1321453617ec" - } - Frame { - msec: 7680 - image: "cursorDelegate.7.png" - } - Frame { - msec: 7696 - hash: "f2869791dde1eb4c2ea24e04dc3ac653" - } - Frame { - msec: 7712 - hash: "9bd70e91b765de22b70fe295adc4f87f" - } - Frame { - msec: 7728 - hash: "c0338d0a5c72ba63bff666a76ab3242c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 227; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7744 - hash: "cb2a643eed9b5658260e04495820cd3d" - } - Frame { - msec: 7760 - hash: "6dda51f2e611b1f589c75820fd8c7295" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 227; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7776 - hash: "98d8692afd47c61421ddcae62414a72e" - } - Frame { - msec: 7792 - hash: "2c533bcdd9df45c6f942d47509ebf20e" - } - Frame { - msec: 7808 - hash: "d28f231fb1e128329e8985689deac882" - } - Frame { - msec: 7824 - hash: "ea73450baf98a2f629ce1c203cfcd728" - } - Frame { - msec: 7840 - hash: "959a31d38edc343b5e081fd0cddc81df" - } - Frame { - msec: 7856 - hash: "9b1ae10ee8e9b3f176357733af9e6735" - } - Frame { - msec: 7872 - hash: "89b0dd11f456bbb321e0bd2e1614c193" - } - Frame { - msec: 7888 - hash: "a0a3aa6d8d4c677894e745ee432084e2" - } - Frame { - msec: 7904 - hash: "f63207b8903085b19de1c9b6a9ff90e0" - } - Frame { - msec: 7920 - hash: "c8f2126fece8c2b473c6511aa568dddb" - } - Frame { - msec: 7936 - hash: "6ccd1f30e85dbad74468c228d92a9a3c" - } - Frame { - msec: 7952 - hash: "bae09fe9f29e0f6ebda298cae753ddab" - } - Frame { - msec: 7968 - hash: "cde4abae868488345fb124b927f46b45" - } - Frame { - msec: 7984 - hash: "a88ccf9c8ae34ffcfd15af4e66102040" - } - Frame { - msec: 8000 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8016 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8032 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8048 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8064 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 8080 - hash: "a88ccf9c8ae34ffcfd15af4e66102040" - } - Frame { - msec: 8096 - hash: "cde4abae868488345fb124b927f46b45" - } - Frame { - msec: 8112 - hash: "bae09fe9f29e0f6ebda298cae753ddab" - } - Frame { - msec: 8128 - hash: "6ccd1f30e85dbad74468c228d92a9a3c" - } - Frame { - msec: 8144 - hash: "c8f2126fece8c2b473c6511aa568dddb" - } - Frame { - msec: 8160 - hash: "f63207b8903085b19de1c9b6a9ff90e0" - } - Frame { - msec: 8176 - hash: "a0a3aa6d8d4c677894e745ee432084e2" - } - Frame { - msec: 8192 - hash: "89b0dd11f456bbb321e0bd2e1614c193" - } - Frame { - msec: 8208 - hash: "9b1ae10ee8e9b3f176357733af9e6735" - } - Frame { - msec: 8224 - hash: "959a31d38edc343b5e081fd0cddc81df" - } - Frame { - msec: 8240 - hash: "ea73450baf98a2f629ce1c203cfcd728" - } - Frame { - msec: 8256 - hash: "d28f231fb1e128329e8985689deac882" - } - Frame { - msec: 8272 - hash: "2c533bcdd9df45c6f942d47509ebf20e" - } - Frame { - msec: 8288 - hash: "98d8692afd47c61421ddcae62414a72e" - } - Frame { - msec: 8304 - hash: "6dda51f2e611b1f589c75820fd8c7295" - } - Frame { - msec: 8320 - hash: "cb2a643eed9b5658260e04495820cd3d" - } - Frame { - msec: 8336 - hash: "88afd2fa1182fbb2aab100d4587a1006" - } - Frame { - msec: 8352 - hash: "bc657c5181a11a9ff9565f134bdccb8d" - } - Frame { - msec: 8368 - hash: "a296634d814a6e12f9d09f4d8a9fa097" - } - Frame { - msec: 8384 - hash: "f05a2deeb12722904c4f31d641dffeb4" - } - Frame { - msec: 8400 - hash: "75823698247e39dd10a70fe224e13597" - } - Frame { - msec: 8416 - hash: "244fa06c168f7a7401b8ec7f5ddb0e52" - } - Frame { - msec: 8432 - hash: "a78e0f88d269290e9086d1d854618f0c" - } - Frame { - msec: 8448 - hash: "57b1281d29d5c5fdc15d9cf1e3a5545c" - } - Frame { - msec: 8464 - hash: "a24ac211ef29dcf7f22ac95991f1af3f" - } - Frame { - msec: 8480 - hash: "361f978ea3597fd518c25c0069c22e8b" - } - Frame { - msec: 8496 - hash: "ac8e2c01eb58aac0eb4feb6aba9b9628" - } - Frame { - msec: 8512 - hash: "6099612934b5eb90296f1cc3cb5c1a84" - } - Frame { - msec: 8528 - hash: "7c3f08291168065fc9c1d62108022d33" - } - Frame { - msec: 8544 - hash: "8bf57ba445d668af5f3e59276c4f8800" - } - Frame { - msec: 8560 - hash: "c8ed352cbfbc472ea4802a9e03d40052" - } - Frame { - msec: 8576 - hash: "11e5546b30e47d2f3067c0364b9f0877" - } - Frame { - msec: 8592 - hash: "9df0f136fca92d4a05f17ee68f0cd286" - } - Frame { - msec: 8608 - hash: "39f47838a622ba328548cad57cca9e12" - } - Frame { - msec: 8624 - hash: "c891d582be4b23c01e29032fe861081f" - } - Frame { - msec: 8640 - image: "cursorDelegate.8.png" - } - Frame { - msec: 8656 - hash: "c3820dfd382c4568d9fbd2ee95889eda" - } - Frame { - msec: 8672 - hash: "528cf8778318bf7216b54f983dadb2b4" - } - Frame { - msec: 8688 - hash: "419518a3c63aa36f6070e95eb93e58a3" - } - Frame { - msec: 8704 - hash: "11b22e2853c0a9ea6e4ac764348698c9" - } - Frame { - msec: 8720 - hash: "8018329c4b57647942ae34a5f83c2b12" - } - Frame { - msec: 8736 - hash: "c37e9fd5c3d664c2e4911c8cb9fcabf7" - } - Frame { - msec: 8752 - hash: "4e7895f802c9fc249894ba0db25959f7" - } - Frame { - msec: 8768 - hash: "5fed71d99ef70432bc6be8caaea36f17" - } - Frame { - msec: 8784 - hash: "69976d074acbd7a5731c70b33c8f084b" - } - Frame { - msec: 8800 - hash: "c88952348da3df0627b12b8bb05ca13e" - } - Frame { - msec: 8816 - hash: "cc5222da7a17c66d4db146c406492701" - } - Frame { - msec: 8832 - hash: "8915e752776da27cb86019c9decc8a8c" - } - Frame { - msec: 8848 - hash: "d8a77ccc7c01cf187e846a2903e1c55e" - } - Frame { - msec: 8864 - hash: "3cf3f02f98a199c81ef73e8905e7f7ee" - } - Frame { - msec: 8880 - hash: "7a1d47e0109fc370bf63714040cbef96" - } - Frame { - msec: 8896 - hash: "2ca8b8ddbe73b29327e474da34a14a87" - } - Frame { - msec: 8912 - hash: "ee75214865fca848aa38cc05b6049d8f" - } - Frame { - msec: 8928 - hash: "05ab7d8118a806f2215160f5f266a082" - } - Frame { - msec: 8944 - hash: "31e63095b7be56d0bf75e9cff832feb7" - } - Frame { - msec: 8960 - hash: "3ffda2c2f154f1eb806e9f0963057fa1" - } - Frame { - msec: 8976 - hash: "4e805203b58e8f6f331f2e878704fa01" - } - Frame { - msec: 8992 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9008 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9024 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9040 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9056 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9072 - hash: "60edce44dd4ca7fac8d8093990ee5ec1" - } - Frame { - msec: 9088 - hash: "4e805203b58e8f6f331f2e878704fa01" - } - Frame { - msec: 9104 - hash: "3ffda2c2f154f1eb806e9f0963057fa1" - } - Frame { - msec: 9120 - hash: "31e63095b7be56d0bf75e9cff832feb7" - } - Frame { - msec: 9136 - hash: "05ab7d8118a806f2215160f5f266a082" + hash: "7b5de3772b8bcb4b10f3d265d5603afb" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png new file mode 100644 index 0000000..e69860e Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png new file mode 100644 index 0000000..1db3c26 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png new file mode 100644 index 0000000..9c72d52 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.10.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png new file mode 100644 index 0000000..9c72d52 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.11.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png new file mode 100644 index 0000000..fbef805 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png new file mode 100644 index 0000000..dc56c7e Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png new file mode 100644 index 0000000..04ea496 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png new file mode 100644 index 0000000..98bf7de Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png new file mode 100644 index 0000000..d95b895 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png new file mode 100644 index 0000000..9954344 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.7.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png new file mode 100644 index 0000000..d49c2ff Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.8.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png new file mode 100644 index 0000000..9c72d52 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.9.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml new file mode 100644 index 0000000..94891e5 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/data/usingMultilineEdit.qml @@ -0,0 +1,4687 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 32 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 48 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 64 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 80 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 96 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 112 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 128 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 144 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 160 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 176 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 192 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 208 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 224 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 240 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 256 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 272 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 288 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 304 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 320 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 336 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 352 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 368 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 384 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 400 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 118; y: 70 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 416 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 432 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 448 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 464 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 480 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 496 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 512 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 528 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 544 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 560 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 576 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 592 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 608 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 624 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Frame { + msec: 640 + hash: "a4edfba57a47b45f96fe1fa7a37c1720" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 656 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 672 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 117; y: 102 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 688 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 704 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 720 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 736 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 752 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 768 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 784 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 800 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 816 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 832 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 848 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 864 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 880 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 896 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 912 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 928 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 944 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 960 + image: "usingMultilineEdit.0.png" + } + Frame { + msec: 976 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 992 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1008 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1024 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1040 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1056 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1072 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1088 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1104 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1120 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1136 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1152 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1168 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1184 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1200 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1216 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1232 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1248 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1264 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1280 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Frame { + msec: 1296 + hash: "bf9ad629e190df34f8bbb242e986083f" + } + Key { + type: 6 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1312 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1328 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1344 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1360 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Frame { + msec: 1376 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Key { + type: 7 + key: 44 + modifiers: 0 + text: "2c" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "bf65dbbfc02ad1589093d965c83d5806" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1408 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1424 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1440 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1456 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1472 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1488 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1504 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1520 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1536 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Frame { + msec: 1552 + hash: "ef0640a754b76b5e28bff78376f1aaf3" + } + Key { + type: 6 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1568 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Frame { + msec: 1584 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Frame { + msec: 1600 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Key { + type: 7 + key: 68 + modifiers: 0 + text: "64" + autorep: false + count: 1 + } + Frame { + msec: 1616 + hash: "b392b8d675e61166e9707f4a7f191c15" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1632 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1648 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1664 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1680 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1696 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1712 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Frame { + msec: 1728 + hash: "f7a9826581a72f37b1211f1006d93ae5" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1744 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1760 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1776 + hash: "cea68eaed3000fe598917688b49525b7" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1808 + hash: "cea68eaed3000fe598917688b49525b7" + } + Frame { + msec: 1824 + hash: "cea68eaed3000fe598917688b49525b7" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 1840 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1856 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1872 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1888 + hash: "968932500933300e0a0ca711067d6659" + } + Frame { + msec: 1904 + hash: "968932500933300e0a0ca711067d6659" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 1920 + image: "usingMultilineEdit.1.png" + } + Frame { + msec: 1936 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Frame { + msec: 1952 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Frame { + msec: 1968 + hash: "1d5b3f8dc6e0701c0c11a330e055ba5d" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 1984 + hash: "067182091936c99dfa5c29b226bd4351" + } + Frame { + msec: 2000 + hash: "067182091936c99dfa5c29b226bd4351" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 2016 + hash: "067182091936c99dfa5c29b226bd4351" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2032 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2048 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2080 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2096 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2112 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2128 + hash: "810e996b65424f80e229160860805492" + } + Frame { + msec: 2144 + hash: "810e996b65424f80e229160860805492" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2176 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2192 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2208 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2224 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Frame { + msec: 2240 + hash: "10aca130f139e44c0889d8d9c9bb8673" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Key { + type: 6 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2256 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2272 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2288 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2304 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2320 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Key { + type: 7 + key: 82 + modifiers: 0 + text: "72" + autorep: false + count: 1 + } + Frame { + msec: 2336 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Frame { + msec: 2352 + hash: "6785570c7f2cc9f3c6b0b07b8a94ecb2" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2384 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2400 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Frame { + msec: 2416 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 2432 + hash: "701c2738b7c064cd487bd0c6c0beb6b4" + } + Key { + type: 6 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2464 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2480 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2496 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2512 + hash: "35c0c51dd874faa28058251164836dcb" + } + Frame { + msec: 2528 + hash: "35c0c51dd874faa28058251164836dcb" + } + Key { + type: 7 + key: 80 + modifiers: 0 + text: "70" + autorep: false + count: 1 + } + Frame { + msec: 2544 + hash: "35c0c51dd874faa28058251164836dcb" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2560 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2576 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2592 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2608 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 2624 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2640 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2656 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2672 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Frame { + msec: 2688 + hash: "12748fe9d3b72aff29449deeb2372d03" + } + Key { + type: 6 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2704 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2720 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2736 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2752 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2768 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Frame { + msec: 2784 + hash: "0d119074fb7e882ebe4dfbad9bfb401a" + } + Key { + type: 6 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2800 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 7 + key: 76 + modifiers: 0 + text: "6c" + autorep: false + count: 1 + } + Frame { + msec: 2816 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2832 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2848 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2864 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 7 + key: 73 + modifiers: 0 + text: "69" + autorep: false + count: 1 + } + Frame { + msec: 2880 + image: "usingMultilineEdit.2.png" + } + Frame { + msec: 2896 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2912 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Frame { + msec: 2928 + hash: "3646bd6ea35fb8f0160a24a203b0f469" + } + Key { + type: 6 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Frame { + msec: 2944 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Frame { + msec: 2960 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Frame { + msec: 2976 + hash: "d90cbfbec0e5a73781664eec63ba7081" + } + Key { + type: 7 + key: 75 + modifiers: 0 + text: "6b" + autorep: false + count: 1 + } + Key { + type: 6 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 2992 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3008 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3024 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Frame { + msec: 3040 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Key { + type: 7 + key: 69 + modifiers: 0 + text: "65" + autorep: false + count: 1 + } + Frame { + msec: 3056 + hash: "8faa6d1174cf3e8ef10f6575276ed125" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3072 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3088 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3104 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 6 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3120 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 7 + key: 32 + modifiers: 33554432 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3136 + hash: "bac072bfe350abe83fbc941e56845939" + } + Frame { + msec: 3152 + hash: "bac072bfe350abe83fbc941e56845939" + } + Key { + type: 6 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3168 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3184 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3200 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Frame { + msec: 3216 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Key { + type: 7 + key: 73 + modifiers: 33554432 + text: "49" + autorep: false + count: 1 + } + Frame { + msec: 3232 + hash: "386a85651164d0edbeb5cc2b7ee438c7" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3248 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3264 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3280 + hash: "982d48e7ef886a74791306f055ddc714" + } + Frame { + msec: 3296 + hash: "982d48e7ef886a74791306f055ddc714" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3312 + hash: "982d48e7ef886a74791306f055ddc714" + } + Key { + type: 6 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3328 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3344 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3360 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3376 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Frame { + msec: 3392 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Key { + type: 7 + key: 87 + modifiers: 0 + text: "77" + autorep: false + count: 1 + } + Frame { + msec: 3408 + hash: "38003a58f17d25d302c5e1b643b271b0" + } + Key { + type: 6 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Frame { + msec: 3424 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3440 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3456 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3472 + hash: "18d37190d139a1567d91882fdac411d6" + } + Frame { + msec: 3488 + hash: "18d37190d139a1567d91882fdac411d6" + } + Key { + type: 7 + key: 65 + modifiers: 0 + text: "61" + autorep: false + count: 1 + } + Key { + type: 6 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3504 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3520 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3536 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3552 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3568 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Frame { + msec: 3584 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Key { + type: 7 + key: 78 + modifiers: 0 + text: "6e" + autorep: false + count: 1 + } + Frame { + msec: 3600 + hash: "279aa32aaeebea7f8078e8a750d0514b" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3616 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3632 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3648 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Frame { + msec: 3664 + hash: "626123df4dc8fc1321d0262871ffbe3e" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3680 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 3696 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3712 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3728 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 3744 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3760 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3776 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3792 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3808 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3824 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3840 + image: "usingMultilineEdit.3.png" + } + Frame { + msec: 3856 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3872 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3888 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3904 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3920 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3936 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3952 + hash: "00972f42fed66eb94832506b436b203d" + } + Frame { + msec: 3968 + hash: "00972f42fed66eb94832506b436b203d" + } + Key { + type: 6 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 3984 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4000 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4016 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4032 + hash: "72d952ff90862b93ccec046f61d85360" + } + Frame { + msec: 4048 + hash: "72d952ff90862b93ccec046f61d85360" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4064 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Key { + type: 7 + key: 89 + modifiers: 0 + text: "79" + autorep: false + count: 1 + } + Frame { + msec: 4080 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4096 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4112 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Frame { + msec: 4128 + hash: "abd2bd3a1fdf5dbdd5bfdcc84bad136c" + } + Key { + type: 6 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4144 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4160 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4176 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4192 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Frame { + msec: 4208 + hash: "f091e9b3d660c3664960f3fe6f624a1d" + } + Key { + type: 6 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4224 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4240 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 7 + key: 85 + modifiers: 0 + text: "75" + autorep: false + count: 1 + } + Frame { + msec: 4256 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4272 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 7 + key: 32 + modifiers: 0 + text: "20" + autorep: false + count: 1 + } + Frame { + msec: 4288 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4304 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4320 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4336 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4352 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Frame { + msec: 4368 + hash: "bc9ae8ea7f8a7f1089263a20b4a5e826" + } + Key { + type: 6 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4384 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4400 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4416 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4432 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Frame { + msec: 4448 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Key { + type: 7 + key: 84 + modifiers: 0 + text: "74" + autorep: false + count: 1 + } + Frame { + msec: 4464 + hash: "f96b7c209a5e558543157cf5aa4ce69e" + } + Key { + type: 6 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4480 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4496 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4512 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4528 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4544 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 7 + key: 79 + modifiers: 0 + text: "6f" + autorep: false + count: 1 + } + Frame { + msec: 4560 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4576 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4592 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 6 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 4608 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4624 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4640 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4656 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4672 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4688 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4704 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4720 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4736 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4752 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4768 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4784 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4800 + image: "usingMultilineEdit.4.png" + } + Frame { + msec: 4816 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Frame { + msec: 4832 + hash: "67facce41bc51af385bd8102a7e1285e" + } + Key { + type: 6 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4848 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4864 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4880 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4896 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4912 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4928 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4944 + hash: "a616e994d83964ff75d95b702f355937" + } + Key { + type: 7 + key: 63 + modifiers: 33554432 + text: "3f" + autorep: false + count: 1 + } + Frame { + msec: 4960 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4976 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 4992 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5008 + hash: "a616e994d83964ff75d95b702f355937" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 5024 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5040 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5056 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5072 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5088 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5104 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5120 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5136 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5152 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5168 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5184 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5200 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5216 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5232 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5248 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5264 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5280 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5296 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5312 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5328 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5344 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5360 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5376 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5392 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5408 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5424 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5440 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5456 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5472 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5488 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5504 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5520 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5536 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5552 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5568 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5584 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5600 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5616 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5632 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5648 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5664 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5680 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5696 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5712 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5728 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5744 + hash: "a616e994d83964ff75d95b702f355937" + } + Frame { + msec: 5760 + image: "usingMultilineEdit.5.png" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 48; y: 19 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5776 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5792 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5808 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Frame { + msec: 5824 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: 21 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 22 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5840 + hash: "e9532a9023548cf5dfca3fdaeb3467e7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: 23 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: 26 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5856 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 33 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5872 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 36 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 41 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5888 + hash: "3ee2836c3a2ff4c71d82dd261941883b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 56; y: 44 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5904 + hash: "4e620c1b847274f691e80a384eac5320" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 58; y: 52 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5920 + hash: "1a246aa1be0878c38da2eaac6befb738" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 69 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5936 + hash: "7d6d4a33aacd1d2f530834af31069793" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 62; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5952 + hash: "eba517141a4dc94025801fabc8c5e813" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 86 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 90 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5968 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 97 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5984 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 101 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 67; y: 105 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6000 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 111 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6016 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 114 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 116 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6032 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 119 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 122 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6048 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 124 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 128 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6064 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 130 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 132 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6080 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 134 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 137 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6096 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 138 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 140 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6112 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 141 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 144 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6128 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 148 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6144 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 149 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 151 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6160 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 69; y: 153 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6176 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 155 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6192 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6208 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6224 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6240 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Frame { + msec: 6256 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 154 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6272 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 152 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 149 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6288 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 68; y: 145 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 139 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6304 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 126 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6320 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 64; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 63; y: 98 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6336 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 88 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 61; y: 80 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6352 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 72 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 64 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6368 + hash: "a0f4a1f253c763054ca7d9727d517e5c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 59; y: 58 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 51 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6384 + hash: "b6589493e0225846be0af57024e25d98" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 57; y: 37 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6400 + hash: "b6589493e0225846be0af57024e25d98" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 30 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6416 + hash: "d8a1bee2a0e57944d8268a2ce7e6c3c1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 16 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 6 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6432 + hash: "a609d3c9cb375240e66dd316af27543c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -9 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6448 + hash: "0d376060ba0f9843ed814a8d8150d047" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -23 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6464 + hash: "9ad787bf41f0ab66beffff056a115c23" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -31 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -38 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6480 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6496 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6512 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6528 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6544 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6560 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6576 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -48 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6592 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6608 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6624 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6640 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6656 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Frame { + msec: 6672 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -47 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -46 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6688 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 43; y: -45 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -42 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6704 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 44; y: -39 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -36 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6720 + image: "usingMultilineEdit.6.png" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 45; y: -33 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 46; y: -28 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6736 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -25 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 47; y: -21 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6752 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 48; y: -18 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -14 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6768 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 49; y: -10 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -8 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6784 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 50; y: -6 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6800 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 51; y: -1 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 0 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6816 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 2 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 52; y: 3 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6832 + hash: "bc4cd74678c08403bb16b74630d0fd18" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 53; y: 5 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 7 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6848 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 54; y: 8 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 10 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6864 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 11 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6880 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 55; y: 12 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 6896 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6912 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6928 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6944 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6960 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6976 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 6992 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7008 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7024 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7040 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7056 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7072 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Frame { + msec: 7088 + hash: "0e728de352bc8658bb3e2900a56bfad9" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7104 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7120 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7136 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7152 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7168 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 59; y: 44 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 7184 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7200 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7216 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7232 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7248 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7264 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7280 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7296 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7312 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7328 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7344 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7360 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7376 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7392 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7408 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7424 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7440 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7456 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7472 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7488 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7504 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7520 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7536 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7552 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Frame { + msec: 7568 + hash: "c9b766ef3743159fdd7a01d3eeaa357b" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7584 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7600 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7616 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7632 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7648 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7664 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7680 + image: "usingMultilineEdit.7.png" + } + Frame { + msec: 7696 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Frame { + msec: 7712 + hash: "f8d7e167379a5109b1744727b3bb5050" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 7728 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7744 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7760 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7776 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7792 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7808 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7824 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7840 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7856 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7872 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7888 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7904 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7920 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7936 + hash: "d1f43fa2f710725527736ac3439577df" + } + Frame { + msec: 7952 + hash: "d1f43fa2f710725527736ac3439577df" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 7968 + hash: "1553d42725394fa4d4c9b97dc12a78b9" + } + Frame { + msec: 7984 + hash: "1553d42725394fa4d4c9b97dc12a78b9" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8000 + hash: "a62df700f3209668a813e765a79e7859" + } + Frame { + msec: 8016 + hash: "a62df700f3209668a813e765a79e7859" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8032 + hash: "e8928770969b82523e828e3036bbe106" + } + Frame { + msec: 8048 + hash: "e8928770969b82523e828e3036bbe106" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: true + count: 1 + } + Frame { + msec: 8064 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8080 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Key { + type: 6 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8096 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8112 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8128 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8144 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8160 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8176 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Frame { + msec: 8192 + hash: "ba0c406580cc0fa02a6b26367a290ec9" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8208 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8224 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8240 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8256 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8272 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8288 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8304 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Frame { + msec: 8320 + hash: "479b5ba3f5b3d38b5e9aba6b5204da03" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8336 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8352 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8368 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8384 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8400 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8416 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8432 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8448 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Frame { + msec: 8464 + hash: "978ed05f4ea2cc7ddb06807a25883335" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8480 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8496 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8512 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8528 + hash: "b65c439a091d3293352de410d28aaca1" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8544 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8560 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8576 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8592 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8608 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8624 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8640 + image: "usingMultilineEdit.8.png" + } + Frame { + msec: 8656 + hash: "b65c439a091d3293352de410d28aaca1" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 8672 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8688 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8704 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8720 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8736 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8752 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8768 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8784 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8800 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8816 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8832 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8848 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8864 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8880 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8896 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8912 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8928 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8944 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8960 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8976 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 8992 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9008 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9024 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9040 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9056 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9072 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9088 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9104 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9120 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9136 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9152 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9168 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9184 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9200 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 70; y: 73 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9216 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9232 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 74 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9248 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 75 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 76 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9264 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 77 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9280 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 70; y: 78 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9296 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9312 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9328 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9344 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9360 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9376 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9392 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9408 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9424 + hash: "b65c439a091d3293352de410d28aaca1" + } + Frame { + msec: 9440 + hash: "b65c439a091d3293352de410d28aaca1" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9456 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9472 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9488 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9504 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9520 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9536 + hash: "3d08eff16edf54f522a75df1734150df" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 71; y: 94 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 9552 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9568 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9584 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9600 + image: "usingMultilineEdit.9.png" + } + Frame { + msec: 9616 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9632 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9648 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9664 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 6 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 9680 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9696 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9712 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9728 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9744 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9760 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9776 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9792 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9808 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9824 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9840 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9856 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9872 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9888 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9904 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9920 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9936 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9952 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9968 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 9984 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10000 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10016 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10032 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10048 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10064 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10080 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10096 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 6 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10112 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10128 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10144 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10160 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10176 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10192 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10208 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10224 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Key { + type: 7 + key: 16777237 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10240 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10256 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10272 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10288 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10304 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10320 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10336 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Frame { + msec: 10352 + hash: "8d9ca5bff73c2c93a0db5787ca7ef76b" + } + Key { + type: 6 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10368 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10384 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10400 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10416 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10432 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10448 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 7 + key: 16777235 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10464 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10480 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10496 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10512 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10528 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10544 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10560 + image: "usingMultilineEdit.10.png" + } + Frame { + msec: 10576 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10592 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10608 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10624 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10640 + hash: "3d08eff16edf54f522a75df1734150df" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 10656 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10672 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10688 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10704 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10720 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10736 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10752 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10768 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10784 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10800 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10816 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10832 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10848 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10864 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10880 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10896 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10912 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10928 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10944 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10960 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10976 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 10992 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11008 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11024 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11040 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11056 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11072 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11088 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11104 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11120 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11136 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11152 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11168 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11184 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11200 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11216 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11232 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11248 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11264 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11280 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11296 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11312 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11328 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11344 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11360 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11376 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11392 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11408 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11424 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11440 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11456 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11472 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11488 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11504 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11520 + image: "usingMultilineEdit.11.png" + } + Frame { + msec: 11536 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11552 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11568 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11584 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11600 + hash: "3d08eff16edf54f522a75df1734150df" + } + Frame { + msec: 11616 + hash: "3d08eff16edf54f522a75df1734150df" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml index b5bb102..d7054ba 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/qt-669.qml @@ -2,14 +2,13 @@ import QtQuick 1.0 Rectangle { Component { id: testableCursor - //Doesn't blink + //This shouldn't blink Rectangle { color:"black" width:1 } } - color: "green" - width:400; + width:300; height:40; TextEdit { focus: true; diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml index 4cf7e97..f03e1cc 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextedit/usingMultilineEdit.qml @@ -1,13 +1,14 @@ import QtQuick 1.0 Rectangle{ - width: 600 - height: 200 + width: 280 + height: 140 Column{ MultilineEdit{ text: 'I am the very model of a modern major general. I\'ve information vegetable, animal and mineral. I know the kings of england and I quote the fights historical - from Marathon to Waterloo in order categorical.'; width: 182; height: 60; } + Rectangle{height: 20; width: 20;}//Spacer MultilineEdit{text: 'Hello world'} } } -- cgit v0.12 From 33f7a5d7f64dd0eed23a83f785f92466611dbc40 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Thu, 28 Oct 2010 18:59:53 +1000 Subject: Clean up qmlvisual/qdeclarativetextinput visual tests Platform visuals and some cleanup after extended neglect Task-number: QTBUG-14792 --- .../qdeclarativetextinput/cursorDelegate.qml | 4 +- .../data-X11/cursorDelegate.0.png | Bin 0 -> 3153 bytes .../data-X11/cursorDelegate.1.png | Bin 0 -> 3622 bytes .../data-X11/cursorDelegate.2.png | Bin 0 -> 3163 bytes .../data-X11/cursorDelegate.3.png | Bin 0 -> 3145 bytes .../data-X11/cursorDelegate.4.png | Bin 0 -> 3143 bytes .../data-X11/cursorDelegate.qml | 1551 ++++++++++ .../qdeclarativetextinput/data-X11/echoMode.0.png | Bin 716 -> 570 bytes .../qdeclarativetextinput/data-X11/echoMode.1.png | Bin 1352 -> 1061 bytes .../qdeclarativetextinput/data-X11/echoMode.2.png | Bin 2047 -> 1661 bytes .../qdeclarativetextinput/data-X11/echoMode.3.png | Bin 2827 -> 0 bytes .../qdeclarativetextinput/data-X11/echoMode.4.png | Bin 2827 -> 0 bytes .../qdeclarativetextinput/data-X11/echoMode.qml | 376 +-- .../qdeclarativetextinput/data-X11/hAlign.0.png | Bin 1245 -> 0 bytes .../qdeclarativetextinput/data-X11/hAlign.qml | 50 +- .../data-X11/usingLineEdit.0.png | Bin 3137 -> 2659 bytes .../data-X11/usingLineEdit.1.png | Bin 3195 -> 2696 bytes .../data-X11/usingLineEdit.10.png | Bin 3853 -> 3331 bytes .../data-X11/usingLineEdit.2.png | Bin 3171 -> 2659 bytes .../data-X11/usingLineEdit.3.png | Bin 3228 -> 2682 bytes .../data-X11/usingLineEdit.4.png | Bin 3198 -> 2695 bytes .../data-X11/usingLineEdit.5.png | Bin 3310 -> 2825 bytes .../data-X11/usingLineEdit.6.png | Bin 3233 -> 2681 bytes .../data-X11/usingLineEdit.7.png | Bin 3607 -> 3111 bytes .../data-X11/usingLineEdit.8.png | Bin 3657 -> 3178 bytes .../data-X11/usingLineEdit.9.png | Bin 3262 -> 2806 bytes .../data-X11/usingLineEdit.qml | 1386 ++++----- .../data/cursorDelegate.0.png | Bin 3314 -> 0 bytes .../data/cursorDelegate.1.png | Bin 3377 -> 0 bytes .../data/cursorDelegate.2.png | Bin 3323 -> 0 bytes .../data/cursorDelegate.3.png | Bin 3325 -> 0 bytes .../data/cursorDelegate.4.png | Bin 3322 -> 0 bytes .../data/cursorDelegate.5.png | Bin 3322 -> 0 bytes .../data/cursorDelegate.6.png | Bin 3326 -> 0 bytes .../data/cursorDelegate.7.png | Bin 3814 -> 0 bytes .../data/cursorDelegate.8.png | Bin 3324 -> 0 bytes .../qdeclarativetextinput/data/cursorDelegate.qml | 2966 ++++---------------- .../qdeclarativetextinput/data/echoMode.0.png | Bin 999 -> 0 bytes .../qdeclarativetextinput/data/echoMode.1.png | Bin 1880 -> 0 bytes .../qdeclarativetextinput/data/echoMode.2.png | Bin 2962 -> 0 bytes .../qdeclarativetextinput/data/echoMode.3.png | Bin 2827 -> 0 bytes .../qdeclarativetextinput/data/echoMode.4.png | Bin 2827 -> 0 bytes .../qdeclarativetextinput/data/hAlign.0.png | Bin 1245 -> 0 bytes .../qmlvisual/qdeclarativetextinput/hAlign.qml | 1 + 44 files changed, 3029 insertions(+), 3305 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.5.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.6.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.7.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.8.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml index 973462a..69dc32a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/cursorDelegate.qml @@ -11,8 +11,8 @@ import QtQuick 1.0 Rectangle { id:bottom; color: "black"; width: 3; height: 1; x: -1; anchors.bottom: parent.bottom;} opacity: 1 SequentialAnimation on opacity { running: cPage.parent.focus == true; loops: Animation.Infinite; - NumberAnimation { properties: "opacity"; to: 1; duration: 500; easing.type: "InQuad"} - NumberAnimation { properties: "opacity"; to: 0; duration: 500; easing.type: "OutQuad"} + NumberAnimation { to: 1; duration: 500; easing.type: "InQuad"} + NumberAnimation { to: 0; duration: 500; easing.type: "OutQuad"} } } width: 1; diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png new file mode 100644 index 0000000..5ab78c0 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png new file mode 100644 index 0000000..3cd1c11 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png new file mode 100644 index 0000000..c0e738e Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png new file mode 100644 index 0000000..a373ded Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png new file mode 100644 index 0000000..647984d Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml new file mode 100644 index 0000000..6eb74ea --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/cursorDelegate.qml @@ -0,0 +1,1551 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 32 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 48 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 64 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 80 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 96 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 112 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 128 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 144 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 160 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 176 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 192 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 208 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 224 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 240 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 256 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 272 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 288 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 304 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 320 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 336 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 352 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 368 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 384 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 400 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 416 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 432 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Frame { + msec: 448 + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 464 + hash: "97eff9733db71f7c5d396969582c572b" + } + Frame { + msec: 480 + hash: "97eff9733db71f7c5d396969582c572b" + } + Frame { + msec: 496 + hash: "97eff9733db71f7c5d396969582c572b" + } + Frame { + msec: 512 + hash: "97eff9733db71f7c5d396969582c572b" + } + Frame { + msec: 528 + hash: "87902d32dba1439e71ce5f57f514748e" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 544 + hash: "cad95931a38718eb481a9175fdfec305" + } + Frame { + msec: 560 + hash: "1dc99e5c7e4d2fa6b624b6df250b78fc" + } + Frame { + msec: 576 + hash: "5d5739beb039a83bebb2c41489166edf" + } + Frame { + msec: 592 + hash: "6320c9a1c0013f5aa6180992b934ca59" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 608 + hash: "9d9837c1f3779e5dab0dfeb1d11fdea1" + } + Frame { + msec: 624 + hash: "9d868112eaf70ce02ce93603278a565d" + } + Frame { + msec: 640 + hash: "d2bccb3184d3bb42b91017410a8655b6" + } + Frame { + msec: 656 + hash: "68f8be3e16637fd39a35f0cebb62b74a" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 672 + hash: "04f5781b57ed9fee32d5ef80dc33f4ff" + } + Frame { + msec: 688 + hash: "06cc2e24a848d441074de5ddff1c739a" + } + Frame { + msec: 704 + hash: "94526186deb7248ac9c747ede15b106d" + } + Frame { + msec: 720 + hash: "1ac130517df314f4f44b9bde2d3dcc53" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 736 + hash: "270ecf4900e94d60599ded230633aa02" + } + Frame { + msec: 752 + hash: "ef2093584cbce9182b99f297fcd2465d" + } + Frame { + msec: 768 + hash: "c445cf5f56213a712585934681d8af55" + } + Frame { + msec: 784 + hash: "9f0edb3871e015a549622e1b70d1b748" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 800 + hash: "144c51d7aa47ea8cc8d79a97efa4b430" + } + Frame { + msec: 816 + hash: "34f768a7c99dfb3c8f0e1fb1a08a37ac" + } + Frame { + msec: 832 + hash: "4f3970c4ad02b69f96c11610494e8a50" + } + Frame { + msec: 848 + hash: "815a1cf66f0c9eb47e244753eebb83ba" + } + Frame { + msec: 864 + hash: "5db11f795c000b382fdc30726a711c65" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 880 + hash: "67976ee172d0d55992c0e4734fbb7ccf" + } + Frame { + msec: 896 + hash: "c764e4d5317acbbf5118a08565e5d5fd" + } + Frame { + msec: 912 + hash: "a83f566d01b990e91f43bb63a58fb5b8" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 928 + hash: "031282f352e01f23bc5f73bf8ce82c9a" + } + Frame { + msec: 944 + hash: "1f3dc1d3ad0304376eac5d60d3c226ee" + } + Frame { + msec: 960 + image: "cursorDelegate.0.png" + } + Frame { + msec: 976 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 992 + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1008 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 1024 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 1040 + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1056 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 1072 + hash: "a2ad07326fafcb3012cdb869f39af466" + } + Frame { + msec: 1088 + hash: "8622eb25a6da44926b5161bce213a483" + } + Frame { + msec: 1104 + hash: "ccbd4d1e4865ebd9b0fe923e6ab05e5c" + } + Frame { + msec: 1120 + hash: "775cd79b012f79b773449a0ad8457149" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1136 + hash: "2a4ed061e512c5afd11072c4b707f707" + } + Frame { + msec: 1152 + hash: "c855df7b17811f25fd17e4fb108c02e1" + } + Frame { + msec: 1168 + hash: "46c37d8e67ece5cae4f766acf50f3ca3" + } + Frame { + msec: 1184 + hash: "95a70f14ce01aae61190080ed3d55c77" + } + Frame { + msec: 1200 + hash: "87da182d1285f3613bb2e4673e701757" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1216 + hash: "5b97f13f43e713a6fbe96bdca8969191" + } + Frame { + msec: 1232 + hash: "4d003182e7b7b0a05413b80f82a0fc41" + } + Frame { + msec: 1248 + hash: "dba09e038291a8dfdc61911d6b4b9bdf" + } + Frame { + msec: 1264 + hash: "a2ae1e5cc6cd72fae70804e07df5a8a1" + } + Frame { + msec: 1280 + hash: "f1c2a24b6f0ebcf98122e8db1cdcb66f" + } + Frame { + msec: 1296 + hash: "142dade1639655132435ae260b7935a0" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1312 + hash: "e80c0175d947bceef4bf53b60bf7eac0" + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1328 + hash: "de912cd8bd2fe762ec6b1ec819732507" + } + Frame { + msec: 1344 + hash: "d3fa9dfab37ee26572d25bcbe8c66b72" + } + Frame { + msec: 1360 + hash: "33bdb2817a2858ce430813d0774f0172" + } + Frame { + msec: 1376 + hash: "4f10f0ffb6b1c87155eedd53af36c74f" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "1b94be0de8412bd9380689895f290af7" + } + Frame { + msec: 1408 + hash: "48b3a5e2b04c86a75f4b6595eb2c1f55" + } + Frame { + msec: 1424 + hash: "d092fabd3dd51c718486e1e7dadaa0dc" + } + Frame { + msec: 1440 + hash: "243359437235563f1a60b8eaf63365b6" + } + Frame { + msec: 1456 + hash: "a986c8ed8ad2d8b6aab2a001906ba2ad" + } + Frame { + msec: 1472 + hash: "da5e06dc481e9cb7d9159a84d0cc150a" + } + Frame { + msec: 1488 + hash: "1d70a05fce3a05477e21d22b127ae96a" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1504 + hash: "913448213a07f6c8427c8e310d2026de" + } + Frame { + msec: 1520 + hash: "51bef5ae52977a935b66af4baf1da4e6" + } + Frame { + msec: 1536 + hash: "367bc25f868c23005d7fe903a9ea681b" + } + Frame { + msec: 1552 + hash: "3c25181652e788d128ed571ca4fea0b1" + } + Frame { + msec: 1568 + hash: "0218f939ff2b8c0bc22a537ed0f053f0" + } + Frame { + msec: 1584 + hash: "a3b765a823b2b3811273a1be90850533" + } + Frame { + msec: 1600 + hash: "2a42a29774eb4f962d299f8c2c213d55" + } + Frame { + msec: 1616 + hash: "1f0ad54d0fe8fc27cadbaaeaa37364e0" + } + Frame { + msec: 1632 + hash: "04d6028d1b1a1178e5bf774db8eef2c6" + } + Frame { + msec: 1648 + hash: "c325e46e89e8df04e2c3d8bf111c5f09" + } + Frame { + msec: 1664 + hash: "70e6223ce16a797e2c56e21ad74b188b" + } + Frame { + msec: 1680 + hash: "0fb8762fd28564b84b83c17d749a3645" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1696 + hash: "ef5d19b59792ea8822e2391fe0d91dbd" + } + Frame { + msec: 1712 + hash: "70ad15030164be8afbb4ab22d1ae5f5f" + } + Frame { + msec: 1728 + hash: "a5dfb8bd4b681e0d8d2c082821a2a976" + } + Frame { + msec: 1744 + hash: "864781fbb8673b1e603df015f2d88601" + } + Frame { + msec: 1760 + hash: "0bdb6a155cdd14f4dce9fde3c5116dde" + } + Frame { + msec: 1776 + hash: "5421f521a9bdccc8478fcee97e0dbc99" + } + Frame { + msec: 1792 + hash: "c5f29693dd017932767f37e2fb2f22f2" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1808 + hash: "b5e8abeaec33407e673f8021212528b1" + } + Frame { + msec: 1824 + hash: "917c968e5ee8f0b25fdb175719d7dbfa" + } + Frame { + msec: 1840 + hash: "56495c63676b9f73004e76e38d60567e" + } + Frame { + msec: 1856 + hash: "86f1ccdd7ff408c5b141d79797eea1fa" + } + Key { + type: 7 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1872 + hash: "9e9b32a9f71ab1aa4e87ddc323ccda03" + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1888 + hash: "360aef37452ce8f045659c227285cb82" + } + Frame { + msec: 1904 + hash: "805949377c620fa4310aa4328eba1f23" + } + Frame { + msec: 1920 + image: "cursorDelegate.1.png" + } + Frame { + msec: 1936 + hash: "00df8110a2008ba77b7e0bf2130e5319" + } + Frame { + msec: 1952 + hash: "835f6f723577071461e41da1fd2e990a" + } + Frame { + msec: 1968 + hash: "6876cafa4d6d3a7d387602eba4d26db1" + } + Frame { + msec: 1984 + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Frame { + msec: 2000 + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Frame { + msec: 2016 + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Frame { + msec: 2032 + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2048 + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2064 + hash: "6876cafa4d6d3a7d387602eba4d26db1" + } + Frame { + msec: 2080 + hash: "835f6f723577071461e41da1fd2e990a" + } + Frame { + msec: 2096 + hash: "00df8110a2008ba77b7e0bf2130e5319" + } + Frame { + msec: 2112 + hash: "627206a252bd6fcbf57d9f1cde0506bb" + } + Frame { + msec: 2128 + hash: "805949377c620fa4310aa4328eba1f23" + } + Frame { + msec: 2144 + hash: "360aef37452ce8f045659c227285cb82" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" + } + Frame { + msec: 2176 + hash: "520a544fd92f17a14380803e253b396f" + } + Frame { + msec: 2192 + hash: "4a080a5154c517e6bcf24b3a1f1d7f2c" + } + Frame { + msec: 2208 + hash: "e83642b0793f5a790efca65ccf20a720" + } + Frame { + msec: 2224 + hash: "8210b9cbf19f519ee34f4bb1a6afce16" + } + Frame { + msec: 2240 + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" + } + Key { + type: 7 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2256 + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" + } + Frame { + msec: 2272 + hash: "718ac9cb5ef2992b06b34e957f987b7a" + } + Frame { + msec: 2288 + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" + } + Frame { + msec: 2304 + hash: "c0eb56c72311263d892ce65331547531" + } + Frame { + msec: 2320 + hash: "585ad3efb7330de889b8cf56a51a0899" + } + Frame { + msec: 2336 + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" + } + Frame { + msec: 2352 + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2368 + hash: "1dddd18a4ef66df9d9b431b2860e24d1" + } + Frame { + msec: 2384 + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" + } + Frame { + msec: 2400 + hash: "062091bc7a5f3296c669614318b80fe7" + } + Frame { + msec: 2416 + hash: "836f37fe92a46233640e0bd2c0932fea" + } + Frame { + msec: 2432 + hash: "f14ec1544a380fc9993b39754c23c2f4" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2448 + hash: "2d549b5fea734e47682415df1717e6a6" + } + Frame { + msec: 2464 + hash: "824c5960260dd3ed7527709ebfb06d27" + } + Frame { + msec: 2480 + hash: "258f034fe1e71f25a92e667e05f53e82" + } + Frame { + msec: 2496 + hash: "c432e758e19c44d788cb38df6e4c6d69" + } + Frame { + msec: 2512 + hash: "a1856592208f9a00385b13c44e1c4503" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2528 + hash: "2b4d40a0555df0b86f52d13790185459" + } + Frame { + msec: 2544 + hash: "b153143e6b16c47fa06663dc6b1034d6" + } + Frame { + msec: 2560 + hash: "ac52236c5d73aeae7c0834df1e6bd84e" + } + Frame { + msec: 2576 + hash: "136eeb348b0b96edc9aaf9fbea741973" + } + Frame { + msec: 2592 + hash: "4f8a1dfa8906de2bcdfbf5c3b29fbf9b" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2608 + hash: "7dc9726df2d112b46f4d9dbe66d534c7" + } + Frame { + msec: 2624 + hash: "f64086ca0e83fa8bb0fae28065260fdc" + } + Frame { + msec: 2640 + hash: "5237dd2b79d71bbfa0a0d3963a7f42b7" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2656 + hash: "8dd435b577bb258979d33034885a8cd8" + } + Frame { + msec: 2672 + hash: "2609c066b8f102b4189991bf7d01eaad" + } + Frame { + msec: 2688 + hash: "986fab22391264d04df9a55b18aee645" + } + Frame { + msec: 2704 + hash: "0256423680aa0843fe8ec84f5e68fc9b" + } + Frame { + msec: 2720 + hash: "b822bdcad69aa868f48b2bbf2d62e297" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2736 + hash: "14effed70ca60233be9b2f6d0a1b5e6c" + } + Frame { + msec: 2752 + hash: "1abaf2c36a0fb9f04606c0e191d113cf" + } + Frame { + msec: 2768 + hash: "cffb8ca29b0369d183d6461bf9e63fdf" + } + Frame { + msec: 2784 + hash: "9378bebddb09036bec98ff7018dcf7c1" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2800 + hash: "0c3823994ee8f838c26040118ba62622" + } + Frame { + msec: 2816 + hash: "d374547f47adc81a18428c7a79cb9cf2" + } + Frame { + msec: 2832 + hash: "449c2996a2d0e74f2300adad619700bc" + } + Frame { + msec: 2848 + hash: "14379a320b6fc36de5d2a6776f1dc963" + } + Frame { + msec: 2864 + hash: "cb010a99ffa3b6df26c6cd263a21cfcd" + } + Frame { + msec: 2880 + image: "cursorDelegate.2.png" + } + Frame { + msec: 2896 + hash: "a445d23288d462009916e31f370a2068" + } + Frame { + msec: 2912 + hash: "8b3f2811300830e837797056f262bec2" + } + Frame { + msec: 2928 + hash: "2303a27e72334cae84b4fe51a62974ba" + } + Frame { + msec: 2944 + hash: "f3a9f3e74d2d83e38aee78cab7209bd6" + } + Frame { + msec: 2960 + hash: "ca4777127a535655f057af57cf3e8c7b" + } + Frame { + msec: 2976 + hash: "de2b65920fa9177a79019f33712c2275" + } + Frame { + msec: 2992 + hash: "de2b65920fa9177a79019f33712c2275" + } + Frame { + msec: 3008 + hash: "de2b65920fa9177a79019f33712c2275" + } + Frame { + msec: 3024 + hash: "de2b65920fa9177a79019f33712c2275" + } + Frame { + msec: 3040 + hash: "de2b65920fa9177a79019f33712c2275" + } + Frame { + msec: 3056 + hash: "de2b65920fa9177a79019f33712c2275" + } + Frame { + msec: 3072 + hash: "ca4777127a535655f057af57cf3e8c7b" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3088 + hash: "83cfb141f6b77fa062443a442a5b2e9e" + } + Frame { + msec: 3104 + hash: "b3e262864238d03f988c9750cc74e48f" + } + Frame { + msec: 3120 + hash: "6ed2086ae01be46f0684bbecc05484c4" + } + Frame { + msec: 3136 + hash: "91f6dad8f05577af6e4f5f0aceb06b4b" + } + Frame { + msec: 3152 + hash: "1bfb0c299c3c0db0518eaa54137c22b0" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3168 + hash: "37cc96ef4b760faadf76cc471f6ba49a" + } + Frame { + msec: 3184 + hash: "67c848bf93e845eaf5eebc9b8e57482c" + } + Frame { + msec: 3200 + hash: "e3906ad9b1dfbd1170364c11ff4b286f" + } + Frame { + msec: 3216 + hash: "24dd59673c5659e3bf6f52723e1bcd07" + } + Frame { + msec: 3232 + hash: "4b694f05f147bcf901a16807d4e3ec7c" + } + Frame { + msec: 3248 + hash: "9d9dbf34f6a67a49210caa249b8a1abb" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3264 + hash: "5381cde4763aa45c97793124e42db6f5" + } + Frame { + msec: 3280 + hash: "0f113c0263faa47428c4d16891ac4d4f" + } + Frame { + msec: 3296 + hash: "cc1767ec13803959333cd35bfb2d9119" + } + Frame { + msec: 3312 + hash: "ec1b4c71f9bd63ccf6d766b0b2f68b30" + } + Frame { + msec: 3328 + hash: "114ad78597ede2afc4dd8bafa1d4df21" + } + Frame { + msec: 3344 + hash: "d08dc22ddc707316483f09b796ea0380" + } + Frame { + msec: 3360 + hash: "135b2b0f4e469b207e673d1e7086cd4f" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3376 + hash: "4267354fe0d24597bdb5ee1a6e9affbb" + } + Frame { + msec: 3392 + hash: "700bd56ecea646bbec2017007bbb5b84" + } + Frame { + msec: 3408 + hash: "874a65c2069f4ba89301c129f884f217" + } + Frame { + msec: 3424 + hash: "b5ec22f95abb43c83533f7dc606667f6" + } + Frame { + msec: 3440 + hash: "445de6663e80d1fe1527ec5acf4ec1de" + } + Frame { + msec: 3456 + hash: "87c129a5bf08536d3fca90375283e26b" + } + Frame { + msec: 3472 + hash: "a63e2438a9cd412c2b119cd42b11009f" + } + Frame { + msec: 3488 + hash: "61a3475bef5fd276b836cf3483526f57" + } + Frame { + msec: 3504 + hash: "097ab9a1a1fe9743f162f57b93599fe7" + } + Key { + type: 7 + key: 16777249 + modifiers: 100663296 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3520 + hash: "ebae1fb540c6ff6b0bc9a951391e2e94" + } + Frame { + msec: 3536 + hash: "ffc2da2e4c091eadaa9746b42b56d9e4" + } + Key { + type: 7 + key: 16777248 + modifiers: 33554432 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 3552 + hash: "f243d823fc9977e69a008010d8db8a01" + } + Frame { + msec: 3568 + hash: "592ac5bbf1c4b3a360be4d76c40a2be2" + } + Frame { + msec: 3584 + hash: "bd5b206097f30dfce884a8c74856857d" + } + Frame { + msec: 3600 + hash: "f14ec1544a380fc9993b39754c23c2f4" + } + Frame { + msec: 3616 + hash: "836f37fe92a46233640e0bd2c0932fea" + } + Frame { + msec: 3632 + hash: "062091bc7a5f3296c669614318b80fe7" + } + Frame { + msec: 3648 + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" + } + Frame { + msec: 3664 + hash: "1dddd18a4ef66df9d9b431b2860e24d1" + } + Frame { + msec: 3680 + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" + } + Frame { + msec: 3696 + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" + } + Frame { + msec: 3712 + hash: "585ad3efb7330de889b8cf56a51a0899" + } + Frame { + msec: 3728 + hash: "c0eb56c72311263d892ce65331547531" + } + Frame { + msec: 3744 + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" + } + Frame { + msec: 3760 + hash: "718ac9cb5ef2992b06b34e957f987b7a" + } + Frame { + msec: 3776 + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" + } + Frame { + msec: 3792 + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" + } + Frame { + msec: 3808 + hash: "8210b9cbf19f519ee34f4bb1a6afce16" + } + Frame { + msec: 3824 + hash: "e83642b0793f5a790efca65ccf20a720" + } + Frame { + msec: 3840 + image: "cursorDelegate.3.png" + } + Frame { + msec: 3856 + hash: "520a544fd92f17a14380803e253b396f" + } + Frame { + msec: 3872 + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" + } + Frame { + msec: 3888 + hash: "5ee8c9dc7b238db131b3a078e46a8bbd" + } + Frame { + msec: 3904 + hash: "69720bcca91f99f229aebc74c5e74261" + } + Frame { + msec: 3920 + hash: "41d8f4031223f7c833d50208e231964a" + } + Frame { + msec: 3936 + hash: "6fa8fd3252f367f3fafea4e3c7317a48" + } + Frame { + msec: 3952 + hash: "8a1b63c42867f87a1cf4b47944b3860a" + } + Frame { + msec: 3968 + hash: "8c6052eb4cf03d7742a73874d9f15285" + } + Frame { + msec: 3984 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4000 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4016 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4032 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4048 + hash: "7bae45481596788afde8866a3c97edd7" + } + Frame { + msec: 4064 + hash: "8c6052eb4cf03d7742a73874d9f15285" + } + Frame { + msec: 4080 + hash: "8a1b63c42867f87a1cf4b47944b3860a" + } + Frame { + msec: 4096 + hash: "6fa8fd3252f367f3fafea4e3c7317a48" + } + Frame { + msec: 4112 + hash: "41d8f4031223f7c833d50208e231964a" + } + Frame { + msec: 4128 + hash: "69720bcca91f99f229aebc74c5e74261" + } + Frame { + msec: 4144 + hash: "5ee8c9dc7b238db131b3a078e46a8bbd" + } + Frame { + msec: 4160 + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" + } + Frame { + msec: 4176 + hash: "520a544fd92f17a14380803e253b396f" + } + Frame { + msec: 4192 + hash: "4a080a5154c517e6bcf24b3a1f1d7f2c" + } + Frame { + msec: 4208 + hash: "e83642b0793f5a790efca65ccf20a720" + } + Frame { + msec: 4224 + hash: "8210b9cbf19f519ee34f4bb1a6afce16" + } + Frame { + msec: 4240 + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" + } + Frame { + msec: 4256 + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" + } + Frame { + msec: 4272 + hash: "718ac9cb5ef2992b06b34e957f987b7a" + } + Frame { + msec: 4288 + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" + } + Frame { + msec: 4304 + hash: "c0eb56c72311263d892ce65331547531" + } + Frame { + msec: 4320 + hash: "585ad3efb7330de889b8cf56a51a0899" + } + Frame { + msec: 4336 + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" + } + Frame { + msec: 4352 + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" + } + Frame { + msec: 4368 + hash: "1dddd18a4ef66df9d9b431b2860e24d1" + } + Frame { + msec: 4384 + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" + } + Frame { + msec: 4400 + hash: "062091bc7a5f3296c669614318b80fe7" + } + Frame { + msec: 4416 + hash: "836f37fe92a46233640e0bd2c0932fea" + } + Frame { + msec: 4432 + hash: "f14ec1544a380fc9993b39754c23c2f4" + } + Frame { + msec: 4448 + hash: "bd5b206097f30dfce884a8c74856857d" + } + Frame { + msec: 4464 + hash: "592ac5bbf1c4b3a360be4d76c40a2be2" + } + Frame { + msec: 4480 + hash: "f243d823fc9977e69a008010d8db8a01" + } + Frame { + msec: 4496 + hash: "ffc2da2e4c091eadaa9746b42b56d9e4" + } + Frame { + msec: 4512 + hash: "ebae1fb540c6ff6b0bc9a951391e2e94" + } + Frame { + msec: 4528 + hash: "097ab9a1a1fe9743f162f57b93599fe7" + } + Frame { + msec: 4544 + hash: "61a3475bef5fd276b836cf3483526f57" + } + Frame { + msec: 4560 + hash: "a63e2438a9cd412c2b119cd42b11009f" + } + Frame { + msec: 4576 + hash: "87c129a5bf08536d3fca90375283e26b" + } + Frame { + msec: 4592 + hash: "445de6663e80d1fe1527ec5acf4ec1de" + } + Frame { + msec: 4608 + hash: "b5ec22f95abb43c83533f7dc606667f6" + } + Frame { + msec: 4624 + hash: "874a65c2069f4ba89301c129f884f217" + } + Frame { + msec: 4640 + hash: "700bd56ecea646bbec2017007bbb5b84" + } + Frame { + msec: 4656 + hash: "4267354fe0d24597bdb5ee1a6e9affbb" + } + Frame { + msec: 4672 + hash: "135b2b0f4e469b207e673d1e7086cd4f" + } + Frame { + msec: 4688 + hash: "d08dc22ddc707316483f09b796ea0380" + } + Frame { + msec: 4704 + hash: "114ad78597ede2afc4dd8bafa1d4df21" + } + Frame { + msec: 4720 + hash: "ec1b4c71f9bd63ccf6d766b0b2f68b30" + } + Frame { + msec: 4736 + hash: "cc1767ec13803959333cd35bfb2d9119" + } + Frame { + msec: 4752 + hash: "0f113c0263faa47428c4d16891ac4d4f" + } + Frame { + msec: 4768 + hash: "5381cde4763aa45c97793124e42db6f5" + } + Frame { + msec: 4784 + hash: "99940d6744ac1245f82d62f08c371285" + } + Frame { + msec: 4800 + image: "cursorDelegate.4.png" + } + Frame { + msec: 4816 + hash: "77bbed46c7eb023252cdd80d0a15f38a" + } + Frame { + msec: 4832 + hash: "36ee4da72825e96d5f670c94865a30d8" + } + Frame { + msec: 4848 + hash: "c64d56c1b7df0a5c63ab8ff08ae6daf9" + } + Frame { + msec: 4864 + hash: "942e038a3426fa318212a8f245141225" + } + Frame { + msec: 4880 + hash: "c033ebaee12dd8fe953e91160f986c3d" + } + Frame { + msec: 4896 + hash: "07e64024cf7eda082297f6f83dba8067" + } + Frame { + msec: 4912 + hash: "b33cd5bbb90d435dd7ea3ab67bef88ee" + } + Frame { + msec: 4928 + hash: "90712efd7c17b0ad33d2c2c02e9eaa97" + } + Frame { + msec: 4944 + hash: "7e2e55555ee2c7e172e61ddb6365355d" + } + Frame { + msec: 4960 + hash: "87ca0584879b25336a1023ac3252fc9a" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png index f30ee4f..e7e4ad8 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png index 7ae3b94..07a19e2 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png index 636afe8..075c4d5 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png deleted file mode 100644 index aa24805..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.4.png deleted file mode 100644 index aa24805..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml index b5a4837..31d3592 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/echoMode.qml @@ -6,11 +6,11 @@ VisualTest { } Frame { msec: 16 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 32 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Key { type: 6 @@ -22,83 +22,83 @@ VisualTest { } Frame { msec: 48 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 64 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 80 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 96 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 112 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 128 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 144 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 160 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 176 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 192 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 208 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 224 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 240 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 256 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 272 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 288 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 304 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 320 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 336 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Frame { msec: 352 - hash: "48400809c3862dae64b0cd00d51057a4" + hash: "eff6a4491bc00e5570ea73a1371f63fc" } Key { type: 6 @@ -110,23 +110,23 @@ VisualTest { } Frame { msec: 368 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 384 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 400 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 416 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 432 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Key { type: 7 @@ -138,27 +138,27 @@ VisualTest { } Frame { msec: 448 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 464 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 480 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 496 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 512 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "86f9d315291a08f35f1c431ae802ada2" } Frame { msec: 528 - hash: "4acf112eda369b7eb351e0e522cefa05" + hash: "48b0300c8109a227176bd90e6b8ca682" } Key { type: 7 @@ -170,43 +170,43 @@ VisualTest { } Frame { msec: 544 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 560 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 576 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 592 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 608 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 624 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 640 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 656 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 672 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Frame { msec: 688 - hash: "238dc96885dadb763bfc1500d8b7c5b2" + hash: "48b0300c8109a227176bd90e6b8ca682" } Key { type: 6 @@ -218,23 +218,23 @@ VisualTest { } Frame { msec: 704 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Frame { msec: 720 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Frame { msec: 736 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Frame { msec: 752 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Frame { msec: 768 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Key { type: 7 @@ -246,23 +246,23 @@ VisualTest { } Frame { msec: 784 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Frame { msec: 800 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Frame { msec: 816 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Frame { msec: 832 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Frame { msec: 848 - hash: "2da540e72d88932b61a261d791fc34b0" + hash: "7de871fbd0f87da5c31216863f6eb0ba" } Key { type: 6 @@ -274,15 +274,15 @@ VisualTest { } Frame { msec: 864 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "2fa1f1853e1ebf127fcb42ba072bc66f" } Frame { msec: 880 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "2fa1f1853e1ebf127fcb42ba072bc66f" } Frame { msec: 896 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "2fa1f1853e1ebf127fcb42ba072bc66f" } Key { type: 7 @@ -294,15 +294,15 @@ VisualTest { } Frame { msec: 912 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "2fa1f1853e1ebf127fcb42ba072bc66f" } Frame { msec: 928 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "2fa1f1853e1ebf127fcb42ba072bc66f" } Frame { msec: 944 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "2fa1f1853e1ebf127fcb42ba072bc66f" } Frame { msec: 960 @@ -310,7 +310,7 @@ VisualTest { } Frame { msec: 976 - hash: "25ade09747f07a9bdd07f5885a72dc55" + hash: "2fa1f1853e1ebf127fcb42ba072bc66f" } Key { type: 6 @@ -322,19 +322,19 @@ VisualTest { } Frame { msec: 992 - hash: "0a60e76e96846f9f4e909f7a01ede377" + hash: "7bd52cf50949b283ec40b82cf457841a" } Frame { msec: 1008 - hash: "0a60e76e96846f9f4e909f7a01ede377" + hash: "7bd52cf50949b283ec40b82cf457841a" } Frame { msec: 1024 - hash: "0a60e76e96846f9f4e909f7a01ede377" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1040 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Key { type: 7 @@ -346,51 +346,51 @@ VisualTest { } Frame { msec: 1056 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1072 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1088 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1104 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1120 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1136 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1152 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1168 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1184 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1200 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1216 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Frame { msec: 1232 - hash: "6f28f435e552cbbf6376f2443ed3843c" + hash: "16069bd86f3b8a896087a455e76f1059" } Key { type: 6 @@ -402,15 +402,15 @@ VisualTest { } Frame { msec: 1248 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "fd2dfea0c188c624ad6eec189d677d8e" } Frame { msec: 1264 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "fd2dfea0c188c624ad6eec189d677d8e" } Frame { msec: 1280 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "fd2dfea0c188c624ad6eec189d677d8e" } Key { type: 7 @@ -422,15 +422,15 @@ VisualTest { } Frame { msec: 1296 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "fd2dfea0c188c624ad6eec189d677d8e" } Frame { msec: 1312 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "fd2dfea0c188c624ad6eec189d677d8e" } Frame { msec: 1328 - hash: "16a353e711a8fb654b5fe3097ba29296" + hash: "fd2dfea0c188c624ad6eec189d677d8e" } Key { type: 6 @@ -442,39 +442,39 @@ VisualTest { } Frame { msec: 1344 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Frame { msec: 1360 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Frame { msec: 1376 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Frame { msec: 1392 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Frame { msec: 1408 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Frame { msec: 1424 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Frame { msec: 1440 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Frame { msec: 1456 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Frame { msec: 1472 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Key { type: 7 @@ -486,7 +486,7 @@ VisualTest { } Frame { msec: 1488 - hash: "fcdbf8ef17e1a7aa6e0e1d952b25d47d" + hash: "8c3642f420ecc94e77cbaee8b218bddb" } Key { type: 6 @@ -498,19 +498,19 @@ VisualTest { } Frame { msec: 1504 - hash: "fe0e4e097f655e0b330ed6fcfce669c2" + hash: "80685804ddaefa46508a3cbe4cd16f59" } Frame { msec: 1520 - hash: "fe0e4e097f655e0b330ed6fcfce669c2" + hash: "7b294a04afc0567d321a28930bc43600" } Frame { msec: 1536 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "7b294a04afc0567d321a28930bc43600" } Frame { msec: 1552 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "7b294a04afc0567d321a28930bc43600" } Key { type: 7 @@ -522,27 +522,27 @@ VisualTest { } Frame { msec: 1568 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "7b294a04afc0567d321a28930bc43600" } Frame { msec: 1584 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "7b294a04afc0567d321a28930bc43600" } Frame { msec: 1600 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "7b294a04afc0567d321a28930bc43600" } Frame { msec: 1616 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "7b294a04afc0567d321a28930bc43600" } Frame { msec: 1632 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "7b294a04afc0567d321a28930bc43600" } Frame { msec: 1648 - hash: "522f11cbb8da0cca25af91d3f6d5240b" + hash: "7b294a04afc0567d321a28930bc43600" } Key { type: 6 @@ -554,23 +554,23 @@ VisualTest { } Frame { msec: 1664 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "00095464e3f162c2a825f7fdae21ab6f" } Frame { msec: 1680 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "00095464e3f162c2a825f7fdae21ab6f" } Frame { msec: 1696 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "00095464e3f162c2a825f7fdae21ab6f" } Frame { msec: 1712 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "00095464e3f162c2a825f7fdae21ab6f" } Frame { msec: 1728 - hash: "f459ca172e643d6e22c38067f8ced305" + hash: "00095464e3f162c2a825f7fdae21ab6f" } Key { type: 6 @@ -582,7 +582,7 @@ VisualTest { } Frame { msec: 1744 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "c25d79796963ca42789725c6621bce01" } Key { type: 7 @@ -594,15 +594,15 @@ VisualTest { } Frame { msec: 1760 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "c25d79796963ca42789725c6621bce01" } Frame { msec: 1776 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "c25d79796963ca42789725c6621bce01" } Frame { msec: 1792 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "c25d79796963ca42789725c6621bce01" } Key { type: 7 @@ -614,19 +614,19 @@ VisualTest { } Frame { msec: 1808 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "c25d79796963ca42789725c6621bce01" } Frame { msec: 1824 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "c25d79796963ca42789725c6621bce01" } Frame { msec: 1840 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "c25d79796963ca42789725c6621bce01" } Frame { msec: 1856 - hash: "0016ecff508885d3a199b27baa9b7ecf" + hash: "c25d79796963ca42789725c6621bce01" } Key { type: 6 @@ -638,15 +638,15 @@ VisualTest { } Frame { msec: 1872 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "e876aa2aaa6ae2c3a5f048771858c21b" } Frame { msec: 1888 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "e876aa2aaa6ae2c3a5f048771858c21b" } Frame { msec: 1904 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "e876aa2aaa6ae2c3a5f048771858c21b" } Frame { msec: 1920 @@ -662,27 +662,27 @@ VisualTest { } Frame { msec: 1936 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "e876aa2aaa6ae2c3a5f048771858c21b" } Frame { msec: 1952 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "e876aa2aaa6ae2c3a5f048771858c21b" } Frame { msec: 1968 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "e876aa2aaa6ae2c3a5f048771858c21b" } Frame { msec: 1984 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "e876aa2aaa6ae2c3a5f048771858c21b" } Frame { msec: 2000 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "e876aa2aaa6ae2c3a5f048771858c21b" } Frame { msec: 2016 - hash: "05c631afb9df51c23b1f714a7de92788" + hash: "deab81e7fcc4ecc31d02fccc52a4cc17" } Key { type: 6 @@ -694,11 +694,11 @@ VisualTest { } Frame { msec: 2032 - hash: "95ad72a49b991225e2ed5ae9c2a7b4e5" + hash: "f87d1f15df169e08cdd3dff50d596492" } Frame { msec: 2048 - hash: "95ad72a49b991225e2ed5ae9c2a7b4e5" + hash: "f87d1f15df169e08cdd3dff50d596492" } Key { type: 7 @@ -710,11 +710,11 @@ VisualTest { } Frame { msec: 2064 - hash: "95ad72a49b991225e2ed5ae9c2a7b4e5" + hash: "f87d1f15df169e08cdd3dff50d596492" } Frame { msec: 2080 - hash: "95ad72a49b991225e2ed5ae9c2a7b4e5" + hash: "f87d1f15df169e08cdd3dff50d596492" } Key { type: 6 @@ -726,19 +726,19 @@ VisualTest { } Frame { msec: 2096 - hash: "7f2366b163c110a50259936c150d8287" + hash: "a50ab62d526aef826ad883f712a22325" } Frame { msec: 2112 - hash: "7f2366b163c110a50259936c150d8287" + hash: "a50ab62d526aef826ad883f712a22325" } Frame { msec: 2128 - hash: "7f2366b163c110a50259936c150d8287" + hash: "a50ab62d526aef826ad883f712a22325" } Frame { msec: 2144 - hash: "7f2366b163c110a50259936c150d8287" + hash: "a50ab62d526aef826ad883f712a22325" } Key { type: 6 @@ -758,19 +758,19 @@ VisualTest { } Frame { msec: 2160 - hash: "b5110b1a7aa74f7b4ed72f573f10b1fe" + hash: "f0c34703a0b5a0631654482fbc785b57" } Frame { msec: 2176 - hash: "b5110b1a7aa74f7b4ed72f573f10b1fe" + hash: "f0c34703a0b5a0631654482fbc785b57" } Frame { msec: 2192 - hash: "b5110b1a7aa74f7b4ed72f573f10b1fe" + hash: "f0c34703a0b5a0631654482fbc785b57" } Frame { msec: 2208 - hash: "b5110b1a7aa74f7b4ed72f573f10b1fe" + hash: "f0c34703a0b5a0631654482fbc785b57" } Key { type: 6 @@ -782,7 +782,7 @@ VisualTest { } Frame { msec: 2224 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "0921766e0d224b70d2c3f9f282c51143" } Key { type: 7 @@ -794,23 +794,23 @@ VisualTest { } Frame { msec: 2240 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "0921766e0d224b70d2c3f9f282c51143" } Frame { msec: 2256 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "0921766e0d224b70d2c3f9f282c51143" } Frame { msec: 2272 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "0921766e0d224b70d2c3f9f282c51143" } Frame { msec: 2288 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "0921766e0d224b70d2c3f9f282c51143" } Frame { msec: 2304 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "0921766e0d224b70d2c3f9f282c51143" } Key { type: 7 @@ -822,11 +822,11 @@ VisualTest { } Frame { msec: 2320 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "0921766e0d224b70d2c3f9f282c51143" } Frame { msec: 2336 - hash: "30cdfb276e7a234c72d89a03e6a10dc5" + hash: "0921766e0d224b70d2c3f9f282c51143" } Key { type: 6 @@ -838,27 +838,27 @@ VisualTest { } Frame { msec: 2352 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Frame { msec: 2368 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Frame { msec: 2384 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Frame { msec: 2400 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Frame { msec: 2416 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Frame { msec: 2432 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Key { type: 7 @@ -870,19 +870,19 @@ VisualTest { } Frame { msec: 2448 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Frame { msec: 2464 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Frame { msec: 2480 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Frame { msec: 2496 - hash: "c0f7406f3718ab0120c79ff119d6986c" + hash: "91b44cdde36433cac6644c476e34d4f9" } Key { type: 6 @@ -894,15 +894,15 @@ VisualTest { } Frame { msec: 2512 - hash: "870d7866b8e289b4843b62c856d769d4" + hash: "34d00f787b814ad82c025c77d6be51a2" } Frame { msec: 2528 - hash: "870d7866b8e289b4843b62c856d769d4" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2544 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Key { type: 7 @@ -914,83 +914,83 @@ VisualTest { } Frame { msec: 2560 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2576 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2592 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2608 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2624 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2640 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2656 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2672 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2688 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2704 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2720 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2736 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2752 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2768 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2784 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2800 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2816 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2832 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2848 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2864 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2880 @@ -998,46 +998,46 @@ VisualTest { } Frame { msec: 2896 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2912 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2928 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2944 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2960 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2976 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 2992 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 3008 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "73ebe3eec273bac501d56451c0c0a828" } Frame { msec: 3024 - hash: "84e1cbf26e6b571603e0b9e69579af8b" + hash: "34d00f787b814ad82c025c77d6be51a2" } Frame { msec: 3040 - hash: "870d7866b8e289b4843b62c856d769d4" + hash: "34d00f787b814ad82c025c77d6be51a2" } Frame { msec: 3056 - hash: "870d7866b8e289b4843b62c856d769d4" + hash: "34d00f787b814ad82c025c77d6be51a2" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png deleted file mode 100644 index 87c2e07..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml index a0351e8..32330f4 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/hAlign.qml @@ -6,102 +6,102 @@ VisualTest { } Frame { msec: 16 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 32 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 48 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 64 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 80 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 96 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 112 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 128 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 144 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 160 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 176 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 192 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 208 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 224 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 240 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 256 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 272 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 288 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 304 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 320 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 336 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 352 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 368 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 384 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } Frame { msec: 400 - hash: "7619ed68aca3544f373777e11a4bfefa" + hash: "09298802dfc053e2bb1b3bb2192ca5b2" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png index b064e79..313fcc2 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png index 7dd1bd8..81798cc 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png index d8e55e2..3e37ebb 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.10.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png index f9f1744..313fcc2 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png index 70ae713..dc3abe6 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png index 9ce28db..62b464a 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png index 2ef2ac0..ee26c35 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png index 2a614f8..2ea9142 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png index f916c97..fb0be3c 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.7.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png index 56bf00b..0122645 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.8.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png index 97847d9..24da450 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png and b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.9.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml index cdc5153..f014a30 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data-X11/usingLineEdit.qml @@ -6,235 +6,235 @@ VisualTest { } Frame { msec: 16 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 32 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 48 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 64 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 80 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 96 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 112 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 128 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 144 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 160 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 176 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 192 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 208 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 224 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 240 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 256 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 272 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 288 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 304 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 320 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 336 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 352 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 368 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 384 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 400 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 416 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 432 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 448 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 464 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 480 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 496 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 512 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 528 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 544 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 560 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 576 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 592 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 608 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 624 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 640 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 656 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 672 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 688 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 704 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 720 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 736 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 752 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 768 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 784 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 800 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 816 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 832 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 848 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 864 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 880 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 896 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 912 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Frame { msec: 928 - hash: "a6d33b1212bb4d1241734bfff167d1a5" + hash: "9d5b9f785409527b8f315fef560a4688" } Mouse { type: 2 @@ -246,7 +246,7 @@ VisualTest { } Frame { msec: 944 - hash: "c83faf1ed7b59715046e1abef04fa546" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Mouse { type: 3 @@ -270,27 +270,27 @@ VisualTest { } Frame { msec: 976 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 992 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1008 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1024 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1040 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1056 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Mouse { type: 3 @@ -302,79 +302,79 @@ VisualTest { } Frame { msec: 1072 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1088 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1104 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1120 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1136 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1152 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1168 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1184 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1200 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1216 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1232 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1248 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1264 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1280 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1296 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1312 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1328 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1344 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1360 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Key { type: 6 @@ -386,139 +386,139 @@ VisualTest { } Frame { msec: 1376 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1392 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1408 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1424 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1440 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1456 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1472 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1488 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1504 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1520 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1536 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1552 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1568 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1584 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1600 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1616 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1632 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1648 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1664 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1680 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1696 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1712 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1728 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1744 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1760 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1776 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1792 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1808 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1824 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1840 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1856 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1872 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1888 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1904 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1920 @@ -526,19 +526,19 @@ VisualTest { } Frame { msec: 1936 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1952 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1968 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 1984 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Key { type: 6 @@ -550,35 +550,35 @@ VisualTest { } Frame { msec: 2000 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2016 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2032 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2048 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2064 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2080 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2096 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2112 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Key { type: 7 @@ -598,95 +598,95 @@ VisualTest { } Frame { msec: 2128 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2144 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2160 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2176 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2192 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2208 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2224 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2240 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2256 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2272 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2288 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2304 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2320 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2336 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2352 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2368 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2384 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2400 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2416 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2432 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2448 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2464 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Frame { msec: 2480 - hash: "3b899cd28b58c3f94946286a0ddcab89" + hash: "957c85bfa6586d5d92aa3689c178944f" } Key { type: 6 @@ -698,27 +698,27 @@ VisualTest { } Frame { msec: 2496 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2512 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2528 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2544 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2560 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2576 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Key { type: 7 @@ -730,55 +730,55 @@ VisualTest { } Frame { msec: 2592 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2608 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2624 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2640 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2656 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2672 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2688 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2704 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2720 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2736 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2752 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2768 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2784 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Key { type: 6 @@ -790,23 +790,23 @@ VisualTest { } Frame { msec: 2800 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2816 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2832 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2848 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2864 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2880 @@ -814,87 +814,87 @@ VisualTest { } Frame { msec: 2896 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2912 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2928 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2944 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2960 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2976 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 2992 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3008 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3024 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3040 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3056 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3072 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3088 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3104 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3120 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3136 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3152 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3168 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3184 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3200 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Frame { msec: 3216 - hash: "f2a573f227a3eb84f60418d0f3e81fb3" + hash: "ebd6e6bbd0edaffed688dd5fa2328393" } Key { type: 6 @@ -906,31 +906,31 @@ VisualTest { } Frame { msec: 3232 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3248 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3264 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3280 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3296 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3312 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3328 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Key { type: 7 @@ -942,59 +942,59 @@ VisualTest { } Frame { msec: 3344 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3360 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3376 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3392 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3408 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3424 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3440 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3456 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3472 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3488 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3504 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3520 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3536 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Frame { msec: 3552 - hash: "202ad01bacfb48341efdd85197df6964" + hash: "923335b8fdb038fe10c8c557845c2ae1" } Key { type: 6 @@ -1006,35 +1006,35 @@ VisualTest { } Frame { msec: 3568 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3584 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3600 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3616 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3632 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3648 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3664 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3680 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Key { type: 7 @@ -1046,39 +1046,39 @@ VisualTest { } Frame { msec: 3696 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3712 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3728 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3744 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3760 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3776 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3792 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3808 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3824 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3840 @@ -1086,91 +1086,91 @@ VisualTest { } Frame { msec: 3856 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3872 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3888 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3904 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3920 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3936 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3952 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3968 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 3984 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4000 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4016 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4032 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4048 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4064 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4080 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4096 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4112 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4128 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4144 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4160 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4176 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4192 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Key { type: 7 @@ -1182,131 +1182,131 @@ VisualTest { } Frame { msec: 4208 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4224 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4240 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4256 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4272 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4288 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4304 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4320 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4336 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4352 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4368 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4384 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4400 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4416 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4432 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4448 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4464 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4480 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4496 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4512 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4528 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4544 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4560 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4576 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4592 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4608 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4624 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4640 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4656 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4672 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4688 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Frame { msec: 4704 - hash: "eac37a53473ad7f378a2a1bb37fa6b58" + hash: "3e9cbf56be37f593e907759285ddebdb" } Mouse { type: 2 @@ -1318,23 +1318,23 @@ VisualTest { } Frame { msec: 4720 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4736 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4752 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4768 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4784 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4800 @@ -1350,143 +1350,143 @@ VisualTest { } Frame { msec: 4816 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4832 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4848 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4864 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4880 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4896 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4912 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4928 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4944 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4960 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4976 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 4992 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5008 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5024 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5040 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5056 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5072 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5088 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5104 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5120 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5136 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5152 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5168 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5184 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5200 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5216 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5232 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5248 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5264 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5280 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5296 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5312 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5328 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5344 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Frame { msec: 5360 - hash: "c65ff28e032b18223c65f8810b39d603" + hash: "39ce4d31df138a329a21056b8d397fd7" } Key { type: 6 @@ -1498,67 +1498,67 @@ VisualTest { } Frame { msec: 5376 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5392 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5408 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5424 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5440 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5456 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5472 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5488 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5504 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5520 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5536 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5552 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5568 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5584 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5600 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Frame { msec: 5616 - hash: "8c755780c2d281aba23c507bcebfd5db" + hash: "ed58b79d6459243c991a2f941279f88e" } Key { type: 7 @@ -1578,11 +1578,11 @@ VisualTest { } Frame { msec: 5632 - hash: "baa42bc9d5e16c3e7af81e126d37655a" + hash: "c5d53d11b73e52746d8cdc7de15198cb" } Frame { msec: 5648 - hash: "baa42bc9d5e16c3e7af81e126d37655a" + hash: "c5d53d11b73e52746d8cdc7de15198cb" } Key { type: 7 @@ -1602,11 +1602,11 @@ VisualTest { } Frame { msec: 5664 - hash: "aa876e6d6ff0f169bcc3cf25be5e7a81" + hash: "ba3ef31e650737ec5b7477baa4ab5ecf" } Frame { msec: 5680 - hash: "aa876e6d6ff0f169bcc3cf25be5e7a81" + hash: "ba3ef31e650737ec5b7477baa4ab5ecf" } Key { type: 7 @@ -1626,11 +1626,11 @@ VisualTest { } Frame { msec: 5696 - hash: "8ec4c1a8ae28af44dcabf338fc056717" + hash: "59098eca4502479da33d40ec82896330" } Frame { msec: 5712 - hash: "8ec4c1a8ae28af44dcabf338fc056717" + hash: "59098eca4502479da33d40ec82896330" } Key { type: 7 @@ -1650,11 +1650,11 @@ VisualTest { } Frame { msec: 5728 - hash: "ec0da333c0bc090eec0ded5e4d18bd6e" + hash: "9c1888b9575771f653d672c19ab4083f" } Frame { msec: 5744 - hash: "ec0da333c0bc090eec0ded5e4d18bd6e" + hash: "9c1888b9575771f653d672c19ab4083f" } Key { type: 7 @@ -1678,7 +1678,7 @@ VisualTest { } Frame { msec: 5776 - hash: "325ba5789a6150ec0fef81fa5b005c09" + hash: "48bb05f44207f641b573d43043882aa2" } Key { type: 7 @@ -1698,11 +1698,11 @@ VisualTest { } Frame { msec: 5792 - hash: "023dd8fe428b1ed0f4c994f7e67ac3cd" + hash: "f5cb70509c060343a8c9b57d26ecf4ea" } Frame { msec: 5808 - hash: "023dd8fe428b1ed0f4c994f7e67ac3cd" + hash: "f5cb70509c060343a8c9b57d26ecf4ea" } Key { type: 7 @@ -1722,11 +1722,11 @@ VisualTest { } Frame { msec: 5824 - hash: "f661f599f576ae883f25422b20408138" + hash: "5bdfe389421df56140d27a21bbcc10d4" } Frame { msec: 5840 - hash: "f661f599f576ae883f25422b20408138" + hash: "5bdfe389421df56140d27a21bbcc10d4" } Key { type: 7 @@ -1738,7 +1738,7 @@ VisualTest { } Frame { msec: 5856 - hash: "f661f599f576ae883f25422b20408138" + hash: "5bdfe389421df56140d27a21bbcc10d4" } Key { type: 6 @@ -1750,11 +1750,11 @@ VisualTest { } Frame { msec: 5872 - hash: "8e7ad34802a0ced493e88b779c73cc47" + hash: "0f48c779e033240e87675b43cfca02c5" } Frame { msec: 5888 - hash: "8e7ad34802a0ced493e88b779c73cc47" + hash: "0f48c779e033240e87675b43cfca02c5" } Key { type: 7 @@ -1774,7 +1774,7 @@ VisualTest { } Frame { msec: 5904 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Key { type: 7 @@ -1786,39 +1786,39 @@ VisualTest { } Frame { msec: 5920 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 5936 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 5952 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 5968 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 5984 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6000 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6016 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6032 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6048 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Key { type: 6 @@ -1830,27 +1830,27 @@ VisualTest { } Frame { msec: 6064 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6080 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6096 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6112 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6128 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Frame { msec: 6144 - hash: "943c7ec51fbe8db38fcd3086990fa4e0" + hash: "f5e148d32ec832bb9c4fb49016da7903" } Key { type: 6 @@ -1862,67 +1862,67 @@ VisualTest { } Frame { msec: 6160 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6176 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6192 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6208 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6224 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6240 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6256 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6272 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6288 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6304 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6320 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6336 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6352 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6368 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6384 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Frame { msec: 6400 - hash: "bd2e37c4ac90a6389f7f4e1e1360b31b" + hash: "ac4c53142eea27d7148c74de76cdc4d4" } Key { type: 7 @@ -1942,11 +1942,11 @@ VisualTest { } Frame { msec: 6416 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6432 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Key { type: 7 @@ -1966,11 +1966,11 @@ VisualTest { } Frame { msec: 6448 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6464 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Key { type: 7 @@ -1998,63 +1998,63 @@ VisualTest { } Frame { msec: 6480 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6496 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6512 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6528 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6544 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6560 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6576 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6592 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6608 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6624 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6640 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6656 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6672 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6688 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6704 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6720 @@ -2062,19 +2062,19 @@ VisualTest { } Frame { msec: 6736 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6752 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6768 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6784 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Key { type: 6 @@ -2086,7 +2086,7 @@ VisualTest { } Frame { msec: 6800 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Key { type: 7 @@ -2098,39 +2098,39 @@ VisualTest { } Frame { msec: 6816 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6832 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6848 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6864 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6880 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6896 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6912 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6928 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Frame { msec: 6944 - hash: "608bba00320e20da05aa2a6bbcba6e19" + hash: "ecfa95feb59486098b758894cba272c8" } Key { type: 6 @@ -2142,19 +2142,19 @@ VisualTest { } Frame { msec: 6960 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Frame { msec: 6976 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Frame { msec: 6992 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Frame { msec: 7008 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Key { type: 7 @@ -2166,23 +2166,23 @@ VisualTest { } Frame { msec: 7024 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Frame { msec: 7040 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Frame { msec: 7056 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Frame { msec: 7072 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Frame { msec: 7088 - hash: "40456a6d22e09e1817b07f3898676524" + hash: "012fbe791afb6bb8b97091fbec1b0add" } Key { type: 6 @@ -2194,19 +2194,19 @@ VisualTest { } Frame { msec: 7104 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7120 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7136 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7152 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Key { type: 7 @@ -2218,31 +2218,31 @@ VisualTest { } Frame { msec: 7168 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7184 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7200 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7216 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7232 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7248 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Frame { msec: 7264 - hash: "dada78341b65c1efb2816e16a8cbe8b5" + hash: "d1246ecb1e587b9618d4affb6303581b" } Key { type: 6 @@ -2254,23 +2254,23 @@ VisualTest { } Frame { msec: 7280 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7296 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7312 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7328 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7344 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Key { type: 7 @@ -2282,47 +2282,47 @@ VisualTest { } Frame { msec: 7360 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7376 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7392 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7408 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7424 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7440 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7456 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7472 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7488 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7504 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7520 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Key { type: 7 @@ -2334,39 +2334,39 @@ VisualTest { } Frame { msec: 7536 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7552 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7568 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7584 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7600 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7616 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7632 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7648 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7664 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7680 @@ -2374,207 +2374,207 @@ VisualTest { } Frame { msec: 7696 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7712 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7728 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7744 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7760 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7776 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7792 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7808 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7824 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7840 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7856 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7872 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7888 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7904 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7920 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7936 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7952 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7968 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 7984 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8000 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8016 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8032 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8048 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8064 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8080 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8096 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8112 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8128 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8144 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8160 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8176 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8192 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8208 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8224 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8240 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8256 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8272 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8288 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8304 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8320 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8336 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8352 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8368 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8384 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8400 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8416 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8432 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8448 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8464 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8480 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Frame { msec: 8496 - hash: "f249bfae1934844abfd5fc158a9c89cf" + hash: "28b1455bb7b150afb4bec88f3328a1f6" } Mouse { type: 2 @@ -2586,19 +2586,19 @@ VisualTest { } Frame { msec: 8512 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "edb037dfb1fe973df3896e4a2d649b8c" } Frame { msec: 8528 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "edb037dfb1fe973df3896e4a2d649b8c" } Frame { msec: 8544 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "edb037dfb1fe973df3896e4a2d649b8c" } Frame { msec: 8560 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "edb037dfb1fe973df3896e4a2d649b8c" } Mouse { type: 5 @@ -2618,7 +2618,7 @@ VisualTest { } Frame { msec: 8576 - hash: "e594125fb367adee5b6acdb1268c86cd" + hash: "edb037dfb1fe973df3896e4a2d649b8c" } Mouse { type: 5 @@ -2630,7 +2630,7 @@ VisualTest { } Frame { msec: 8592 - hash: "7d4116a8689b6995702a042d974ef74b" + hash: "56e3c2d792e204e7d9758263edb6ab24" } Mouse { type: 5 @@ -2650,7 +2650,7 @@ VisualTest { } Frame { msec: 8608 - hash: "cb9221f27ac24e4b6b103ca53acad3b3" + hash: "74b47cf865838cdb3b29cd2104d990fe" } Mouse { type: 5 @@ -2662,7 +2662,7 @@ VisualTest { } Frame { msec: 8624 - hash: "074bc6abd9a67db829ae5d6c5f187fb6" + hash: "b7f624c97fc369c66314ecbb86549686" } Mouse { type: 5 @@ -2694,7 +2694,7 @@ VisualTest { } Frame { msec: 8656 - hash: "074bc6abd9a67db829ae5d6c5f187fb6" + hash: "b7f624c97fc369c66314ecbb86549686" } Mouse { type: 5 @@ -2714,7 +2714,7 @@ VisualTest { } Frame { msec: 8672 - hash: "074bc6abd9a67db829ae5d6c5f187fb6" + hash: "51219dfa7fc899bdba40d50b90ca3ca6" } Mouse { type: 5 @@ -2726,7 +2726,7 @@ VisualTest { } Frame { msec: 8688 - hash: "7e403c56d5652321a7701529fc6b8098" + hash: "51219dfa7fc899bdba40d50b90ca3ca6" } Mouse { type: 5 @@ -2746,7 +2746,7 @@ VisualTest { } Frame { msec: 8704 - hash: "7e403c56d5652321a7701529fc6b8098" + hash: "51219dfa7fc899bdba40d50b90ca3ca6" } Mouse { type: 5 @@ -2766,7 +2766,7 @@ VisualTest { } Frame { msec: 8720 - hash: "7e403c56d5652321a7701529fc6b8098" + hash: "51219dfa7fc899bdba40d50b90ca3ca6" } Mouse { type: 5 @@ -2786,7 +2786,7 @@ VisualTest { } Frame { msec: 8736 - hash: "7e403c56d5652321a7701529fc6b8098" + hash: "9320132e49323d536d435ce4f2263502" } Mouse { type: 5 @@ -2806,7 +2806,7 @@ VisualTest { } Frame { msec: 8752 - hash: "2435f2526b3ccc12b7b573872b40e5f1" + hash: "9320132e49323d536d435ce4f2263502" } Mouse { type: 5 @@ -2826,7 +2826,7 @@ VisualTest { } Frame { msec: 8768 - hash: "2435f2526b3ccc12b7b573872b40e5f1" + hash: "9320132e49323d536d435ce4f2263502" } Mouse { type: 5 @@ -2846,7 +2846,7 @@ VisualTest { } Frame { msec: 8784 - hash: "2435f2526b3ccc12b7b573872b40e5f1" + hash: "ad318ee661054ed3b628c312467dc789" } Mouse { type: 5 @@ -2866,7 +2866,7 @@ VisualTest { } Frame { msec: 8800 - hash: "2435f2526b3ccc12b7b573872b40e5f1" + hash: "ad318ee661054ed3b628c312467dc789" } Mouse { type: 5 @@ -2886,7 +2886,7 @@ VisualTest { } Frame { msec: 8816 - hash: "f5a185b954e8b181222cc50075d8ebb6" + hash: "ad318ee661054ed3b628c312467dc789" } Mouse { type: 5 @@ -2906,7 +2906,7 @@ VisualTest { } Frame { msec: 8832 - hash: "93a00b37c5027650791d1ff589408d0d" + hash: "6916d64662dd8accaa2c70cbd9b94af9" } Mouse { type: 5 @@ -2926,7 +2926,7 @@ VisualTest { } Frame { msec: 8848 - hash: "0b29f6006be3604ef862db7d31f9a434" + hash: "dd995b598e90d482291b94f9cbebace9" } Mouse { type: 5 @@ -2946,7 +2946,7 @@ VisualTest { } Frame { msec: 8864 - hash: "8390b63b71e1452cb93c576a3f2395e1" + hash: "8fb2e565879fdb7ef5ca53a142c1ea45" } Mouse { type: 5 @@ -2966,7 +2966,7 @@ VisualTest { } Frame { msec: 8880 - hash: "72298910946a4e1a9ccc4520d99e9420" + hash: "6cdab9c68965444420401bb95c2d059b" } Mouse { type: 5 @@ -2986,7 +2986,7 @@ VisualTest { } Frame { msec: 8896 - hash: "17d349b0ed29d6aa57bf8fda9a55abf8" + hash: "d11156abb2ef56ef6b8c4e78e2391d8a" } Mouse { type: 5 @@ -3006,7 +3006,7 @@ VisualTest { } Frame { msec: 8912 - hash: "01e8a877d51f5564aaf2f11e7aadbc4a" + hash: "2390c7bfd983c14a6ff4c3573741e2fa" } Mouse { type: 5 @@ -3026,7 +3026,7 @@ VisualTest { } Frame { msec: 8928 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3046,7 +3046,7 @@ VisualTest { } Frame { msec: 8944 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3066,11 +3066,11 @@ VisualTest { } Frame { msec: 8960 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 8976 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3090,7 +3090,7 @@ VisualTest { } Frame { msec: 8992 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3102,55 +3102,55 @@ VisualTest { } Frame { msec: 9008 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9024 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9040 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9056 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9072 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9088 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9104 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9120 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9136 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9152 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9168 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9184 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Frame { msec: 9200 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3162,7 +3162,7 @@ VisualTest { } Frame { msec: 9216 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3174,7 +3174,7 @@ VisualTest { } Frame { msec: 9232 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3194,7 +3194,7 @@ VisualTest { } Frame { msec: 9248 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3214,7 +3214,7 @@ VisualTest { } Frame { msec: 9264 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3234,7 +3234,7 @@ VisualTest { } Frame { msec: 9280 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3254,7 +3254,7 @@ VisualTest { } Frame { msec: 9296 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3274,7 +3274,7 @@ VisualTest { } Frame { msec: 9312 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3294,7 +3294,7 @@ VisualTest { } Frame { msec: 9328 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3314,7 +3314,7 @@ VisualTest { } Frame { msec: 9344 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3334,7 +3334,7 @@ VisualTest { } Frame { msec: 9360 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3354,7 +3354,7 @@ VisualTest { } Frame { msec: 9376 - hash: "bc8f49abd277f5f15d422341de212183" + hash: "e7442142350b9fdaf7fc7e763cafbaf5" } Mouse { type: 5 @@ -3374,7 +3374,7 @@ VisualTest { } Frame { msec: 9392 - hash: "12e705f08ff90fd8ddb1937e5a7e23a0" + hash: "934022d70c2d094d6463d895803f2a79" } Mouse { type: 5 @@ -3394,7 +3394,7 @@ VisualTest { } Frame { msec: 9408 - hash: "12e705f08ff90fd8ddb1937e5a7e23a0" + hash: "934022d70c2d094d6463d895803f2a79" } Mouse { type: 5 @@ -3414,7 +3414,7 @@ VisualTest { } Frame { msec: 9424 - hash: "4daae0f05ff1b7ef68ed1d839b113dc4" + hash: "48caf4c2d3a5a6058b1ffa221ee77d83" } Mouse { type: 5 @@ -3434,7 +3434,7 @@ VisualTest { } Frame { msec: 9440 - hash: "a1186544d7f5576e6ccbbd7938c1c374" + hash: "8e22c6013721d350acf1635f1c00488d" } Mouse { type: 5 @@ -3454,7 +3454,7 @@ VisualTest { } Frame { msec: 9456 - hash: "6ce09c9a06135d2280e4f7bc1c81b70e" + hash: "c8dd72bfeec38d825dc7832f8bf7116d" } Mouse { type: 5 @@ -3474,7 +3474,7 @@ VisualTest { } Frame { msec: 9472 - hash: "6ce09c9a06135d2280e4f7bc1c81b70e" + hash: "f3e934f22fead73fd52ab26d4f3fd480" } Mouse { type: 5 @@ -3494,7 +3494,7 @@ VisualTest { } Frame { msec: 9488 - hash: "035b177c3cacd8cdef807d5673de4607" + hash: "7fc03d3341860a984be91feec0b67da2" } Mouse { type: 5 @@ -3514,7 +3514,7 @@ VisualTest { } Frame { msec: 9504 - hash: "7b7e3c4600f3af7bd0f45799661db993" + hash: "7fc03d3341860a984be91feec0b67da2" } Mouse { type: 5 @@ -3534,7 +3534,7 @@ VisualTest { } Frame { msec: 9520 - hash: "7b7e3c4600f3af7bd0f45799661db993" + hash: "a1eacc5be14a2c411660662dd9e78b2f" } Mouse { type: 5 @@ -3546,7 +3546,7 @@ VisualTest { } Frame { msec: 9536 - hash: "7b7e3c4600f3af7bd0f45799661db993" + hash: "a1eacc5be14a2c411660662dd9e78b2f" } Mouse { type: 5 @@ -3566,7 +3566,7 @@ VisualTest { } Frame { msec: 9552 - hash: "859950e1cf496ef830a30b3a0ec801ac" + hash: "a1eacc5be14a2c411660662dd9e78b2f" } Mouse { type: 5 @@ -3586,7 +3586,7 @@ VisualTest { } Frame { msec: 9568 - hash: "859950e1cf496ef830a30b3a0ec801ac" + hash: "6808d46fa17f9e359c38aeca72466c97" } Mouse { type: 5 @@ -3606,7 +3606,7 @@ VisualTest { } Frame { msec: 9584 - hash: "be7343825b6adcb16f49e20ee2bdf19f" + hash: "0b4b632291769b48d942f5aea91a8ae5" } Mouse { type: 5 @@ -3638,7 +3638,7 @@ VisualTest { } Frame { msec: 9616 - hash: "597923ce1046fbf4b728545c54c97fa5" + hash: "0b4b632291769b48d942f5aea91a8ae5" } Mouse { type: 5 @@ -3658,7 +3658,7 @@ VisualTest { } Frame { msec: 9632 - hash: "597923ce1046fbf4b728545c54c97fa5" + hash: "d730471882eacaf3280295d902c3927f" } Mouse { type: 5 @@ -3678,7 +3678,7 @@ VisualTest { } Frame { msec: 9648 - hash: "597923ce1046fbf4b728545c54c97fa5" + hash: "d730471882eacaf3280295d902c3927f" } Mouse { type: 5 @@ -3698,7 +3698,7 @@ VisualTest { } Frame { msec: 9664 - hash: "2fc5c42f94350f28ae0117bc7f6daff1" + hash: "f2a17005ff90345b440475a772277495" } Mouse { type: 5 @@ -3718,7 +3718,7 @@ VisualTest { } Frame { msec: 9680 - hash: "4b4ec69d583151f1a64052d696966f9c" + hash: "62edb249cc9fcb08e5426f9acd54ad36" } Mouse { type: 5 @@ -3738,7 +3738,7 @@ VisualTest { } Frame { msec: 9696 - hash: "0882a25ac1c2b534367736d825a73630" + hash: "ef6497718983eb548ec2aa43781d2555" } Mouse { type: 5 @@ -3758,7 +3758,7 @@ VisualTest { } Frame { msec: 9712 - hash: "d5b6acc155f827c05b0c4c289a2e3eec" + hash: "d5b90efb68335fc4aa1fc222c67d1f53" } Mouse { type: 5 @@ -3778,7 +3778,7 @@ VisualTest { } Frame { msec: 9728 - hash: "a05b3f2f9f22249ab694ac45e1de7b85" + hash: "a8cbbbe9cffd27002e8a1b3851b23bb0" } Mouse { type: 5 @@ -3798,7 +3798,7 @@ VisualTest { } Frame { msec: 9744 - hash: "5b0e034813f8543627f370efdcf3591e" + hash: "a448d8d01e84961098d6b86319013d5f" } Mouse { type: 5 @@ -3818,7 +3818,7 @@ VisualTest { } Frame { msec: 9760 - hash: "5b8d80b9d7e2a8c1a24c28e127d0f7e5" + hash: "afa98074edfb7b0e904f5645f592efae" } Mouse { type: 5 @@ -3838,7 +3838,7 @@ VisualTest { } Frame { msec: 9776 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3858,7 +3858,7 @@ VisualTest { } Frame { msec: 9792 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3870,7 +3870,7 @@ VisualTest { } Frame { msec: 9808 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3882,7 +3882,7 @@ VisualTest { } Frame { msec: 9824 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3894,7 +3894,7 @@ VisualTest { } Frame { msec: 9840 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3906,11 +3906,11 @@ VisualTest { } Frame { msec: 9856 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 9872 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3922,7 +3922,7 @@ VisualTest { } Frame { msec: 9888 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3934,7 +3934,7 @@ VisualTest { } Frame { msec: 9904 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3946,7 +3946,7 @@ VisualTest { } Frame { msec: 9920 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3958,11 +3958,11 @@ VisualTest { } Frame { msec: 9936 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 9952 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3974,7 +3974,7 @@ VisualTest { } Frame { msec: 9968 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3986,7 +3986,7 @@ VisualTest { } Frame { msec: 9984 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -3998,11 +3998,11 @@ VisualTest { } Frame { msec: 10000 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10016 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 5 @@ -4014,59 +4014,59 @@ VisualTest { } Frame { msec: 10032 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10048 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10064 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10080 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10096 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10112 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10128 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10144 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10160 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10176 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10192 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10208 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10224 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10240 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Mouse { type: 3 @@ -4078,79 +4078,79 @@ VisualTest { } Frame { msec: 10256 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10272 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10288 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10304 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10320 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10336 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10352 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10368 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10384 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10400 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10416 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10432 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10448 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10464 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10480 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10496 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10512 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10528 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10544 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10560 @@ -4158,178 +4158,178 @@ VisualTest { } Frame { msec: 10576 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10592 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10608 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10624 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10640 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10656 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10672 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10688 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10704 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10720 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10736 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10752 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10768 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10784 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10800 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10816 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10832 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10848 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10864 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10880 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10896 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10912 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10928 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10944 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10960 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10976 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 10992 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11008 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11024 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11040 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11056 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11072 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11088 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11104 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11120 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11136 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11152 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11168 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11184 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11200 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11216 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11232 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11248 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } Frame { msec: 11264 - hash: "66715d4a4f83d0e5905adbc4c459b0fb" + hash: "020ac5797abe98f97c4839afc67aac18" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.0.png deleted file mode 100644 index f04f65e..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.1.png deleted file mode 100644 index 46a703a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.2.png deleted file mode 100644 index e4a3877..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.3.png deleted file mode 100644 index 9ef842a..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.4.png deleted file mode 100644 index 706e2b3..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.5.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.5.png deleted file mode 100644 index bcc86cc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.6.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.6.png deleted file mode 100644 index 51ddd44..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.7.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.7.png deleted file mode 100644 index 0a2fdda..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.8.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.8.png deleted file mode 100644 index 9c88bff..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml index a1d998f..81f1bcc 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/cursorDelegate.qml @@ -6,134 +6,146 @@ VisualTest { } Frame { msec: 16 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 32 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 48 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 64 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 80 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 96 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 112 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 128 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 144 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 160 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 176 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 192 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 208 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 224 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 240 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 256 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 272 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 288 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 304 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 320 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 336 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 352 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 368 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 384 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 400 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 416 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 432 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" } Frame { msec: 448 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "65bbc5da769f475d1c47bdedb92ba65e" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 464 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "97eff9733db71f7c5d396969582c572b" } Frame { msec: 480 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "97eff9733db71f7c5d396969582c572b" } Frame { msec: 496 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "97eff9733db71f7c5d396969582c572b" } Frame { msec: 512 - hash: "cd442d6dc4d155f54ae24f03d080f50c" + hash: "97eff9733db71f7c5d396969582c572b" + } + Frame { + msec: 528 + hash: "87902d32dba1439e71ce5f57f514748e" } Key { - type: 6 + type: 7 key: 16777234 modifiers: 0 text: "" @@ -141,36 +153,44 @@ VisualTest { count: 1 } Frame { - msec: 528 - hash: "56db24ad686d34e75a2d184e5b1da2a9" - } - Frame { msec: 544 - hash: "c3487c7c7dcd392e7eacb74045dd4143" + hash: "cad95931a38718eb481a9175fdfec305" } Frame { msec: 560 - hash: "70aedcda6c93875d18ee111d8a19549e" + hash: "1dc99e5c7e4d2fa6b624b6df250b78fc" } Frame { msec: 576 - hash: "47ad557d366536ad457f6866241dba93" + hash: "5d5739beb039a83bebb2c41489166edf" } Frame { msec: 592 - hash: "e715c2a82745829665226df78598b819" + hash: "6320c9a1c0013f5aa6180992b934ca59" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 608 - hash: "2ff4bd5602c34c020162f0503d625049" + hash: "9d9837c1f3779e5dab0dfeb1d11fdea1" } Frame { msec: 624 - hash: "a494b3b25a23daa858034ebccce0d1c7" + hash: "9d868112eaf70ce02ce93603278a565d" } Frame { msec: 640 - hash: "59d2fb8e21802d256b11730b31919fb3" + hash: "d2bccb3184d3bb42b91017410a8655b6" + } + Frame { + msec: 656 + hash: "68f8be3e16637fd39a35f0cebb62b74a" } Key { type: 7 @@ -181,67 +201,47 @@ VisualTest { count: 1 } Frame { - msec: 656 - hash: "5e09b95292d6d0afe76a5015b0ccebf1" - } - Frame { msec: 672 - hash: "de3c911aec7e42557ece4bdcf02ce562" + hash: "04f5781b57ed9fee32d5ef80dc33f4ff" } Frame { msec: 688 - hash: "680f51f63c4b11a247a668eb7bbd2b62" + hash: "06cc2e24a848d441074de5ddff1c739a" + } + Frame { + msec: 704 + hash: "94526186deb7248ac9c747ede15b106d" + } + Frame { + msec: 720 + hash: "1ac130517df314f4f44b9bde2d3dcc53" } Key { type: 6 - key: 16777236 + key: 16777234 modifiers: 0 text: "" autorep: false count: 1 } Frame { - msec: 704 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" - } - Frame { - msec: 720 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" - } - Frame { msec: 736 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" + hash: "270ecf4900e94d60599ded230633aa02" } Frame { msec: 752 - hash: "b4e273b6415e3951eab2f831100b0bb2" + hash: "ef2093584cbce9182b99f297fcd2465d" } Frame { msec: 768 - hash: "fd3fd655785c4e3c470f742451e3470f" + hash: "c445cf5f56213a712585934681d8af55" } Frame { msec: 784 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" - } - Frame { - msec: 800 - hash: "2a55b52db02d97963d382c9862307384" - } - Frame { - msec: 816 - hash: "c6c90915393fc7cb0aaa464caefbadb0" + hash: "9f0edb3871e015a549622e1b70d1b748" } Key { type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Key { - type: 6 key: 16777234 modifiers: 0 text: "" @@ -249,28 +249,44 @@ VisualTest { count: 1 } Frame { + msec: 800 + hash: "144c51d7aa47ea8cc8d79a97efa4b430" + } + Frame { + msec: 816 + hash: "34f768a7c99dfb3c8f0e1fb1a08a37ac" + } + Frame { msec: 832 - hash: "4f097223462c8f619188b0b0c2ecb080" + hash: "4f3970c4ad02b69f96c11610494e8a50" } Frame { msec: 848 - hash: "243be452ff0798538defc6a14cb8a08b" + hash: "815a1cf66f0c9eb47e244753eebb83ba" } Frame { msec: 864 - hash: "e5472ed9a8a43a64a0fea12540619940" + hash: "5db11f795c000b382fdc30726a711c65" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 880 - hash: "90b0f5f1aa7b5f066fb1266ea63254eb" + hash: "67976ee172d0d55992c0e4734fbb7ccf" } Frame { msec: 896 - hash: "97d5f9fe02e4bd06ec30a7805945f167" + hash: "c764e4d5317acbbf5118a08565e5d5fd" } Frame { msec: 912 - hash: "eb381a1e2ad945e4cfa540c137edbda7" + hash: "a83f566d01b990e91f43bb63a58fb5b8" } Key { type: 7 @@ -282,11 +298,11 @@ VisualTest { } Frame { msec: 928 - hash: "75252ff61682fd32117f0759ebe4b6a1" + hash: "031282f352e01f23bc5f73bf8ce82c9a" } Frame { msec: 944 - hash: "d724bdacc59bce29d0a42d72479be0b6" + hash: "1f3dc1d3ad0304376eac5d60d3c226ee" } Frame { msec: 960 @@ -294,207 +310,247 @@ VisualTest { } Frame { msec: 976 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 992 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1008 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 1024 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 1040 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 1056 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Key { - type: 6 - key: 16777248 - modifiers: 33554432 + type: 7 + key: 16777234 + modifiers: 0 text: "" autorep: false count: 1 } - Key { - type: 6 - key: 16777249 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + Frame { + msec: 1056 + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 1072 - hash: "d7703c18b69f485bba3abd655100b50d" + hash: "a2ad07326fafcb3012cdb869f39af466" } Frame { msec: 1088 - hash: "d724bdacc59bce29d0a42d72479be0b6" + hash: "8622eb25a6da44926b5161bce213a483" } Frame { msec: 1104 - hash: "75252ff61682fd32117f0759ebe4b6a1" + hash: "ccbd4d1e4865ebd9b0fe923e6ab05e5c" } Frame { msec: 1120 - hash: "eb381a1e2ad945e4cfa540c137edbda7" + hash: "775cd79b012f79b773449a0ad8457149" + } + Key { + type: 6 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1136 - hash: "97d5f9fe02e4bd06ec30a7805945f167" + hash: "2a4ed061e512c5afd11072c4b707f707" } Frame { msec: 1152 - hash: "90b0f5f1aa7b5f066fb1266ea63254eb" + hash: "c855df7b17811f25fd17e4fb108c02e1" } Frame { msec: 1168 - hash: "e5472ed9a8a43a64a0fea12540619940" + hash: "46c37d8e67ece5cae4f766acf50f3ca3" } Frame { msec: 1184 - hash: "243be452ff0798538defc6a14cb8a08b" + hash: "95a70f14ce01aae61190080ed3d55c77" } Frame { msec: 1200 - hash: "4f097223462c8f619188b0b0c2ecb080" + hash: "87da182d1285f3613bb2e4673e701757" + } + Key { + type: 7 + key: 16777234 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 1216 - hash: "e7346d8f223684143a0940def878b874" + hash: "5b97f13f43e713a6fbe96bdca8969191" } Frame { msec: 1232 - hash: "512b9746ae4482557b8cef9f99905954" + hash: "4d003182e7b7b0a05413b80f82a0fc41" } Frame { msec: 1248 - hash: "4220dde85eb1c027366efd0798927e8d" + hash: "dba09e038291a8dfdc61911d6b4b9bdf" } Frame { msec: 1264 - hash: "54f7f94b5cdf1becb2ee61d7f6f02c0e" + hash: "a2ae1e5cc6cd72fae70804e07df5a8a1" } Frame { msec: 1280 - hash: "de09380dd57c58ae99fbdba169a19975" + hash: "f1c2a24b6f0ebcf98122e8db1cdcb66f" } Frame { msec: 1296 - hash: "bfc1b03df244839a012e8302dc07764f" + hash: "142dade1639655132435ae260b7935a0" } - Frame { - msec: 1312 - hash: "d5f220e5337837ec0d07eb118e2f948e" + Key { + type: 6 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { - msec: 1328 - hash: "7640c78a286b0b7bdf2ec9117ceced4a" + msec: 1312 + hash: "e80c0175d947bceef4bf53b60bf7eac0" } Key { type: 6 - key: 16777234 + key: 16777248 modifiers: 100663296 text: "" autorep: false count: 1 } Frame { + msec: 1328 + hash: "de912cd8bd2fe762ec6b1ec819732507" + } + Frame { msec: 1344 - hash: "c659fd76d632aac26d396809b57826dd" + hash: "d3fa9dfab37ee26572d25bcbe8c66b72" } Frame { msec: 1360 - hash: "b5ba335eca37416970dcab53157d7ae6" + hash: "33bdb2817a2858ce430813d0774f0172" } Frame { msec: 1376 - hash: "df498dac81260d8867221612ff3b7619" + hash: "4f10f0ffb6b1c87155eedd53af36c74f" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1392 - hash: "578c3a682278f4ead0ca894f029dbfb7" + hash: "1b94be0de8412bd9380689895f290af7" } Frame { msec: 1408 - hash: "5fe9b2365b091047df1b18bcaa5b1bb4" + hash: "48b3a5e2b04c86a75f4b6595eb2c1f55" } Frame { msec: 1424 - hash: "c513b8df83f1d1cc3c05769c41741653" - } - Key { - type: 7 - key: 16777234 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + hash: "d092fabd3dd51c718486e1e7dadaa0dc" } Frame { msec: 1440 - hash: "ee70a2002f52a3f4a9fa32db668db3d0" + hash: "243359437235563f1a60b8eaf63365b6" } Frame { msec: 1456 - hash: "3f299da38c2f3f9057df987d5d339e1f" + hash: "a986c8ed8ad2d8b6aab2a001906ba2ad" } Frame { msec: 1472 - hash: "55f6adbd00910e5f39977162cfe8dcc5" + hash: "da5e06dc481e9cb7d9159a84d0cc150a" } Frame { msec: 1488 - hash: "151fb386855954ae5143046cab314ddf" + hash: "1d70a05fce3a05477e21d22b127ae96a" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1504 - hash: "d9ec76b2c07077b5b6d6c3777d116164" + hash: "913448213a07f6c8427c8e310d2026de" } Frame { msec: 1520 - hash: "ef3ba6c27d9b28de829360985505c185" + hash: "51bef5ae52977a935b66af4baf1da4e6" } Frame { msec: 1536 - hash: "8eafd8f9aea08c172f40de3c4f2b3b59" + hash: "367bc25f868c23005d7fe903a9ea681b" } Frame { msec: 1552 - hash: "2329d5b8182794bb8375f0de204c9b16" + hash: "3c25181652e788d128ed571ca4fea0b1" } Frame { msec: 1568 - hash: "e6b25cf1a8c6858f6937e649b1315955" + hash: "0218f939ff2b8c0bc22a537ed0f053f0" } Frame { msec: 1584 - hash: "3aeedff600509a138b0de31e10bbdd7b" + hash: "a3b765a823b2b3811273a1be90850533" } Frame { msec: 1600 - hash: "0636dee0ddc551ce8ecf3a6c6300b020" + hash: "2a42a29774eb4f962d299f8c2c213d55" } Frame { msec: 1616 - hash: "77f5b0dfdf0c631cf863be60bd09db9c" + hash: "1f0ad54d0fe8fc27cadbaaeaa37364e0" } Frame { msec: 1632 - hash: "2e86762371ae933546e8b2154c78f74b" + hash: "04d6028d1b1a1178e5bf774db8eef2c6" } Frame { msec: 1648 - hash: "1051ec29f94c31b257a5b1c922f8e93f" + hash: "c325e46e89e8df04e2c3d8bf111c5f09" + } + Frame { + msec: 1664 + hash: "70e6223ce16a797e2c56e21ad74b188b" + } + Frame { + msec: 1680 + hash: "0fb8762fd28564b84b83c17d749a3645" } Key { type: 6 @@ -505,76 +561,84 @@ VisualTest { count: 1 } Frame { - msec: 1664 - hash: "5c60da876c8cc9fa334905b5fc7c2a3d" - } - Frame { - msec: 1680 - hash: "c0b0cddd62853ac3499b7ada200d206a" - } - Frame { msec: 1696 - hash: "5bd588d64917f942e0f5ea1553acbf63" + hash: "ef5d19b59792ea8822e2391fe0d91dbd" } Frame { msec: 1712 - hash: "bc5744ef5c81b7d5b365bf977f909be5" - } - Key { - type: 7 - key: 16777236 - modifiers: 100663296 - text: "" - autorep: false - count: 1 + hash: "70ad15030164be8afbb4ab22d1ae5f5f" } Frame { msec: 1728 - hash: "892a1a8a5a9c198e5ae04cc19f0e1d0c" + hash: "a5dfb8bd4b681e0d8d2c082821a2a976" } Frame { msec: 1744 - hash: "708799d2d834302c659958701e217b37" + hash: "864781fbb8673b1e603df015f2d88601" } Frame { msec: 1760 - hash: "360d75bcc178bcfd4f93741d653fd821" + hash: "0bdb6a155cdd14f4dce9fde3c5116dde" } Frame { msec: 1776 - hash: "1cfe03528b1cd84e69efc02b9677c748" + hash: "5421f521a9bdccc8478fcee97e0dbc99" } Frame { msec: 1792 - hash: "6f45d7c37f1fb90138011b2af24aaf1e" + hash: "c5f29693dd017932767f37e2fb2f22f2" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1808 - hash: "ba164375e7ac18cf2e1e613498158fbf" + hash: "b5e8abeaec33407e673f8021212528b1" } Frame { msec: 1824 - hash: "14052b9da9e17a6f06fed05d4ed82b9c" + hash: "917c968e5ee8f0b25fdb175719d7dbfa" } Frame { msec: 1840 - hash: "aac15ce22bfe38f44a46e4644913f144" + hash: "56495c63676b9f73004e76e38d60567e" } Frame { msec: 1856 - hash: "c63aa02ba29ea18334b188185690948d" + hash: "86f1ccdd7ff408c5b141d79797eea1fa" + } + Key { + type: 7 + key: 16777248 + modifiers: 67108864 + text: "" + autorep: false + count: 1 } Frame { msec: 1872 - hash: "11ed187ccd4c2221f166851c08b6b467" + hash: "9e9b32a9f71ab1aa4e87ddc323ccda03" + } + Key { + type: 6 + key: 16777248 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 1888 - hash: "3543bd4e538981d4bb2c2313c9663a53" + hash: "360aef37452ce8f045659c227285cb82" } Frame { msec: 1904 - hash: "a05fa618b094bde2b54b730f513bcabe" + hash: "805949377c620fa4310aa4328eba1f23" } Frame { msec: 1920 @@ -582,527 +646,623 @@ VisualTest { } Frame { msec: 1936 - hash: "52fc4a32526a74f9a04d8795c7a47c6e" + hash: "00df8110a2008ba77b7e0bf2130e5319" } Frame { msec: 1952 - hash: "17623e1b0ffca3b7736ce930f078dbe0" + hash: "835f6f723577071461e41da1fd2e990a" } Frame { msec: 1968 - hash: "75226dac5691627851d83c7370d7603c" - } - Key { - type: 7 - key: 16777249 - modifiers: 33554432 - text: "" - autorep: false - count: 1 + hash: "6876cafa4d6d3a7d387602eba4d26db1" } Frame { msec: 1984 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" } Frame { msec: 2000 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" } Frame { msec: 2016 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" } Frame { msec: 2032 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Key { + type: 7 + key: 16777249 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 2048 - hash: "9e506ad52020e2913e80a13a7f3ac797" + hash: "5570ae1e700cdf42ba516be69fbaadc0" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2064 - hash: "75226dac5691627851d83c7370d7603c" + hash: "6876cafa4d6d3a7d387602eba4d26db1" } Frame { msec: 2080 - hash: "17623e1b0ffca3b7736ce930f078dbe0" + hash: "835f6f723577071461e41da1fd2e990a" } Frame { msec: 2096 - hash: "52fc4a32526a74f9a04d8795c7a47c6e" + hash: "00df8110a2008ba77b7e0bf2130e5319" } Frame { msec: 2112 - hash: "89f2d3b4441faee557b8d5f44e1e1e18" + hash: "627206a252bd6fcbf57d9f1cde0506bb" } Frame { msec: 2128 - hash: "a05fa618b094bde2b54b730f513bcabe" + hash: "805949377c620fa4310aa4328eba1f23" } Frame { msec: 2144 - hash: "3543bd4e538981d4bb2c2313c9663a53" + hash: "360aef37452ce8f045659c227285cb82" + } + Key { + type: 6 + key: 16777236 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 2160 - hash: "11ed187ccd4c2221f166851c08b6b467" + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" } Frame { msec: 2176 - hash: "c63aa02ba29ea18334b188185690948d" + hash: "520a544fd92f17a14380803e253b396f" } Frame { msec: 2192 - hash: "aac15ce22bfe38f44a46e4644913f144" + hash: "4a080a5154c517e6bcf24b3a1f1d7f2c" } Frame { msec: 2208 - hash: "14052b9da9e17a6f06fed05d4ed82b9c" + hash: "e83642b0793f5a790efca65ccf20a720" } Frame { msec: 2224 - hash: "ba164375e7ac18cf2e1e613498158fbf" + hash: "8210b9cbf19f519ee34f4bb1a6afce16" } Frame { msec: 2240 - hash: "6f45d7c37f1fb90138011b2af24aaf1e" - } - Frame { - msec: 2256 - hash: "1cfe03528b1cd84e69efc02b9677c748" + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" } Key { type: 7 - key: 16777248 + key: 16777236 modifiers: 0 text: "" autorep: false count: 1 } Frame { + msec: 2256 + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" + } + Frame { msec: 2272 - hash: "360d75bcc178bcfd4f93741d653fd821" + hash: "718ac9cb5ef2992b06b34e957f987b7a" } Frame { msec: 2288 - hash: "708799d2d834302c659958701e217b37" + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" } Frame { msec: 2304 - hash: "892a1a8a5a9c198e5ae04cc19f0e1d0c" + hash: "c0eb56c72311263d892ce65331547531" } Frame { msec: 2320 - hash: "bc5744ef5c81b7d5b365bf977f909be5" + hash: "585ad3efb7330de889b8cf56a51a0899" } Frame { msec: 2336 - hash: "5bd588d64917f942e0f5ea1553acbf63" + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" } Frame { msec: 2352 - hash: "c0b0cddd62853ac3499b7ada200d206a" + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" } Key { type: 6 - key: 16777236 - modifiers: 0 + key: 16777249 + modifiers: 67108864 + text: "" + autorep: false + count: 1 + } + Key { + type: 6 + key: 16777248 + modifiers: 100663296 text: "" autorep: false count: 1 } Frame { msec: 2368 - hash: "5c60da876c8cc9fa334905b5fc7c2a3d" + hash: "1dddd18a4ef66df9d9b431b2860e24d1" } Frame { msec: 2384 - hash: "136a103a893991b97ec09f373c68c5b9" + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" } Frame { msec: 2400 - hash: "b2181ce0165ee060e1a8b713027011a9" + hash: "062091bc7a5f3296c669614318b80fe7" } Frame { msec: 2416 - hash: "e4836bbaf1834658e3ec4bf54a619b53" + hash: "836f37fe92a46233640e0bd2c0932fea" } Frame { msec: 2432 - hash: "3072492f5f72427c8d45cf3c5d3ff919" + hash: "f14ec1544a380fc9993b39754c23c2f4" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2448 - hash: "d897cba896239c77df4f7adb93ad5def" + hash: "2d549b5fea734e47682415df1717e6a6" } Frame { msec: 2464 - hash: "ec9867a95de6d6f4c0f92af567d73771" - } - Key { - type: 7 - key: 16777236 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "824c5960260dd3ed7527709ebfb06d27" } Frame { msec: 2480 - hash: "06b72e3180eb946622e4592de0fa6f91" + hash: "258f034fe1e71f25a92e667e05f53e82" } Frame { msec: 2496 - hash: "33f109c026eaefed113cc12db5912a19" + hash: "c432e758e19c44d788cb38df6e4c6d69" } Frame { msec: 2512 - hash: "ce72c4b4470394dc1c4efd4d9de9907f" + hash: "a1856592208f9a00385b13c44e1c4503" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2528 - hash: "64ac1105ea10ae1f6401e8421731c606" + hash: "2b4d40a0555df0b86f52d13790185459" } Frame { msec: 2544 - hash: "ef977bd74941d3506b8f3ee4b1f587ad" + hash: "b153143e6b16c47fa06663dc6b1034d6" } Frame { msec: 2560 - hash: "9278de91e10788ae5a80399ff5372460" + hash: "ac52236c5d73aeae7c0834df1e6bd84e" } Frame { msec: 2576 - hash: "ddaaf945a5f714b856ed5155f4e502b2" + hash: "136eeb348b0b96edc9aaf9fbea741973" } Frame { msec: 2592 - hash: "f6bb6ba15d996345df04825da71c2cf3" + hash: "4f8a1dfa8906de2bcdfbf5c3b29fbf9b" + } + Key { + type: 6 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2608 - hash: "466c78a5a5052b39b113adeda761da6c" + hash: "7dc9726df2d112b46f4d9dbe66d534c7" } Frame { msec: 2624 - hash: "db650537d773e0d8a737a7bf5f408a5e" + hash: "f64086ca0e83fa8bb0fae28065260fdc" } Frame { msec: 2640 - hash: "64be9f85869f19defada296343895a2b" + hash: "5237dd2b79d71bbfa0a0d3963a7f42b7" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2656 - hash: "5ac6d9751bfadbc7aa064ca0b4d78b2b" + hash: "8dd435b577bb258979d33034885a8cd8" } Frame { msec: 2672 - hash: "a088b351dcc6fc3a8d29256f3a2410c3" + hash: "2609c066b8f102b4189991bf7d01eaad" } Frame { msec: 2688 - hash: "a16a77170a6c969042024fa0868da12d" + hash: "986fab22391264d04df9a55b18aee645" } Frame { msec: 2704 - hash: "3a2509d0d3a314d2ed72f811f4af741e" + hash: "0256423680aa0843fe8ec84f5e68fc9b" } Frame { msec: 2720 - hash: "484db4e1954048cad7eea48bfea08267" - } - Frame { - msec: 2736 - hash: "ad0f84634c5f99ab62ab6d12ad8d8c6a" - } - Frame { - msec: 2752 - hash: "d99b590307f6910963257a1c41c50120" + hash: "b822bdcad69aa868f48b2bbf2d62e297" } Key { type: 6 key: 16777234 - modifiers: 0 + modifiers: 100663296 text: "" autorep: false count: 1 } Frame { + msec: 2736 + hash: "14effed70ca60233be9b2f6d0a1b5e6c" + } + Frame { + msec: 2752 + hash: "1abaf2c36a0fb9f04606c0e191d113cf" + } + Frame { msec: 2768 - hash: "54f7f94b5cdf1becb2ee61d7f6f02c0e" + hash: "cffb8ca29b0369d183d6461bf9e63fdf" } Frame { msec: 2784 - hash: "4220dde85eb1c027366efd0798927e8d" + hash: "9378bebddb09036bec98ff7018dcf7c1" + } + Key { + type: 7 + key: 16777234 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 2800 - hash: "512b9746ae4482557b8cef9f99905954" + hash: "0c3823994ee8f838c26040118ba62622" } Frame { msec: 2816 - hash: "e7346d8f223684143a0940def878b874" + hash: "d374547f47adc81a18428c7a79cb9cf2" } Frame { msec: 2832 - hash: "4f097223462c8f619188b0b0c2ecb080" + hash: "449c2996a2d0e74f2300adad619700bc" } Frame { msec: 2848 - hash: "243be452ff0798538defc6a14cb8a08b" + hash: "14379a320b6fc36de5d2a6776f1dc963" } Frame { msec: 2864 - hash: "e5472ed9a8a43a64a0fea12540619940" + hash: "cb010a99ffa3b6df26c6cd263a21cfcd" } Frame { msec: 2880 image: "cursorDelegate.2.png" } - Key { - type: 7 - key: 16777234 - modifiers: 0 - text: "" - autorep: false - count: 1 - } Frame { msec: 2896 - hash: "97d5f9fe02e4bd06ec30a7805945f167" + hash: "a445d23288d462009916e31f370a2068" } Frame { msec: 2912 - hash: "eb381a1e2ad945e4cfa540c137edbda7" + hash: "8b3f2811300830e837797056f262bec2" } Frame { msec: 2928 - hash: "75252ff61682fd32117f0759ebe4b6a1" + hash: "2303a27e72334cae84b4fe51a62974ba" } Frame { msec: 2944 - hash: "d724bdacc59bce29d0a42d72479be0b6" + hash: "f3a9f3e74d2d83e38aee78cab7209bd6" } Frame { msec: 2960 - hash: "d7703c18b69f485bba3abd655100b50d" + hash: "ca4777127a535655f057af57cf3e8c7b" } Frame { msec: 2976 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 2992 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3008 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3024 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3040 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3056 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "de2b65920fa9177a79019f33712c2275" } Frame { msec: 3072 - hash: "d7703c18b69f485bba3abd655100b50d" + hash: "ca4777127a535655f057af57cf3e8c7b" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3088 - hash: "d724bdacc59bce29d0a42d72479be0b6" + hash: "83cfb141f6b77fa062443a442a5b2e9e" } Frame { msec: 3104 - hash: "75252ff61682fd32117f0759ebe4b6a1" + hash: "b3e262864238d03f988c9750cc74e48f" } Frame { msec: 3120 - hash: "eb381a1e2ad945e4cfa540c137edbda7" + hash: "6ed2086ae01be46f0684bbecc05484c4" } Frame { msec: 3136 - hash: "97d5f9fe02e4bd06ec30a7805945f167" + hash: "91f6dad8f05577af6e4f5f0aceb06b4b" } Frame { msec: 3152 - hash: "90b0f5f1aa7b5f066fb1266ea63254eb" + hash: "1bfb0c299c3c0db0518eaa54137c22b0" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3168 - hash: "e5472ed9a8a43a64a0fea12540619940" + hash: "37cc96ef4b760faadf76cc471f6ba49a" } Frame { msec: 3184 - hash: "243be452ff0798538defc6a14cb8a08b" + hash: "67c848bf93e845eaf5eebc9b8e57482c" } Frame { msec: 3200 - hash: "4f097223462c8f619188b0b0c2ecb080" + hash: "e3906ad9b1dfbd1170364c11ff4b286f" } Frame { msec: 3216 - hash: "e7346d8f223684143a0940def878b874" + hash: "24dd59673c5659e3bf6f52723e1bcd07" } Frame { msec: 3232 - hash: "512b9746ae4482557b8cef9f99905954" + hash: "4b694f05f147bcf901a16807d4e3ec7c" } Frame { msec: 3248 - hash: "4220dde85eb1c027366efd0798927e8d" + hash: "9d9dbf34f6a67a49210caa249b8a1abb" + } + Key { + type: 6 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3264 - hash: "54f7f94b5cdf1becb2ee61d7f6f02c0e" + hash: "5381cde4763aa45c97793124e42db6f5" } Frame { msec: 3280 - hash: "de09380dd57c58ae99fbdba169a19975" + hash: "0f113c0263faa47428c4d16891ac4d4f" } Frame { msec: 3296 - hash: "bfc1b03df244839a012e8302dc07764f" + hash: "cc1767ec13803959333cd35bfb2d9119" } Frame { msec: 3312 - hash: "d5f220e5337837ec0d07eb118e2f948e" + hash: "ec1b4c71f9bd63ccf6d766b0b2f68b30" } Frame { msec: 3328 - hash: "7640c78a286b0b7bdf2ec9117ceced4a" + hash: "114ad78597ede2afc4dd8bafa1d4df21" } Frame { msec: 3344 - hash: "680f51f63c4b11a247a668eb7bbd2b62" + hash: "d08dc22ddc707316483f09b796ea0380" } Frame { msec: 3360 - hash: "de3c911aec7e42557ece4bdcf02ce562" + hash: "135b2b0f4e469b207e673d1e7086cd4f" + } + Key { + type: 7 + key: 16777236 + modifiers: 100663296 + text: "" + autorep: false + count: 1 } Frame { msec: 3376 - hash: "5e09b95292d6d0afe76a5015b0ccebf1" + hash: "4267354fe0d24597bdb5ee1a6e9affbb" } Frame { msec: 3392 - hash: "59d2fb8e21802d256b11730b31919fb3" + hash: "700bd56ecea646bbec2017007bbb5b84" } Frame { msec: 3408 - hash: "a494b3b25a23daa858034ebccce0d1c7" + hash: "874a65c2069f4ba89301c129f884f217" } Frame { msec: 3424 - hash: "2ff4bd5602c34c020162f0503d625049" + hash: "b5ec22f95abb43c83533f7dc606667f6" } Frame { msec: 3440 - hash: "e715c2a82745829665226df78598b819" + hash: "445de6663e80d1fe1527ec5acf4ec1de" } Frame { msec: 3456 - hash: "47ad557d366536ad457f6866241dba93" + hash: "87c129a5bf08536d3fca90375283e26b" } Frame { msec: 3472 - hash: "70aedcda6c93875d18ee111d8a19549e" + hash: "a63e2438a9cd412c2b119cd42b11009f" } Frame { msec: 3488 - hash: "c3487c7c7dcd392e7eacb74045dd4143" + hash: "61a3475bef5fd276b836cf3483526f57" } Frame { msec: 3504 - hash: "56db24ad686d34e75a2d184e5b1da2a9" + hash: "097ab9a1a1fe9743f162f57b93599fe7" + } + Key { + type: 7 + key: 16777249 + modifiers: 33554432 + text: "" + autorep: false + count: 1 } Frame { msec: 3520 - hash: "436349a8371597a74404428983cd894c" + hash: "ebae1fb540c6ff6b0bc9a951391e2e94" } Frame { msec: 3536 - hash: "6e1bb59ec518614a0414092f4939d5ad" + hash: "ffc2da2e4c091eadaa9746b42b56d9e4" + } + Key { + type: 7 + key: 16777248 + modifiers: 0 + text: "" + autorep: false + count: 1 } Frame { msec: 3552 - hash: "f0aa02772df579b921e0c68f794d2327" + hash: "f243d823fc9977e69a008010d8db8a01" } Frame { msec: 3568 - hash: "09ea1462da333c2aeaaa01e9e4f8d54b" + hash: "592ac5bbf1c4b3a360be4d76c40a2be2" } Frame { msec: 3584 - hash: "46d23d8472ce833591dcff548a644288" + hash: "bd5b206097f30dfce884a8c74856857d" } Frame { msec: 3600 - hash: "a7566d5d35a89078bb378bf3f6c78e13" + hash: "f14ec1544a380fc9993b39754c23c2f4" } Frame { msec: 3616 - hash: "4c5f7155b20e34a5627387cdc466e890" + hash: "836f37fe92a46233640e0bd2c0932fea" } Frame { msec: 3632 - hash: "e9b98922327c412db0116a56283d3c86" + hash: "062091bc7a5f3296c669614318b80fe7" } Frame { msec: 3648 - hash: "29ffede9c16c34ead5f291e69e388084" + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" } Frame { msec: 3664 - hash: "16958b8f0b1dbdc15333d99bd1349124" + hash: "1dddd18a4ef66df9d9b431b2860e24d1" } Frame { msec: 3680 - hash: "3408f8d6e4d6ef34d4d5a0cb51090c4c" + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" } Frame { msec: 3696 - hash: "b32b099b260789266d0a3c0edd61c04e" + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" } Frame { msec: 3712 - hash: "4dd3617b25e8b95cf2ec31db8b3bb80f" + hash: "585ad3efb7330de889b8cf56a51a0899" } Frame { msec: 3728 - hash: "46b42a08c59909f067810d1984f7a04e" + hash: "c0eb56c72311263d892ce65331547531" } Frame { msec: 3744 - hash: "ab8c505601c381e8a44fa7b6eea6579d" + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" } Frame { msec: 3760 - hash: "73f56e6e1d2cbf3f559d679eb2c15529" + hash: "718ac9cb5ef2992b06b34e957f987b7a" } Frame { msec: 3776 - hash: "b230c56da330823d7d7f7e081c304acb" + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" } Frame { msec: 3792 - hash: "9f3cbd0023dbd78ba4951c26f71c7d5d" + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" } Frame { msec: 3808 - hash: "9e9b11cf2695dd02c1ab175ff194f491" + hash: "8210b9cbf19f519ee34f4bb1a6afce16" } Frame { msec: 3824 - hash: "8fa6f8eb5deb0ab95c3454e5812ada1d" + hash: "e83642b0793f5a790efca65ccf20a720" } Frame { msec: 3840 @@ -1110,271 +1270,239 @@ VisualTest { } Frame { msec: 3856 - hash: "0b6b24ae8df7c3aa9abb48edb6619d8a" + hash: "520a544fd92f17a14380803e253b396f" } Frame { msec: 3872 - hash: "45805295dd2482fdf21ac8c9bfe47869" + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" } Frame { msec: 3888 - hash: "4893cd31a730d786f075edfd0afc0ad9" + hash: "5ee8c9dc7b238db131b3a078e46a8bbd" } Frame { msec: 3904 - hash: "a3fbfe732568f5cf6e63809fd7e0c32e" + hash: "69720bcca91f99f229aebc74c5e74261" } Frame { msec: 3920 - hash: "21d3327710d51f714e84b5a28df13e4f" + hash: "41d8f4031223f7c833d50208e231964a" } Frame { msec: 3936 - hash: "ea065ab48f27f60505eab36debee3faa" + hash: "6fa8fd3252f367f3fafea4e3c7317a48" } Frame { msec: 3952 - hash: "fe4c2e368d2110374b7ba9e30f330713" + hash: "8a1b63c42867f87a1cf4b47944b3860a" } Frame { msec: 3968 - hash: "723281f6c1a3f03cf170e4de93fa4dbf" + hash: "8c6052eb4cf03d7742a73874d9f15285" } Frame { msec: 3984 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4000 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4016 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4032 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4048 - hash: "e3948b393a3778066a90197b31c71e51" + hash: "7bae45481596788afde8866a3c97edd7" } Frame { msec: 4064 - hash: "723281f6c1a3f03cf170e4de93fa4dbf" - } - Key { - type: 6 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "8c6052eb4cf03d7742a73874d9f15285" } Frame { msec: 4080 - hash: "c779e46a89c3c9d0f8234a3192175b60" + hash: "8a1b63c42867f87a1cf4b47944b3860a" } Frame { msec: 4096 - hash: "f223cfeba468e161943b24ac960196de" + hash: "6fa8fd3252f367f3fafea4e3c7317a48" } Frame { msec: 4112 - hash: "dd2f21f063d055edc23c874380149067" + hash: "41d8f4031223f7c833d50208e231964a" } Frame { msec: 4128 - hash: "af580b32b67117eb062bbcefe262c719" - } - Key { - type: 7 - key: 16777232 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "69720bcca91f99f229aebc74c5e74261" } Frame { msec: 4144 - hash: "991f76d483e033024932790f85bb3c5d" + hash: "5ee8c9dc7b238db131b3a078e46a8bbd" } Frame { msec: 4160 - hash: "3d8aa66ab9533d14a468f0869b457033" + hash: "0ac33070e0c736bc0fb5ab12fa444b5c" } Frame { msec: 4176 - hash: "a5540bd5d088ab1201b5f22b32579d7c" + hash: "520a544fd92f17a14380803e253b396f" } Frame { msec: 4192 - hash: "e0844f30578fef2cdcee4e4ff28ab7cf" + hash: "4a080a5154c517e6bcf24b3a1f1d7f2c" } Frame { msec: 4208 - hash: "710e7022b65a9b3fd3a7372bf7f37c7a" + hash: "e83642b0793f5a790efca65ccf20a720" } Frame { msec: 4224 - hash: "db553c856b11db7e6feb38b9d562a804" + hash: "8210b9cbf19f519ee34f4bb1a6afce16" } Frame { msec: 4240 - hash: "6ba56c4ec6e903b0d82235c230ed78cb" + hash: "54d04e64af5c0a3d29f2dc8c0977ed3a" } Frame { msec: 4256 - hash: "786de35a11c3fc1a228392195f509c28" + hash: "ae2a644f96bd7b2662ebcf4ebc33d930" } Frame { msec: 4272 - hash: "cc6307597cea821b63391fc9bdbe038b" + hash: "718ac9cb5ef2992b06b34e957f987b7a" } Frame { msec: 4288 - hash: "73d49e4d0bef103e11820d888bef0368" + hash: "a2e1dea5e5f37697c7ce1a9419b94f65" } Frame { msec: 4304 - hash: "b2ed6ebf66252463326c2f220b3992fa" + hash: "c0eb56c72311263d892ce65331547531" } Frame { msec: 4320 - hash: "129b5bc6d55621e2366fc0d80f105df2" + hash: "585ad3efb7330de889b8cf56a51a0899" } Frame { msec: 4336 - hash: "ae8fe55fa9b497cd6eff18a517c301d8" + hash: "236e54ae31e5ee3d08a7bc9aeaef0d9b" } Frame { msec: 4352 - hash: "535210bd848a20db2966b06278198e07" + hash: "d6218c8bb4da9d62bdb5d0cf5d7f8e37" } Frame { msec: 4368 - hash: "1f4ea7783b5c60bfc424c73cea07a3a0" + hash: "1dddd18a4ef66df9d9b431b2860e24d1" } Frame { msec: 4384 - hash: "5b61f2e9308c4de2864bb7cf133ce545" + hash: "5b1b45e75f5a829b31c0b6eb0189da7c" } Frame { msec: 4400 - hash: "f641f87e9556ecfd24f0f0a772295e52" + hash: "062091bc7a5f3296c669614318b80fe7" } Frame { msec: 4416 - hash: "36f28574c0b042647bc064d75afa9fbc" + hash: "836f37fe92a46233640e0bd2c0932fea" } Frame { msec: 4432 - hash: "dba2ca165b8ab35113b8ec127b204ae9" + hash: "f14ec1544a380fc9993b39754c23c2f4" } Frame { msec: 4448 - hash: "56324b95f63eabba718df588159f374d" + hash: "bd5b206097f30dfce884a8c74856857d" } Frame { msec: 4464 - hash: "af65d67fef3c743e31acca03716040c4" + hash: "592ac5bbf1c4b3a360be4d76c40a2be2" } Frame { msec: 4480 - hash: "105481b5becd127af4c28961d900148c" + hash: "f243d823fc9977e69a008010d8db8a01" } Frame { msec: 4496 - hash: "4859d6bf9c456e52fd463e4c2f68d7f6" + hash: "ffc2da2e4c091eadaa9746b42b56d9e4" } Frame { msec: 4512 - hash: "21c0958bd3c6a1056bb062165c9bc18b" + hash: "ebae1fb540c6ff6b0bc9a951391e2e94" } Frame { msec: 4528 - hash: "287d258a79f45c26c92c69cce6b1a2f3" + hash: "097ab9a1a1fe9743f162f57b93599fe7" } Frame { msec: 4544 - hash: "deabc5c7dd111adcb253eb833f118764" + hash: "61a3475bef5fd276b836cf3483526f57" } Frame { msec: 4560 - hash: "4bad7380f6b645c551edbe06ff67cac9" + hash: "a63e2438a9cd412c2b119cd42b11009f" } Frame { msec: 4576 - hash: "67fc71c16d0b9405c35590bafdc5ea40" - } - Key { - type: 6 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "87c129a5bf08536d3fca90375283e26b" } Frame { msec: 4592 - hash: "7aed794eae2f0c65342f190ed4d4f889" + hash: "445de6663e80d1fe1527ec5acf4ec1de" } Frame { msec: 4608 - hash: "23edee3af8f1904558863d37c520555a" + hash: "b5ec22f95abb43c83533f7dc606667f6" } Frame { msec: 4624 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Key { - type: 7 - key: 16777233 - modifiers: 0 - text: "" - autorep: false - count: 1 + hash: "874a65c2069f4ba89301c129f884f217" } Frame { msec: 4640 - hash: "86ed2aa2428feb9c6c14ad2a74e97978" + hash: "700bd56ecea646bbec2017007bbb5b84" } Frame { msec: 4656 - hash: "e189dc0dae9457a6af5082c6ccf451b6" + hash: "4267354fe0d24597bdb5ee1a6e9affbb" } Frame { msec: 4672 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" + hash: "135b2b0f4e469b207e673d1e7086cd4f" } Frame { msec: 4688 - hash: "5a11ec8a0485a018ebe317e01136e4a5" + hash: "d08dc22ddc707316483f09b796ea0380" } Frame { msec: 4704 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" + hash: "114ad78597ede2afc4dd8bafa1d4df21" } Frame { msec: 4720 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" + hash: "ec1b4c71f9bd63ccf6d766b0b2f68b30" } Frame { msec: 4736 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" + hash: "cc1767ec13803959333cd35bfb2d9119" } Frame { msec: 4752 - hash: "b4e273b6415e3951eab2f831100b0bb2" + hash: "0f113c0263faa47428c4d16891ac4d4f" } Frame { msec: 4768 - hash: "fd3fd655785c4e3c470f742451e3470f" + hash: "5381cde4763aa45c97793124e42db6f5" } Frame { msec: 4784 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" + hash: "99940d6744ac1245f82d62f08c371285" } Frame { msec: 4800 @@ -1382,1998 +1510,42 @@ VisualTest { } Frame { msec: 4816 - hash: "c6c90915393fc7cb0aaa464caefbadb0" + hash: "77bbed46c7eb023252cdd80d0a15f38a" } Frame { msec: 4832 - hash: "36b65658073ac2687dbd88ec7a408a98" + hash: "36ee4da72825e96d5f670c94865a30d8" } Frame { msec: 4848 - hash: "84e165f9f2c55c5c51a260b11ca195c2" + hash: "c64d56c1b7df0a5c63ab8ff08ae6daf9" } Frame { msec: 4864 - hash: "c11cfcfda6f161d058a3d9e93349b578" + hash: "942e038a3426fa318212a8f245141225" } Frame { msec: 4880 - hash: "0568f8c0e1fa51b7547790a7f4978ea3" + hash: "c033ebaee12dd8fe953e91160f986c3d" } Frame { msec: 4896 - hash: "b66fd97ac36ac395df74e9a0dd58d0c7" + hash: "07e64024cf7eda082297f6f83dba8067" } Frame { msec: 4912 - hash: "31b5b3d68e452ffd90e9804ff9e9a264" + hash: "b33cd5bbb90d435dd7ea3ab67bef88ee" } Frame { msec: 4928 - hash: "3cc8791e419986e1e913d4e153243fb2" + hash: "90712efd7c17b0ad33d2c2c02e9eaa97" } Frame { msec: 4944 - hash: "ff1b3ce85bc9f3dd3feb90fa31c3bc0a" + hash: "7e2e55555ee2c7e172e61ddb6365355d" } Frame { msec: 4960 - hash: "d3ae969e538c642d82662d08ef05964e" - } - Frame { - msec: 4976 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 4992 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5008 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5024 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5040 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5056 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 5072 - hash: "d3ae969e538c642d82662d08ef05964e" - } - Frame { - msec: 5088 - hash: "ff1b3ce85bc9f3dd3feb90fa31c3bc0a" - } - Frame { - msec: 5104 - hash: "3cc8791e419986e1e913d4e153243fb2" - } - Frame { - msec: 5120 - hash: "31b5b3d68e452ffd90e9804ff9e9a264" - } - Frame { - msec: 5136 - hash: "b66fd97ac36ac395df74e9a0dd58d0c7" - } - Frame { - msec: 5152 - hash: "0568f8c0e1fa51b7547790a7f4978ea3" - } - Frame { - msec: 5168 - hash: "c11cfcfda6f161d058a3d9e93349b578" - } - Frame { - msec: 5184 - hash: "84e165f9f2c55c5c51a260b11ca195c2" - } - Frame { - msec: 5200 - hash: "36b65658073ac2687dbd88ec7a408a98" - } - Frame { - msec: 5216 - hash: "c6c90915393fc7cb0aaa464caefbadb0" - } - Frame { - msec: 5232 - hash: "2a55b52db02d97963d382c9862307384" - } - Frame { - msec: 5248 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" - } - Frame { - msec: 5264 - hash: "fd3fd655785c4e3c470f742451e3470f" - } - Frame { - msec: 5280 - hash: "b4e273b6415e3951eab2f831100b0bb2" - } - Frame { - msec: 5296 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" - } - Frame { - msec: 5312 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" - } - Frame { - msec: 5328 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" - } - Frame { - msec: 5344 - hash: "5a11ec8a0485a018ebe317e01136e4a5" - } - Frame { - msec: 5360 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" - } - Frame { - msec: 5376 - hash: "e189dc0dae9457a6af5082c6ccf451b6" - } - Frame { - msec: 5392 - hash: "86ed2aa2428feb9c6c14ad2a74e97978" - } - Frame { - msec: 5408 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Frame { - msec: 5424 - hash: "23edee3af8f1904558863d37c520555a" - } - Frame { - msec: 5440 - hash: "7aed794eae2f0c65342f190ed4d4f889" - } - Frame { - msec: 5456 - hash: "0fa12b48c08266f50e77506e4136dd56" - } - Frame { - msec: 5472 - hash: "679ee2b26a118ab53a84fa116de09edf" - } - Frame { - msec: 5488 - hash: "b9dcdd88fba70636cbcae160edcc0136" - } - Frame { - msec: 5504 - hash: "90af75eeef63ae67e9f6ff1a61d7cca3" - } - Frame { - msec: 5520 - hash: "29d80ae32451c24b655c4d1fd01d3aa1" - } - Frame { - msec: 5536 - hash: "c73fe137644cbc006d0b5274b72faa46" - } - Frame { - msec: 5552 - hash: "8a4d76ae60f5d720a382cced2f6a2b5e" - } - Frame { - msec: 5568 - hash: "a1efa0d424d568d338c6db9fc095c2fb" - } - Frame { - msec: 5584 - hash: "205cafcabb29b78a6db3dcaf44a74ab6" - } - Frame { - msec: 5600 - hash: "7507a3d2158d4cc68454c85922526871" - } - Frame { - msec: 5616 - hash: "7135a6a7999e82cb81e39228805332ee" - } - Frame { - msec: 5632 - hash: "ac2b714b5f32d2b911f31690d7082dc1" - } - Frame { - msec: 5648 - hash: "5cb1ae6d86aafdf11284480c81b939dc" - } - Frame { - msec: 5664 - hash: "ac705840cc94eb4af7a52d62649d0157" - } - Frame { - msec: 5680 - hash: "8c2ebcd80e26ac7b9d25be486f54c4ce" - } - Frame { - msec: 5696 - hash: "12b84aa02dbbab3592d3eb3cb6884b41" - } - Frame { - msec: 5712 - hash: "675043ddde6ed65a3ec4ed093be1e760" - } - Frame { - msec: 5728 - hash: "478126aeef5ddae9c0a77d08294cf3f2" - } - Frame { - msec: 5744 - hash: "0b43af73d91a500ccdf27b4347b9bc47" - } - Frame { - msec: 5760 - image: "cursorDelegate.5.png" - } - Frame { - msec: 5776 - hash: "a6d8708d08bedf0cab5230d6f2936936" - } - Frame { - msec: 5792 - hash: "02e0646024aeef6f01b7541b15267baa" - } - Frame { - msec: 5808 - hash: "da6717c94b46ad7a647c445c06314b0d" - } - Frame { - msec: 5824 - hash: "2ed12d49d72884160ebbf6b6d0e15a9d" - } - Frame { - msec: 5840 - hash: "a1fbc3333b7f742a8336a6fcbad156c9" - } - Frame { - msec: 5856 - hash: "25cac33299d58cdd7775e8b75410085e" - } - Frame { - msec: 5872 - hash: "5d81833eb342f632945c0571e18cb1f9" - } - Frame { - msec: 5888 - hash: "23f6f2a7d971494af43a0fb97dbf8fb5" - } - Frame { - msec: 5904 - hash: "216b70d02a4685dc07258454bb4e7c85" - } - Frame { - msec: 5920 - hash: "1e06742af58d6e63facdc599c46e11b1" - } - Frame { - msec: 5936 - hash: "00f8ac72d3794ed8d66db987402ecde0" - } - Frame { - msec: 5952 - hash: "42ab5f162acba94f563823f5be1e37d2" - } - Frame { - msec: 5968 - hash: "3272b97fdc54eb9f3590e7bbe4ac457d" - } - Frame { - msec: 5984 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6000 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6016 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6032 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6048 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 6064 - hash: "3272b97fdc54eb9f3590e7bbe4ac457d" - } - Frame { - msec: 6080 - hash: "42ab5f162acba94f563823f5be1e37d2" - } - Frame { - msec: 6096 - hash: "00f8ac72d3794ed8d66db987402ecde0" - } - Frame { - msec: 6112 - hash: "1e06742af58d6e63facdc599c46e11b1" - } - Frame { - msec: 6128 - hash: "216b70d02a4685dc07258454bb4e7c85" - } - Frame { - msec: 6144 - hash: "23f6f2a7d971494af43a0fb97dbf8fb5" - } - Frame { - msec: 6160 - hash: "5d81833eb342f632945c0571e18cb1f9" - } - Frame { - msec: 6176 - hash: "25cac33299d58cdd7775e8b75410085e" - } - Frame { - msec: 6192 - hash: "a1fbc3333b7f742a8336a6fcbad156c9" - } - Frame { - msec: 6208 - hash: "2ed12d49d72884160ebbf6b6d0e15a9d" - } - Frame { - msec: 6224 - hash: "da6717c94b46ad7a647c445c06314b0d" - } - Frame { - msec: 6240 - hash: "02e0646024aeef6f01b7541b15267baa" - } - Frame { - msec: 6256 - hash: "a6d8708d08bedf0cab5230d6f2936936" - } - Frame { - msec: 6272 - hash: "68d459091a85f24ece39a207e395039b" - } - Frame { - msec: 6288 - hash: "0b43af73d91a500ccdf27b4347b9bc47" - } - Frame { - msec: 6304 - hash: "478126aeef5ddae9c0a77d08294cf3f2" - } - Frame { - msec: 6320 - hash: "675043ddde6ed65a3ec4ed093be1e760" - } - Frame { - msec: 6336 - hash: "12b84aa02dbbab3592d3eb3cb6884b41" - } - Frame { - msec: 6352 - hash: "8c2ebcd80e26ac7b9d25be486f54c4ce" - } - Frame { - msec: 6368 - hash: "ac705840cc94eb4af7a52d62649d0157" - } - Frame { - msec: 6384 - hash: "5cb1ae6d86aafdf11284480c81b939dc" - } - Frame { - msec: 6400 - hash: "ac2b714b5f32d2b911f31690d7082dc1" - } - Frame { - msec: 6416 - hash: "7135a6a7999e82cb81e39228805332ee" - } - Frame { - msec: 6432 - hash: "7507a3d2158d4cc68454c85922526871" - } - Frame { - msec: 6448 - hash: "205cafcabb29b78a6db3dcaf44a74ab6" - } - Frame { - msec: 6464 - hash: "a1efa0d424d568d338c6db9fc095c2fb" - } - Frame { - msec: 6480 - hash: "8a4d76ae60f5d720a382cced2f6a2b5e" - } - Frame { - msec: 6496 - hash: "c73fe137644cbc006d0b5274b72faa46" - } - Frame { - msec: 6512 - hash: "29d80ae32451c24b655c4d1fd01d3aa1" - } - Frame { - msec: 6528 - hash: "90af75eeef63ae67e9f6ff1a61d7cca3" - } - Frame { - msec: 6544 - hash: "b9dcdd88fba70636cbcae160edcc0136" - } - Frame { - msec: 6560 - hash: "679ee2b26a118ab53a84fa116de09edf" - } - Frame { - msec: 6576 - hash: "0fa12b48c08266f50e77506e4136dd56" - } - Frame { - msec: 6592 - hash: "7aed794eae2f0c65342f190ed4d4f889" - } - Frame { - msec: 6608 - hash: "23edee3af8f1904558863d37c520555a" - } - Frame { - msec: 6624 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Frame { - msec: 6640 - hash: "86ed2aa2428feb9c6c14ad2a74e97978" - } - Frame { - msec: 6656 - hash: "e189dc0dae9457a6af5082c6ccf451b6" - } - Frame { - msec: 6672 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 271; y: 89 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6688 - hash: "680f51f63c4b11a247a668eb7bbd2b62" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 92 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6704 - hash: "7640c78a286b0b7bdf2ec9117ceced4a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 271; y: 95 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 270; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6720 - image: "cursorDelegate.6.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 269; y: 103 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6736 - hash: "bfc1b03df244839a012e8302dc07764f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 268; y: 107 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6752 - hash: "de09380dd57c58ae99fbdba169a19975" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6768 - hash: "54f7f94b5cdf1becb2ee61d7f6f02c0e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 266; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6784 - hash: "4220dde85eb1c027366efd0798927e8d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 265; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6800 - hash: "512b9746ae4482557b8cef9f99905954" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 263; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 261; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6816 - hash: "e7346d8f223684143a0940def878b874" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 259; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6832 - hash: "7e7382302681cd29a2c6959a3a704660" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 256; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6848 - hash: "ef8f7dfdd4e70100ecaecca4055d8f52" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 250; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 243; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6864 - hash: "f5cacabb78b88c31af1a1b1e6f60069b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 235; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "b016ef2306b0a721df86b6916e7953e4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 227; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6896 - hash: "a78e9b0b93569b77b0659c771336971a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6912 - hash: "b957ab07bcbaeffca963d9148130a965" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 200; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6928 - hash: "140bc4b078bac52d6903bdfdfc35a94c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 190; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6944 - hash: "047c3a7403ae88cceb7fc875793d1ed8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 181; y: 127 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 172; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6960 - hash: "03d48446aaf94450a3a9a8f1e956493f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 127 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6976 - hash: "6672e47aa6a975fbd82d2fe5bc99bbaf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 126 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6992 - hash: "3bc73489d06e446d4c96117756a59227" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7008 - hash: "aed995a61df4a1c189ef2962000d02de" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 130; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7024 - hash: "aed995a61df4a1c189ef2962000d02de" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 123; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7040 - hash: "74f0bbe92a23146fbdbd365edd5741c8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 118; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 114; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7056 - hash: "74f0bbe92a23146fbdbd365edd5741c8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7072 - hash: "6456208c6367687b8dc701791eccd7d4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 108; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7088 - hash: "376b59dc6e00a51bc9f2d4cfa2718e57" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7104 - hash: "fb7bc3401f70ce6eee131c9c7510e1fe" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7120 - hash: "675a419f0cd8351d6b2a65daf7d2707a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7136 - hash: "2f7951abac64e0f10d3b66d04966b6e9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7152 - hash: "1f8daa78c58ae11ec105bd87681c1762" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7168 - hash: "23ab196ed43219c26d94431698f6ac8d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7184 - hash: "9581e2695f4818e063ec032cb5bb6b7f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7200 - hash: "6752cd7c5383e0ccc9b08f79db6ac310" - } - Frame { - msec: 7216 - hash: "51f5675e0fb1410c5a8ec03a86b42681" - } - Frame { - msec: 7232 - hash: "c3c23213b2649b5ccabd8e420a251e00" - } - Frame { - msec: 7248 - hash: "02ceab31171fe983a10e862b53aea16f" - } - Frame { - msec: 7264 - hash: "8a774dda9a1bc16bd270724e570daf20" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 100; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7280 - hash: "2b6b892cebfcce14a9db485fecf16703" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7296 - hash: "8b8e6d3362f018cbd9b487f03cfb7a22" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7312 - hash: "a8477a9429633384073618cc60841e6c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7328 - hash: "59558c6665b73f02809259e039b4423a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7344 - hash: "93540071bab8a970a929d209f628970e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7360 - hash: "78cdb0a05583150ea33040d32d95de47" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7376 - hash: "4b1ee34985d3f5b8dd4355678ad39af4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7392 - hash: "5484e7699c388eabf0311de49706397f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 113; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 117; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7408 - hash: "dee6c2380f398323002ebb43a38d27e8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 124; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7424 - hash: "d66a27728e7fd3c616842613a034c5a0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 131; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7440 - hash: "5f851161f99fcf5b67cbe008a3faf411" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 138; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7456 - hash: "013e949285cfa9edb34ab14e26753230" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 148; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "5b50acdcbd49969bcce2cfab6f9af380" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7488 - hash: "d4aeb24211007cfc01512d289ae7aa01" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7504 - hash: "6f1b7e12bbf54586e9a48989145f3274" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "0e09c7468bc03770c6cc7f0fba1ee9c0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 163; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7536 - hash: "0fc4522bbf1a2e72002eb0a3c7224e1f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 165; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7552 - hash: "91727292aaa314bf263c618a577b7f74" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7568 - hash: "a78fb2545d11c521a50a10fd2d1700a7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 171; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7584 - hash: "c207a291b47628921125acd4b8ed5ea8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 174; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7600 - hash: "9a8e3df504ba36e82c51d71a3f5ce268" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 116 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7616 - hash: "8cd9da94db91da50ae457d41866a32ba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 188; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7632 - hash: "9e52b6fdc3ce4ad9c5986e47ffa762fc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 193; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7648 - hash: "a1aff55bffb76bd4e2ac9ee482a03978" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 198; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 206; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7664 - hash: "ba52431b72683cfbf0cc795a2407630e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 209; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7680 - image: "cursorDelegate.7.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 211; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7696 - hash: "eb5a19fbfbdceef233ed3c86c782817c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 119 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 212; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7712 - hash: "7c8f3f2e96fa6a63867cb716061c8c77" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 213; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7728 - hash: "96b0007f857aa19b41d184a7c7931f69" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 214; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7744 - hash: "96201712b9ffbd9bfbebb5a5b7e23aba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7760 - hash: "d75e13a7715d5c329a47fdb818dfdbe5" - } - Frame { - msec: 7776 - hash: "c8fa0c2d9e6aa1f3a33e76a31534359d" - } - Frame { - msec: 7792 - hash: "03b11cc517f84c58a681906fdda98347" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 215; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7808 - hash: "74cdf8af5d56216ad422951a56661536" - } - Frame { - msec: 7824 - hash: "fcac2575aad872eada547508f312f09c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 118 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7840 - hash: "7d76aec1f29d2d6745585be8ef113be5" - } - Frame { - msec: 7856 - hash: "2b4fe4f39433671a9bc440efa1c589a8" - } - Frame { - msec: 7872 - hash: "55a166f920e76173e14121d848a11aa0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7888 - hash: "f764df8ecd68161d3529800e922254f4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7904 - hash: "749caf21947e915b163f72e6fd190032" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 216; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7920 - hash: "c350910df8ae4fea573a20d334fd3401" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 217; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7936 - hash: "d177da450f1d380a6d2406e2393b9582" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 115 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 218; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7952 - hash: "bf3da78d7cac19daf2d5150b77840b1e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 219; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7968 - hash: "22e337b0b81b18045a205355da6981ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 220; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7984 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 221; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8000 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 113 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8016 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Frame { - msec: 8032 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Frame { - msec: 8048 - hash: "66c66927d2fc590fc43c146a403c1ccb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8064 - hash: "22e337b0b81b18045a205355da6981ad" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8080 - hash: "bf3da78d7cac19daf2d5150b77840b1e" - } - Frame { - msec: 8096 - hash: "d177da450f1d380a6d2406e2393b9582" - } - Frame { - msec: 8112 - hash: "c350910df8ae4fea573a20d334fd3401" - } - Frame { - msec: 8128 - hash: "749caf21947e915b163f72e6fd190032" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 222; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8144 - hash: "f764df8ecd68161d3529800e922254f4" - } - Frame { - msec: 8160 - hash: "55a166f920e76173e14121d848a11aa0" - } - Frame { - msec: 8176 - hash: "2b4fe4f39433671a9bc440efa1c589a8" - } - Frame { - msec: 8192 - hash: "7d76aec1f29d2d6745585be8ef113be5" - } - Frame { - msec: 8208 - hash: "fcac2575aad872eada547508f312f09c" - } - Frame { - msec: 8224 - hash: "74cdf8af5d56216ad422951a56661536" - } - Frame { - msec: 8240 - hash: "03b11cc517f84c58a681906fdda98347" - } - Frame { - msec: 8256 - hash: "c8fa0c2d9e6aa1f3a33e76a31534359d" - } - Frame { - msec: 8272 - hash: "d75e13a7715d5c329a47fdb818dfdbe5" - } - Frame { - msec: 8288 - hash: "96201712b9ffbd9bfbebb5a5b7e23aba" - } - Frame { - msec: 8304 - hash: "96b0007f857aa19b41d184a7c7931f69" - } - Frame { - msec: 8320 - hash: "bff5b731de7c93fa0cdcefbf99beeb5e" - } - Frame { - msec: 8336 - hash: "ce76704964873be1bc6a324d8a3381be" - } - Frame { - msec: 8352 - hash: "a31b4f2a3defc968098029328de9352d" - } - Frame { - msec: 8368 - hash: "295e3f40a511bd30e1c6599ead93619a" - } - Frame { - msec: 8384 - hash: "3cd74da8b04de8ec7446490dea0e4e6c" - } - Frame { - msec: 8400 - hash: "78a7db5a316609136d1b873d20d5dd3e" - } - Frame { - msec: 8416 - hash: "0f176fb11bfe26f872ef7103011df9e6" - } - Frame { - msec: 8432 - hash: "47866013e79bc77607e0c40bf8457bed" - } - Frame { - msec: 8448 - hash: "5f35467db5c5e0baf5caff90b97e2d0c" - } - Frame { - msec: 8464 - hash: "fefa89763cc1ad8323fdf37b1f5f63d3" - } - Frame { - msec: 8480 - hash: "b9823f88fa51944075ce6dedd695f097" - } - Frame { - msec: 8496 - hash: "72521de21fcc57d6ccf16350b0df8eee" - } - Frame { - msec: 8512 - hash: "fcd591a2e56ba5efa95b315b7bd10532" - } - Frame { - msec: 8528 - hash: "5d437d59995741030e0975829712f85d" - } - Frame { - msec: 8544 - hash: "e7189d174b181985b6aef10b8642726f" - } - Frame { - msec: 8560 - hash: "cefadbae14e573f6c83d07ffc3a5152e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 277; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8576 - hash: "0fa12b48c08266f50e77506e4136dd56" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 277; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8592 - hash: "7aed794eae2f0c65342f190ed4d4f889" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 276; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8608 - hash: "23edee3af8f1904558863d37c520555a" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 276; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8624 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Frame { - msec: 8640 - image: "cursorDelegate.8.png" - } - Frame { - msec: 8656 - hash: "e189dc0dae9457a6af5082c6ccf451b6" - } - Frame { - msec: 8672 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" - } - Frame { - msec: 8688 - hash: "5a11ec8a0485a018ebe317e01136e4a5" - } - Frame { - msec: 8704 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" - } - Frame { - msec: 8720 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" - } - Frame { - msec: 8736 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" - } - Frame { - msec: 8752 - hash: "b4e273b6415e3951eab2f831100b0bb2" - } - Frame { - msec: 8768 - hash: "fd3fd655785c4e3c470f742451e3470f" - } - Frame { - msec: 8784 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" - } - Frame { - msec: 8800 - hash: "2a55b52db02d97963d382c9862307384" - } - Frame { - msec: 8816 - hash: "c6c90915393fc7cb0aaa464caefbadb0" - } - Frame { - msec: 8832 - hash: "36b65658073ac2687dbd88ec7a408a98" - } - Frame { - msec: 8848 - hash: "84e165f9f2c55c5c51a260b11ca195c2" - } - Frame { - msec: 8864 - hash: "c11cfcfda6f161d058a3d9e93349b578" - } - Frame { - msec: 8880 - hash: "0568f8c0e1fa51b7547790a7f4978ea3" - } - Frame { - msec: 8896 - hash: "b66fd97ac36ac395df74e9a0dd58d0c7" - } - Frame { - msec: 8912 - hash: "31b5b3d68e452ffd90e9804ff9e9a264" - } - Frame { - msec: 8928 - hash: "3cc8791e419986e1e913d4e153243fb2" - } - Frame { - msec: 8944 - hash: "ff1b3ce85bc9f3dd3feb90fa31c3bc0a" - } - Frame { - msec: 8960 - hash: "d3ae969e538c642d82662d08ef05964e" - } - Frame { - msec: 8976 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 8992 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9008 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9024 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9040 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9056 - hash: "e3948b393a3778066a90197b31c71e51" - } - Frame { - msec: 9072 - hash: "d3ae969e538c642d82662d08ef05964e" - } - Frame { - msec: 9088 - hash: "ff1b3ce85bc9f3dd3feb90fa31c3bc0a" - } - Frame { - msec: 9104 - hash: "3cc8791e419986e1e913d4e153243fb2" - } - Frame { - msec: 9120 - hash: "31b5b3d68e452ffd90e9804ff9e9a264" - } - Frame { - msec: 9136 - hash: "b66fd97ac36ac395df74e9a0dd58d0c7" - } - Frame { - msec: 9152 - hash: "0568f8c0e1fa51b7547790a7f4978ea3" - } - Frame { - msec: 9168 - hash: "c11cfcfda6f161d058a3d9e93349b578" - } - Frame { - msec: 9184 - hash: "84e165f9f2c55c5c51a260b11ca195c2" - } - Frame { - msec: 9200 - hash: "36b65658073ac2687dbd88ec7a408a98" - } - Frame { - msec: 9216 - hash: "c6c90915393fc7cb0aaa464caefbadb0" - } - Frame { - msec: 9232 - hash: "2a55b52db02d97963d382c9862307384" - } - Frame { - msec: 9248 - hash: "7a9b2057760e48d5f9cfdc79b08866d8" - } - Frame { - msec: 9264 - hash: "fd3fd655785c4e3c470f742451e3470f" - } - Frame { - msec: 9280 - hash: "b4e273b6415e3951eab2f831100b0bb2" - } - Frame { - msec: 9296 - hash: "a0cb3f796fddf7100ca19aee3dedbea8" - } - Frame { - msec: 9312 - hash: "a242c9d5ed7f9aef0a0622dcb66d0a7e" - } - Frame { - msec: 9328 - hash: "9aa569f7b251371bdd1cb05c8d3aab28" - } - Frame { - msec: 9344 - hash: "5a11ec8a0485a018ebe317e01136e4a5" - } - Frame { - msec: 9360 - hash: "62d4bfa65bfdc50d24d9204f4df7bad8" - } - Frame { - msec: 9376 - hash: "e189dc0dae9457a6af5082c6ccf451b6" - } - Frame { - msec: 9392 - hash: "86ed2aa2428feb9c6c14ad2a74e97978" - } - Frame { - msec: 9408 - hash: "2f9ed13e8a0d0edf098b05db02c04bdf" - } - Frame { - msec: 9424 - hash: "23edee3af8f1904558863d37c520555a" + hash: "87ca0584879b25336a1023ac3252fc9a" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.0.png deleted file mode 100644 index 2b45a06..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.1.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.1.png deleted file mode 100644 index 1f5bae0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.2.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.2.png deleted file mode 100644 index cb2b5a4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.3.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.3.png deleted file mode 100644 index aa24805..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.4.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.4.png deleted file mode 100644 index aa24805..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/echoMode.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.0.png deleted file mode 100644 index 87c2e07..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/data/hAlign.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml index 17e13fd..cf29f7c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetextinput/hAlign.qml @@ -4,6 +4,7 @@ Item{ width:600; height:300; Column{ + //Because they have auto width, these three should look the same TextInput{ text: "Jackdaws love my big sphinx of quartz"; horizontalAlignment: TextInput.AlignLeft; -- cgit v0.12 From b4a697c6c9f7dd879c5b0a8499af8bb472025b71 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Thu, 28 Oct 2010 19:12:25 +1000 Subject: Clean up package views visual test Shorten duration and remove the element of flicking (not under test). Task-number: QTBUG-14792 --- .../Package_Views/data/packageviews.0.png | Bin 714 -> 797 bytes .../Package_Views/data/packageviews.1.png | Bin 798 -> 794 bytes .../Package_Views/data/packageviews.10.png | Bin 773 -> 0 bytes .../Package_Views/data/packageviews.11.png | Bin 773 -> 0 bytes .../Package_Views/data/packageviews.12.png | Bin 754 -> 0 bytes .../Package_Views/data/packageviews.13.png | Bin 742 -> 0 bytes .../Package_Views/data/packageviews.14.png | Bin 733 -> 0 bytes .../Package_Views/data/packageviews.15.png | Bin 712 -> 0 bytes .../Package_Views/data/packageviews.16.png | Bin 730 -> 0 bytes .../Package_Views/data/packageviews.17.png | Bin 730 -> 0 bytes .../Package_Views/data/packageviews.18.png | Bin 730 -> 0 bytes .../Package_Views/data/packageviews.19.png | Bin 744 -> 0 bytes .../Package_Views/data/packageviews.2.png | Bin 757 -> 817 bytes .../Package_Views/data/packageviews.20.png | Bin 754 -> 0 bytes .../Package_Views/data/packageviews.21.png | Bin 721 -> 0 bytes .../Package_Views/data/packageviews.22.png | Bin 732 -> 0 bytes .../Package_Views/data/packageviews.3.png | Bin 813 -> 796 bytes .../Package_Views/data/packageviews.4.png | Bin 756 -> 805 bytes .../Package_Views/data/packageviews.5.png | Bin 752 -> 774 bytes .../Package_Views/data/packageviews.6.png | Bin 752 -> 0 bytes .../Package_Views/data/packageviews.7.png | Bin 774 -> 0 bytes .../Package_Views/data/packageviews.8.png | Bin 774 -> 0 bytes .../Package_Views/data/packageviews.9.png | Bin 754 -> 0 bytes .../qmlvisual/Package_Views/data/packageviews.qml | 3182 ++++---------------- .../qmlvisual/Package_Views/packageviews.qml | 16 +- 25 files changed, 603 insertions(+), 2595 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.10.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.11.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.12.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.13.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.14.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.15.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.16.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.17.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.18.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.19.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.20.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.21.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.22.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.6.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.7.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.8.png delete mode 100644 tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.9.png diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.0.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.0.png index c59b816..f94e879 100644 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.0.png and b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.0.png differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.1.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.1.png index d4dbc70..521e818 100644 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.1.png and b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.1.png differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.10.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.10.png deleted file mode 100644 index ed9d345..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.11.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.11.png deleted file mode 100644 index ed9d345..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.12.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.12.png deleted file mode 100644 index 45ee400..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.13.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.13.png deleted file mode 100644 index c73e158..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.13.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.14.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.14.png deleted file mode 100644 index e2fff6d..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.14.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.15.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.15.png deleted file mode 100644 index d7a13df..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.15.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.16.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.16.png deleted file mode 100644 index beb3094..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.16.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.17.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.17.png deleted file mode 100644 index beb3094..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.17.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.18.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.18.png deleted file mode 100644 index beb3094..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.18.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.19.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.19.png deleted file mode 100644 index d3a2650..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.19.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.2.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.2.png index a09dd28..645abf8 100644 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.2.png and b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.2.png differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.20.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.20.png deleted file mode 100644 index 600462a..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.20.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.21.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.21.png deleted file mode 100644 index 6defca0..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.21.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.22.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.22.png deleted file mode 100644 index 91967e1..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.22.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.3.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.3.png index d099a79..517331a 100644 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.3.png and b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.3.png differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.4.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.4.png index 385efc8..806063f 100644 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.4.png and b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.4.png differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.5.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.5.png index 25a7c3c..8dfcf7b 100644 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.5.png and b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.5.png differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.6.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.6.png deleted file mode 100644 index 25a7c3c..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.7.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.7.png deleted file mode 100644 index 7a24f51..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.8.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.8.png deleted file mode 100644 index 7a24f51..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.9.png b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.9.png deleted file mode 100644 index 45ee400..0000000 Binary files a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml index 08cb46b..1804382 100644 --- a/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml +++ b/tests/auto/declarative/qmlvisual/Package_Views/data/packageviews.qml @@ -6,239 +6,255 @@ VisualTest { } Frame { msec: 16 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 32 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 48 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 64 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 80 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 96 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 112 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 128 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 144 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 160 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 176 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 192 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 208 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 224 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 240 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 256 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 272 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 288 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 304 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 320 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 336 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 352 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 368 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 384 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 400 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 416 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 432 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 448 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 464 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 480 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 496 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 512 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 528 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 544 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 560 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 576 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 592 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 608 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 624 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 640 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 656 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 672 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 688 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 704 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 720 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 736 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 752 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 768 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 784 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 26; y: 79 + modifiers: 0 + sendToViewport: true } Frame { msec: 800 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 816 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 832 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 848 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 26; y: 79 + modifiers: 0 + sendToViewport: true } Frame { msec: 864 - hash: "a327426c93b523526f993b5271ab4501" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 880 - hash: "a327426c93b523526f993b5271ab4501" + hash: "ae75402b2fa678a20c32d743e2b297a0" } Frame { msec: 896 - hash: "a327426c93b523526f993b5271ab4501" + hash: "76a9721ada8280925ff32e7207c01944" } Frame { msec: 912 - hash: "a327426c93b523526f993b5271ab4501" + hash: "87fb13adce4e2af05a7ad2f8cd18bad9" } Frame { msec: 928 - hash: "a327426c93b523526f993b5271ab4501" + hash: "cd7be3a5b9bae876998770dc52dbcd86" } Frame { msec: 944 - hash: "a327426c93b523526f993b5271ab4501" + hash: "3ba0b907dad0bfa9b20337d41661030b" } Frame { msec: 960 @@ -246,319 +262,271 @@ VisualTest { } Frame { msec: 976 - hash: "a327426c93b523526f993b5271ab4501" + hash: "856cbf02e052f9b08a02608128af818d" } Frame { msec: 992 - hash: "a327426c93b523526f993b5271ab4501" + hash: "5af677254d12dc96b82cde90c5a65140" } Frame { msec: 1008 - hash: "a327426c93b523526f993b5271ab4501" + hash: "72cb4e75acb87de293a3cb1872eb946b" } Frame { msec: 1024 - hash: "a327426c93b523526f993b5271ab4501" + hash: "9b057090349c0c544036a33a60710920" } Frame { msec: 1040 - hash: "a327426c93b523526f993b5271ab4501" + hash: "ae19cf81092e75979b6471c0b05541cf" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 48; y: 165 + modifiers: 0 + sendToViewport: true } Frame { msec: 1056 - hash: "a327426c93b523526f993b5271ab4501" + hash: "0f42c19fee319bc8c27a89e9692c5cd9" } Frame { msec: 1072 - hash: "a327426c93b523526f993b5271ab4501" + hash: "865e19e35f361b08e6e844aa88d149eb" } Frame { msec: 1088 - hash: "a327426c93b523526f993b5271ab4501" + hash: "d5fcf7bd78da8918a3512a76189c7202" } Frame { msec: 1104 - hash: "a327426c93b523526f993b5271ab4501" + hash: "d2a6b42c2a3f7ca9eb35acc47f1faaf6" } Frame { msec: 1120 - hash: "a327426c93b523526f993b5271ab4501" + hash: "1388e856eb04fc24091c94406f4b5118" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 48; y: 165 + modifiers: 0 + sendToViewport: true } Frame { msec: 1136 - hash: "a327426c93b523526f993b5271ab4501" + hash: "1388e856eb04fc24091c94406f4b5118" } Frame { msec: 1152 - hash: "a327426c93b523526f993b5271ab4501" + hash: "d529b6dcf510392488b370f6cfb87b3c" } Frame { msec: 1168 - hash: "a327426c93b523526f993b5271ab4501" + hash: "a50b1f2869c95f97a194a95581fa7be9" } Frame { msec: 1184 - hash: "a327426c93b523526f993b5271ab4501" + hash: "4bbee959f95548c3e76fb60ad363c184" } Frame { msec: 1200 - hash: "a327426c93b523526f993b5271ab4501" + hash: "5ec0185f4479377579822f92eb7f375a" } Frame { msec: 1216 - hash: "a327426c93b523526f993b5271ab4501" + hash: "263d09b9447d942c6c048139164d4427" } Frame { msec: 1232 - hash: "a327426c93b523526f993b5271ab4501" + hash: "291cc81fc3f82bca46db4e4403f39d49" } Frame { msec: 1248 - hash: "a327426c93b523526f993b5271ab4501" + hash: "c212f98ededa9ce7fc0fec697116a8e2" } Frame { msec: 1264 - hash: "a327426c93b523526f993b5271ab4501" + hash: "4309ef22d0c36d28a462ab2d4bf2cabd" } Frame { msec: 1280 - hash: "a327426c93b523526f993b5271ab4501" + hash: "f899f861c569416708c6754d821239e9" } Frame { msec: 1296 - hash: "a327426c93b523526f993b5271ab4501" + hash: "ed5ec237020ff06f258ce6e1b31e5eb8" } Frame { msec: 1312 - hash: "a327426c93b523526f993b5271ab4501" + hash: "98f3fe1c211d4f7bdc47b4a485226f14" } Frame { msec: 1328 - hash: "a327426c93b523526f993b5271ab4501" + hash: "40e376d37a85d225c46579b8f7c27159" } Frame { msec: 1344 - hash: "a327426c93b523526f993b5271ab4501" + hash: "cc8a178bf0cfc285185d17b37722bf41" } Frame { msec: 1360 - hash: "a327426c93b523526f993b5271ab4501" + hash: "b612439873d0eeb015d31cccd8e5a436" } Frame { msec: 1376 - hash: "a327426c93b523526f993b5271ab4501" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 57; y: 164 - modifiers: 0 - sendToViewport: true + hash: "48c436165872098b474d0c691df11473" } Frame { msec: 1392 - hash: "a327426c93b523526f993b5271ab4501" + hash: "48c436165872098b474d0c691df11473" } Mouse { - type: 5 - button: 0 + type: 2 + button: 1 buttons: 1 - x: 57; y: 162 + x: 44; y: 50 modifiers: 0 sendToViewport: true } Frame { msec: 1408 - hash: "a327426c93b523526f993b5271ab4501" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 159 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 57; y: 156 - modifiers: 0 - sendToViewport: true + hash: "48c436165872098b474d0c691df11473" } Frame { msec: 1424 - hash: "a327426c93b523526f993b5271ab4501" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 152 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 56; y: 147 - modifiers: 0 - sendToViewport: true + hash: "48c436165872098b474d0c691df11473" } Frame { msec: 1440 - hash: "87b7cacfb2d9e8ad916e331b2cf1f13e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 55; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 133 - modifiers: 0 - sendToViewport: true + hash: "48c436165872098b474d0c691df11473" } Frame { msec: 1456 - hash: "34290c1435c1a96d08152479d2d1334e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 54; y: 126 - modifiers: 0 - sendToViewport: true + hash: "48c436165872098b474d0c691df11473" } Mouse { type: 3 button: 1 buttons: 0 - x: 54; y: 126 + x: 44; y: 50 modifiers: 0 sendToViewport: true } Frame { msec: 1472 - hash: "ef5fb09ec8fb4b0d97c864618d6f6231" + hash: "48c436165872098b474d0c691df11473" } Frame { msec: 1488 - hash: "d5b4c2e1d4b0bc877c99739a67b4a4fb" + hash: "33cb50c11326c0589c7cc43ba6193e03" } Frame { msec: 1504 - hash: "a3623a3f253590d51ee03b6849e88edb" + hash: "3f7e7534ccd7105762c78afab5ab997d" } Frame { msec: 1520 - hash: "4c1115f1041629b7c37cf4ae001fd7d3" + hash: "53b23d3eb2aaa1b21e4abaf9c0bfc7f2" } Frame { msec: 1536 - hash: "845bb3d1f52bee4a469fb12d6875a323" + hash: "609b37b12154291a28961210e81049fb" } Frame { msec: 1552 - hash: "eb08b5a671149005dbafc8507bb78b18" + hash: "33cc6e17d087c251381ecf1b4cb9887c" } Frame { msec: 1568 - hash: "16744a5b90b29954faf0710010ac6369" + hash: "dcb3e716035ca3f43895fda99c27e0d8" } Frame { msec: 1584 - hash: "322bbe367fbbf0bf07f9153da652a5fc" + hash: "56bb753199873fac4ed9f30682bd1a3c" } Frame { msec: 1600 - hash: "257769f7c3e24bb2d0cd674dfbe42913" + hash: "8b744c5cbf6154b73bd6c4fe6b087f0a" } Frame { msec: 1616 - hash: "8e299cbcaeae4d53d0fc05e03d36e0d9" + hash: "f2d5996d7fd5391a4d96493e9ef6a637" } Frame { msec: 1632 - hash: "f3fb7f30336045abb4557247aab5bde1" + hash: "4407a05b64c68d43b29124df1f0d8f44" } Frame { msec: 1648 - hash: "468400fb4e9bfa454ea00f19aa5d77b5" + hash: "b71e43a8f7aa7a58cea80629b782a972" } Frame { msec: 1664 - hash: "429cc820ada7a515b2cb71f133320949" + hash: "cca961a04dfdf9da8282219f2022fd2e" } Frame { msec: 1680 - hash: "721ec7594d8f815e5648eb8d570d1179" + hash: "f3349a7ae7d7a97a6665476244d46dd6" } Frame { msec: 1696 - hash: "9bc4105a0456c36738c435323e690db1" + hash: "78fc6123a10c027faa08dc2ff8318acc" } Frame { msec: 1712 - hash: "e54a84718dbdc45dd814089051772585" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1728 - hash: "2c969450ede6b6ea7e0e68ee54d02aaa" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1744 - hash: "c2015dd1d4bd223a7fe1df03027af2f3" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1760 - hash: "74108fedfb0967adea181893834bcd9b" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1776 - hash: "b04a22f1cfde6ede57117992cd97dc1c" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1792 - hash: "271d71cb03dd38100812466a973b79ef" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1808 - hash: "130709eecd8eca395085020a83e7553a" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1824 - hash: "a0e5e187ed5245fd766803d266195e6b" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1840 - hash: "d29c145f3ba39a7c2c6ac54b27f9cea1" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1856 - hash: "6e41349b4adb6e37a2f9f2482c0aa5b1" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1872 - hash: "c02c52d3c87c6befb65f3bf392981cd5" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1888 - hash: "ec48d113c8468bd1e1b465e248eecaee" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1904 - hash: "a2c9b917d1f0cff0e088d3b624d9eeb8" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1920 @@ -566,255 +534,287 @@ VisualTest { } Frame { msec: 1936 - hash: "c4d4f8a351316b4a33f42f5fb030f304" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1952 - hash: "1baee6be1da687309d84a992e430c915" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1968 - hash: "4245f02817f7a674c34c581cbd9e1181" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 1984 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "6056cb02b921b56c63696d7fe9fe90fa" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 181; y: 76 + modifiers: 0 + sendToViewport: true } Frame { msec: 2000 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 2016 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "6056cb02b921b56c63696d7fe9fe90fa" } Frame { msec: 2032 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "6056cb02b921b56c63696d7fe9fe90fa" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 181; y: 76 + modifiers: 0 + sendToViewport: true } Frame { msec: 2048 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "9f94c38547da1855e4bd3ae498aed705" } Frame { msec: 2064 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "783f73da3736a2c554c8d749ce0522c0" } Frame { msec: 2080 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "9a0e1c2bed75874381e4b1ce275d0f68" } Frame { msec: 2096 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "e2ce85192977e6422c89190b3cea4518" } Frame { msec: 2112 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "ba9c80ff0ed723bca702cb6b4c6dfb76" } Frame { msec: 2128 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "7e194db1b86bc7346248d2acf34af286" } Frame { msec: 2144 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "cdd013bb8ee5880b16449efc99dd3ae5" } Frame { msec: 2160 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "3ef7d0fb43c2a1c1398f1152573974e0" } Frame { msec: 2176 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "176d1a86257cc85315dac4ecfe33f543" } Frame { msec: 2192 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "6def1267e573217a19e7b8e2cf6d7b6c" } Frame { msec: 2208 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "f679db34d99e24cda2e41c2afeaf551e" } Frame { msec: 2224 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "54a27193c5e59cd7220b65d8fbbd9061" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 112; y: 79 + modifiers: 0 + sendToViewport: true } Frame { msec: 2240 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "171db3d0bf50062a0d7edd8e4c174024" } Frame { msec: 2256 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "9a7d293dc455e1ef0d18f44c3db7eed7" } Frame { msec: 2272 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "83bef2586d5abeb0ac8765d62135d308" } Frame { msec: 2288 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "56fed2e01cc8a6b9ccbf15731d4e533b" + } + Frame { + msec: 2304 + hash: "10174f2574c51155b8ee77ae545ac76d" } Mouse { - type: 2 + type: 3 button: 1 - buttons: 1 - x: 70; y: 89 + buttons: 0 + x: 112; y: 79 modifiers: 0 sendToViewport: true } Frame { - msec: 2304 - hash: "2fa6bb20f29467713c94886c6fffe5e3" - } - Frame { msec: 2320 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "107928ffebd936080325a1f4e39a0ac0" } Frame { msec: 2336 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "107928ffebd936080325a1f4e39a0ac0" } Frame { msec: 2352 - hash: "2fa6bb20f29467713c94886c6fffe5e3" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 70; y: 89 - modifiers: 0 - sendToViewport: true + hash: "d46e040f85295e66d8b22185be553d3e" } Frame { msec: 2368 - hash: "2fa6bb20f29467713c94886c6fffe5e3" + hash: "3368a34c316486a779d62d143588b425" } Frame { msec: 2384 - hash: "3b9a75225adddb01e92286463e15bf98" + hash: "8f4cd4223c05e1b06a688c5eabc2a854" } Frame { msec: 2400 - hash: "32f99602756898b4ec607d4124b5120f" + hash: "b576bf54b4bae38e8af6d922b3c73463" } Frame { msec: 2416 - hash: "60007f14752d2d87ba6e335ad596f1ad" + hash: "a3a238f5bf182ec6afc398569fd51ac7" } Frame { msec: 2432 - hash: "dcfad2407f53f83964fa7be762a137bd" + hash: "a31329ba054a6fe144c030cffb5bd401" } Frame { msec: 2448 - hash: "fcc1a30a33bec046868734014132eb70" + hash: "0a4b96a93e62359b6003daa703af1a5f" } Frame { msec: 2464 - hash: "f60592829a2765b3cd3a0cecb9c45426" + hash: "a16f126d874d957b879f45d36e88df34" } Frame { msec: 2480 - hash: "a0e26063acd1b53b5eeeb31187f38336" + hash: "89735c5b14f075b8f65533d16b3f714a" } Frame { msec: 2496 - hash: "d7f3e776038bd479db292bcba3a65fc7" + hash: "5d67dac0c4d2cf60e4cb717f4e4bc25f" } Frame { msec: 2512 - hash: "4af31954235ab8a7cf8462eaa64d7dda" + hash: "dbfcc86e621a140466dd2a9215087e81" } Frame { msec: 2528 - hash: "aff3f287c07f546e0d3e9e68731d82fe" + hash: "9f8dfa788048466dc07463e83d0377ff" } Frame { msec: 2544 - hash: "75fbc4e26466e8a1f66503addfcbb525" + hash: "021e1edec94a1909790a4acdbbc71fd8" } Frame { msec: 2560 - hash: "cb4c91f725ec46dd066475efc2bc2d65" + hash: "f16be9ff4aba07708d469d6cfb80f1c2" } Frame { msec: 2576 - hash: "106434203ccc2fd8246c56520095a473" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2592 - hash: "129ced0e7fc406e81b1ced72397adc5c" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2608 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2624 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2640 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2656 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2672 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2688 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2704 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2720 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2736 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 116; y: 165 + modifiers: 0 + sendToViewport: true } Frame { msec: 2752 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2768 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2784 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" } Frame { msec: 2800 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1ab35df24a27349264ec282eb1f53018" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 116; y: 165 + modifiers: 0 + sendToViewport: true } Frame { msec: 2816 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "a0aa5583886efc9bb0571bbb02fdb051" } Frame { msec: 2832 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "a0aa5583886efc9bb0571bbb02fdb051" } Frame { msec: 2848 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "edec25fdce2e05c0456434be4b8fad84" } Frame { msec: 2864 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "0c2061fc908c98980404b9e08acdc2f2" } Frame { msec: 2880 @@ -822,311 +822,295 @@ VisualTest { } Frame { msec: 2896 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "80eba5bc28e88ab12e195555f76bef1c" } Frame { msec: 2912 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "3a80012f6ca448fc30db70e9bcb23ddc" } Frame { msec: 2928 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "22a68838e9f6039e782facce7cfe0c9b" } Frame { msec: 2944 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "243fcc73e46db96ab6a91748adeff1a9" } Frame { msec: 2960 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "433bf03a821da5641909785b4c22cb55" } Frame { msec: 2976 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "66be8aa73b1e7173d899df3c0b9072a6" } Frame { msec: 2992 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "d7e563c1a1db45865794351daea5eb08" } Frame { msec: 3008 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "cc4345c2d4d0d7748c352a22f63030cb" } Frame { msec: 3024 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "382172adf3a339cac16a3e185ef4bb05" } Frame { msec: 3040 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "6019a3eac1825acdeac24d39c898d506" } Frame { msec: 3056 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "ac4b9427592a6fe7585625de8d1bff96" } Frame { msec: 3072 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3088 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3104 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3120 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3136 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3152 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3168 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 80; y: 189 + modifiers: 0 + sendToViewport: true } Frame { msec: 3184 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3200 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3216 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3232 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 80; y: 189 + modifiers: 0 + sendToViewport: true } Frame { msec: 3248 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7cf95f1bc67a90c0df788787589a75a9" } Frame { msec: 3264 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "a623e09cddb4304db658e30aef433dd8" } Frame { msec: 3280 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "4dce74fbb6649138a6ea6c288818fda5" } Frame { msec: 3296 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "2356d6d1f8481cf60542126f197ee0b1" } Frame { msec: 3312 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "7553601e70a7ccc3c60306fcf4999bed" } Frame { msec: 3328 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "bc86afd210d18dc68b433d70705b6603" } Frame { msec: 3344 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "8538d87120dd14958f92b81ceff304a3" } Frame { msec: 3360 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "2a8d299ff16589069d493bbab2ceda53" } Frame { msec: 3376 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "9f92b838c36e46d61a78f9013f04b580" } Frame { msec: 3392 - hash: "49903693b112d5f35c4e877bef6bbdb0" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 49; y: 162 - modifiers: 0 - sendToViewport: true + hash: "7e6710b5491d5b9ad9a84691eadaa66c" } Frame { msec: 3408 - hash: "49903693b112d5f35c4e877bef6bbdb0" + hash: "1b165e39ff01747d5e9ad0d8769c8ee9" } Frame { msec: 3424 - hash: "49903693b112d5f35c4e877bef6bbdb0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 161 - modifiers: 0 - sendToViewport: true + hash: "f78ad1eeb030eb58f8140da041acf4cd" } Frame { msec: 3440 - hash: "49903693b112d5f35c4e877bef6bbdb0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 49; y: 159 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 157 - modifiers: 0 - sendToViewport: true + hash: "f009dcb6b085ae38a45206f35ab37754" } Frame { msec: 3456 - hash: "49903693b112d5f35c4e877bef6bbdb0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 48; y: 153 - modifiers: 0 - sendToViewport: true + hash: "371dd67bf5a16ea085a256dd2e2583f9" } Mouse { - type: 5 - button: 0 + type: 2 + button: 1 buttons: 1 - x: 48; y: 149 + x: 75; y: 164 modifiers: 0 sendToViewport: true } Frame { msec: 3472 - hash: "1c84452b0ce90ae6f136f5bcce408220" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 144 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 50; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 50; y: 138 - modifiers: 0 - sendToViewport: true + hash: "9a0606cd6930b3f992f0533f3f6a0f7a" } Frame { msec: 3488 - hash: "4c77d402b995297dadb5e671f071605f" + hash: "1d538ccb1874fe2ddb410d48ca668d74" } Frame { msec: 3504 - hash: "babd28626a81bd48b39b56f8da69c360" + hash: "71e08cb1eced66950e5893306b3043e7" } Frame { msec: 3520 - hash: "71654a76f9b94fafaf3767003598fb96" + hash: "71e08cb1eced66950e5893306b3043e7" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 75; y: 164 + modifiers: 0 + sendToViewport: true } Frame { msec: 3536 - hash: "87ad69a660e072e71f940db93be3a949" + hash: "71e08cb1eced66950e5893306b3043e7" } Frame { msec: 3552 - hash: "147f7f3f1913bc5ac5889c1a4daa8026" + hash: "2da0d9bb50d97ca78ee56f3c528a7db5" } Frame { msec: 3568 - hash: "9c26b3ad7a5dacd56028afa7bf4deef6" + hash: "7f5105df4d41a6739ce13d69451d6059" } Frame { msec: 3584 - hash: "18611ff90e5af36c9b6396c3df4cd646" + hash: "8d171773d643ca5bfb095208efe841a9" } Frame { msec: 3600 - hash: "84701fd73ed8e1951bd4c806b70654ac" + hash: "8aa93bddb58d0533b03d2b7fc6efb839" } Frame { msec: 3616 - hash: "42b40f1683beb23f4fe5ade066c0626f" + hash: "26e2bcff7c3de9995e29fd8a06db4139" } Frame { msec: 3632 - hash: "8c6aeefaa6f36cdffcf7bdb1597c6fbe" + hash: "94fe4626d8f978649bf200bf79885ec0" } Frame { msec: 3648 - hash: "731cea2e0d8fb8aac6ae919b23b89b87" + hash: "61e92064d9da2db6ea0adfdffaad81f6" } Frame { msec: 3664 - hash: "d4dc70a8e09e7ec03e7c1f5123b7abef" + hash: "54d5845c08eb5cc9263c84146fd9fcd2" } Frame { msec: 3680 - hash: "5246e2f52aa104e8030eef105a5b5a7c" + hash: "d10a128980a46713093899696110d81e" } Frame { msec: 3696 - hash: "a9c3d0034c09ba81d19d57ff550d7b4f" + hash: "ff6301533f4fb29194f20a4520824030" } Frame { msec: 3712 - hash: "e9092b1be19273f1f29912cd493dd238" + hash: "598b6e7c6c6c0de77b4793d1f68beea6" } Frame { msec: 3728 - hash: "c2b19c7b818c94e932558676a026f049" + hash: "e3d123e179a6930e1bc1864095621607" } Frame { msec: 3744 - hash: "6627c4d6daab8e6500dbd0d921bc1ebd" + hash: "b1bb4c350969f579630680803e622662" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 72; y: 147 + modifiers: 0 + sendToViewport: true } Frame { msec: 3760 - hash: "45c584ca18e8bfd6aa495c16a977662a" + hash: "3dd276bb96dd3a5ef96095e0b8251c05" } Frame { msec: 3776 - hash: "de79039a8bb623f7d48afe1549ae23e0" + hash: "144402c1397313fb5d13b4972bb3a450" } Frame { msec: 3792 - hash: "076d29278466038071095093266553f5" + hash: "144402c1397313fb5d13b4972bb3a450" } Frame { msec: 3808 - hash: "73ed162dc5f9983bf22446f63691f7e4" + hash: "144402c1397313fb5d13b4972bb3a450" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 72; y: 146 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 72; y: 146 + modifiers: 0 + sendToViewport: true } Frame { msec: 3824 - hash: "4cc3648635884a69191f0cfe2051f621" + hash: "144402c1397313fb5d13b4972bb3a450" } Frame { msec: 3840 @@ -1134,241 +1118,197 @@ VisualTest { } Frame { msec: 3856 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "126b19793c902cf8848824fe4a38fe0c" } Frame { msec: 3872 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "1f7a173f70f04adcc28481cfa40ad82e" } Frame { msec: 3888 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "5189e3a7f4c93d6095d526ee4583adea" } Frame { msec: 3904 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "03ef5fa51d7455e58c34c52be2b2625b" } Frame { msec: 3920 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "6589088e4efab3426d5b3c08f885fcc4" } Frame { msec: 3936 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "35593c99aa3f7040efe6420ce90426f7" } Frame { msec: 3952 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "61e13ba4ed7251e607ae299841b55fea" } Frame { msec: 3968 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "7bc5f663e54b6ac10b7aa8787de0483a" } Frame { msec: 3984 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "141e2fa188fabeef8587770b2d18538c" } Frame { msec: 4000 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "5f59ea38bb55096d6ca50ffb9e9706ec" } Frame { msec: 4016 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "9ff31c7768afa3eba211e862bbfddda1" } Frame { msec: 4032 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "f8731aa264c5e534f13f4fa89fc320a1" } Frame { msec: 4048 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "87bc86979d05432f8ad16ca1f0537fa0" } Frame { msec: 4064 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "749f93235f677af13d162aacfde3840a" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 69; y: 113 + modifiers: 0 + sendToViewport: true } Frame { msec: 4080 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "3af211e45026670fef0e5b391bad3455" } Frame { msec: 4096 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "3af211e45026670fef0e5b391bad3455" } Frame { msec: 4112 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "3af211e45026670fef0e5b391bad3455" } Frame { msec: 4128 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "3af211e45026670fef0e5b391bad3455" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 70; y: 112 + modifiers: 0 + sendToViewport: true } Frame { msec: 4144 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "3af211e45026670fef0e5b391bad3455" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 70; y: 112 + modifiers: 0 + sendToViewport: true } Frame { msec: 4160 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "3af211e45026670fef0e5b391bad3455" } Frame { msec: 4176 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "de1b3a0b2ffb02f4969ce532bb7d6ad9" } Frame { msec: 4192 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "1e0bb98146f64975c4d5b8f8ef65319c" } Frame { msec: 4208 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "3540ee1fc403cc923100888e3bd15168" } Frame { msec: 4224 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "8f8178db769ed067e40c06ec2a8f3e3f" } Frame { msec: 4240 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "18310df1f8f735313e71739c58b2e42d" } Frame { msec: 4256 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "0797a57080ad60f00a185ad7eecbc40f" } Frame { msec: 4272 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "80cffb466c0e8947f775a4b7a677cd20" } Frame { msec: 4288 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "3f80ed589a282924e1dd4fbbd99078b0" } Frame { msec: 4304 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "7368b2da0c37d4b212fff8222244d413" } Frame { msec: 4320 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "7fb81e12fc1cb3e6f08a4bd0af23f40d" } Frame { msec: 4336 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" - } - Frame { - msec: 4352 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" - } - Frame { - msec: 4368 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + hash: "6677c15df6babf38036d4083c63c2684" } Mouse { type: 2 button: 1 buttons: 1 - x: 151; y: 170 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 168 + x: 67; y: 89 modifiers: 0 sendToViewport: true } Frame { - msec: 4384 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" + msec: 4352 + hash: "106d90e84bd5b88c5df048ffc717e843" } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 152; y: 166 - modifiers: 0 - sendToViewport: true + Frame { + msec: 4368 + hash: "ce69c7e561e9f0c1fd5f3dba2ffda3e8" } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 153; y: 163 - modifiers: 0 - sendToViewport: true + Frame { + msec: 4384 + hash: "63b2956e9bad879bef156a318162656c" } Frame { msec: 4400 - hash: "d06fbe4c7dd8bd392172aa5b29c6ceee" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 160 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 154 - modifiers: 0 - sendToViewport: true + hash: "e9f02812bdd7071d1ceb71e0c2195f3a" } Frame { msec: 4416 - hash: "ac75b9adaecd10206c4daa07c93adb27" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 155; y: 148 - modifiers: 0 - sendToViewport: true + hash: "e9f02812bdd7071d1ceb71e0c2195f3a" } Mouse { type: 5 button: 0 buttons: 1 - x: 156; y: 141 + x: 67; y: 88 modifiers: 0 sendToViewport: true } Frame { msec: 4432 - hash: "539ec244fd42801cfcf97adc12f48786" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4448 - hash: "7d7bc6f7d2ff1da352ddab0d679906e7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 162; y: 101 - modifiers: 0 - sendToViewport: true + hash: "e9f02812bdd7071d1ceb71e0c2195f3a" } Mouse { type: 5 button: 0 buttons: 1 - x: 166; y: 83 + x: 67; y: 87 modifiers: 0 sendToViewport: true } @@ -1376,93 +1316,113 @@ VisualTest { type: 3 button: 1 buttons: 0 - x: 166; y: 83 + x: 67; y: 87 modifiers: 0 sendToViewport: true } Frame { + msec: 4448 + hash: "e9f02812bdd7071d1ceb71e0c2195f3a" + } + Frame { msec: 4464 - hash: "4b508eb55971a03c6dc8a50d0244fa21" + hash: "e33d1f7d03ec85600cb61896c66fd9ca" } Frame { msec: 4480 - hash: "2ceb497ca10e6448a019b62a225a72e4" + hash: "72347f42ad925abdc614244b2ec01e7a" } Frame { msec: 4496 - hash: "1fd9b89ebcb8e707c9b1b13ba64061b4" + hash: "5fbd0e2ce5e2fe609dfc5e5643bfbc8a" } Frame { msec: 4512 - hash: "24a3a48843860f643e55ca6dfec84f98" + hash: "4bcb24b700ac09da7387738bce36def5" } Frame { msec: 4528 - hash: "48ea9398101f44a707c44ee1c5102d0c" + hash: "7c489062131ef9fcdfe765cd0361361b" } Frame { msec: 4544 - hash: "d8f2cebcdb542e75bbbaa4391ca881b8" + hash: "c4c1834200b2b7b3eb38b20d7147b8ee" } Frame { msec: 4560 - hash: "df35827ac111c67588922aadd45b3c85" + hash: "49994b7471ec620ff52e5ba516bbb5d4" } Frame { msec: 4576 - hash: "c1e612548c8d5c2f844e94ad4c0f1db4" + hash: "e1cf4e92e291b8509a8eb8a84f70dcad" } Frame { msec: 4592 - hash: "c298bccebeb1f4528c935e5fd256479c" + hash: "9c7d6d53aa6089712389b1c2b4207d15" } Frame { msec: 4608 - hash: "4c01d969eba4eca32b8a3b7f6f9c99f0" + hash: "408731f3b11d888fff1ef9340ad1c568" } Frame { msec: 4624 - hash: "66c783ae698cb91195088591a9bd67c1" + hash: "d34f3092b84dea762adf7cf86c80abc6" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 67; y: 67 + modifiers: 0 + sendToViewport: true } Frame { msec: 4640 - hash: "5419f6889162fb0db6b8c9e521f57f4f" + hash: "d0202d3154721c968301e4fdb759b5d2" } Frame { msec: 4656 - hash: "d153dbf30acf36145d7fcb8e37dd5c6d" + hash: "89601cb9b82465f6ae96156b7e259e70" } Frame { msec: 4672 - hash: "ffbf186683dc979ef29cdd5ff50296fc" + hash: "7c775a699646acf45f26dea5bd5db783" } Frame { msec: 4688 - hash: "ddcedde95d1ebcafe5b73924ecfa047a" + hash: "be285c318afaeb932a2fd50fdc357813" } Frame { msec: 4704 - hash: "d94b9e92f2c1a5e0ea2f8dd21a905517" + hash: "5ddee39853aa1b8d1be287c86e5b763c" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 67; y: 67 + modifiers: 0 + sendToViewport: true } Frame { msec: 4720 - hash: "92c27d497128ccdcbfe8224a0f55a302" + hash: "5ddee39853aa1b8d1be287c86e5b763c" } Frame { msec: 4736 - hash: "7146017581b03e6551822653e54d5001" + hash: "8386713865c12636ce442cd31eacb8ba" } Frame { msec: 4752 - hash: "a39567e01b8963d3b71f5f525d1582d4" + hash: "9f4df793b3b6320e238b451e35183b9f" } Frame { msec: 4768 - hash: "842654ef5a24143e41412b2450b6024c" + hash: "3cd41f6ab2303dd666269cca13dc95e3" } Frame { msec: 4784 - hash: "c2a002588b4b3f89806d6d283c39ea54" + hash: "504a3dd9018c3c725a92a9d6e84743fc" } Frame { msec: 4800 @@ -1470,239 +1430,287 @@ VisualTest { } Frame { msec: 4816 - hash: "2bea5cc22ea4989f8f07fbf62d09880b" + hash: "63158568d5fdf558d0192809da0cf5fe" } Frame { msec: 4832 - hash: "b8326b959b75b05c050ff91f0c34fa55" + hash: "c4f7130484f17854eace9e541c92207a" } Frame { msec: 4848 - hash: "d5f2e63bd18b2067221ec80764c7500d" + hash: "406a0371c7366fadefcbae7d428d1879" } Frame { msec: 4864 - hash: "157f93ebaa95664965539237ba121265" + hash: "f9d6128c4fe60d95a001642cb80ccb99" } Frame { msec: 4880 - hash: "5bda47a6295e500f24b6ba7bf04e9282" + hash: "2fb6886550a0eb7927274cd9cfc46819" } Frame { msec: 4896 - hash: "0134d543cfbf085eb4b5ea4a0f5ae32f" + hash: "dd4ac1eb6d18bc267b2f39d6d291a8bd" } Frame { msec: 4912 - hash: "d27f2ad3bd9817c23caf01ba64335776" + hash: "7f1e1114fe65b7a54364a04ad7697d4c" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 66; y: 45 + modifiers: 0 + sendToViewport: true } Frame { msec: 4928 - hash: "4dd96288601f4481a24b75afedd34599" + hash: "60a4882d0384489465fec8660933c29c" } Frame { msec: 4944 - hash: "d5ebfbd190fe2482af54004ad9434818" + hash: "2330e35830fb707c9d9074b54cd5c7f6" } Frame { msec: 4960 - hash: "6a8c5c64228b3be521407e00c2b6a1de" + hash: "02c275412e380c7f2878bc1f01e2850a" } Frame { msec: 4976 - hash: "645219e7aa6761bef1b11ac8f17f1f42" + hash: "02c275412e380c7f2878bc1f01e2850a" } Frame { msec: 4992 - hash: "54fff3170fa43d99eca2c87381ecaf1e" + hash: "02c275412e380c7f2878bc1f01e2850a" } Frame { msec: 5008 - hash: "54fff3170fa43d99eca2c87381ecaf1e" + hash: "02c275412e380c7f2878bc1f01e2850a" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 44 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 66; y: 43 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 66; y: 43 + modifiers: 0 + sendToViewport: true } Frame { msec: 5024 - hash: "00c3c11b9b266504b8cdbdf4edcc3a98" + hash: "02c275412e380c7f2878bc1f01e2850a" } Frame { msec: 5040 - hash: "00c3c11b9b266504b8cdbdf4edcc3a98" + hash: "a304ddc3e20220f7ed06aeae22589927" } Frame { msec: 5056 - hash: "00c3c11b9b266504b8cdbdf4edcc3a98" + hash: "8ef8e13dff7e5f12c1d0a7a0e438a24f" } Frame { msec: 5072 - hash: "54fff3170fa43d99eca2c87381ecaf1e" + hash: "ef7ef97e56c6b7579e11022861dd3eb5" } Frame { msec: 5088 - hash: "6a8c5c64228b3be521407e00c2b6a1de" + hash: "133613dd5ac9242ce0b6926986cd384a" } Frame { msec: 5104 - hash: "f91cea801322d1bc6ac1b9eeae96c704" + hash: "eb5125c97b9deca07e999ec7e78986b3" } Frame { msec: 5120 - hash: "d27f2ad3bd9817c23caf01ba64335776" + hash: "123c37efefdc1c8e6b27b7eff3bffff8" } Frame { msec: 5136 - hash: "5bda47a6295e500f24b6ba7bf04e9282" + hash: "8443d904bcb63ab2d14cbb5a2e2a8fe7" } Frame { msec: 5152 - hash: "d5f2e63bd18b2067221ec80764c7500d" + hash: "379826db02c7e5cb8ab9007a419e34f9" } Frame { msec: 5168 - hash: "b10145c10c2bc9d01ec6a49a399f728e" + hash: "672d45cdc24a2e1286956e3ce00cab56" } Frame { msec: 5184 - hash: "f0b759a49bf21b0c9b311a1dd02d7807" + hash: "cbaa7c4f52b2ebc1176a3bbe3e029487" } Frame { msec: 5200 - hash: "1c5546c3ddbde95d10921c8c32fd2d67" + hash: "35d70b84722fecd08b1c03f01c5a9895" } Frame { msec: 5216 - hash: "c2a002588b4b3f89806d6d283c39ea54" + hash: "65c1d1c4fc845229853836afd2e7a3c4" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 68; y: 19 + modifiers: 0 + sendToViewport: true } Frame { msec: 5232 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "a238ffd4f6de5ca91bcf0e629407ad11" } Frame { msec: 5248 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "42322853eef74b9b849d81d7aa2ea4af" } Frame { msec: 5264 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "25fb0c4c04d9dcda865a8b254970330c" } Frame { msec: 5280 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "565891a25190705df8b424e1e5e73ddd" } Frame { msec: 5296 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "565891a25190705df8b424e1e5e73ddd" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 68; y: 19 + modifiers: 0 + sendToViewport: true } Frame { msec: 5312 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "565891a25190705df8b424e1e5e73ddd" } Frame { msec: 5328 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "39e05f846071d4ec9a1413922a928995" } Frame { msec: 5344 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "7040400386930b34d989df4cdf36d125" } Frame { msec: 5360 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "2d3c081a1bbb94952becfd486d455de5" } Frame { msec: 5376 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "7a0719f22b0b74e4139ada77ca8d38d6" } Frame { msec: 5392 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "40d070285de7865fa8f415ff06be69d3" } Frame { msec: 5408 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "875ba6c617a4b5d157c747ead185247c" } Frame { msec: 5424 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "2d0ef679259f503d42cc2267b8d95a4e" } Frame { msec: 5440 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "b2aeceddd4d36e600f617578d64a4c32" } Frame { msec: 5456 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "a065ec04aff7a7c164ed8c152130589f" } Frame { msec: 5472 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "a09d94403ce40a8afb12e390aea3d848" } Frame { msec: 5488 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "34b116228527a669dadbfc75f309d045" } Frame { msec: 5504 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "5bee91cba46537ddaefe87f4e118d3d5" } Frame { msec: 5520 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "d0d8bd32268f3e3a62a08514f0d53799" } Frame { msec: 5536 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "b90c3915255d3f98700f8af0181fa6ee" } Frame { msec: 5552 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5568 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5584 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5600 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5616 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5632 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5648 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5664 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5680 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5696 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5712 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5728 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5744 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5760 @@ -1710,2042 +1718,50 @@ VisualTest { } Frame { msec: 5776 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5792 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5808 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5824 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5840 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5856 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5872 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5888 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5904 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5920 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5936 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" + hash: "8d52a504170547407fad6d8785b7199b" } Frame { msec: 5952 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 5968 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 5984 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6000 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6016 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6032 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6048 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6064 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6080 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6096 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6112 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6128 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6144 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6160 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6176 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6192 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6208 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6224 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6240 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6256 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6272 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6288 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6304 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6320 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6336 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6352 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6368 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6384 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6400 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6416 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6432 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6448 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6464 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6480 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6496 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6512 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 177; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6528 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6544 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6560 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6576 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 178; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6592 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 178; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6608 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6624 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6640 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6656 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6672 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6688 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6704 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6720 - image: "packageviews.6.png" - } - Frame { - msec: 6736 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6752 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6768 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6784 - hash: "1eb5d2140ff3c71d55a6e5338dd2853e" - } - Frame { - msec: 6800 - hash: "f6de07972a225d276b4b5c424dc490ef" - } - Frame { - msec: 6816 - hash: "d8c400ca33d590a9b4d9b179b5634d94" - } - Frame { - msec: 6832 - hash: "21ec87c22e52b3daa78bd94b771a105c" - } - Frame { - msec: 6848 - hash: "19a3667f4051e40e944ec58abb16846a" - } - Frame { - msec: 6864 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 6880 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 6896 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 6912 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 6928 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 6944 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 6960 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 6976 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 6992 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7008 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7024 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7040 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7056 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7072 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7088 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7104 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7120 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7136 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7152 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7168 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7184 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7200 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7216 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7232 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7248 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7264 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7280 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7296 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7312 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7328 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7344 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7360 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7376 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7392 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7408 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 157; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7424 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Frame { - msec: 7440 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7456 - hash: "08369a783b1f1f4e64da7dab40df6ef3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 51 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "e8ad02d4c2429a03ff0686888e4038bf" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 157; y: 59 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 67 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7488 - hash: "43dcc86aeff3b8b74ae1b87e735e8963" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 87 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7504 - hash: "96e10ce9e5a80caf626213e5c696d84d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "3b34cb99481d5418136840afd649807d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 134 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 164; y: 134 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7536 - hash: "494cf05eb3d8eb221d0e3c233c936e87" - } - Frame { - msec: 7552 - hash: "e0d5f3aab9fbfac1de47f42202dbeb79" - } - Frame { - msec: 7568 - hash: "8cd6919e15ea4320e00e79d43596ea80" - } - Frame { - msec: 7584 - hash: "395a63aa12928a6b597eabd74f019a03" - } - Frame { - msec: 7600 - hash: "16d4ccbda396a9afcaeac4ddca733012" - } - Frame { - msec: 7616 - hash: "71955518b68a9817a41d5d0f63adcc57" - } - Frame { - msec: 7632 - hash: "152f2569fe8849d5c4289699dba2ee32" - } - Frame { - msec: 7648 - hash: "a1de2cb5acc31a9d73e005c3a44cee4f" - } - Frame { - msec: 7664 - hash: "96ceaad68263b5165a65f557ae19d9cd" - } - Frame { - msec: 7680 - image: "packageviews.7.png" - } - Frame { - msec: 7696 - hash: "9ff5d2774820dac56655a44d965c7742" - } - Frame { - msec: 7712 - hash: "79cdbfb2f93a35680eab38f0df2eaf66" - } - Frame { - msec: 7728 - hash: "19896d510a27871fc589579e27adc0dc" - } - Frame { - msec: 7744 - hash: "71b62e488897345eebf8d9640d50585f" - } - Frame { - msec: 7760 - hash: "4853b95a3f1ae0ebbd468dff3605d595" - } - Frame { - msec: 7776 - hash: "a8030aa0aede17d91758af08256cf39d" - } - Frame { - msec: 7792 - hash: "a2a5e71349060ae262d337d9aa33b549" - } - Frame { - msec: 7808 - hash: "7b5f32f0e53ab102ef6f1eca7da016dd" - } - Frame { - msec: 7824 - hash: "7b5f32f0e53ab102ef6f1eca7da016dd" - } - Frame { - msec: 7840 - hash: "25908df38057c7394135108d9618e28d" - } - Frame { - msec: 7856 - hash: "d3b3ab6e43eef22ca71fc35c36b1f50d" - } - Frame { - msec: 7872 - hash: "c25759db4e12acbe8e4701c7c86d1957" - } - Frame { - msec: 7888 - hash: "fe67a155ead8495d646fa7bbcf5db6b4" - } - Frame { - msec: 7904 - hash: "34e2877a8b84e53e5c85fb1b25d57e2b" - } - Frame { - msec: 7920 - hash: "2fc6c5a0e9bb80e3c8f12553e7e96d02" - } - Frame { - msec: 7936 - hash: "b5122a2530e21a01e93862bd8060e320" - } - Frame { - msec: 7952 - hash: "9c55e0c920bcf5189fb24e1765d221db" - } - Frame { - msec: 7968 - hash: "1106703562135e36ae62130200960fc8" - } - Frame { - msec: 7984 - hash: "c24b57dbf01d2646fbbeb3e66636e220" - } - Frame { - msec: 8000 - hash: "71663a05c04bb77c2e25299a9c6dd9ce" - } - Frame { - msec: 8016 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8032 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8048 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8064 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8080 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8096 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8112 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8128 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8144 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8160 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8176 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8192 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8208 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8224 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8240 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8256 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8272 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8288 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8304 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8320 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8336 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8352 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8368 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8384 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8400 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8416 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8432 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8448 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8464 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8480 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8496 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8512 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8528 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8544 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8560 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8576 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8592 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8608 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8624 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8640 - image: "packageviews.8.png" - } - Frame { - msec: 8656 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8672 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8688 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Frame { - msec: 8704 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 46; y: 147 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8720 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 146 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8736 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 145 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 143 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8752 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 141 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8768 - hash: "dd6caf22c0cacf5c34686785072da5f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 134 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 46; y: 129 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8784 - hash: "7b1354e70befc84c343145987c81562f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8800 - hash: "6107f00c6472d877b5c109dd58d73145" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 45; y: 115 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 45; y: 115 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8816 - hash: "47288701643899e26b53d28595d59b29" - } - Frame { - msec: 8832 - hash: "a3b4b613d19c8f21ec1b75c1c660ed1d" - } - Frame { - msec: 8848 - hash: "7a5d9fe471eb673f68b77d97f9108bac" - } - Frame { - msec: 8864 - hash: "20a09795ffcf05276d7a5be24b33e207" - } - Frame { - msec: 8880 - hash: "225e529ac77f225fc8b84ed71cdcd70f" - } - Frame { - msec: 8896 - hash: "e4188406a3d3d1f1b83547d362a187f8" - } - Frame { - msec: 8912 - hash: "82707040aad297885ba1c8c6672dc017" - } - Frame { - msec: 8928 - hash: "a369118e98e2bd67dc4242c5e8c86cb8" - } - Frame { - msec: 8944 - hash: "001ef50f7d2b7db7e0db8d2190137d0c" - } - Frame { - msec: 8960 - hash: "2db473b2bd9fd602ed0298501752dae9" - } - Frame { - msec: 8976 - hash: "f9cdbb4e515abf23721627e3f2748960" - } - Frame { - msec: 8992 - hash: "cbc072c5b117ce156a4d6661ae488a77" - } - Frame { - msec: 9008 - hash: "79acb38cec803e6ebeb570dc4d7bbb30" - } - Frame { - msec: 9024 - hash: "848014437545fc8d2e454a774586a8ca" - } - Frame { - msec: 9040 - hash: "0836f3a48355f6384c6b3f452df1e7d6" - } - Frame { - msec: 9056 - hash: "b3da223cdf138e915fcb424cf9181d6b" - } - Frame { - msec: 9072 - hash: "1a7cf7e7ddaac64eeff0d23997580b8c" - } - Frame { - msec: 9088 - hash: "cfbd055b2f905db503250b49120948db" - } - Frame { - msec: 9104 - hash: "c5b8a4ce51ec806f0ce654a8977fb17d" - } - Frame { - msec: 9120 - hash: "d09ba0ea9e7fed2f50d6463ac74da470" - } - Frame { - msec: 9136 - hash: "47ec5bab098fd88ef5be3703c316717a" - } - Frame { - msec: 9152 - hash: "3ea8c442ed43bd3a2aebc9cc2aacfc01" - } - Frame { - msec: 9168 - hash: "f016f14b0b21781924ac2afe146b1b97" - } - Frame { - msec: 9184 - hash: "7b7b6954cce0ca202585310520bbb3e3" - } - Frame { - msec: 9200 - hash: "b0de94ee3b0ce4845101606d2d512426" - } - Frame { - msec: 9216 - hash: "8dc56bcb2313bd8dd9ef0cbc098b80e5" - } - Frame { - msec: 9232 - hash: "a1692b26fb73ade5a05e03de3f4a8dbe" - } - Frame { - msec: 9248 - hash: "672dd46e629475d823b182104f15aa24" - } - Frame { - msec: 9264 - hash: "2859e53d63c20af7891efc99d5e515b5" - } - Frame { - msec: 9280 - hash: "b44b1c4eaa33fbd09c8e59c1bf2a8f2a" - } - Frame { - msec: 9296 - hash: "d520fa81032ca25ec2cb6c358488049d" - } - Frame { - msec: 9312 - hash: "3676c00bd5c3e9af8c4092afd80f58c2" - } - Frame { - msec: 9328 - hash: "6be4d4c35aba5a8d32a28dd88f32acd1" - } - Frame { - msec: 9344 - hash: "375473d4d838ef937c3164e7451d9391" - } - Frame { - msec: 9360 - hash: "610253e766974af4958c3623547deebd" - } - Frame { - msec: 9376 - hash: "20b79be381a95930c924240815cc63f4" - } - Frame { - msec: 9392 - hash: "88130d7132f472ff8495d640adf290cc" - } - Frame { - msec: 9408 - hash: "2e81f4c9a0221708146adcb508eb2d30" - } - Frame { - msec: 9424 - hash: "977f52ed922ba5db66440f115f7484a2" - } - Frame { - msec: 9440 - hash: "706f99c32d00be14ae67b4866fee0cd9" - } - Frame { - msec: 9456 - hash: "210231604091497b510c4a1d42295574" - } - Frame { - msec: 9472 - hash: "210231604091497b510c4a1d42295574" - } - Frame { - msec: 9488 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9504 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9520 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9536 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9552 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9568 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9584 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9600 - image: "packageviews.9.png" - } - Frame { - msec: 9616 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9632 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9648 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9664 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9680 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9696 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9712 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9728 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9744 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9760 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9776 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9792 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9808 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9824 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9840 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9856 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9872 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9888 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9904 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9920 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9936 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9952 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9968 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 9984 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10000 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10016 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10032 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10048 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10064 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10080 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10096 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10112 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10128 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10144 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10160 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10176 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 48; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10192 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10208 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10224 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10240 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10256 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 48; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 10272 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 10288 - hash: "c54f97c72088b6319efba3c79bbef0fa" - } - Frame { - msec: 10304 - hash: "3627adf820bc44f99cca852096f337a0" - } - Frame { - msec: 10320 - hash: "48c0f775534ff9bbe9227e60ad9a3622" - } - Frame { - msec: 10336 - hash: "da5c6fd80ee0dc20e81031c84ede20cf" - } - Frame { - msec: 10352 - hash: "ce7595da55b274259771eb99a42df454" - } - Frame { - msec: 10368 - hash: "c2dd2aa17b9508477699fefe55bfbd06" - } - Frame { - msec: 10384 - hash: "4ee897ddfec1081eef8bc5d799774f82" - } - Frame { - msec: 10400 - hash: "f4da67964a175acf4cde4a24b054c24c" - } - Frame { - msec: 10416 - hash: "e3da951dad465f1a69d8d7c08e888f02" - } - Frame { - msec: 10432 - hash: "ff862073eada170a07d209048367b823" - } - Frame { - msec: 10448 - hash: "cb61d5a89c1acc2b646f3c07214bea4a" - } - Frame { - msec: 10464 - hash: "15d842ac551c15a136c7598adf2fe2b1" - } - Frame { - msec: 10480 - hash: "04b9e85f7418bbc402e51e0ce8149180" - } - Frame { - msec: 10496 - hash: "455dff37edfac66f5e4ae78e10b93cf9" - } - Frame { - msec: 10512 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10528 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10544 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10560 - image: "packageviews.10.png" - } - Frame { - msec: 10576 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10592 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10608 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10624 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10640 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10656 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10672 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10688 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10704 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10720 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10736 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10752 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10768 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10784 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10800 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10816 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10832 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10848 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10864 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10880 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10896 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10912 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10928 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10944 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10960 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10976 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 10992 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11008 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11024 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11040 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11056 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11072 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11088 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11104 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11120 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11136 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11152 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11168 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11184 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11200 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11216 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11232 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11248 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11264 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11280 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11296 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11312 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11328 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11344 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11360 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11376 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11392 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11408 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11424 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11440 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11456 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11472 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11488 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11504 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 47; y: 141 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11520 - image: "packageviews.11.png" - } - Frame { - msec: 11536 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11552 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11568 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 47; y: 141 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 11584 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11600 - hash: "259e9da7c3b8738db1762128f2c8d4b0" - } - Frame { - msec: 11616 - hash: "cf515f316c197a307a7fb8373df3b107" - } - Frame { - msec: 11632 - hash: "927379ba611284d5c98a3eb5aca04f7c" - } - Frame { - msec: 11648 - hash: "387ad2042589de0a19cb13aa0cac8872" - } - Frame { - msec: 11664 - hash: "6536ad87d1f04b13c28c43ae0fed984f" - } - Frame { - msec: 11680 - hash: "38d77d6610739614e95c70f32736f238" - } - Frame { - msec: 11696 - hash: "9a6c3a95b61d3b9b787417600123b6d8" - } - Frame { - msec: 11712 - hash: "782d907d7d170108beb030c93d9a4d94" - } - Frame { - msec: 11728 - hash: "646ee08d1ffe676ca0363f70e14c2ed6" - } - Frame { - msec: 11744 - hash: "830730ed9990c8f96fa5c7e6b4228884" - } - Frame { - msec: 11760 - hash: "2e678862f358814278d38950c7c5765b" - } - Frame { - msec: 11776 - hash: "c656eb6ace9caf86d417d79452c4ea34" - } - Frame { - msec: 11792 - hash: "227a9bb3644c26622ef654ba2c61ddad" - } - Frame { - msec: 11808 - hash: "bc8188bf8be749bfb28fc64bb5773922" - } - Frame { - msec: 11824 - hash: "f1e90cfd466bdc26ba98632fe1e5360c" - } - Frame { - msec: 11840 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11856 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11872 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11888 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11904 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11920 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11936 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11952 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11968 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 11984 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12000 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12016 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12032 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12048 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12064 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12080 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12096 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12112 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12128 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12144 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12160 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12176 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12192 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12208 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12224 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12240 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12256 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12272 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12288 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12304 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12320 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12336 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12352 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12368 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12384 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12400 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12416 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12432 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12448 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12464 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12480 - image: "packageviews.12.png" - } - Frame { - msec: 12496 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12512 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12528 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12544 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12560 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12576 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12592 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12608 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12624 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12640 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12656 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12672 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12688 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12704 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12720 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12736 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12752 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12768 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12784 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12800 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12816 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12832 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12848 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12864 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12880 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12896 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12912 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12928 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12944 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12960 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12976 - hash: "81795ee4213ac62e073d811aaf6b580c" - } - Frame { - msec: 12992 - hash: "81795ee4213ac62e073d811aaf6b580c" + hash: "8d52a504170547407fad6d8785b7199b" } } diff --git a/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml b/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml index 99379f1..a9de3f8 100644 --- a/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml +++ b/tests/auto/declarative/qmlvisual/Package_Views/packageviews.qml @@ -17,18 +17,10 @@ Rectangle { ListElement { itemColor: "yellow" } ListElement { itemColor: "slategrey" } ListElement { itemColor: "cyan" } - ListElement { itemColor: "red" } - ListElement { itemColor: "green" } - ListElement { itemColor: "blue" } - ListElement { itemColor: "orange" } - ListElement { itemColor: "purple" } - ListElement { itemColor: "yellow" } - ListElement { itemColor: "slategrey" } - ListElement { itemColor: "cyan" } } delegate: Package { Rectangle { - id: listItem; Package.name: "list"; width:root.width/2; height: 50; color: "transparent"; border.color: "white" + id: listItem; Package.name: "list"; width:root.width/2; height: 25; color: "transparent"; border.color: "white" MouseArea { anchors.fill: parent onClicked: myState.state = myState.state == "list" ? "grid" : "list" @@ -50,12 +42,12 @@ Rectangle { State { name: "list" ParentChange { target: myContent; parent: listItem } - PropertyChanges { target: myContent; x: 0; y: 0; width: listItem.width } + PropertyChanges { target: myContent; x: 0; y: 0; width: listItem.width; height: listItem.height } }, State { name: "grid" ParentChange { target: myContent; parent: gridItem } - PropertyChanges { target: myContent; x: 0; y: 0; width: gridItem.width } + PropertyChanges { target: myContent; x: 0; y: 0; width: gridItem.width; height: gridItem.height } } ] @@ -64,7 +56,7 @@ Rectangle { from: "*"; to: "*" SequentialAnimation { ParentAnimation{ - NumberAnimation { properties: "x,y,width"; easing.type: "InOutQuad" } + NumberAnimation { properties: "x,y,width,height"; easing.type: "InOutQuad" } } } } -- cgit v0.12 From 47448f58b73add569137ced50667c1e42bbcea75 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 10:34:42 +1000 Subject: Shrink and update qdeclarativetext visual tests Task-number: QTBUG-14792 --- .../qdeclarativetext/font/data-X11/plaintext.0.png | Bin 0 -> 77181 bytes .../qdeclarativetext/font/data-X11/plaintext.qml | 11 +++ .../qdeclarativetext/font/data-X11/richtext.0.png | Bin 0 -> 103375 bytes .../qdeclarativetext/font/data-X11/richtext.qml | 11 +++ .../qdeclarativetext/font/data/plaintext.0.png | Bin 0 -> 77181 bytes .../qdeclarativetext/font/data/plaintext.qml | 11 +++ .../qdeclarativetext/font/data/richtext.0.png | Bin 0 -> 103375 bytes .../qdeclarativetext/font/data/richtext.qml | 11 +++ .../qmlvisual/qdeclarativetext/font/plaintext.qml | 88 ++++++++++++--------- .../qmlvisual/qdeclarativetext/font/richtext.qml | 50 +++++------- 10 files changed, 112 insertions(+), 70 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.0.png new file mode 100644 index 0000000..89195ae Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.qml new file mode 100644 index 0000000..fdf2310 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/plaintext.qml @@ -0,0 +1,11 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "plaintext.0.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.0.png new file mode 100644 index 0000000..6a48728 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.qml new file mode 100644 index 0000000..3da391d --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data-X11/richtext.qml @@ -0,0 +1,11 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "richtext.0.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png new file mode 100644 index 0000000..89195ae Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml new file mode 100644 index 0000000..fdf2310 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/plaintext.qml @@ -0,0 +1,11 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "plaintext.0.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png new file mode 100644 index 0000000..6a48728 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml new file mode 100644 index 0000000..3da391d --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/data/richtext.qml @@ -0,0 +1,11 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "richtext.0.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml index 25db179..e82d80f 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/plaintext.qml @@ -1,11 +1,11 @@ import QtQuick 1.0 Rectangle { - id: s; width: 800; height: 1000; color: "lightsteelblue" - property string text: "The quick brown fox jumps over the lazy dog." + id: s; width: 620; height: 600; color: "lightsteelblue" + property string text: "Jackdaws love my big sphinx of quartz." Column { - spacing: 10 + spacing: 8 Text { text: s.text } @@ -13,7 +13,7 @@ Rectangle { text: s.text; font.pixelSize: 18 } Text { - text: s.text; font.pointSize: 25 + text: s.text; font.pointSize: 20 } Text { text: s.text; color: "red"; smooth: true @@ -52,40 +52,52 @@ Rectangle { text: s.text; font.pixelSize: 18; style: Text.Raised; styleColor: "yellow" } Text { - text: s.text; horizontalAlignment: Text.AlignLeft; width: 800 - } - Text { - text: s.text; horizontalAlignment: Text.AlignHCenter; verticalAlignment: Text.AlignVCenter; width: 800; height: 20 - } - Text { - text: s.text; horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignBottom; width: 800; height: 20 - } - Text { - text: s.text; font.pixelSize: 18; style: Text.Outline; styleColor: "white"; wrapMode: Text.WordWrap; width: 200 - } - Text { - text: s.text; elide: Text.ElideLeft; width: 200 - } - Text { - text: s.text; elide: Text.ElideMiddle; width: 200 - } - Text { - text: s.text; elide: Text.ElideRight; width: 200 - } - Text { - text: s.text; elide: Text.ElideLeft; width: 200; wrapMode: Text.WordWrap - } - Text { - text: s.text; elide: Text.ElideMiddle; width: 200; wrapMode: Text.WordWrap - } - Text { - text: s.text; elide: Text.ElideRight; width: 200; wrapMode: Text.WordWrap - } - Text { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere - } - Text { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap + text: s.text; horizontalAlignment: Text.AlignLeft; width: s.width + } + Text { + text: s.text; horizontalAlignment: Text.AlignHCenter; verticalAlignment: Text.AlignVCenter; width: s.width; height: 20 + } + Text { + text: s.text; horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignBottom; width: s.width; height: 20 + } + Row{ + height: childrenRect.height + spacing: 4 + Text { + text: s.text; elide: Text.ElideLeft; width: 200 + } + Text { + text: s.text; elide: Text.ElideMiddle; width: 200 + } + Text { + text: s.text; elide: Text.ElideRight; width: 200 + } + } + Row{ + height: childrenRect.height + spacing: 4 + Text{ + text: s.text; elide: Text.ElideLeft; width: 200; wrapMode: Text.WordWrap + } + Text { + text: s.text; elide: Text.ElideMiddle; width: 200; wrapMode: Text.WordWrap + } + Text { + text: s.text; elide: Text.ElideRight; width: 200; wrapMode: Text.WordWrap + } + } + Row{ + height: childrenRect.height + spacing: 4 + Text { + text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere + } + Text { + text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap + } + Text { +text: s.text; font.pixelSize: 18; style: Text.Outline; styleColor: "white"; wrapMode: Text.WordWrap; width: 200 + } } } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml index 31b0e69..7d174cc 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/font/richtext.qml @@ -1,11 +1,11 @@ import QtQuick 1.0 Rectangle { - id: s; width: 800; height: 1000; color: "lightsteelblue" + id: s; width: 620; height: 600; color: "lightsteelblue" property string text: "<b>The</b> <i>quick</i> <u>brown</u> <o>fox</o> <big>jumps</big> <small>over</small> <tt>the</tt> <s>lazy</s> <em>dog</em>." Column { - spacing: 10 + spacing: 6 Text { text: s.text } @@ -13,7 +13,7 @@ Rectangle { text: s.text; font.pixelSize: 18 } Text { - text: s.text; font.pointSize: 25 + text: s.text; font.pointSize: 18 } Text { text: s.text; color: "red"; smooth: true @@ -52,40 +52,26 @@ Rectangle { text: s.text; font.pixelSize: 18; style: Text.Raised; styleColor: "yellow" } Text { - text: s.text; horizontalAlignment: Text.AlignLeft; width: 800 + text: s.text; horizontalAlignment: Text.AlignLeft; width: s.width } Text { - text: s.text; horizontalAlignment: Text.AlignHCenter; verticalAlignment: Text.AlignVCenter; width: 800; height: 20 + text: s.text; horizontalAlignment: Text.AlignHCenter; verticalAlignment: Text.AlignVCenter; width: s.width; height: 20 } Text { - text: s.text; horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignBottom; width: 800; height: 20 + text: s.text; horizontalAlignment: Text.AlignRight; verticalAlignment: Text.AlignBottom; width: s.width; height: 20 } - Text { - text: s.text; font.pixelSize: 18; style: Text.Outline; styleColor: "white"; wrapMode: Text.WordWrap; width: 200 - } - Text { - text: s.text; elide: Text.ElideLeft; width: 200 - } - Text { - text: s.text; elide: Text.ElideMiddle; width: 200 - } - Text { - text: s.text; elide: Text.ElideRight; width: 200 - } - Text { - text: s.text; elide: Text.ElideLeft; width: 200; wrapMode: Text.WordWrap - } - Text { - text: s.text; elide: Text.ElideMiddle; width: 200; wrapMode: Text.WordWrap - } - Text { - text: s.text; elide: Text.ElideRight; width: 200; wrapMode: Text.WordWrap - } - Text { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere - } - Text { - text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap + Row{ + height: childrenRect.height; + spacing: 4 + Text { + text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.WrapAnywhere + } + Text { + text: s.text + " thisisaverylongstringwithnospaces"; width: 150; wrapMode: Text.Wrap + } + Text { + text: s.text; font.pixelSize: 18; style: Text.Outline; styleColor: "white"; wrapMode: Text.WordWrap; width: 200 + } } } } -- cgit v0.12 From 2c2e16dc5b43536eba6cb89c93401fed8f3c26a8 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 10:51:20 +1000 Subject: Update when text changes to "" Also fixes a doc typo. Includes test. Task-number: QTBUG-14469 --- src/declarative/graphicsitems/qdeclarativetext.cpp | 3 +- .../qdeclarativetext/bugs/QTBUG-14469.qml | 22 + .../bugs/data-X11/QTBUG-14469.0.png | Bin 0 -> 422 bytes .../qdeclarativetext/bugs/data-X11/QTBUG-14469.qml | 475 +++++++++++++++++++++ .../qdeclarativetext/bugs/data/QTBUG-14469.0.png | Bin 0 -> 422 bytes .../qdeclarativetext/bugs/data/QTBUG-14469.qml | 475 +++++++++++++++++++++ 6 files changed, 974 insertions(+), 1 deletion(-) create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/QTBUG-14469.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.qml diff --git a/src/declarative/graphicsitems/qdeclarativetext.cpp b/src/declarative/graphicsitems/qdeclarativetext.cpp index c8e3615..865af2d 100644 --- a/src/declarative/graphicsitems/qdeclarativetext.cpp +++ b/src/declarative/graphicsitems/qdeclarativetext.cpp @@ -221,6 +221,7 @@ void QDeclarativeTextPrivate::updateSize() if (text.isEmpty()) { q->setImplicitHeight(fm.height()); emit q->paintedSizeChanged(); + q->update(); return; } @@ -866,7 +867,7 @@ void QDeclarativeText::setStyleColor(const QColor &color) and \c Text.AlignVCenter. Note that for a single line of text, the size of the text is the area of the text. In this common case, - all alignments are equivalent. If you want the text to be, say, centered in it parent, then you will + all alignments are equivalent. If you want the text to be, say, centered in its parent, then you will need to either modify the Item::anchors, or set horizontalAlignment to Text.AlignHCenter and bind the width to that of the parent. */ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/QTBUG-14469.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/QTBUG-14469.qml new file mode 100644 index 0000000..ea3a939 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/QTBUG-14469.qml @@ -0,0 +1,22 @@ +import QtQuick 1.0 + +/* The bug was that if text was set to "" or the size didn't increase, the text didn't repaint + ended up only repainting for 1, 10, 11, 12. + Test passes if it goes from "" to 13 back to "" with all numbers being painted (and the text disappearing at 0) + */ + +Item{ + width: 80 + height: 80 + property int val: 0 + Text{ + id: txt; + text: val == 0 ? "" : val + } + Timer{ + interval: 100 + running: true + repeat: true; + onTriggered: {val = (val + 1) % 14;} + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.0.png new file mode 100644 index 0000000..b8cc1c7 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.qml new file mode 100644 index 0000000..6201c72 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data-X11/QTBUG-14469.qml @@ -0,0 +1,475 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 32 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 48 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 64 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 80 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 96 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 112 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 128 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 144 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 160 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 176 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 192 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 208 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 224 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 240 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 256 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 272 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 288 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 304 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 320 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 336 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 352 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 368 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 384 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 400 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 416 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 432 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 448 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 464 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 480 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 496 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 512 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 528 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 544 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 560 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 576 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 592 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 608 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 624 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 640 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 656 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 672 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 688 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 704 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 720 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 736 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 752 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 768 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 784 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 800 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 816 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 832 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 848 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 864 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 880 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 896 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 912 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 928 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 944 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 960 + image: "QTBUG-14469.0.png" + } + Frame { + msec: 976 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 992 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 1008 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 1024 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1040 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1056 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1072 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1088 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1104 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1120 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1136 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1152 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1168 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1184 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1200 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1216 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1232 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1248 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1264 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1280 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1296 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1312 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1328 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1344 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1360 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1376 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1392 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1408 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1424 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1440 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1456 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1472 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1488 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1504 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1520 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1536 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1552 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1568 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1584 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1600 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1616 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1632 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1648 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1664 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1680 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1696 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1712 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1728 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1744 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1760 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1776 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1792 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1808 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1824 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 1840 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 1856 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 1872 + hash: "799c7a637b061686c1456c9c535594d3" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.0.png new file mode 100644 index 0000000..b8cc1c7 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.qml new file mode 100644 index 0000000..6201c72 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/bugs/data/QTBUG-14469.qml @@ -0,0 +1,475 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 32 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 48 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 64 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 80 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 96 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 112 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 128 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 144 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 160 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 176 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 192 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 208 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 224 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 240 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 256 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 272 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 288 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 304 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 320 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 336 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 352 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 368 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 384 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 400 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 416 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 432 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 448 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 464 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 480 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 496 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 512 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 528 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 544 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 560 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 576 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 592 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 608 + hash: "51cd7a5bc24cdb50832066cc04cae313" + } + Frame { + msec: 624 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 640 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 656 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 672 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 688 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 704 + hash: "bac094de06155c73e4d2d9e2fd99b038" + } + Frame { + msec: 720 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 736 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 752 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 768 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 784 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 800 + hash: "3159c438d2cb58e31b4b458ba417f794" + } + Frame { + msec: 816 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 832 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 848 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 864 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 880 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 896 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 912 + hash: "a4f9c320c8aa558c66dd25d132bb5834" + } + Frame { + msec: 928 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 944 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 960 + image: "QTBUG-14469.0.png" + } + Frame { + msec: 976 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 992 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 1008 + hash: "b1a283365bbffbc0ddaa4aa661e52add" + } + Frame { + msec: 1024 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1040 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1056 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1072 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1088 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1104 + hash: "57ba00590bed6fe1b0f8fc3e54b9637e" + } + Frame { + msec: 1120 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1136 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1152 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1168 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1184 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1200 + hash: "e1b070e2bf36e5d8a34cabc0d52b2830" + } + Frame { + msec: 1216 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1232 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1248 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1264 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1280 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1296 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1312 + hash: "bc81044e90cc001fc351a1518ba4b41e" + } + Frame { + msec: 1328 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1344 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1360 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1376 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1392 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1408 + hash: "18386b56e44b1f3981b3aa8fe980410b" + } + Frame { + msec: 1424 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1440 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1456 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1472 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1488 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1504 + hash: "fab978e1e0ee5140d8131320ff2322e9" + } + Frame { + msec: 1520 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1536 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1552 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1568 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1584 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1600 + hash: "6971eb49a32b8f9e09c24ac1340728cb" + } + Frame { + msec: 1616 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1632 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1648 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1664 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1680 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1696 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1712 + hash: "449c6b632a3b85462fe3947a071ffa91" + } + Frame { + msec: 1728 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1744 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1760 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1776 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1792 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1808 + hash: "9c804e5eec3b31acd55a510d301cc419" + } + Frame { + msec: 1824 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 1840 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 1856 + hash: "799c7a637b061686c1456c9c535594d3" + } + Frame { + msec: 1872 + hash: "799c7a637b061686c1456c9c535594d3" + } +} -- cgit v0.12 From 3a784f3c74b10b898d40b06e82851929cba1eca2 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 11:05:49 +1000 Subject: Add a test for multiline text alignment Apparently this is something we've had troubles with in the past Task-number: QTBUG-14792 --- .../align/data-X11/multilineAlign.0.png | Bin 0 -> 1895 bytes .../align/data-X11/multilineAlign.qml | 247 +++++++++++++++++++++ .../align/data/multilineAlign.0.png | Bin 0 -> 1895 bytes .../qdeclarativetext/align/data/multilineAlign.qml | 247 +++++++++++++++++++++ .../qdeclarativetext/align/multilineAlign.qml | 24 ++ 5 files changed, 518 insertions(+) create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativetext/align/multilineAlign.qml diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.0.png new file mode 100644 index 0000000..e6b2b3c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.qml new file mode 100644 index 0000000..1b43aa3 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data-X11/multilineAlign.qml @@ -0,0 +1,247 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 32 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 48 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 64 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 80 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 96 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 112 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 128 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 144 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 160 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 176 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 192 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 208 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 224 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 240 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 256 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 272 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 288 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 304 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 320 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 336 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 352 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 368 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 384 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 400 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 416 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 432 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 448 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 464 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 480 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 496 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 512 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 528 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 544 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 560 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 576 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 592 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 608 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 624 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 640 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 656 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 672 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 688 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 704 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 720 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 736 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 752 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 768 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 784 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 800 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 816 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 832 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 848 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 864 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 880 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 896 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 912 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 928 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 944 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 960 + image: "multilineAlign.0.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.0.png b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.0.png new file mode 100644 index 0000000..e6b2b3c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.qml new file mode 100644 index 0000000..1b43aa3 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/data/multilineAlign.qml @@ -0,0 +1,247 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 32 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 48 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 64 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 80 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 96 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 112 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 128 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 144 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 160 + hash: "1ec47db85ba34bf1900445a2ab87b5e3" + } + Frame { + msec: 176 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 192 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 208 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 224 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 240 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 256 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 272 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 288 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 304 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 320 + hash: "1fc2a63fa95e277bed60abfdecc7c82f" + } + Frame { + msec: 336 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 352 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 368 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 384 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 400 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 416 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 432 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 448 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 464 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 480 + hash: "3a4e863d83f5d475e0c8c5121905bd87" + } + Frame { + msec: 496 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 512 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 528 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 544 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 560 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 576 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 592 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 608 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 624 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 640 + hash: "8887c8f40667f65a814d74b6edcfb81c" + } + Frame { + msec: 656 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 672 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 688 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 704 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 720 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 736 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 752 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 768 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 784 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 800 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 816 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 832 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 848 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 864 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 880 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 896 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 912 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 928 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 944 + hash: "436000b48f688120d96919227d9e67b4" + } + Frame { + msec: 960 + image: "multilineAlign.0.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativetext/align/multilineAlign.qml b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/multilineAlign.qml new file mode 100644 index 0000000..976f0b0 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativetext/align/multilineAlign.qml @@ -0,0 +1,24 @@ +import QtQuick 1.0 + +/*Tests both the alignments of multiline text, and that + it can deal with changing them properly +*/ +Item{ + width: 100 + height: 80 + property int stage: 0 + onStageChanged: if(stage == 6) Qt.quit(); + Text{ + text: "I am the very model of a modern major general." + anchors.fill: parent; + wrapMode: Text.WordWrap + horizontalAlignment: (stage<1 ? Text.AlignRight : (stage<3 ? Text.AlignHCenter : Text.AlignLeft)) + verticalAlignment: (stage<2 ? Text.AlignBottom : (stage<4 ? Text.AlignVCenter : Text.AlignTop)) + } + Timer{ + interval: 160 + running: true + repeat: true + onTriggered: stage += 1 + } +} -- cgit v0.12 From ecb2d6faca9d4b8b2ea216a4647b42df2fc0f805 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 11:15:14 +1000 Subject: Clean up qdeclarativeboarderimage visual tests Includes speeding up the animated resize tests. Task-number: QTBUG-14792 --- .../content/MyBorderImage.qml | 8 +- .../data/animated-smooth.0.png | Bin 61731 -> 89135 bytes .../data/animated-smooth.1.png | Bin 98927 -> 26593 bytes .../data/animated-smooth.2.png | Bin 48780 -> 0 bytes .../data/animated-smooth.3.png | Bin 32431 -> 0 bytes .../data/animated-smooth.4.png | Bin 35835 -> 0 bytes .../data/animated-smooth.5.png | Bin 79428 -> 0 bytes .../data/animated-smooth.6.png | Bin 45928 -> 0 bytes .../data/animated-smooth.qml | 1536 ++--------------- .../qdeclarativeborderimage/data/animated.0.png | Bin 23684 -> 30167 bytes .../qdeclarativeborderimage/data/animated.1.png | Bin 29115 -> 14694 bytes .../qdeclarativeborderimage/data/animated.2.png | Bin 27580 -> 0 bytes .../qdeclarativeborderimage/data/animated.3.png | Bin 14822 -> 0 bytes .../qdeclarativeborderimage/data/animated.4.png | Bin 21356 -> 0 bytes .../qdeclarativeborderimage/data/animated.5.png | Bin 31143 -> 0 bytes .../qdeclarativeborderimage/data/animated.6.png | Bin 26468 -> 0 bytes .../qdeclarativeborderimage/data/animated.7.png | Bin 16225 -> 0 bytes .../qdeclarativeborderimage/data/animated.qml | 1796 ++------------------ .../qdeclarativeborderimage/data/borders.0.png | Bin 22832 -> 24327 bytes 19 files changed, 262 insertions(+), 3078 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.5.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.6.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.5.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.6.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.7.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml index f4ead54..75a644a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/content/MyBorderImage.qml @@ -20,14 +20,14 @@ Item { SequentialAnimation on width { loops: Animation.Infinite - NumberAnimation { from: container.minWidth; to: container.maxWidth; duration: 2000; easing.type: "InOutQuad"} - NumberAnimation { from: container.maxWidth; to: container.minWidth; duration: 2000; easing.type: "InOutQuad" } + NumberAnimation { from: container.minWidth; to: container.maxWidth; duration: 1000; easing.type: "InOutQuad"} + NumberAnimation { from: container.maxWidth; to: container.minWidth; duration: 1000; easing.type: "InOutQuad" } } SequentialAnimation on height { loops: Animation.Infinite - NumberAnimation { from: container.minHeight; to: container.maxHeight; duration: 2000; easing.type: "InOutQuad"} - NumberAnimation { from: container.maxHeight; to: container.minHeight; duration: 2000; easing.type: "InOutQuad" } + NumberAnimation { from: container.minHeight; to: container.maxHeight; duration: 1000; easing.type: "InOutQuad"} + NumberAnimation { from: container.maxHeight; to: container.minHeight; duration: 1000; easing.type: "InOutQuad" } } border.top: container.margin diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.0.png index 9a6b079..b6ef0f5 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.1.png index 4366d53..11622a7 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.2.png deleted file mode 100644 index 85a2729..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.3.png deleted file mode 100644 index de6ff7c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.4.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.4.png deleted file mode 100644 index fe7d3dd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.5.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.5.png deleted file mode 100644 index e73bef5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.6.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.6.png deleted file mode 100644 index 0c75422..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml index e974234..1200099 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated-smooth.qml @@ -22,223 +22,223 @@ VisualTest { } Frame { msec: 80 - hash: "aec13bcab337e55832b0a02fb5c6b526" + hash: "9419c891e347fe6b25d30c05bae5d14c" } Frame { msec: 96 - hash: "aec13bcab337e55832b0a02fb5c6b526" + hash: "62430dd693c4eaeb7afe9e85229406a4" } Frame { msec: 112 - hash: "aec13bcab337e55832b0a02fb5c6b526" + hash: "a9b6aeb509076bf17c2068ce280326fb" } Frame { msec: 128 - hash: "cd2180be80101c2aa4350b51b7a6f502" + hash: "2570806925c3a61a7afaa09331c6eed8" } Frame { msec: 144 - hash: "de471829f8ad3b43bf1b4df9d1d65a4d" + hash: "98d48920293b11511e8bbf820dd49acc" } Frame { msec: 160 - hash: "ed9f2ca797894612600bc4b7fbaecb84" + hash: "e4809aefa55620a86484f66582d4d1b6" } Frame { msec: 176 - hash: "59470d71fa4426d0283e86371f2bfc2a" + hash: "098b063b0e5eb3dd22adb3353342725e" } Frame { msec: 192 - hash: "9a2f92efb51bcc6293d6a8e82d5314ea" + hash: "30aadc837ec2e7d8a2495453348804bc" } Frame { msec: 208 - hash: "7b66e21652a7d0982226e281a48411a9" + hash: "05013a538f2796c728b4d0ddad059851" } Frame { msec: 224 - hash: "a716c8d2c94433dee719f92f0822c8ec" + hash: "b221f14ea2c04078e23ac37ef817c50e" } Frame { msec: 240 - hash: "f22a47b846cfee96ebdf39bbce2e6d51" + hash: "3ef9de605fff5d3156bccc99a93c5da6" } Frame { msec: 256 - hash: "5a8932d13d624932a65694fd19ec05cd" + hash: "7722a4c025f1d2b560c7fec8ba8f7b6d" } Frame { msec: 272 - hash: "48e62dd171f5da82b5aa26c765e4042c" + hash: "e24ad2d67f10d2cc58dffcc469342005" } Frame { msec: 288 - hash: "63d3c47f7dec1236440a05e0a8380900" + hash: "5153a42348885ce8de81f8086f73c163" } Frame { msec: 304 - hash: "323af110731b7af0c30f8862ff59b833" + hash: "7083d70df6cc476ec342abbe6f4409b4" } Frame { msec: 320 - hash: "83c029e328e80af83158c37089cf0ece" + hash: "befd4cd74f59291a9f9a01ad2a051029" } Frame { msec: 336 - hash: "3f9a09ae19be34348bb2552915360cf7" + hash: "705cd5a0717b6a8de8871bf0bfb38129" } Frame { msec: 352 - hash: "df624d70cae1bcefda8d69c0ff055d83" + hash: "a65d51747c0183a3a096e51326fdae78" } Frame { msec: 368 - hash: "d671a3b971468e1d8aa30ab655e020a9" + hash: "99ec9ca33a26afd9e34c1d3246502926" } Frame { msec: 384 - hash: "74c837b29f7f05b615123f0e608b523f" + hash: "3355ce4b409474e6dbd99d010471a0a4" } Frame { msec: 400 - hash: "277ef98ea859fb7685fe6cd44a538a7d" + hash: "bcfb117c5860306c016a05e828773777" } Frame { msec: 416 - hash: "0a8da7a3f57c3e06e4be5ea1d8a83ae9" + hash: "4650216f60377bf7798877546c723d0a" } Frame { msec: 432 - hash: "456be9c208d690c479ba12bf6325dde0" + hash: "3821707e1201c5eebb043f86887c6bc4" } Frame { msec: 448 - hash: "10307beea6d99ab0ff5863f8e35555ed" + hash: "19c079bd61467706ff54f039f512dee6" } Frame { msec: 464 - hash: "170a1d5fe3422cf5223a78015a6a45fd" + hash: "9fdd3bb7d735a96df8538f2883d784fe" } Frame { msec: 480 - hash: "64ecb03aa538e74d0b99c6dec7751401" + hash: "d8096b88c24221d7176472031de3dc14" } Frame { msec: 496 - hash: "f3a7e74a1839f9366f9eeec4d2b80d1e" + hash: "be4abb3dd1ee3fc62b83d152a1a89576" } Frame { msec: 512 - hash: "0f347763f25350ebb62dda1536372b45" + hash: "e3d2caf6eb0afd2e6efd5c08a580e158" } Frame { msec: 528 - hash: "0af81ee0d76ff8335a0e347dc086ca37" + hash: "40bdf75ac82c26a741939945dbf85924" } Frame { msec: 544 - hash: "061406edcbd2d4930ab89c3fcab63c7f" + hash: "e2e3bee6bf84bc82c50a68e442440f05" } Frame { msec: 560 - hash: "31d65134f340d82dd40f2401bda3fb7e" + hash: "2cb89b7538d4dd398a9ff5a94e2d0020" } Frame { msec: 576 - hash: "16c16c77c65b36d1e0954d5ead2642be" + hash: "41dce41d337e7d24a5e70d831dbb448b" } Frame { msec: 592 - hash: "61c16009b65a55bffb63e27727e1615e" + hash: "7812862b4c1d67a64792a94cb584a9ed" } Frame { msec: 608 - hash: "e1474c2cdd8768ca1ef45bf3bc5234ca" + hash: "a82a2af4b9cee89e03db363f979d1661" } Frame { msec: 624 - hash: "89c159ef00d273ecfe61332e1bf7244d" + hash: "7071a72a55fab2d7b367eb113d38dc6d" } Frame { msec: 640 - hash: "f4d0d3bca25e67908b38910f47b4757e" + hash: "835de3a883cb3a7c35cb533f51f9b32c" } Frame { msec: 656 - hash: "0e0c40f8e11a7bd499c80562ac6f8a82" + hash: "498afb76e236561638532ba6cafd758a" } Frame { msec: 672 - hash: "4310a4c3037d845f088f21ad608f366a" + hash: "38ebf5835263e6e80e75653971ad74b4" } Frame { msec: 688 - hash: "3d518cd0348d6202243364af1dd6ce89" + hash: "b5e8c06b458b1afac627ed7f7e76c868" } Frame { msec: 704 - hash: "41987e6b4248d7944c0dbc6eb3862023" + hash: "594e33c35006281b2df3a45c13c31c44" } Frame { msec: 720 - hash: "3e81338d38723d56f2d6c428271f81c1" + hash: "a49989ca004a6991b49d1978cfc0fed7" } Frame { msec: 736 - hash: "74af3457583fbaf73f14556aeccc8403" + hash: "a743fc5cdcaadd42095e9e0d8441f7cc" } Frame { msec: 752 - hash: "efc119983701908a904deb24108c59cb" + hash: "4ca1600674bad4b753007322945e25dd" } Frame { msec: 768 - hash: "3a77785cfd7755f567619d8e04583f6a" + hash: "d2921c6ae6a1aa9168a2fa93e8936ff2" } Frame { msec: 784 - hash: "fd85d1dd931033973283a408b5e328a8" + hash: "55b9f82693d6ebde9ec23e3ed554bb9c" } Frame { msec: 800 - hash: "5d3e85acabe5e5ff802eb7731676274f" + hash: "15e72f5cd1847f591b0c4f6ecb74ed4a" } Frame { msec: 816 - hash: "ae12f1f37a746e16b06e6b869c89fac1" + hash: "7aa94688f72d6ddade09a9d99f1c5563" } Frame { msec: 832 - hash: "d2ed2cf3a12e41bac299399cc35abe6a" + hash: "b782f52c9cb50c72307bbd8fd15fffd2" } Frame { msec: 848 - hash: "84ef6dda8318b623832f58c46d762e89" + hash: "8106f20a3c0c3e7ea0e502e963993330" } Frame { msec: 864 - hash: "b699285764f5e8866a9996f4a0dccc69" + hash: "670b05d25b72ed4c6affdcf873374947" } Frame { msec: 880 - hash: "ddd8a006ef048c8d929144aa9fcd7c5a" + hash: "a34b08cb7e724c0563f86a5c8e209868" } Frame { msec: 896 - hash: "177666cb3bb784c83196886b2c6cf6b6" + hash: "f5281eba399a13f6fa024ae0fa6b01bd" } Frame { msec: 912 - hash: "9cd29b4b023a8b92573575fb3c3dda83" + hash: "db4dba10574839c3b3d8684aa1a2ad08" } Frame { msec: 928 - hash: "adc670a9aa0326744cb23e4f5912e6c7" + hash: "b90f1f30d340d292c658145f62e2bb8a" } Frame { msec: 944 - hash: "48db9a5e6aad9a9563a3cd35fb7fa9b6" + hash: "452c45b5cc9be80abde7af04ba49731c" } Frame { msec: 960 @@ -246,239 +246,239 @@ VisualTest { } Frame { msec: 976 - hash: "64b21b89576fdd0083f60a26f57b9c11" + hash: "8af61e4b09309e31394ae635d58fafd2" } Frame { msec: 992 - hash: "0d407ee07692d0e5a480a60952807b3c" + hash: "9ce60e38b7025c6fa72432de6a3c88b2" } Frame { msec: 1008 - hash: "845170815a87565dc4229792032b3357" + hash: "9e7f9d0e83a33f005d9ee579140c5562" } Frame { msec: 1024 - hash: "8b8120cfc14de03e048632fdea61be21" + hash: "9e7f9d0e83a33f005d9ee579140c5562" } Frame { msec: 1040 - hash: "b0070117f1c24a4da87434725d4bb989" + hash: "9ce60e38b7025c6fa72432de6a3c88b2" } Frame { msec: 1056 - hash: "0239d697642ca1d1b1d1daa3ea048e1e" + hash: "8af61e4b09309e31394ae635d58fafd2" } Frame { msec: 1072 - hash: "3df54504f8891306fa8f1e9e2075a5e2" + hash: "d9ab04d0a6a9373e5622e1124db17866" } Frame { msec: 1088 - hash: "853429387cc639496c7338244de7e1b7" + hash: "452c45b5cc9be80abde7af04ba49731c" } Frame { msec: 1104 - hash: "bd70500fbdfe5aa2fe4362a97a1dee2d" + hash: "b90f1f30d340d292c658145f62e2bb8a" } Frame { msec: 1120 - hash: "b375e723b2396b13b8f55cfc0c81c3c3" + hash: "db4dba10574839c3b3d8684aa1a2ad08" } Frame { msec: 1136 - hash: "53f05993ba3b426949badd2e4cd66d84" + hash: "f5281eba399a13f6fa024ae0fa6b01bd" } Frame { msec: 1152 - hash: "23291a0239c69ea07db959e709b1ff5f" + hash: "a34b08cb7e724c0563f86a5c8e209868" } Frame { msec: 1168 - hash: "85ef33fcb3f91e4fc20391bf94455984" + hash: "670b05d25b72ed4c6affdcf873374947" } Frame { msec: 1184 - hash: "d6615fc345831a3cc5b9a7196284b632" + hash: "8106f20a3c0c3e7ea0e502e963993330" } Frame { msec: 1200 - hash: "07acba64dc608439a8a54fcb080379e8" + hash: "b782f52c9cb50c72307bbd8fd15fffd2" } Frame { msec: 1216 - hash: "2a1fcfb753ca237b518da26e67c928e5" + hash: "7aa94688f72d6ddade09a9d99f1c5563" } Frame { msec: 1232 - hash: "1f964c6c9bebdc9945dc69a6095400f7" + hash: "15e72f5cd1847f591b0c4f6ecb74ed4a" } Frame { msec: 1248 - hash: "bd045f4532d78bba0ef1b64118fd9f24" + hash: "55b9f82693d6ebde9ec23e3ed554bb9c" } Frame { msec: 1264 - hash: "2084ccc60ddd493399c128717816d33b" + hash: "d2921c6ae6a1aa9168a2fa93e8936ff2" } Frame { msec: 1280 - hash: "0640fcb0b24d3ba4ab8695f78271a438" + hash: "4ca1600674bad4b753007322945e25dd" } Frame { msec: 1296 - hash: "7c9a98e2101c33e17c1bd7e6c2d921ff" + hash: "a743fc5cdcaadd42095e9e0d8441f7cc" } Frame { msec: 1312 - hash: "fce2648975106bc5c0ca9a4530f7f748" + hash: "a49989ca004a6991b49d1978cfc0fed7" } Frame { msec: 1328 - hash: "39cc17ee2e889f17dd07179fda99e431" + hash: "594e33c35006281b2df3a45c13c31c44" } Frame { msec: 1344 - hash: "39c46d85d20f7ef3eca1d09c7eb6a068" + hash: "b5e8c06b458b1afac627ed7f7e76c868" } Frame { msec: 1360 - hash: "d65d50fbb920e683b041a1c72238225b" + hash: "38ebf5835263e6e80e75653971ad74b4" } Frame { msec: 1376 - hash: "45d891d804609ebbe1d5ac3f826d0c17" + hash: "498afb76e236561638532ba6cafd758a" } Frame { msec: 1392 - hash: "05cbce0eaa80b4610a9067af8c40f819" + hash: "835de3a883cb3a7c35cb533f51f9b32c" } Frame { msec: 1408 - hash: "00ab7798bcd77a99886dff0414f35382" + hash: "7071a72a55fab2d7b367eb113d38dc6d" } Frame { msec: 1424 - hash: "5cc90d798786c270ddd2616512f4459f" + hash: "a82a2af4b9cee89e03db363f979d1661" } Frame { msec: 1440 - hash: "e5df07ea21e8e415c3ec82560f2d0f34" + hash: "7812862b4c1d67a64792a94cb584a9ed" } Frame { msec: 1456 - hash: "ddf1f5c0b97fe4821719ec5bf4bd091b" + hash: "41dce41d337e7d24a5e70d831dbb448b" } Frame { msec: 1472 - hash: "c61d2aa7f934fb5a9f9f7883e063b51c" + hash: "2cb89b7538d4dd398a9ff5a94e2d0020" } Frame { msec: 1488 - hash: "29ddde3300d0520a4c01b5536d8b9e7a" + hash: "e2e3bee6bf84bc82c50a68e442440f05" } Frame { msec: 1504 - hash: "2fede2f5d871654f3f8a6e9d890adeac" + hash: "40bdf75ac82c26a741939945dbf85924" } Frame { msec: 1520 - hash: "deed4c06c9b713834490832b88e7acaf" + hash: "e3d2caf6eb0afd2e6efd5c08a580e158" } Frame { msec: 1536 - hash: "c2edb016cfdd47c192d1c48281ee76ed" + hash: "be4abb3dd1ee3fc62b83d152a1a89576" } Frame { msec: 1552 - hash: "a261be47ae89e6b53e6bc1c1197154ae" + hash: "d8096b88c24221d7176472031de3dc14" } Frame { msec: 1568 - hash: "e860e97ebd73b7d1d5d5d90458b34bfe" + hash: "9fdd3bb7d735a96df8538f2883d784fe" } Frame { msec: 1584 - hash: "a087b532ecb2f28e4ee60819228c2522" + hash: "19c079bd61467706ff54f039f512dee6" } Frame { msec: 1600 - hash: "64df51b4c1bf744b2aae1c6d908c2cc3" + hash: "3821707e1201c5eebb043f86887c6bc4" } Frame { msec: 1616 - hash: "880640372bf584955627f6835f24be13" + hash: "4650216f60377bf7798877546c723d0a" } Frame { msec: 1632 - hash: "d1110817827c318ceb0c112e8c2bfc1d" + hash: "bcfb117c5860306c016a05e828773777" } Frame { msec: 1648 - hash: "705d9c8de05c859a42769f73761c6a63" + hash: "3355ce4b409474e6dbd99d010471a0a4" } Frame { msec: 1664 - hash: "3bae40654ec551d69e7c8c72f631c7a5" + hash: "99ec9ca33a26afd9e34c1d3246502926" } Frame { msec: 1680 - hash: "774740a393f3e9b8f12b81cce8da8280" + hash: "a65d51747c0183a3a096e51326fdae78" } Frame { msec: 1696 - hash: "64cd225202ed6c91b02c368a9160a656" + hash: "705cd5a0717b6a8de8871bf0bfb38129" } Frame { msec: 1712 - hash: "2b7eb8a9fe26b032be8b4b9c00995912" + hash: "befd4cd74f59291a9f9a01ad2a051029" } Frame { msec: 1728 - hash: "47e920e3884ccf2f0f49e78070af6929" + hash: "7083d70df6cc476ec342abbe6f4409b4" } Frame { msec: 1744 - hash: "fe899138116774df4c4441687e3019c5" + hash: "5153a42348885ce8de81f8086f73c163" } Frame { msec: 1760 - hash: "5d9ee853f083d514fbe51d6953d8e000" + hash: "e24ad2d67f10d2cc58dffcc469342005" } Frame { msec: 1776 - hash: "5736362b42bc2d801e02edabb983663a" + hash: "7722a4c025f1d2b560c7fec8ba8f7b6d" } Frame { msec: 1792 - hash: "c3ea530de646612f9203c5800cad884b" + hash: "3ef9de605fff5d3156bccc99a93c5da6" } Frame { msec: 1808 - hash: "48952ffa5e300778eafa768b9fe7df0c" + hash: "b221f14ea2c04078e23ac37ef817c50e" } Frame { msec: 1824 - hash: "fe04cae65aeec18697eca4f3f83a40e9" + hash: "05013a538f2796c728b4d0ddad059851" } Frame { msec: 1840 - hash: "382d454f2366c1fb4ca472faa3bfa5e9" + hash: "30aadc837ec2e7d8a2495453348804bc" } Frame { msec: 1856 - hash: "89022a8e2feb3dcb845de69aafc333ad" + hash: "098b063b0e5eb3dd22adb3353342725e" } Frame { msec: 1872 - hash: "25506557c853a0020e98cf3992956989" + hash: "e4809aefa55620a86484f66582d4d1b6" } Frame { msec: 1888 - hash: "9a64706c52c9e962816953e32950b8ba" + hash: "98d48920293b11511e8bbf820dd49acc" } Frame { msec: 1904 - hash: "3cbfded47413172ada64095e65c55e8a" + hash: "2570806925c3a61a7afaa09331c6eed8" } Frame { msec: 1920 @@ -486,1338 +486,58 @@ VisualTest { } Frame { msec: 1936 - hash: "c5e399e29b988148913e62ee208b3326" + hash: "62430dd693c4eaeb7afe9e85229406a4" } Frame { msec: 1952 - hash: "b980703c1d0018937e83a8ba8862469e" + hash: "9419c891e347fe6b25d30c05bae5d14c" } Frame { msec: 1968 - hash: "05312f9529c94d3331ace7d73c544284" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 1984 - hash: "a94de4e90a8f8eb4ec33fe902afd226c" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2000 - hash: "ee297a2d68c9e58157d9bf189d353713" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2016 - hash: "00f3c9b8b37cb104cf2a7701639bc61f" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2032 - hash: "ee297a2d68c9e58157d9bf189d353713" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2048 - hash: "a94de4e90a8f8eb4ec33fe902afd226c" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2064 - hash: "05312f9529c94d3331ace7d73c544284" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2080 - hash: "b980703c1d0018937e83a8ba8862469e" + hash: "9419c891e347fe6b25d30c05bae5d14c" } Frame { msec: 2096 - hash: "c5e399e29b988148913e62ee208b3326" + hash: "62430dd693c4eaeb7afe9e85229406a4" } Frame { msec: 2112 - hash: "3b7b83e97d17440b42e6ef4b962076d8" + hash: "a9b6aeb509076bf17c2068ce280326fb" } Frame { msec: 2128 - hash: "3cbfded47413172ada64095e65c55e8a" + hash: "2570806925c3a61a7afaa09331c6eed8" } 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: "c3ea530de646612f9203c5800cad884b" - } - 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: "705d9c8de05c859a42769f73761c6a63" - } - Frame { - msec: 2400 - hash: "d1110817827c318ceb0c112e8c2bfc1d" - } - Frame { - msec: 2416 - hash: "880640372bf584955627f6835f24be13" - } - 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: "45d891d804609ebbe1d5ac3f826d0c17" - } - 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: "1f964c6c9bebdc9945dc69a6095400f7" - } - Frame { - msec: 2816 - hash: "2a1fcfb753ca237b518da26e67c928e5" - } - Frame { - msec: 2832 - hash: "07acba64dc608439a8a54fcb080379e8" - } - 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: "d2ed2cf3a12e41bac299399cc35abe6a" - } - 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: "74af3457583fbaf73f14556aeccc8403" - } - 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: "89c159ef00d273ecfe61332e1bf7244d" - } - Frame { - msec: 3424 - hash: "e1474c2cdd8768ca1ef45bf3bc5234ca" - } - Frame { - msec: 3440 - hash: "61c16009b65a55bffb63e27727e1615e" - } - 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: "f22a47b846cfee96ebdf39bbce2e6d51" - } - 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: "ed9f2ca797894612600bc4b7fbaecb84" - } - 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: "0f347763f25350ebb62dda1536372b45" - } - 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: "74af3457583fbaf73f14556aeccc8403" - } - 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: "d2ed2cf3a12e41bac299399cc35abe6a" - } - 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: "85ef33fcb3f91e4fc20391bf94455984" - } - Frame { - msec: 5184 - hash: "d6615fc345831a3cc5b9a7196284b632" - } - Frame { - msec: 5200 - hash: "07acba64dc608439a8a54fcb080379e8" - } - Frame { - msec: 5216 - hash: "2a1fcfb753ca237b518da26e67c928e5" - } - Frame { - msec: 5232 - hash: "1f964c6c9bebdc9945dc69a6095400f7" - } - Frame { - msec: 5248 - hash: "bd045f4532d78bba0ef1b64118fd9f24" - } - Frame { - msec: 5264 - hash: "2084ccc60ddd493399c128717816d33b" - } - 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: "45d891d804609ebbe1d5ac3f826d0c17" - } - 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: "880640372bf584955627f6835f24be13" - } - Frame { - msec: 5632 - hash: "d1110817827c318ceb0c112e8c2bfc1d" - } - Frame { - msec: 5648 - hash: "705d9c8de05c859a42769f73761c6a63" - } - Frame { - msec: 5664 - hash: "3bae40654ec551d69e7c8c72f631c7a5" - } - Frame { - msec: 5680 - hash: "774740a393f3e9b8f12b81cce8da8280" - } - Frame { - msec: 5696 - hash: "64cd225202ed6c91b02c368a9160a656" - } - Frame { - msec: 5712 - hash: "2b7eb8a9fe26b032be8b4b9c00995912" - } - Frame { - msec: 5728 - hash: "47e920e3884ccf2f0f49e78070af6929" - } - Frame { - msec: 5744 - hash: "fe899138116774df4c4441687e3019c5" - } - Frame { - msec: 5760 - image: "animated-smooth.5.png" - } - Frame { - msec: 5776 - hash: "5736362b42bc2d801e02edabb983663a" - } - Frame { - msec: 5792 - hash: "c3ea530de646612f9203c5800cad884b" - } - 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: "3b7b83e97d17440b42e6ef4b962076d8" - } - Frame { - msec: 5936 - hash: "c5e399e29b988148913e62ee208b3326" - } - Frame { - msec: 5952 - hash: "b980703c1d0018937e83a8ba8862469e" - } - Frame { - msec: 5968 - hash: "05312f9529c94d3331ace7d73c544284" - } - Frame { - msec: 5984 - hash: "a94de4e90a8f8eb4ec33fe902afd226c" - } - Frame { - msec: 6000 - hash: "ee297a2d68c9e58157d9bf189d353713" - } - Frame { - msec: 6016 - hash: "00f3c9b8b37cb104cf2a7701639bc61f" - } - Frame { - msec: 6032 - hash: "ee297a2d68c9e58157d9bf189d353713" - } - 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: "c3ea530de646612f9203c5800cad884b" - } - 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: "705d9c8de05c859a42769f73761c6a63" - } - Frame { - msec: 6400 - hash: "d1110817827c318ceb0c112e8c2bfc1d" - } - Frame { - msec: 6416 - hash: "880640372bf584955627f6835f24be13" - } - 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: "45d891d804609ebbe1d5ac3f826d0c17" - } - 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: "1f964c6c9bebdc9945dc69a6095400f7" - } - Frame { - msec: 6816 - hash: "2a1fcfb753ca237b518da26e67c928e5" - } - Frame { - msec: 6832 - hash: "07acba64dc608439a8a54fcb080379e8" - } - 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: "d2ed2cf3a12e41bac299399cc35abe6a" - } - Frame { - msec: 7216 - hash: "ae12f1f37a746e16b06e6b869c89fac1" - } - Frame { - msec: 7232 - hash: "5d3e85acabe5e5ff802eb7731676274f" + hash: "98d48920293b11511e8bbf820dd49acc" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.0.png index 99228f9..3efd596 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.1.png index a2dcd00..517fc06 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.2.png deleted file mode 100644 index 8a80020..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.3.png deleted file mode 100644 index 02b57ef..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.4.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.4.png deleted file mode 100644 index df0f6cc..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.5.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.5.png deleted file mode 100644 index 0add64d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.6.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.6.png deleted file mode 100644 index 0886207..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.7.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.7.png deleted file mode 100644 index bc1a7b0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml index 630a6d2..236003a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/animated.qml @@ -22,223 +22,223 @@ VisualTest { } Frame { msec: 80 - hash: "aec13bcab337e55832b0a02fb5c6b526" + hash: "aacf9ae3c23d174a1c1cda493600e355" } Frame { msec: 96 - hash: "aec13bcab337e55832b0a02fb5c6b526" + hash: "465ec993948f7b75aeb5759976f4620d" } Frame { msec: 112 - hash: "aec13bcab337e55832b0a02fb5c6b526" + hash: "b63e4d1686057828fd8781f1c33585f5" } Frame { msec: 128 - hash: "4c60d345821f515c7811f3b69eb94607" + hash: "4d45d70f997c2c67166905c97a900d2e" } Frame { msec: 144 - hash: "aacf9ae3c23d174a1c1cda493600e355" + hash: "08b9be66e23c7b6f6f629c7470394601" } Frame { msec: 160 - hash: "228d5312c261d1a5455faf69ec2f2520" + hash: "406224b535b4425d2708df0083acdc8e" } Frame { msec: 176 - hash: "465ec993948f7b75aeb5759976f4620d" + hash: "8419f1d75b14130730bcfec4e3a9b058" } Frame { msec: 192 - hash: "755cfccc38bababc468fe6e1076804bb" + hash: "c1936628aec13e08e9581dcd2c6d5717" } Frame { msec: 208 - hash: "b63e4d1686057828fd8781f1c33585f5" + hash: "8c66a33d26eec2a1133f4362710a5fab" } Frame { msec: 224 - hash: "c5b3dede34b0d1d78135e39c41d117c6" + hash: "01947e631c3db43f7c5b4427229bc0c8" } Frame { msec: 240 - hash: "4d45d70f997c2c67166905c97a900d2e" + hash: "06d8d8a1a41893d4e27725948a75caf4" } Frame { msec: 256 - hash: "7b4d12e5a877507e7454aa1b8ed87c2d" + hash: "ac8f096e8c7cc23bfb01de69cf3e266e" } Frame { msec: 272 - hash: "08b9be66e23c7b6f6f629c7470394601" + hash: "2a7bed775824968e318c3d40fbc5b1c2" } Frame { msec: 288 - hash: "3dac1d9632378bd18c1c938a4868e3fb" + hash: "f1a7a4a67a21f5025294af4bea3f8998" } Frame { msec: 304 - hash: "406224b535b4425d2708df0083acdc8e" + hash: "18c2f321a149e38b258ac264d40c2376" } Frame { msec: 320 - hash: "482bb92d4f0ad5d7c7e379b9e1ad326e" + hash: "19d05a96f3ae7388e854bbf1075b51c1" } Frame { msec: 336 - hash: "8419f1d75b14130730bcfec4e3a9b058" + hash: "554e1d360463871e7c05cfe6f8abe1dd" } Frame { msec: 352 - hash: "a85ee8be6a47bbd1b14137803ce606ec" + hash: "60f158382f75103c78e2b9b408e0fe65" } Frame { msec: 368 - hash: "c1936628aec13e08e9581dcd2c6d5717" + hash: "6a521f952e05d91b86ad78fd6f5de4f9" } Frame { msec: 384 - hash: "75c9bf83ca3fe24612c245698c089430" + hash: "a6f17da2dd581bdc249ff62f833dc025" } Frame { msec: 400 - hash: "8c66a33d26eec2a1133f4362710a5fab" + hash: "1ea07ee309ce2c52cbc36370b75a872f" } Frame { msec: 416 - hash: "2266df495ab5265e7514a506d3bf5bc6" + hash: "c7eb7837dce71c914186326216214eeb" } Frame { msec: 432 - hash: "01947e631c3db43f7c5b4427229bc0c8" + hash: "93cf31eabb454ec536c638a506be0648" } Frame { msec: 448 - hash: "3f62f032239d412d3637198f5e3e83d6" + hash: "1ac8c393f084aa1894c26610b7f40ea6" } Frame { msec: 464 - hash: "06d8d8a1a41893d4e27725948a75caf4" + hash: "f04e84ad3579d6334077abe73101d206" } Frame { msec: 480 - hash: "6b48bfd0c7993f746d6301c2a0f61d23" + hash: "ff0928dfd16b2da9811a172c19817a97" } Frame { msec: 496 - hash: "ac8f096e8c7cc23bfb01de69cf3e266e" + hash: "7383209c80b403b93da3264eadbc047f" } Frame { msec: 512 - hash: "dd4c9e63001bc6e0e63ea4db2d85301f" + hash: "bc747167dfb3388ac63e9e68a86b9a03" } Frame { msec: 528 - hash: "2a7bed775824968e318c3d40fbc5b1c2" + hash: "ae48da4a66f93c806725ce749700aac8" } Frame { msec: 544 - hash: "3152e5f29015ece423fbdd11a2b382b8" + hash: "956429472da133324c970774f77784f5" } Frame { msec: 560 - hash: "f1a7a4a67a21f5025294af4bea3f8998" + hash: "ec0aea8dc8c269d1f0aee5817347ac55" } Frame { msec: 576 - hash: "a40014d842471784e1222eb205395f6f" + hash: "81d2fc6727dc7449d1a87b4abea9b704" } Frame { msec: 592 - hash: "18c2f321a149e38b258ac264d40c2376" + hash: "80ebac4d923f67fb8dba3d133ce657ba" } Frame { msec: 608 - hash: "4ae120bb6dc2bd5ff81cc99ae03c191e" + hash: "5359f5e45e5467c62c2d9521c8199c48" } Frame { msec: 624 - hash: "19d05a96f3ae7388e854bbf1075b51c1" + hash: "08f55088cdce741c67539f73291e53ab" } Frame { msec: 640 - hash: "e418b5f54705515dce5ce3b4cbc45d19" + hash: "97f7a2175dcf9ac2581a92d614d72f88" } Frame { msec: 656 - hash: "554e1d360463871e7c05cfe6f8abe1dd" + hash: "985868869ef2c332da379460a2f3a71b" } Frame { msec: 672 - hash: "153237f8cf37e29ad2f32f7a8a6aecdb" + hash: "e91bb914c1eb63cd4269b30a220a128a" } Frame { msec: 688 - hash: "60f158382f75103c78e2b9b408e0fe65" + hash: "84c94704c16e246df1048f958cc8cefb" } Frame { msec: 704 - hash: "4e60300cfab8634e04dcd1b556251d31" + hash: "99de44f74f8e1f79652ab46afb4bb59e" } Frame { msec: 720 - hash: "6a521f952e05d91b86ad78fd6f5de4f9" + hash: "a1bd4e995365e79389dba80f9e3b7af8" } Frame { msec: 736 - hash: "b74521d6ac531414aeeca0fb28379d11" + hash: "3b95eb8cbfc831e1ebee2e456b026ab4" } Frame { msec: 752 - hash: "a6f17da2dd581bdc249ff62f833dc025" + hash: "11673a112566a64aca3c7010b9cc9c4d" } Frame { msec: 768 - hash: "93d9f0a7c387cbe653a9a088f8f4ef2b" + hash: "5b027815ea3c1ea54e1a02c798c468db" } Frame { msec: 784 - hash: "1ea07ee309ce2c52cbc36370b75a872f" + hash: "73c5f23f51797a33f4d2898738e6356e" } Frame { msec: 800 - hash: "593a8a45c3a0cd7ce1cb6bd1913136ba" + hash: "fb17df681d99d5de05f6329bba697ea5" } Frame { msec: 816 - hash: "c7eb7837dce71c914186326216214eeb" + hash: "0b1a741975e3d9ef8f5e78f371c89441" } Frame { msec: 832 - hash: "0cba07ca38c7f0483244832a42d9ac53" + hash: "a790f0e884ab85f7802dd094e4ef550f" } Frame { msec: 848 - hash: "93cf31eabb454ec536c638a506be0648" + hash: "b12faa76c07adc21634cd8f8cb8436ae" } Frame { msec: 864 - hash: "e8a61d3858244127cb2b2812f04f5ce9" + hash: "f57727419bb51fb1e589b960ddeb20ae" } Frame { msec: 880 - hash: "1ac8c393f084aa1894c26610b7f40ea6" + hash: "8172e076b05d95248d89e815fde820ef" } Frame { msec: 896 - hash: "8861bf848da5c96b35addff736b01520" + hash: "74c1e71378b502bc1b732a55806a10f1" } Frame { msec: 912 - hash: "f04e84ad3579d6334077abe73101d206" + hash: "a67e9a0f55512fb1c55f13c6b483923b" } Frame { msec: 928 - hash: "eac4600372f0fdfadee88896ac915a48" + hash: "13ca95adab171d9fad9ee8b75d0226bc" } Frame { msec: 944 - hash: "ff0928dfd16b2da9811a172c19817a97" + hash: "7aa0cbf73f7999be7cde4ec739efbc33" } Frame { msec: 960 @@ -246,239 +246,239 @@ VisualTest { } Frame { msec: 976 - hash: "7383209c80b403b93da3264eadbc047f" + hash: "29245946cbd811fe6bf6b2b41cc13002" } Frame { msec: 992 - hash: "86360bd58bba5fdd901c105ddb2e3ade" + hash: "058c918e83bfdd665cd836566b53959b" } Frame { msec: 1008 - hash: "bc747167dfb3388ac63e9e68a86b9a03" + hash: "ed5d80c33dbf72624385b1cf43784626" } Frame { msec: 1024 - hash: "bccb4b8a494bd45bd70c2524a02a9dc3" + hash: "ed5d80c33dbf72624385b1cf43784626" } Frame { msec: 1040 - hash: "ae48da4a66f93c806725ce749700aac8" + hash: "058c918e83bfdd665cd836566b53959b" } Frame { msec: 1056 - hash: "c763f56728e17fc119539a4d45dfccc3" + hash: "29245946cbd811fe6bf6b2b41cc13002" } Frame { msec: 1072 - hash: "956429472da133324c970774f77784f5" + hash: "d1ed4916cb1ecff60277d74369ff311b" } Frame { msec: 1088 - hash: "a4ddb4956d71fd642d54757938100cf3" + hash: "7aa0cbf73f7999be7cde4ec739efbc33" } Frame { msec: 1104 - hash: "ec0aea8dc8c269d1f0aee5817347ac55" + hash: "13ca95adab171d9fad9ee8b75d0226bc" } Frame { msec: 1120 - hash: "68dae343cf324391ec6721cea14575f7" + hash: "a67e9a0f55512fb1c55f13c6b483923b" } Frame { msec: 1136 - hash: "81d2fc6727dc7449d1a87b4abea9b704" + hash: "74c1e71378b502bc1b732a55806a10f1" } Frame { msec: 1152 - hash: "c3a1f12febc979150028737722d6d045" + hash: "8172e076b05d95248d89e815fde820ef" } Frame { msec: 1168 - hash: "80ebac4d923f67fb8dba3d133ce657ba" + hash: "f57727419bb51fb1e589b960ddeb20ae" } Frame { msec: 1184 - hash: "7c22fc3e30377cc14326833bdd23ddd8" + hash: "b12faa76c07adc21634cd8f8cb8436ae" } Frame { msec: 1200 - hash: "5359f5e45e5467c62c2d9521c8199c48" + hash: "a790f0e884ab85f7802dd094e4ef550f" } Frame { msec: 1216 - hash: "30f84a7f67b13a945ba6d5935ea92da5" + hash: "0b1a741975e3d9ef8f5e78f371c89441" } Frame { msec: 1232 - hash: "08f55088cdce741c67539f73291e53ab" + hash: "fb17df681d99d5de05f6329bba697ea5" } Frame { msec: 1248 - hash: "93128906d054e44bfd126fc22bdc3102" + hash: "73c5f23f51797a33f4d2898738e6356e" } Frame { msec: 1264 - hash: "97f7a2175dcf9ac2581a92d614d72f88" + hash: "5b027815ea3c1ea54e1a02c798c468db" } Frame { msec: 1280 - hash: "587cb6e05048579088e88e0180e3ad48" + hash: "11673a112566a64aca3c7010b9cc9c4d" } Frame { msec: 1296 - hash: "985868869ef2c332da379460a2f3a71b" + hash: "3b95eb8cbfc831e1ebee2e456b026ab4" } Frame { msec: 1312 - hash: "94084ca4998fcda408f6987f52c34185" + hash: "a1bd4e995365e79389dba80f9e3b7af8" } Frame { msec: 1328 - hash: "e91bb914c1eb63cd4269b30a220a128a" + hash: "99de44f74f8e1f79652ab46afb4bb59e" } Frame { msec: 1344 - hash: "e880d93963c80e4fab5173554c9600fc" + hash: "84c94704c16e246df1048f958cc8cefb" } Frame { msec: 1360 - hash: "84c94704c16e246df1048f958cc8cefb" + hash: "e91bb914c1eb63cd4269b30a220a128a" } Frame { msec: 1376 - hash: "4f1eace868a6688e5b24ce48a1f0fd18" + hash: "985868869ef2c332da379460a2f3a71b" } Frame { msec: 1392 - hash: "99de44f74f8e1f79652ab46afb4bb59e" + hash: "97f7a2175dcf9ac2581a92d614d72f88" } Frame { msec: 1408 - hash: "44072400ca3f0237d1aebae28a94becc" + hash: "08f55088cdce741c67539f73291e53ab" } Frame { msec: 1424 - hash: "a1bd4e995365e79389dba80f9e3b7af8" + hash: "5359f5e45e5467c62c2d9521c8199c48" } Frame { msec: 1440 - hash: "95d776c84fe155617fc4ee51bdb45b7e" + hash: "80ebac4d923f67fb8dba3d133ce657ba" } Frame { msec: 1456 - hash: "3b95eb8cbfc831e1ebee2e456b026ab4" + hash: "81d2fc6727dc7449d1a87b4abea9b704" } Frame { msec: 1472 - hash: "826c7741ba0c51de407bb799e8f360b5" + hash: "ec0aea8dc8c269d1f0aee5817347ac55" } Frame { msec: 1488 - hash: "11673a112566a64aca3c7010b9cc9c4d" + hash: "956429472da133324c970774f77784f5" } Frame { msec: 1504 - hash: "e1e6c7a7f51bcccd749710dbbf9e97f6" + hash: "ae48da4a66f93c806725ce749700aac8" } Frame { msec: 1520 - hash: "5b027815ea3c1ea54e1a02c798c468db" + hash: "bc747167dfb3388ac63e9e68a86b9a03" } Frame { msec: 1536 - hash: "65c514c9e926affe1da0b4826d2754c7" + hash: "7383209c80b403b93da3264eadbc047f" } Frame { msec: 1552 - hash: "73c5f23f51797a33f4d2898738e6356e" + hash: "ff0928dfd16b2da9811a172c19817a97" } Frame { msec: 1568 - hash: "acd9a2e76b22ab0ff809fd3ec3a018ec" + hash: "f04e84ad3579d6334077abe73101d206" } Frame { msec: 1584 - hash: "fb17df681d99d5de05f6329bba697ea5" + hash: "1ac8c393f084aa1894c26610b7f40ea6" } Frame { msec: 1600 - hash: "1bf7a98884b506b38326f59f85a53f41" + hash: "93cf31eabb454ec536c638a506be0648" } Frame { msec: 1616 - hash: "0b1a741975e3d9ef8f5e78f371c89441" + hash: "c7eb7837dce71c914186326216214eeb" } Frame { msec: 1632 - hash: "a6937ee49648ed0cb409063bf1da3b87" + hash: "1ea07ee309ce2c52cbc36370b75a872f" } Frame { msec: 1648 - hash: "a790f0e884ab85f7802dd094e4ef550f" + hash: "a6f17da2dd581bdc249ff62f833dc025" } Frame { msec: 1664 - hash: "3b644aac161f0a75bfb64f5075373190" + hash: "6a521f952e05d91b86ad78fd6f5de4f9" } Frame { msec: 1680 - hash: "b12faa76c07adc21634cd8f8cb8436ae" + hash: "60f158382f75103c78e2b9b408e0fe65" } Frame { msec: 1696 - hash: "3fb20f9dbd40b4729235e13af9643afc" + hash: "554e1d360463871e7c05cfe6f8abe1dd" } Frame { msec: 1712 - hash: "f57727419bb51fb1e589b960ddeb20ae" + hash: "19d05a96f3ae7388e854bbf1075b51c1" } Frame { msec: 1728 - hash: "7b78cba247f2c209ed81e003ca25d0a5" + hash: "18c2f321a149e38b258ac264d40c2376" } Frame { msec: 1744 - hash: "8172e076b05d95248d89e815fde820ef" + hash: "f1a7a4a67a21f5025294af4bea3f8998" } Frame { msec: 1760 - hash: "a88d6fc324ef48aa52c642a1662ec679" + hash: "2a7bed775824968e318c3d40fbc5b1c2" } Frame { msec: 1776 - hash: "74c1e71378b502bc1b732a55806a10f1" + hash: "ac8f096e8c7cc23bfb01de69cf3e266e" } Frame { msec: 1792 - hash: "6eae517ad33f0609c31ef1f8f80ba899" + hash: "06d8d8a1a41893d4e27725948a75caf4" } Frame { msec: 1808 - hash: "a67e9a0f55512fb1c55f13c6b483923b" + hash: "01947e631c3db43f7c5b4427229bc0c8" } Frame { msec: 1824 - hash: "4887cd34d9926a361f3ca2e75be53ea6" + hash: "8c66a33d26eec2a1133f4362710a5fab" } Frame { msec: 1840 - hash: "13ca95adab171d9fad9ee8b75d0226bc" + hash: "c1936628aec13e08e9581dcd2c6d5717" } Frame { msec: 1856 - hash: "affab9fb48c889a2680eb81458d400f9" + hash: "8419f1d75b14130730bcfec4e3a9b058" } Frame { msec: 1872 - hash: "7aa0cbf73f7999be7cde4ec739efbc33" + hash: "406224b535b4425d2708df0083acdc8e" } Frame { msec: 1888 - hash: "36c054064c9a76f4072492e55c70fb6c" + hash: "08b9be66e23c7b6f6f629c7470394601" } Frame { msec: 1904 - hash: "d1ed4916cb1ecff60277d74369ff311b" + hash: "4d45d70f997c2c67166905c97a900d2e" } Frame { msec: 1920 @@ -486,1606 +486,70 @@ VisualTest { } Frame { msec: 1936 - hash: "29245946cbd811fe6bf6b2b41cc13002" + hash: "465ec993948f7b75aeb5759976f4620d" } Frame { msec: 1952 - hash: "8a9dd7a2d10771633e6896f3f4a722ae" + hash: "aacf9ae3c23d174a1c1cda493600e355" } Frame { msec: 1968 - hash: "058c918e83bfdd665cd836566b53959b" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 1984 - hash: "fdf3b7a0391119e2fe77be8d6a17481d" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2000 - hash: "ed5d80c33dbf72624385b1cf43784626" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2016 - hash: "911591db1519ba264847f09868e38e0e" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2032 - hash: "ed5d80c33dbf72624385b1cf43784626" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2048 - hash: "fdf3b7a0391119e2fe77be8d6a17481d" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2064 - hash: "058c918e83bfdd665cd836566b53959b" + hash: "aec13bcab337e55832b0a02fb5c6b526" } Frame { msec: 2080 - hash: "8a9dd7a2d10771633e6896f3f4a722ae" + hash: "aacf9ae3c23d174a1c1cda493600e355" } Frame { msec: 2096 - hash: "29245946cbd811fe6bf6b2b41cc13002" + hash: "465ec993948f7b75aeb5759976f4620d" } Frame { msec: 2112 - hash: "63ebaa4869728f5e2891d068e4b0091c" + hash: "b63e4d1686057828fd8781f1c33585f5" } Frame { msec: 2128 - hash: "d1ed4916cb1ecff60277d74369ff311b" + hash: "4d45d70f997c2c67166905c97a900d2e" } Frame { msec: 2144 - hash: "36c054064c9a76f4072492e55c70fb6c" + hash: "08b9be66e23c7b6f6f629c7470394601" } Frame { msec: 2160 - hash: "7aa0cbf73f7999be7cde4ec739efbc33" + hash: "406224b535b4425d2708df0083acdc8e" } Frame { msec: 2176 - hash: "affab9fb48c889a2680eb81458d400f9" + hash: "8419f1d75b14130730bcfec4e3a9b058" } 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/qmlvisual/qdeclarativeborderimage/data/borders.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.0.png index bb9dfbb..03d7082 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativeborderimage/data/borders.0.png differ -- cgit v0.12 From 29de2567ae5b32ac6871119eb573736f3e345da6 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 11:21:57 +1000 Subject: Clean up qdeclarativeflickable visual tests They are mostly still fine, it's just that the flickable parameters had changed. Expected outputs have been revised. Task-number: QTBUG-14792 --- .../data/flickable-horizontal.0.png | Bin 1427 -> 1423 bytes .../data/flickable-horizontal.1.png | Bin 1357 -> 1424 bytes .../data/flickable-horizontal.2.png | Bin 1405 -> 1397 bytes .../data/flickable-horizontal.3.png | Bin 1427 -> 1453 bytes .../data/flickable-horizontal.qml | 1144 ++- .../data/flickable-vertical.0.png | Bin 1951 -> 1971 bytes .../data/flickable-vertical.1.png | Bin 1951 -> 1941 bytes .../data/flickable-vertical.10.png | Bin 1952 -> 1966 bytes .../data/flickable-vertical.11.png | Bin 1930 -> 1966 bytes .../data/flickable-vertical.12.png | Bin 1974 -> 1966 bytes .../data/flickable-vertical.13.png | Bin 1961 -> 1972 bytes .../data/flickable-vertical.14.png | Bin 1959 -> 0 bytes .../data/flickable-vertical.15.png | Bin 1937 -> 0 bytes .../data/flickable-vertical.16.png | Bin 1618 -> 0 bytes .../data/flickable-vertical.17.png | Bin 1952 -> 0 bytes .../data/flickable-vertical.18.png | Bin 1952 -> 0 bytes .../data/flickable-vertical.19.png | Bin 1930 -> 0 bytes .../data/flickable-vertical.2.png | Bin 1976 -> 1629 bytes .../data/flickable-vertical.20.png | Bin 1930 -> 0 bytes .../data/flickable-vertical.21.png | Bin 1947 -> 0 bytes .../data/flickable-vertical.22.png | Bin 1941 -> 0 bytes .../data/flickable-vertical.23.png | Bin 1951 -> 0 bytes .../data/flickable-vertical.24.png | 0 .../data/flickable-vertical.3.png | Bin 1987 -> 1966 bytes .../data/flickable-vertical.4.png | Bin 1947 -> 1966 bytes .../data/flickable-vertical.5.png | Bin 1975 -> 1995 bytes .../data/flickable-vertical.6.png | Bin 1928 -> 2013 bytes .../data/flickable-vertical.7.png | Bin 1928 -> 1963 bytes .../data/flickable-vertical.8.png | Bin 1928 -> 1963 bytes .../data/flickable-vertical.9.png | Bin 1928 -> 2002 bytes .../data/flickable-vertical.qml | 7504 ++++++++------------ .../qdeclarativeflickable/flickable-vertical.qml | 2 +- 32 files changed, 3788 insertions(+), 4862 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.14.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.15.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.16.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.17.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.18.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.19.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.20.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.21.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.22.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.23.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.24.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.0.png index 016902b..f8b7339 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.1.png index a654936..2d29f35 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.2.png index cfd5517..507d9ca 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.3.png index 016902b..1622522 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.3.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml index 289af88..92f108c 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-horizontal.qml @@ -6,309 +6,277 @@ VisualTest { } Frame { msec: 16 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 32 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 48 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 64 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 80 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 96 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 112 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 128 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 144 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 160 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 176 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 192 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 208 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 224 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 240 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 256 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 272 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 288 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 304 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 320 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 336 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 352 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 368 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 384 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 400 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 416 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 432 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 448 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 464 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 480 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 496 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 512 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 528 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 544 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 560 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 576 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 592 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 608 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 624 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 640 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 656 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 672 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 688 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 704 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 720 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 447; y: 145 + modifiers: 0 + sendToViewport: true } Frame { msec: 736 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 752 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 768 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 784 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 800 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 816 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 832 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 848 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 864 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 880 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 896 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 912 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 928 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Frame { - msec: 944 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Mouse { - type: 2 - button: 1 + type: 5 + button: 0 buttons: 1 - x: 477; y: 171 + x: 446; y: 145 modifiers: 0 sendToViewport: true } Frame { - msec: 960 - image: "flickable-horizontal.0.png" + msec: 784 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Mouse { type: 5 button: 0 buttons: 1 - x: 473; y: 171 + x: 440; y: 146 modifiers: 0 sendToViewport: true } Frame { - msec: 976 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + msec: 800 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Mouse { type: 5 button: 0 buttons: 1 - x: 463; y: 171 + x: 425; y: 151 modifiers: 0 sendToViewport: true } - Frame { - msec: 992 - hash: "c4d91a9e7f785ccd50db55f697d75cb9" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 407; y: 157 + modifiers: 0 + sendToViewport: true } Frame { - msec: 1008 - hash: "c4d91a9e7f785ccd50db55f697d75cb9" + msec: 816 + hash: "c92e345e4ffdb30c28d9d5aa5400bd30" } Mouse { type: 5 button: 0 buttons: 1 - x: 449; y: 171 + x: 359; y: 169 modifiers: 0 sendToViewport: true } Frame { - msec: 1024 - hash: "4f054038668f56cf3fc46dee08504b24" + msec: 832 + hash: "90f94986ab44ab59618e9a5da17b8cc9" } Mouse { type: 5 button: 0 buttons: 1 - x: 425; y: 172 + x: 309; y: 181 modifiers: 0 sendToViewport: true } Frame { - msec: 1040 - hash: "e6ae6e2a8e5fb7204ae1f559b5dc4a63" + msec: 848 + hash: "0154a65f8693b98576101ac1c2fc8761" } Mouse { type: 5 button: 0 buttons: 1 - x: 393; y: 172 + x: 282; y: 187 modifiers: 0 sendToViewport: true } @@ -316,769 +284,1073 @@ VisualTest { type: 3 button: 1 buttons: 0 - x: 393; y: 172 + x: 282; y: 187 modifiers: 0 sendToViewport: true } Frame { + msec: 864 + hash: "792c1b5267f14c891dae2348a8188a92" + } + Frame { + msec: 880 + hash: "15ce9e88d4ad2e698bf167d1432c0b8a" + } + Frame { + msec: 896 + hash: "8f4109ef4c24d286d73f689565a0d056" + } + Frame { + msec: 912 + hash: "f5728190bf5c94742686f063b4a4b09b" + } + Frame { + msec: 928 + hash: "a38c7527a9a818b7bc25466b0e4939f9" + } + Frame { + msec: 944 + hash: "ed3902455fc31a4e3232308b815a4daa" + } + Frame { + msec: 960 + image: "flickable-horizontal.0.png" + } + Frame { + msec: 976 + hash: "de5647af86a322921dcc68e81979a3cc" + } + Frame { + msec: 992 + hash: "c32349580e3a9586cc1133c935607cf0" + } + Frame { + msec: 1008 + hash: "cd2068492e346eb20d50aee69e3a3559" + } + Frame { + msec: 1024 + hash: "f43a1a38894b8ffad009ba995d84b0ee" + } + Frame { + msec: 1040 + hash: "2d5c4a73df2a054801571f1ce119e31f" + } + Frame { msec: 1056 - hash: "3bfaaef12ca852421ad179d8598a306d" + hash: "b8825cc6bdca8102a655d797ea41b5b1" } Frame { msec: 1072 - hash: "e00ff5e13a9a97bc11e041f89e4782f5" + hash: "3f0be15b85220743d004f2d54b6e137c" } Frame { msec: 1088 - hash: "ae10ada837b21365936672e9a4b4b175" + hash: "4b0952d33149b44ffa0a06723a4116c7" } Frame { msec: 1104 - hash: "63566d7f1707025c9ec37e398d0e69ef" + hash: "9056bda43259e92cfe56fdf394e2ca54" } Frame { msec: 1120 - hash: "20e9d299cd867d680cf85f99e06cd200" + hash: "82ec9f09d2303e5b0b9c05b9a10a84db" } Frame { msec: 1136 - hash: "4d3a19b3c50a20ba1d93a8bcd178a424" + hash: "751a9b3054c09d900364d7c9cac8bc2b" } Frame { msec: 1152 - hash: "d373ab5240e438e8234ae05f935c1ef8" + hash: "17dfdfef20f9da7e8b6f16df974baea9" } Frame { msec: 1168 - hash: "2f9c00aa1f8a8cc5d10e6c6a0baee366" + hash: "108e6d9a5a81df32823bfd7a90a000a7" } Frame { msec: 1184 - hash: "0fd8203b0a33fd8243ecd878f04f9b42" + hash: "71dd0d55a3e837d3a8e4b4e318579ade" } Frame { msec: 1200 - hash: "24a197df4209c7076d68031e5dd4fd9e" + hash: "8013cdb2615bca89134ea040409af509" } Frame { msec: 1216 - hash: "9e4271eacdc875183e3c8e7a1eb098c2" + hash: "4b2826ad4c755690bd837994133f5fac" } Frame { msec: 1232 - hash: "cdf7aac4ff7e5df806977eb38392f5bc" + hash: "52d0da7f138bd37ac587a448d6402aca" } Frame { msec: 1248 - hash: "1ace4a1312cad6f173a04c388624a97f" + hash: "e634724c5bb294d338210845bf64d2cf" } Frame { msec: 1264 - hash: "193d6d6838ac1d5ddb941fbb340ec506" + hash: "59bc5f0d057ee431f289806377f19213" } Frame { msec: 1280 - hash: "ed82807a48f28610ba9bda0c7ab91ce4" + hash: "6ef2c5f7766c2cc77b30d636bfaa4422" } Frame { msec: 1296 - hash: "e1168bb9a88a972decb0c537d86d7758" + hash: "578d056c3db094420dbaa51bd08ced20" } Frame { msec: 1312 - hash: "828ba428b04826687c6ef19b72318924" + hash: "14c6f7a04a52caffefa07af556ccb262" } Frame { msec: 1328 - hash: "7dae52c428253cf44045ffaabaadd2f4" + hash: "7cb63d56fec144d0509ce219fc6fe459" } Frame { msec: 1344 - hash: "06e2a81e1a2421523642cfcf17ec22e4" + hash: "462dafa7f6427aecf6c28a5dcf5a10cc" } Frame { msec: 1360 - hash: "283997835a54e80c0ab8a0321bd03ce7" + hash: "45360814f985ed780a443568a91fc170" } Frame { msec: 1376 - hash: "6354f9379b7b25c8fabda4e5bc3cdf6a" + hash: "0d18ceb2436e4f7eb56a3443fab706e6" } Frame { msec: 1392 - hash: "6bc87dfd21d59efd3397e3cfb0d00d25" + hash: "1d83f367ba9f7f1d4496208271e925ed" } Frame { msec: 1408 - hash: "4f97fc9aa1f79a6b007a00459386b9ff" + hash: "fdbd00ee4c122aef779df42ea53f403a" } Frame { msec: 1424 - hash: "2b5c711ede124c9e97d3ef83a3fdcc8b" + hash: "bedd1cb304efd4851813b39a746198a4" } Frame { msec: 1440 - hash: "5a8cbd4ac3fcd920f2aea6e2cfa96467" + hash: "9aa7bed86efa9634466736f20ee0ab5b" } Frame { msec: 1456 - hash: "5b32961cb36e519f5b1d50386e796d3e" + hash: "00fc8186a7ae44e10195a7b13defa0d2" } Frame { msec: 1472 - hash: "c91f95cccd38cbd1a16ee65abffd40ab" + hash: "42d6e8e0bbed879ed63644c83e61e7bd" } Frame { msec: 1488 - hash: "25108050298d3ffc850113971bcf54da" + hash: "df074f8c210249e5ef652349479b6325" } Frame { msec: 1504 - hash: "6a236881f2a1cb487ee1945c279e020b" + hash: "4f94020437e35cf44dd3576997990ab7" } Frame { msec: 1520 - hash: "2df1824df1cf20022595f64d26adb4ad" + hash: "8ca6c3b4fa3be73ac35073356b680a35" } Frame { msec: 1536 - hash: "4ca4a0a4b4fd9f9c4846adebcdc8fd67" + hash: "c25eee1c5791383ebc59974e7754eacb" } Frame { msec: 1552 - hash: "1696ef0862ff4772f960d203c43fbddf" + hash: "f4917ada78942428cc6b9aa5e56c013d" } Frame { msec: 1568 - hash: "c5846835b8eb5d98c481ee5811344ea1" + hash: "23e1e607101fc7260a4ac841344f5fe0" } Frame { msec: 1584 - hash: "fbcb044ee53302de573321b43f068e65" + hash: "2dcc7d187d8e0493e5766efbf09ef37c" } Frame { msec: 1600 - hash: "d369e0a6c4a3e63102be29a7362ef9eb" + hash: "c1e5602753e80cf44d7b330140c6912e" } Frame { msec: 1616 - hash: "e93131b881805d4aa44949c69f486821" + hash: "febaf72d01a3763461b4b7d2ddd7a23e" } Frame { msec: 1632 - hash: "b7aeee9e5065f1d4656e451b542ecf6a" + hash: "071262b911b61576f451be25691a57cf" } Frame { msec: 1648 - hash: "05521ca19960c070d5f3dd72c5ade0e4" + hash: "44705db9289fd8753b9d63e8bc963b38" } Frame { msec: 1664 - hash: "2c68cb3291cf1f892c8b8eb28b409e4d" + hash: "0c41d7b7d36bd083abfc0b83b862cad9" } Frame { msec: 1680 - hash: "5a0908aea91df2b9e65d222829c2b0ba" + hash: "0c41d7b7d36bd083abfc0b83b862cad9" } Frame { msec: 1696 - hash: "0d4ff147517eee8b3dbcd51a708b2aa7" + hash: "071262b911b61576f451be25691a57cf" } Frame { msec: 1712 - hash: "521e1075de1de89c6e25f469d2728ab7" + hash: "a00aa90e894b48203b0446ca287ee712" } Frame { msec: 1728 - hash: "c543447f98ae608058c6c02c8c8665e6" + hash: "26c9ca53ee4b084c6595ad65bf4880df" } Frame { msec: 1744 - hash: "ac259db754b7dfb8cce8548527c72e4b" + hash: "f4917ada78942428cc6b9aa5e56c013d" } Frame { msec: 1760 - hash: "bc5b68d5ecfb583ae41001e326b7aa9b" + hash: "ffedee7bf2d8099e361b8b1706b03f88" } Frame { msec: 1776 - hash: "e08051cb1ab2d8f979a52dc86411f78f" + hash: "1778ef1629ce977015b641448b46634f" } Frame { msec: 1792 - hash: "b1746ad9563359f0d70a1aaee62e9bd8" + hash: "42d6e8e0bbed879ed63644c83e61e7bd" } Frame { msec: 1808 - hash: "5d6bc33ff2857fb8db582362bf7c19c7" + hash: "99e843ec69b79b79b0792e0a2f28cd1b" } Frame { msec: 1824 - hash: "83f2c3a7124f9be4dbe883a27ca7df8e" + hash: "8b3ebca70b50a6a93823e015ea80f0f9" } Frame { msec: 1840 - hash: "189f7cfb5ede1f8380b1a05b7e3d942e" + hash: "8eaa7f076064ce55051237b04861e408" } Frame { msec: 1856 - hash: "07b1a4e5ca156e6aa1f3e76b825807ce" + hash: "6acc0ca5e5808d911287edfa78c8ac02" } Frame { msec: 1872 - hash: "48b25f0acfe6eb3bc2cb9eb16e6595d0" + hash: "e9f05899e0b53c21f6efe834095a3ea4" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 91; y: 208 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 93; y: 209 + modifiers: 0 + sendToViewport: true } Frame { msec: 1888 - hash: "15ae05f5ed098021073c4593587949ea" + hash: "e9f05899e0b53c21f6efe834095a3ea4" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 99; y: 210 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 108; y: 210 + modifiers: 0 + sendToViewport: true } Frame { msec: 1904 - hash: "b300f2c75f4aebcf84ed37ad424ca9fa" + hash: "d2dece405f5f6ed1de2acb6615a931de" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 142; y: 214 + modifiers: 0 + sendToViewport: true } Frame { msec: 1920 image: "flickable-horizontal.1.png" } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 198; y: 216 + modifiers: 0 + sendToViewport: true + } Frame { msec: 1936 - hash: "7d8ea492fb1c664502e95e085896c569" + hash: "45ea16bca2c9ae07cb7dead1e24f6ed0" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 229; y: 218 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 266; y: 220 + modifiers: 0 + sendToViewport: true } Frame { msec: 1952 - hash: "7513b077e073d78b387309b56e1fd44c" + hash: "c10c8b0c94f899414d8b3ef0b7c97646" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 322; y: 223 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 322; y: 223 + modifiers: 0 + sendToViewport: true } Frame { msec: 1968 - hash: "ed1ac5cf6d4b081983a8e16258f431bf" + hash: "807aff4e6c96a9d0de7fa55e233446b1" } Frame { msec: 1984 - hash: "fbb31f23ba6e5d02011363abfb4b3f18" + hash: "dbd02848cefacbb26f4bcb7d8f073d6c" } Frame { msec: 2000 - hash: "6f01df424b38036b9921b4ee1491a1c1" + hash: "9a60608d8ea1b39fa2d3851873f2f08e" } Frame { msec: 2016 - hash: "11f706dfacbec5c0be0c2f3c5442f717" + hash: "e7b3e3a40281f63889808211d6746374" } Frame { msec: 2032 - hash: "0a70348986f4987f43db3e55af63fca5" + hash: "188c225c46ec00105df230bfeea09974" } Frame { msec: 2048 - hash: "6f8b7aaad846f83c6349836d7af34662" + hash: "e2e977b42e91d8c5dee57fd8245692eb" } Frame { msec: 2064 - hash: "44723b22aad6d2d814e074ff9324f3c4" + hash: "ca2f12fb173c405f95e608858ab982ad" } Frame { msec: 2080 - hash: "44723b22aad6d2d814e074ff9324f3c4" + hash: "fa86ee5f25fa425cf2569c8ef570b9d8" } Frame { msec: 2096 - hash: "44723b22aad6d2d814e074ff9324f3c4" + hash: "9b74656866fb8c7394bbbecec6414aca" } Frame { msec: 2112 - hash: "1c12d2c68223324f040b7a693cef2074" + hash: "87147326d1baab174c0f9a5ccdc2cb84" } Frame { msec: 2128 - hash: "0a70348986f4987f43db3e55af63fca5" + hash: "c0d00f98c71bf3f8e5954b45fbab95a8" } Frame { msec: 2144 - hash: "bf4de7baf2730cdaf83887d50d577986" + hash: "c087d1d62e56e573b55c1d8599bba8a6" } Frame { msec: 2160 - hash: "23ddb2c0793d7161a0d8c5b2a777dceb" + hash: "dd5a94c6febdee58e8f115cb75131aaa" } Frame { msec: 2176 - hash: "7513b077e073d78b387309b56e1fd44c" + hash: "a7465d6137f865f512ce65ceb29533b4" } Frame { msec: 2192 - hash: "83fa82362057466dff6a243a95d423db" + hash: "409086f6bb661aab8b548fea56d7e6b1" } Frame { msec: 2208 - hash: "0e60b632ce511109cb01d2e5ff6945f8" + hash: "6a22911e0fb58df31271baa463ff599d" } Frame { msec: 2224 - hash: "78c25194827c4243a16807491f798cdf" + hash: "c4f6dd30d5fdfcf91a8b29cf5c622423" } Frame { msec: 2240 - hash: "4c9dc46794d4a32e654395bb9d78409e" + hash: "5a95b83f237c7243a198a43e9a587179" } Frame { msec: 2256 - hash: "e996d4f3a0b3a4a4ed29ec23a1ad5615" + hash: "d79ed290efc6dbd976d574bf0b14a6a3" } Frame { msec: 2272 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "a7bcb436e96d7c981852239462573495" } Frame { msec: 2288 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "f63cc82e351daab503e316f8b516990f" } Frame { msec: 2304 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "4ea63cd25a1424042ffc60549a78563c" } Frame { msec: 2320 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "ef0fb776012575b3b0dbf6e5f4dee571" } Frame { msec: 2336 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "e2508faec7737be2666d87ad715b5f74" } Frame { msec: 2352 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "9fe4e897c6b853f774d11817a0eb53bf" } Frame { msec: 2368 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "c122ce2e73cbfedcc99d649c21d91f9d" } Frame { msec: 2384 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "883b8b180853f1f432ae98ddfe1b6ce3" } Frame { msec: 2400 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "d0808284e431da60f61d571c257a3011" } Frame { msec: 2416 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "df90f19450bf4d9496aab987a89e3a02" } Frame { msec: 2432 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "5640c1e64556b90e7fbd4448fa9db462" } Frame { msec: 2448 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "6d9b5c2f7d0dedbbc444e69bb39fed08" } Frame { msec: 2464 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "485c4a8049068cf73bf22db5fd3618be" } Frame { msec: 2480 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "9e25da59c9e7e4cf7796902e8e2ff92a" } Frame { msec: 2496 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "bd45e8f2442d7c1a1b16a762bc29e7cf" } Frame { msec: 2512 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "ec1013d23e581dbb39b1549d2e1b3b32" } Frame { msec: 2528 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "1ea3c2fde8ee3a14406e027f2124d793" } Frame { msec: 2544 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "3c3f31a05fb2f32538872c9fa158aaab" } Frame { msec: 2560 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "05a84d9c55e634ec01edd2a63e13613b" } Frame { msec: 2576 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "0f7ccd2da58e2e73b0ab18bb681dafd5" } Frame { msec: 2592 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "e481ff78029f8bc4bf7c697db6824f6a" } Frame { msec: 2608 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "efb92b8b7a90acabeb4a8d5cae52fe3c" } Frame { msec: 2624 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "4728dd0fac4edf40cfd5ef5a422b4ed9" } Frame { msec: 2640 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "27641dcd772c979ae22d12bfbadbb67f" } Frame { msec: 2656 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "26268714105bc4832d336a38a859fc50" } Frame { msec: 2672 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "caf0d351d3b6914ca52853a30643ea48" } Frame { msec: 2688 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "319824b1143925162f04aaddcfaa65d9" } Frame { msec: 2704 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "73aa36815f34bf5e005000e7da38555e" } Frame { msec: 2720 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "73aa36815f34bf5e005000e7da38555e" } Frame { msec: 2736 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "319824b1143925162f04aaddcfaa65d9" } Frame { msec: 2752 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "caf0d351d3b6914ca52853a30643ea48" } Frame { msec: 2768 - hash: "cd6770afe63f28517a93f0961cf9c26e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 152; y: 189 - modifiers: 0 - sendToViewport: true + hash: "c87ba4dda0a5c931d0c7ae74a0fb2896" } Frame { msec: 2784 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "ab551561ad8a3937558afc080b3e6130" } Frame { msec: 2800 - hash: "cd6770afe63f28517a93f0961cf9c26e" + hash: "474d8b566b9e4ef7dc125a8df30ccbb1" } Frame { msec: 2816 - hash: "cd6770afe63f28517a93f0961cf9c26e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 190 - modifiers: 0 - sendToViewport: true + hash: "cc7dfbcfafa12d40210a4d5fa7f60862" } Frame { msec: 2832 - hash: "cd6770afe63f28517a93f0961cf9c26e" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 169; y: 191 - modifiers: 0 - sendToViewport: true + hash: "3c3f31a05fb2f32538872c9fa158aaab" } Frame { msec: 2848 - hash: "edd015434d7ead96c03a51a2b1c9e527" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 202; y: 192 - modifiers: 0 - sendToViewport: true + hash: "9705c0dd30c3f381084ec29242bebb2f" } Frame { msec: 2864 - hash: "ea0eda505daea4171e27aac358aa6a4a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 256; y: 192 - modifiers: 0 - sendToViewport: true + hash: "917579854722d6e6711811e10cbe229f" } Frame { msec: 2880 image: "flickable-horizontal.2.png" } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 331; y: 192 - modifiers: 0 - sendToViewport: true - } Frame { msec: 2896 - hash: "34f70dfe1c226e63300112aa9a4a6968" + hash: "e2166fe87d04be70a9b1d4c8d1002b49" } Frame { msec: 2912 - hash: "34f70dfe1c226e63300112aa9a4a6968" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 395; y: 194 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 395; y: 194 - modifiers: 0 - sendToViewport: true + hash: "5640c1e64556b90e7fbd4448fa9db462" } Frame { msec: 2928 - hash: "dd61e0ae58d7a344908a10bb97cfcb39" + hash: "88cef15940302e2b8b43e73234fd7b9c" } Frame { msec: 2944 - hash: "14a384c4bdd3e89808761d1e86976170" + hash: "041aecec2b0b0d59a56e1dd26b45cab1" } Frame { msec: 2960 - hash: "0e82a4920a53239f117448cd0e0b27f2" + hash: "0d519463c713f3da46ecacd155e1a0f3" } Frame { msec: 2976 - hash: "711e29bf6fbbeb7882064adb0619f4ac" + hash: "5dd0c855b97d298244fb599c9f781651" } Frame { msec: 2992 - hash: "43307cbfe1688daf300fafc8df0082b8" + hash: "bfc51621e9bc95d2d46cec632a3fae12" } Frame { msec: 3008 - hash: "46d788d926c03d85a68b66252e73ae90" + hash: "b05fb6e798ab3fed940b5ac4d88ca378" } Frame { msec: 3024 - hash: "a0042935ad2d5557c906050d4a3581c9" + hash: "6bc9cc0d3b11ea91856296b0ec934a8b" } Frame { msec: 3040 - hash: "b618a40490ca0aea310f08b452fa8c68" + hash: "f4e63f3af69dacbf2d1d719d4d03a266" } Frame { msec: 3056 - hash: "e2aaad7f160a6d77dd788c76bb8cb8a7" + hash: "31ab08997eb86fab062a3128aecbccb5" } Frame { msec: 3072 - hash: "ab5c27fa790c67a6678db0bbae1ae477" + hash: "90736b240ba1e634bd0ea86423908e16" } Frame { msec: 3088 - hash: "b43ed7af838cd6edd32393fc56cf8fb1" + hash: "90736b240ba1e634bd0ea86423908e16" } Frame { msec: 3104 - hash: "88ac50602c9f27fb5b882ad32d14ff46" + hash: "e74982557dc06aac572078840c7e889a" } Frame { msec: 3120 - hash: "259af2e080ed93e16cb633fa940c7c08" + hash: "e74982557dc06aac572078840c7e889a" } Frame { msec: 3136 - hash: "d05bec2351068d552b7bbbf47cf82fad" + hash: "ca30c14c7344d1711a35c707f8804f6e" } Frame { msec: 3152 - hash: "5354b8e07f1ed22950687187ee7a0290" + hash: "e616110d39009f0d636b816828cc0ccb" } Frame { msec: 3168 - hash: "3bfaaef12ca852421ad179d8598a306d" + hash: "e616110d39009f0d636b816828cc0ccb" } Frame { msec: 3184 - hash: "40d3a77fce7a9a9ca7ae6023fc4cfc10" + hash: "e616110d39009f0d636b816828cc0ccb" } Frame { msec: 3200 - hash: "5837c0122aa6b28518f1b7043ead99a9" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 412; y: 214 + modifiers: 0 + sendToViewport: true } Frame { msec: 3216 - hash: "9514d8530275e4642810ac441e8de353" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 3232 - hash: "3b720882f52340549d8e1b9659443461" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } Frame { msec: 3248 - hash: "4de5b95c8f4949a4f1ee9a119940e80a" + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 408; y: 214 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 407; y: 214 + modifiers: 0 + sendToViewport: true } Frame { msec: 3264 - hash: "a35097c00483e0b481222e4ad220c7a4" + hash: "10a89da9887cb4bbd812c090a8a56797" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 403; y: 214 + modifiers: 0 + sendToViewport: true } Frame { msec: 3280 - hash: "82ac348a63a4e358a877a2e45d48e2b1" + hash: "1991cbb0fb053937f922731d5716032c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 398; y: 214 + modifiers: 0 + sendToViewport: true } Frame { msec: 3296 - hash: "1322108409d1fa87d128f0c44c81ab4b" + hash: "df447575a4734bb5bd9badc6e27d98e4" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 391; y: 214 + modifiers: 0 + sendToViewport: true } Frame { msec: 3312 - hash: "f6b030effcca891ab20073f106b22d73" + hash: "0fbfe1e0d7fb54450188398aa40690cd" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 383; y: 214 + modifiers: 0 + sendToViewport: true } Frame { msec: 3328 - hash: "a7ccd998ac2ff2777d9423d704ddef48" + hash: "cb62e60296046c73d301d7186e14faed" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 369; y: 213 + modifiers: 0 + sendToViewport: true } Frame { msec: 3344 - hash: "b6d971a4f3321b7f3632e778ce733589" + hash: "909cbd1292476584554e22232cb43639" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 352; y: 211 + modifiers: 0 + sendToViewport: true } Frame { msec: 3360 - hash: "b6d971a4f3321b7f3632e778ce733589" + hash: "e63b7e502dfb2834c06a969b683b9bd3" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 331; y: 210 + modifiers: 0 + sendToViewport: true } Frame { msec: 3376 - hash: "b6d971a4f3321b7f3632e778ce733589" + hash: "4ea63cd25a1424042ffc60549a78563c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 314; y: 210 + modifiers: 0 + sendToViewport: true } Frame { msec: 3392 - hash: "82ef6700a513e39508fb6de5ef07f1e7" + hash: "77e39d2d4bfcacecdae4f014e4506d71" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 300; y: 210 + modifiers: 0 + sendToViewport: true } Frame { msec: 3408 - hash: "9e4c4d479bc0b1a61566eae12416bea6" + hash: "db576eca8bad67cb8b994f12fc448969" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 288; y: 210 + modifiers: 0 + sendToViewport: true } Frame { msec: 3424 - hash: "f6b030effcca891ab20073f106b22d73" + hash: "efeb3f616da9d78505c3c82fc34ee31c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 278; y: 210 + modifiers: 0 + sendToViewport: true } Frame { msec: 3440 - hash: "8968acd022a9ba6fcc3ea52bdd7268c4" + hash: "e4f8bb02f8ac6bc40e1801cc8f360078" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 266; y: 210 + modifiers: 0 + sendToViewport: true } Frame { msec: 3456 - hash: "de8f1a1fd680af475173d5f81e85b26c" + hash: "82118ef71809e3867717232c4d9c5518" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 252; y: 208 + modifiers: 0 + sendToViewport: true } Frame { msec: 3472 - hash: "82e8c0c7cb7c2b1e8d7a5fc019533e6b" + hash: "5363451c696f6c6eb792b23d086243d7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 238; y: 208 + modifiers: 0 + sendToViewport: true } Frame { msec: 3488 - hash: "f820d250252cd910af97e5c9be181457" + hash: "fe6afe8ae8a7c216a1cffc5515f273d5" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 227; y: 206 + modifiers: 0 + sendToViewport: true } Frame { msec: 3504 - hash: "a40558c1fbf328d3c891b473b2454020" + hash: "9b165741d86c70380c15e15cff3fabb6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 224; y: 206 + modifiers: 0 + sendToViewport: true } Frame { msec: 3520 - hash: "0ef9e64bad67670102e1e4d9ef0e96f3" + hash: "f5e176355468f4fa224d4dfcdd7525a3" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 222; y: 206 + modifiers: 0 + sendToViewport: true } Frame { msec: 3536 - hash: "1d8013765ac2d3fe09ccaa6db098a208" + hash: "8c5a14a76e052cc6503a3e78245d1da3" } Frame { msec: 3552 - hash: "1d8013765ac2d3fe09ccaa6db098a208" + hash: "8c5a14a76e052cc6503a3e78245d1da3" } Frame { msec: 3568 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "8c5a14a76e052cc6503a3e78245d1da3" } Frame { msec: 3584 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "8c5a14a76e052cc6503a3e78245d1da3" } Frame { msec: 3600 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "8c5a14a76e052cc6503a3e78245d1da3" } Frame { msec: 3616 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "8c5a14a76e052cc6503a3e78245d1da3" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 224; y: 206 + modifiers: 0 + sendToViewport: true } Frame { msec: 3632 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "f5e176355468f4fa224d4dfcdd7525a3" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 232; y: 204 + modifiers: 0 + sendToViewport: true } Frame { msec: 3648 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "acf538fce5f1b90b83474d9898b7cdd7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 246; y: 203 + modifiers: 0 + sendToViewport: true } Frame { msec: 3664 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "5a0ee016b8732fbc36064e8a35d91215" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 265; y: 203 + modifiers: 0 + sendToViewport: true } Frame { msec: 3680 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "8fd06a14c1de175813845ce8f07db6ec" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 292; y: 201 + modifiers: 0 + sendToViewport: true } Frame { msec: 3696 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "26b0ff6ffda0725e0800f7ea3af510ef" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 310; y: 201 + modifiers: 0 + sendToViewport: true } Frame { msec: 3712 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "80443f134511be0356a687c9b542b3e7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 321; y: 199 + modifiers: 0 + sendToViewport: true } Frame { msec: 3728 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "3eeb98a829d29b3dc52f3d145ac49d58" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 323; y: 199 + modifiers: 0 + sendToViewport: true } Frame { msec: 3744 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "f4d43069b16f41a30e5549aae911d4cd" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 324; y: 199 + modifiers: 0 + sendToViewport: true } Frame { msec: 3760 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "661c89fa832f0abdcf4ae0c9e8e2d18f" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 324; y: 199 + modifiers: 0 + sendToViewport: true } Frame { msec: 3776 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "661c89fa832f0abdcf4ae0c9e8e2d18f" } Frame { msec: 3792 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "1520f54b6c8606b9e8372c5c06180453" } Frame { msec: 3808 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "0fcf5e2ce47348cbb5bb485f101fe5ac" } Frame { msec: 3824 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "2eb070e69de07c89830543e0475fc110" } Frame { msec: 3840 @@ -1086,114 +1358,218 @@ VisualTest { } Frame { msec: 3856 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "90f94986ab44ab59618e9a5da17b8cc9" } Frame { msec: 3872 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "cc969b2c64839ca6d3b5069c0ed938d0" } Frame { msec: 3888 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "1f819e18d1297a1c7eeebb7b040bdef8" } Frame { msec: 3904 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "3643b99afbd8af0953cb39b2c8c04b9f" } Frame { msec: 3920 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "713fd2e2fa38ab27604cb9cae59f1777" } Frame { msec: 3936 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "e2508faec7737be2666d87ad715b5f74" } Frame { msec: 3952 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "fc33b1c7479caeff676ffd885a18d618" } Frame { msec: 3968 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "aca01143db4f870a56bb7546e84cbc5e" } Frame { msec: 3984 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "442b58c39fd3745c61a1eb5043fcbb53" } Frame { msec: 4000 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "7983d7183cc11d6819fa0a006c2d67b4" } Frame { msec: 4016 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "9fe4e897c6b853f774d11817a0eb53bf" } Frame { msec: 4032 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "43f528c81ccfa5b9921dfa3564a24c68" } Frame { msec: 4048 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "dfe04ff0b3ccf205bb38beeab58a4411" } Frame { msec: 4064 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "32ff30b50b500e9feb51e8eef205783c" } Frame { msec: 4080 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "7d83ab4c336b05bcf2cde4e7d8031f6c" } Frame { msec: 4096 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "c92e345e4ffdb30c28d9d5aa5400bd30" } Frame { msec: 4112 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "02eec604d0c00965aae4ac61b91bdc22" } Frame { msec: 4128 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "df447575a4734bb5bd9badc6e27d98e4" } Frame { msec: 4144 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "bac10d8f94a39573313b3b8b2f871c49" } Frame { msec: 4160 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 + hash: "e5944c5dc6dec8f0c28b7ec3cd58723d" } Frame { msec: 4176 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "1991cbb0fb053937f922731d5716032c" } Frame { msec: 4192 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "50d6538bcaffc343f6626635a3e5899c" } Frame { msec: 4208 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "f3613f57cdb9ed38d8e3fa636962aa99" } Frame { msec: 4224 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "10a89da9887cb4bbd812c090a8a56797" } Frame { msec: 4240 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "89ba74d46970ad2edff701475c059ec8" } Frame { msec: 4256 - hash: "0fa60818532d1e5c20cd82ce3d61e3f7" + hash: "6e8b84c70e81578a2216e9e975b35434" + } + Frame { + msec: 4272 + hash: "6e8b84c70e81578a2216e9e975b35434" + } + Frame { + msec: 4288 + hash: "883b8b180853f1f432ae98ddfe1b6ce3" + } + Frame { + msec: 4304 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4320 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4336 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4352 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4368 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4384 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4400 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4416 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4432 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4448 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4464 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4480 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4496 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4512 + hash: "e616110d39009f0d636b816828cc0ccb" + } + Frame { + msec: 4528 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4544 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4560 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4576 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4592 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4608 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4624 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4640 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4656 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4672 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4688 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" + } + Frame { + msec: 4704 + hash: "244c12e82ee0b2528a0dbb02a8b8134a" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.0.png index 18fef53..67f2de8 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.1.png index 18fef53..6ab0a15 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.10.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.10.png index b352c68..d525858 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.10.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.10.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.11.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.11.png index ce7ee68..d525858 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.11.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.11.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.12.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.12.png index d8cdacf..d525858 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.12.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.12.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.13.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.13.png index 0c2fa7b..167703b 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.13.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.13.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.14.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.14.png deleted file mode 100644 index e9b3028..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.14.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.15.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.15.png deleted file mode 100644 index 2186a8b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.15.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.16.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.16.png deleted file mode 100644 index b4590af..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.16.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.17.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.17.png deleted file mode 100644 index fe29f19..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.17.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.18.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.18.png deleted file mode 100644 index fe29f19..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.18.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.19.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.19.png deleted file mode 100644 index 4f8587f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.19.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.2.png index 0a7cc03..9dd9ae8 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.20.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.20.png deleted file mode 100644 index 4f8587f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.20.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.21.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.21.png deleted file mode 100644 index c0b0bdf..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.21.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.22.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.22.png deleted file mode 100644 index 4168c3b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.22.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.23.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.23.png deleted file mode 100644 index 18fef53..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.23.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.24.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.24.png deleted file mode 100644 index e69de29..0000000 diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.3.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.3.png index fc6669d..d525858 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.3.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.4.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.4.png index c0b0bdf..d525858 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.4.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.5.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.5.png index 2ffa96e..c066392 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.5.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.6.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.6.png index f550b89..e7accc7 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.6.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.7.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.7.png index f550b89..f282709 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.7.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.7.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.8.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.8.png index f550b89..f282709 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.8.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.8.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.9.png b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.9.png index f550b89..593cf12 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.9.png and b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.9.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml index a5ca451..86fd3ca 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/data/flickable-vertical.qml @@ -6,239 +6,343 @@ VisualTest { } Frame { msec: 16 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 32 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 48 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 64 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 80 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 96 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 112 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 128 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 144 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 160 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 176 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 192 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 208 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 224 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 240 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 256 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 272 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 288 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 304 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 320 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 336 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 352 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 368 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 384 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 400 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 416 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 432 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 448 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 464 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 480 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 496 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 512 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 528 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 544 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 560 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 576 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 592 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 608 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 624 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 640 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 656 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 143; y: 471 + modifiers: 0 + sendToViewport: true } Frame { msec: 672 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Frame { msec: 688 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "c246bde0eb2b3e1797dfb770a9db78bb" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 143; y: 470 + modifiers: 0 + sendToViewport: true } Frame { msec: 704 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "c246bde0eb2b3e1797dfb770a9db78bb" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 144; y: 469 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 144; y: 467 + modifiers: 0 + sendToViewport: true } Frame { msec: 720 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "c246bde0eb2b3e1797dfb770a9db78bb" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 144; y: 463 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 146; y: 453 + modifiers: 0 + sendToViewport: true } Frame { msec: 736 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 148; y: 433 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 148; y: 410 + modifiers: 0 + sendToViewport: true } Frame { msec: 752 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "26a71f2ecae39fb2f61ab13ad4fe2796" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 148; y: 365 + modifiers: 0 + sendToViewport: true } Frame { msec: 768 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "5aedca385a68ed5f6281c48a57bb94e5" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 148; y: 340 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 146; y: 319 + modifiers: 0 + sendToViewport: true } Frame { msec: 784 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "4ee9f528fecf850db3be24a26241c2c5" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 144; y: 300 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 144; y: 300 + modifiers: 0 + sendToViewport: true } Frame { msec: 800 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "bc83cb2708fba7bae035bc5da984fc71" } Frame { msec: 816 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "1d0ca08757375ac51024b83c0d224474" } Frame { msec: 832 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "ee09f63ce3b3ead641ba4a4853772d41" } Frame { msec: 848 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "5e944bc5723d75fa859f7cb8d2b106e1" } Frame { msec: 864 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "55ab5752ac0f4c93f5db6c92c519e5fb" } Frame { msec: 880 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "026bd0f5e380d54b8688172e44ff9f08" } Frame { msec: 896 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "5812a751d877896801a4bc6d2dd3ecc8" } Frame { msec: 912 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "2e6fd08a00480c4a018311d7ef3d0f50" } Frame { msec: 928 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "981ea7420d7ab189bb17fbfdde889471" } Frame { msec: 944 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b3b737cb536205f6d0faef4f8b1f2e77" } Frame { msec: 960 @@ -246,239 +350,311 @@ VisualTest { } Frame { msec: 976 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "4dafcfd5f5c5de1e83b9b7514ba5bde0" } Frame { msec: 992 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "97104a677cb208783522af82f4690003" } Frame { msec: 1008 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "4b1f38c9fdd8f79f2c43273913438ddc" } Frame { msec: 1024 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "7f76a7579174d7f8ea0e0819f70aebf6" } Frame { msec: 1040 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "97dd3be905cb37a7f178f27018ffe0f8" } Frame { msec: 1056 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "19fa6136cba216000b3ce56f0b7c02e6" } Frame { msec: 1072 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "e311e2cb0c6c6a844f092dcbf2b89a70" } Frame { msec: 1088 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "a954794d643718ca538ce1347ee93899" } Frame { msec: 1104 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "1b97f96d6615d2455ab49262347d3ae7" } Frame { msec: 1120 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "4ce55b03ac0ab7d6301b8185e139667d" } Frame { msec: 1136 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "c0c37b06ccca61524ee3530a3e9707c6" } Frame { msec: 1152 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "9cddaaaa52819cbb2dd740c31ebed5e2" } Frame { msec: 1168 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "5c82f9c2c59d3b844c7eb1bef77c2722" } Frame { msec: 1184 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "27b8e460849e8a06ad35e147f725d6df" } Frame { msec: 1200 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "381c0e45f68daf697f80fb0cb87f028e" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 121; y: 138 + modifiers: 0 + sendToViewport: true } Frame { msec: 1216 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "f4b378fcf727ba85bcbf90c938dc9806" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 121; y: 141 + modifiers: 0 + sendToViewport: true } Frame { msec: 1232 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "f4b378fcf727ba85bcbf90c938dc9806" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 121; y: 144 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 121; y: 155 + modifiers: 0 + sendToViewport: true } Frame { msec: 1248 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "852a7007d816d4cbec894f42549311f0" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 119; y: 185 + modifiers: 0 + sendToViewport: true } Frame { msec: 1264 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "1ecc94e9c4aec0fa099816a7276f484a" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 122; y: 206 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 124; y: 228 + modifiers: 0 + sendToViewport: true } Frame { msec: 1280 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "8d74af236c5b0023b0577235f74aad7a" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 128; y: 270 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 128; y: 270 + modifiers: 0 + sendToViewport: true } Frame { msec: 1296 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "5485c7dd5e79c3823c0c9258470f8ca7" } Frame { msec: 1312 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "a5fe758873729aeaf0a0c45fbdcc9b8f" } Frame { msec: 1328 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "7b134402e3268b66e3fc7e16624463ee" } Frame { msec: 1344 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "146f339b009287872f22d27892c0e2e5" } Frame { msec: 1360 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "1436a3a4cd29690da39ead7d08f0c927" } Frame { msec: 1376 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "1cdabb8da157c35c1bcc5d5965d60e59" } Frame { msec: 1392 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "b05878876db2fbfde1cf4069f2dae3db" } Frame { msec: 1408 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "6f8089424b163d79c7bcfe1715eca6ee" } Frame { msec: 1424 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "91ffc70bd8a4e0f917d534131de849cf" } Frame { msec: 1440 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "5c03d99e1bf12f55de8fc36742d7a962" } Frame { msec: 1456 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "bc22d18311f322713a046763262b65f8" } Frame { msec: 1472 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "59557c6874603decba5d383d3429005a" } Frame { msec: 1488 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "e2df3b279fffcd89c90afbfdbf14b5b3" } Frame { msec: 1504 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "a0aab7c147a30bb1765dec0f461b0ac1" } Frame { msec: 1520 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "f58d85bd7b3b772032bdb4e2ee8867d8" } Frame { msec: 1536 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "05e6f6753a40075653b8b757ea626b2f" } Frame { msec: 1552 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "6bfe88cb1d1a2264cc3fbf5143640507" } Frame { msec: 1568 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "d54065930af312621115cc08d73fa541" } Frame { msec: 1584 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "c3666377c19e3b4034a90a36651020de" } Frame { msec: 1600 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "92610ffcd541d943841bfea8bfcc2815" } Frame { msec: 1616 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "87d1472f48148a1cc8ae16700227ed1e" } Frame { msec: 1632 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "4bb790042573e5de09938f1beb3d8e73" } Frame { msec: 1648 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "f0a748b20f8b0d7a9a5ef0c26e5d29d1" } Frame { msec: 1664 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "66b7697170705d246dbb9c33e2edd85a" } Frame { msec: 1680 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "22bc677976f53937c80f908d17a6b994" } Frame { msec: 1696 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "8d35befcc7c03d9c7ff04d3aca966057" } Frame { msec: 1712 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "c27b4404612c57b2f360bc958acf8487" } Frame { msec: 1728 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "79aaa8cd6081e771ceab5f6d638df7ad" } Frame { msec: 1744 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "8959c740dfc85a79c056dd5057474161" } Frame { msec: 1760 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "4ba9cdf84e1d16d80bb57c670bdb85a9" } Frame { msec: 1776 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "f4f2b1847a8e3233e0e283853c942b60" } Frame { msec: 1792 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "da3f760fdd2f45d66f3ef410101afbab" } Frame { msec: 1808 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "17e5c56c3909da0da882bc0c8cf5c6d4" } Frame { msec: 1824 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "4e931b797bdbe7d397125a4f80f3d865" } Frame { msec: 1840 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "0fc21dde21d8c11e39f1f740dddf9439" } Frame { msec: 1856 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "3be4aa6c6f014b79a25bd04b1e44e6fd" } Frame { msec: 1872 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "9049c7636d06a2885a910440a5cb829d" } Frame { msec: 1888 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "9049c7636d06a2885a910440a5cb829d" } Frame { msec: 1904 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "9049c7636d06a2885a910440a5cb829d" } Frame { msec: 1920 @@ -486,1869 +662,285 @@ VisualTest { } Frame { msec: 1936 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "222242141fadd2c27435ce93aa1c460d" } Frame { msec: 1952 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "17e5c56c3909da0da882bc0c8cf5c6d4" } Frame { msec: 1968 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "2e7cc1dd1c62de751ff6734853fbadd7" } Frame { msec: 1984 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "5d234f4d69167a436ed6c95e909ae6e8" } Frame { msec: 2000 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "dee8be671b7d430a3bf044ea67841f15" } Frame { msec: 2016 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "f75438b7deb18e36c2ce397291401f4d" } Frame { msec: 2032 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "84d6efd807d94fb345ea640782dbfdcf" } Frame { msec: 2048 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "9dea3319774b70cb45eab5a71207c6bc" } Frame { msec: 2064 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "706c98bffe5118d5f49a3eb371b121f6" } Frame { msec: 2080 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "4ca3b88d0af1ea0fae4a08ee2a8b7413" } Frame { msec: 2096 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "2959676d888680c3288f9226d8ad1059" } Frame { msec: 2112 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "92a7dddbdf86f7fcd4f1d7631b7a3210" } Frame { msec: 2128 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "2de45cf2660f9ea4b54b3dfe3a2d6b8f" } Frame { msec: 2144 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "aa17f9e53e23f3de7addd126bbe2b866" } Frame { msec: 2160 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "36eb0221391fb7257c6eff73a1f491f3" } Frame { msec: 2176 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "a4b644bf91108dbc9b21a1646dab0b37" } Frame { msec: 2192 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "f16544e0ad09c14dc8980203aec29591" } Frame { msec: 2208 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "1a93e2ed871ae094aff5eeaa07385a94" } Frame { msec: 2224 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "977a2efa43d3be0340975ccbe6b0e8a9" } Frame { msec: 2240 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "0a8c81335816c747d320b3a147ee0350" } Frame { msec: 2256 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "0a8c81335816c747d320b3a147ee0350" } Frame { msec: 2272 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "0ab48b86c21be99f7caa3dda6d3a3e4d" } Frame { msec: 2288 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "46e69596c809d4c7563d5d44ca62eb02" } Frame { msec: 2304 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "46e69596c809d4c7563d5d44ca62eb02" } Frame { msec: 2320 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "46e69596c809d4c7563d5d44ca62eb02" } Frame { msec: 2336 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "46e69596c809d4c7563d5d44ca62eb02" } Frame { msec: 2352 - hash: "8443c45791c906a9fe23831844f48a1c" + hash: "573a18633748447b94bb67fd8e1726a4" } Frame { msec: 2368 - hash: "8443c45791c906a9fe23831844f48a1c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 143; y: 387 - modifiers: 0 - sendToViewport: true + hash: "573a18633748447b94bb67fd8e1726a4" } Frame { msec: 2384 - hash: "a21e65718bc7a0cdcbeb058d0cbd2977" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 386 - modifiers: 0 - sendToViewport: true + hash: "573a18633748447b94bb67fd8e1726a4" } Frame { msec: 2400 - hash: "a21e65718bc7a0cdcbeb058d0cbd2977" + hash: "573a18633748447b94bb67fd8e1726a4" } Mouse { - type: 5 - button: 0 - buttons: 1 - x: 145; y: 386 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 + type: 2 + button: 1 buttons: 1 - x: 147; y: 380 + x: 32; y: 574 modifiers: 0 sendToViewport: true } Frame { msec: 2416 - hash: "a21e65718bc7a0cdcbeb058d0cbd2977" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 151; y: 372 - modifiers: 0 - sendToViewport: true + hash: "573a18633748447b94bb67fd8e1726a4" } Frame { msec: 2432 - hash: "90d9c65705a006741671657d00ab9dba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 346 - modifiers: 0 - sendToViewport: true + hash: "573a18633748447b94bb67fd8e1726a4" } Frame { msec: 2448 - hash: "8c6301fb7409a22fda85072d48e838c8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 328 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 161; y: 304 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2464 - hash: "f5121fd6b0f20844d13cd8625a1a5047" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 159; y: 276 - modifiers: 0 - sendToViewport: true + hash: "573a18633748447b94bb67fd8e1726a4" } Mouse { type: 3 button: 1 buttons: 0 - x: 159; y: 276 + x: 32; y: 574 modifiers: 0 sendToViewport: true } Frame { + msec: 2464 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" + } + Frame { msec: 2480 - hash: "0d64b804b3b7e3ee052395f612d62bcf" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2496 - hash: "17b68429dfaf80bb3313e78bb01d6c4e" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2512 - hash: "e86ea3b103a7d9f95f7484f3579a95b5" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2528 - hash: "884d3842f4aa2a38ff73511b143789a0" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2544 - hash: "646d1dd3003ccac06b7251e8ce1beb2f" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2560 - hash: "ff66db77c56bf6830bc39211b3441e69" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2576 - hash: "8ff9c081cf823adaf6b17014fc582f12" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2592 - hash: "7b1563aed6f030003e04f19bb6e91a51" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2608 - hash: "3661b26f082e44cbc38e6033c28e99cb" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2624 - hash: "8e0f117dc1f2527d6b2b3f0c849fbda1" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2640 - hash: "5a13b0045bc132ec6c917a6d7ddf9c7a" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2656 - hash: "06f332d287ed14b29dd0a252d59565a2" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2672 - hash: "7b1512aabac1fb17ecc8e0c771e2477f" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2688 - hash: "22b62a7b42df6bbafad76d99001616c7" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2704 - hash: "0f6588fc79fa06097b2ba9bf6b1d6d14" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2720 - hash: "c7849941c7572b3581a7eb9423838d90" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2736 - hash: "8ddd8e9dc33698ecca6e19f2318e1c2e" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2752 - hash: "1606eb49c73e60445d9eca11e23a33f9" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { msec: 2768 - hash: "6a7e58d27492742bf3d853ee37144dae" + hash: "b0e76c5cfeb797888e8c032b3f2781bd" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 123; y: 264 + modifiers: 0 + sendToViewport: true } Frame { msec: 2784 - hash: "a55ba5b7ccdabd39385c6cb32e8e1b26" + hash: "96fb3652bfcf0aac1e35a2e50532816f" } Frame { msec: 2800 - hash: "afe5705e8ebc240babee4a88a4321189" + hash: "96fb3652bfcf0aac1e35a2e50532816f" } - Frame { - msec: 2816 - hash: "807d92ab4b8d2295f3abfd3508258dd5" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 123; y: 265 + modifiers: 0 + sendToViewport: true } Frame { - msec: 2832 - hash: "ae95ed79eee246c74535d9ca97878ce6" + msec: 2816 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } - Frame { - msec: 2848 - hash: "c8cf5d07a06646552d5595603532b786" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 123; y: 266 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 2864 - hash: "45971fd130662a263fcd86513aee222d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 124; y: 269 + modifiers: 0 + sendToViewport: true } Frame { - msec: 2880 - image: "flickable-vertical.2.png" - } - Frame { - msec: 2896 - hash: "8e78a9098ebd02cc828b76609c58d6b9" - } - Frame { - msec: 2912 - hash: "7f4d7a1c8e0a5494bf7f37a0a165d02b" - } - Frame { - msec: 2928 - hash: "881ed825133259e731b71cf6251ed862" - } - Frame { - msec: 2944 - hash: "8fb86c54b4e0280de18eb2d4f1c55e68" - } - Frame { - msec: 2960 - hash: "58ad7494c0bddc0de86bfd041f45a5d3" - } - Frame { - msec: 2976 - hash: "87489ba1390ee152a7de023e8ba25c72" - } - Frame { - msec: 2992 - hash: "b1f06b26110799e88837781cdf4688a7" - } - Frame { - msec: 3008 - hash: "d23e94ef53ce3b8143a716028ab729f9" - } - Frame { - msec: 3024 - hash: "1c5fdf8d85537836b698a50fcab58a4e" - } - Frame { - msec: 3040 - hash: "bd9c6ea06278efa4d491519734d0032f" - } - Frame { - msec: 3056 - hash: "b533e6543ca4efb34e187d540e4ed7e0" - } - Frame { - msec: 3072 - hash: "65f4ff7328ce366671436512da44a094" - } - Frame { - msec: 3088 - hash: "e7afcc4c29cd1868bcf1ebea1d19fca1" - } - Frame { - msec: 3104 - hash: "ddaf80f4b1d98b07fe4bf8282e13b2a8" - } - Frame { - msec: 3120 - hash: "d4888df20b11e30a7d613a32e603cea5" - } - Frame { - msec: 3136 - hash: "ac74be483173b08cb41b8d63e3e4d073" - } - Frame { - msec: 3152 - hash: "35c65757fe27f68e35c438269c00ba53" - } - Frame { - msec: 3168 - hash: "b8a28356b50362f2dabd0ab4a0d1d621" - } - Frame { - msec: 3184 - hash: "71205ebfcce9e3a018fe2c30f7f3ee92" - } - Frame { - msec: 3200 - hash: "0ef526ebcc23342ba4b8dfa8ed41e7de" - } - Frame { - msec: 3216 - hash: "9caaec9ca80b5da75e5e1231635c2f37" - } - Frame { - msec: 3232 - hash: "bb6b951e8c2252d873828e9ef1c9b625" - } - Frame { - msec: 3248 - hash: "15faa58fbb91f80a8c1256e5627e7777" - } - Frame { - msec: 3264 - hash: "bf2d0f512ade00ee44adb6624573daf9" - } - Frame { - msec: 3280 - hash: "5af713203ef673d40c69b014dcaf242f" - } - Frame { - msec: 3296 - hash: "970972470176fbd64208a3b25d4f5f65" - } - Frame { - msec: 3312 - hash: "135a4356d91e594ee2b71132ecf9a606" - } - Frame { - msec: 3328 - hash: "8a6364c0e033d517180ec287e61b3c9d" - } - Frame { - msec: 3344 - hash: "71c7d7eddd49b77e8f96f3b7a6e8470f" - } - Frame { - msec: 3360 - hash: "59667814b3e1a2d832b895235a9cdaf6" - } - Frame { - msec: 3376 - hash: "a324de5e8d115862b9908aba881df913" - } - Frame { - msec: 3392 - hash: "300902de67507207465a74bf6404c1c4" - } - Frame { - msec: 3408 - hash: "63f40e307d9f0c14bab111e833047ee1" - } - Frame { - msec: 3424 - hash: "53f54f5a4745043ef616ac21583416ef" - } - Frame { - msec: 3440 - hash: "851e6eebe48034d3185674f6908932af" - } - Frame { - msec: 3456 - hash: "06ef04a044394ab55fe2806a50db2abf" - } - Frame { - msec: 3472 - hash: "88c82d8bb518b18a174f55c647395de1" - } - Frame { - msec: 3488 - hash: "e62b84c87e1d73028305b9038915c53d" - } - Frame { - msec: 3504 - hash: "fdb38aa631cd6967585dd23e20f866a9" - } - Frame { - msec: 3520 - hash: "edabcd9bee25b1abcabced3b0b3dff1e" - } - Frame { - msec: 3536 - hash: "6f0a2dc3151c018846b13fd2e11d0fab" - } - Frame { - msec: 3552 - hash: "5101944e7867260ffdd3134436c6373a" - } - Frame { - msec: 3568 - hash: "a04f231f840571734f8dab609b2f82fd" - } - Frame { - msec: 3584 - hash: "87c22f82c659b405fd4e81640ce0b166" - } - Frame { - msec: 3600 - hash: "2273564228baea48cac343a4f30d6a59" - } - Frame { - msec: 3616 - hash: "8a4d1fc12743e6153c0f47e1fce9d55f" - } - Frame { - msec: 3632 - hash: "944cd812097868935a686211551ccd35" - } - Frame { - msec: 3648 - hash: "a2f1a14510a1cfe3c2c45fa10b0442b4" - } - Frame { - msec: 3664 - hash: "d754cc64c12ef8cc2db0ddf99381e88c" - } - Frame { - msec: 3680 - hash: "168487c8ca6f3463b3aa4433cfc99792" - } - Frame { - msec: 3696 - hash: "67a82c1516b0d8d953c7055f07a9fdc7" - } - Frame { - msec: 3712 - hash: "0df1592631b8cc1986f905a049b40bf0" - } - Frame { - msec: 3728 - hash: "8677472d35e17d7bd5fe40f7841bb01d" - } - Frame { - msec: 3744 - hash: "4472a8412e41377e0795d51706fb9180" - } - Frame { - msec: 3760 - hash: "84533717ec1419617895f2ec646fb1c0" - } - Frame { - msec: 3776 - hash: "ad50bd7708be94c6b8e63077e589ae48" - } - Frame { - msec: 3792 - hash: "a37fb5d7cec3fbff8e12157c88e08833" - } - Frame { - msec: 3808 - hash: "df1ca02b5bb76338ff24a561876f89f2" - } - Frame { - msec: 3824 - hash: "df1ca02b5bb76338ff24a561876f89f2" - } - Frame { - msec: 3840 - image: "flickable-vertical.3.png" - } - Frame { - msec: 3856 - hash: "a37fb5d7cec3fbff8e12157c88e08833" - } - Frame { - msec: 3872 - hash: "3c8a94d2e139a9e84eaa6bf522250756" - } - Frame { - msec: 3888 - hash: "23647f577ee83bc500ca1078eea2be90" - } - Frame { - msec: 3904 - hash: "c1a52221113c162e963a2a165b8d08a5" - } - Frame { - msec: 3920 - hash: "993c57d4ed9026f8615c68ef5d8c5c16" - } - Frame { - msec: 3936 - hash: "3d843eac108e047b6fe9ac21d8866fdd" - } - Frame { - msec: 3952 - hash: "5be1fa7cb99fda017cd5cdcf91a18525" - } - Frame { - msec: 3968 - hash: "c68ef5177f4568eb77c0f4135ba65e44" - } - Frame { - msec: 3984 - hash: "f047939a56a0ecee5deefcd3d2bf1710" - } - Frame { - msec: 4000 - hash: "4af748f59c6a62156a228ae635ec2d9c" - } - Frame { - msec: 4016 - hash: "b69b045557a8eada80a24eb4caa7ea4e" - } - Frame { - msec: 4032 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4048 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4064 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4080 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4096 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4112 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4128 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4144 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4160 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4176 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4192 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4208 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4224 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4240 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4256 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4272 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4288 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4304 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4320 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4336 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4352 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4368 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4384 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4400 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4416 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4432 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4448 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4464 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4480 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4496 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4512 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4528 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4544 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4560 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4576 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4592 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4608 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4624 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4640 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4656 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4672 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4688 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4704 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4720 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4736 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4752 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4768 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4784 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4800 - image: "flickable-vertical.4.png" - } - Frame { - msec: 4816 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4832 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4848 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4864 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4880 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4896 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4912 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4928 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4944 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4960 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4976 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 4992 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5008 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5024 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5040 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5056 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5072 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5088 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5104 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5120 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5136 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5152 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5168 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5184 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5200 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5216 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5232 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5248 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5264 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 5280 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 173; y: 85 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5296 - hash: "06472b42bc00fcaf7f84cd4ac613bbd2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 173; y: 86 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5312 - hash: "06472b42bc00fcaf7f84cd4ac613bbd2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 173; y: 89 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 173; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5328 - hash: "0031f6edee383e97a3a31fe4268ff778" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 179; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5344 - hash: "e594c62fe10165ae08e3dd8b33b9f584" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 159 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 183 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5360 - hash: "dd61c97aafee69eb7c54a47dceea5810" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 207 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5376 - hash: "29d06473d4aac07c89041b4413ce421f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 227 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5392 - hash: "7843b1bdb9efdbee0e6dd39ef8f1078a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 253 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 185; y: 253 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5408 - hash: "f609350d3c3041998340c9a6ded9baec" - } - Frame { - msec: 5424 - hash: "53b559ea9764ad466a0ffc1c55a596c2" - } - Frame { - msec: 5440 - hash: "8ac64c07cb29adff5d8510f956f3c35d" - } - Frame { - msec: 5456 - hash: "cb7ab2e7af067f1493197731515462fa" - } - Frame { - msec: 5472 - hash: "a0509acbb96bb3ced08a7c968836bd69" - } - Frame { - msec: 5488 - hash: "e4c5e681a275b4eff49eed39a6b544d6" - } - Frame { - msec: 5504 - hash: "4403e91762ff703eb12dee1b47f4072c" - } - Frame { - msec: 5520 - hash: "9f548a31dea71208c9f465e37bafc589" - } - Frame { - msec: 5536 - hash: "c86dd18e63508adfdbd5b3b891fd0d99" - } - Frame { - msec: 5552 - hash: "b182070ff0c1b579a9fd16d39f950079" - } - Frame { - msec: 5568 - hash: "4308c4d6346e20ed89026c0ec216ae89" - } - Frame { - msec: 5584 - hash: "2da84d83767e5ac1f7ce361bdcebe9c8" - } - Frame { - msec: 5600 - hash: "a3ce932ebf10147f79a183e44a6f6eb7" - } - Frame { - msec: 5616 - hash: "f5907789e23150c8dd0858d7c5098907" - } - Frame { - msec: 5632 - hash: "98b76cfad574957f5b7633390c6788c8" - } - Frame { - msec: 5648 - hash: "8c58d6511a7077cc386216a6227e8b52" - } - Frame { - msec: 5664 - hash: "2ca5e16bfd83f933f32367aa49db0e1d" - } - Frame { - msec: 5680 - hash: "ba387d0ab480eb9eaf6993c2ad168350" - } - Frame { - msec: 5696 - hash: "ae9f3b3245ccf921967a178712566b55" - } - Frame { - msec: 5712 - hash: "32cf742724558260447f61da03d5f321" - } - Frame { - msec: 5728 - hash: "ad21273f37c1abac0719f532dd5530ac" - } - Frame { - msec: 5744 - hash: "50e43629e0b8d0d651b9670241354cb1" - } - Frame { - msec: 5760 - image: "flickable-vertical.5.png" - } - Frame { - msec: 5776 - hash: "e4f0192406831c8e0abe1b561120b9c0" - } - Frame { - msec: 5792 - hash: "4c98e619b487d67d114ed0d7800f157e" - } - Frame { - msec: 5808 - hash: "11ed6dc9464396eb790db236f3713164" - } - Frame { - msec: 5824 - hash: "908febb1e344d6972d6df611e82792bd" - } - Frame { - msec: 5840 - hash: "03536bb4d6ff84bf75d9ec3574bb7361" - } - Frame { - msec: 5856 - hash: "f9946a44c2d4e91a947e6bda7415cf9b" - } - Frame { - msec: 5872 - hash: "0e63e4b9dd6bc7d7b684cb461c6257bf" - } - Frame { - msec: 5888 - hash: "1ffe88b771bed2aa27aafe6853b67c7a" - } - Frame { - msec: 5904 - hash: "ff1b78113a710481273ecf01cc978a46" - } - Frame { - msec: 5920 - hash: "e381553fa74436ca4b0d166bdca78cf7" - } - Frame { - msec: 5936 - hash: "d9a6f9bfc011edb7da23091fe24e2717" - } - Frame { - msec: 5952 - hash: "bd137e8b15f5c485d10b83461dedc67f" - } - Frame { - msec: 5968 - hash: "8f5b5e19845aa537790b683ef37c8626" - } - Frame { - msec: 5984 - hash: "5abbf0dccef8a3bb7b090a24d715a25f" - } - Frame { - msec: 6000 - hash: "bf924dd11e226022c9c812b5c7e8229e" - } - Frame { - msec: 6016 - hash: "c47b59ff7f3c4acfb296959f6eb14801" - } - Frame { - msec: 6032 - hash: "b5c0ac4514d44a651a4ab817646f1d88" - } - Frame { - msec: 6048 - hash: "86a9fba0e2ca761a4fb71e5edbf34cab" - } - Frame { - msec: 6064 - hash: "5bf43304399bdc979afd2580b922fd30" - } - Frame { - msec: 6080 - hash: "3696756d6250f23b1122d314df08b936" - } - Frame { - msec: 6096 - hash: "49c7b24b1655a1b5a9b4cc2187f7cc58" - } - Frame { - msec: 6112 - hash: "a387dce727804fb4ca1c3378ba130d08" - } - Frame { - msec: 6128 - hash: "505150386afee9c5d89566c90778cf58" - } - Frame { - msec: 6144 - hash: "a00ecae0150a069d306127ed54c4921f" - } - Frame { - msec: 6160 - hash: "e556bfca052e4d8922a4b85d6e94a22a" - } - Frame { - msec: 6176 - hash: "ac710b4796de4d0b7d275c5fffcefe1f" - } - Frame { - msec: 6192 - hash: "2f0475e842083c93b0fa0b8a8a33117a" - } - Frame { - msec: 6208 - hash: "6de0e820748df06e702a82f127d9f635" - } - Frame { - msec: 6224 - hash: "b3748d7a26ea8289e2faa9dd624b23a3" - } - Frame { - msec: 6240 - hash: "52be51e9a5bf6e6d0c2e64e584a4bf11" - } - Frame { - msec: 6256 - hash: "9c4a08a51556d56f2809d27a1de0aae3" - } - Frame { - msec: 6272 - hash: "4a151e94a39b68a47374cc45cb8969df" - } - Frame { - msec: 6288 - hash: "a2c2926224103d6e0a679b891451f791" - } - Frame { - msec: 6304 - hash: "c192adca5c3cf3741f6e7b33d53a722a" - } - Frame { - msec: 6320 - hash: "8fa9d85c213243e0709e3e32f03cebd9" - } - Frame { - msec: 6336 - hash: "20f516aa2c4ebc239a283176d83ade6f" - } - Frame { - msec: 6352 - hash: "ac8ace61348c5500dd6e2d1f3b4b174b" - } - Frame { - msec: 6368 - hash: "39cc6b136e17283ddc65425150cec7be" - } - Frame { - msec: 6384 - hash: "b250cb3fd5a7ab5c76ae15d5a500a894" - } - Frame { - msec: 6400 - hash: "f07e4f8b61c0ce514364e062867687a2" - } - Frame { - msec: 6416 - hash: "caed510a4edc2830f885f9a8ff98c072" - } - Frame { - msec: 6432 - hash: "2cfba2b8cd1cbc260edf390e17532afa" - } - Frame { - msec: 6448 - hash: "f1d705e01521261f22b89aeefb146c7a" - } - Frame { - msec: 6464 - hash: "9508799a0e28e60a65925b7c10fa2874" - } - Frame { - msec: 6480 - hash: "accdad5176a0cdce92ed07a7ae818a13" - } - Frame { - msec: 6496 - hash: "2748258d00cf2f0e5f94c94f97ed95ae" - } - Frame { - msec: 6512 - hash: "994897c0842947675e2e2df4021c1b5e" - } - Frame { - msec: 6528 - hash: "22936773b2fc5c555f14a8375da2a7a4" - } - Frame { - msec: 6544 - hash: "22936773b2fc5c555f14a8375da2a7a4" - } - Frame { - msec: 6560 - hash: "b58badc862e394bf5374554e019f90c0" - } - Frame { - msec: 6576 - hash: "b58badc862e394bf5374554e019f90c0" - } - Frame { - msec: 6592 - hash: "b58badc862e394bf5374554e019f90c0" - } - Frame { - msec: 6608 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6624 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6640 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6656 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6672 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6688 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6704 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6720 - image: "flickable-vertical.6.png" - } - Frame { - msec: 6736 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6752 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6768 - hash: "679369b924d719ae309a45034bdba40d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 31; y: 575 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6784 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6800 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6816 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6832 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6848 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6864 - hash: "679369b924d719ae309a45034bdba40d" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 31; y: 575 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6896 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6912 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6928 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6944 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6960 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6976 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 6992 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7008 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7024 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7040 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7056 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7072 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7088 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7104 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7120 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7136 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7152 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7168 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7184 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7200 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7216 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7232 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7248 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7264 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7280 - hash: "679369b924d719ae309a45034bdba40d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 156; y: 403 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7296 - hash: "843453070c3ac1bf26cfd84d3ab151eb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 156; y: 402 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 396 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7312 - hash: "843453070c3ac1bf26cfd84d3ab151eb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 386 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7328 - hash: "843453070c3ac1bf26cfd84d3ab151eb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 376 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 360 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7344 - hash: "843453070c3ac1bf26cfd84d3ab151eb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 158; y: 344 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 160; y: 322 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7360 - hash: "843453070c3ac1bf26cfd84d3ab151eb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 164; y: 298 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 168; y: 278 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 168; y: 278 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7376 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7392 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7408 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7424 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7440 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7456 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7472 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7488 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7504 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7520 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7536 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7552 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7568 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7584 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7600 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7616 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7632 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7648 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7664 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7680 - image: "flickable-vertical.7.png" - } - Frame { - msec: 7696 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7712 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7728 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7744 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7760 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7776 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7792 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7808 - hash: "679369b924d719ae309a45034bdba40d" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 154; y: 161 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7824 - hash: "16eef219cc7d4e7589ea59ebc349973c" - } - Frame { - msec: 7840 - hash: "16eef219cc7d4e7589ea59ebc349973c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 162 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7856 - hash: "16eef219cc7d4e7589ea59ebc349973c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 164 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7872 - hash: "16eef219cc7d4e7589ea59ebc349973c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 154; y: 177 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7888 - hash: "16eef219cc7d4e7589ea59ebc349973c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 150; y: 189 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 146; y: 207 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7904 - hash: "16eef219cc7d4e7589ea59ebc349973c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 144; y: 229 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 140; y: 255 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7920 - hash: "16eef219cc7d4e7589ea59ebc349973c" + msec: 2832 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } Mouse { type: 5 button: 0 buttons: 1 - x: 134; y: 281 + x: 124; y: 275 modifiers: 0 sendToViewport: true } @@ -2356,31 +948,19 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 132; y: 313 + x: 125; y: 284 modifiers: 0 sendToViewport: true } Frame { - msec: 7936 - hash: "16eef219cc7d4e7589ea59ebc349973c" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 128; y: 343 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7952 - hash: "16eef219cc7d4e7589ea59ebc349973c" + msec: 2848 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } Mouse { type: 5 button: 0 buttons: 1 - x: 126; y: 373 + x: 125; y: 293 modifiers: 0 sendToViewport: true } @@ -2388,475 +968,315 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 126; y: 397 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 126; y: 397 + x: 127; y: 304 modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7968 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 7984 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8000 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8016 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8032 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8048 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8064 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8080 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8096 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8112 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8128 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8144 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8160 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8176 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8192 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8208 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8224 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8240 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8256 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8272 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8288 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8304 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8320 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8336 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8352 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8368 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8384 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8400 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8416 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8432 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8448 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8464 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8480 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8496 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8512 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8528 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8544 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8560 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8576 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8592 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8608 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8624 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8640 - image: "flickable-vertical.8.png" - } - Frame { - msec: 8656 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8672 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8688 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8704 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8720 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8736 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8752 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8768 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8784 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8800 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8816 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8832 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8848 - hash: "679369b924d719ae309a45034bdba40d" - } - Frame { - msec: 8864 - hash: "679369b924d719ae309a45034bdba40d" + sendToViewport: true } Frame { - msec: 8880 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2864 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } - Frame { - msec: 8896 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 129; y: 320 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 8912 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 131; y: 337 + modifiers: 0 + sendToViewport: true } Frame { - msec: 8928 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2880 + image: "flickable-vertical.2.png" } - Frame { - msec: 8944 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 136; y: 354 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 8960 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 142; y: 375 + modifiers: 0 + sendToViewport: true } Frame { - msec: 8976 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2896 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } - Frame { - msec: 8992 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 144; y: 392 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 9008 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 149; y: 411 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9024 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2912 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } - Frame { - msec: 9040 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 156; y: 451 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9056 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2928 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } - Frame { - msec: 9072 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 159; y: 466 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 9088 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 159; y: 479 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9104 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2944 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } Mouse { - type: 2 - button: 1 + type: 5 + button: 0 buttons: 1 - x: 44; y: 574 + x: 161; y: 488 modifiers: 0 sendToViewport: true } - Frame { - msec: 9120 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 161; y: 493 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9136 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2960 + hash: "96fb3652bfcf0aac1e35a2e50532816f" } - Frame { - msec: 9152 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 161; y: 494 + modifiers: 0 + sendToViewport: true } Mouse { type: 3 button: 1 buttons: 0 - x: 44; y: 574 + x: 161; y: 494 modifiers: 0 sendToViewport: true } Frame { - msec: 9168 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2976 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9184 - hash: "679369b924d719ae309a45034bdba40d" + msec: 2992 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9200 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3008 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9216 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3024 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9232 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3040 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9248 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3056 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9264 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3072 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9280 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3088 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9296 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3104 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9312 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3120 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9328 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3136 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9344 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3152 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9360 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3168 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9376 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3184 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 9392 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 162; y: 474 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9408 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3200 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 9424 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 162; y: 472 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 9440 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 164; y: 468 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9456 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3216 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 9472 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 165; y: 464 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 9488 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 460 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9504 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3232 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 9520 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 167; y: 450 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 9536 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 170; y: 438 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9552 - hash: "679369b924d719ae309a45034bdba40d" + msec: 3248 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 9568 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 172; y: 426 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 9584 - hash: "679369b924d719ae309a45034bdba40d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 174; y: 409 + modifiers: 0 + sendToViewport: true } Frame { - msec: 9600 - image: "flickable-vertical.9.png" + msec: 3264 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Mouse { - type: 2 - button: 1 + type: 5 + button: 0 buttons: 1 - x: 152; y: 444 + x: 174; y: 397 modifiers: 0 sendToViewport: true } - Frame { - msec: 9616 - hash: "843453070c3ac1bf26cfd84d3ab151eb" - } Mouse { type: 5 button: 0 buttons: 1 - x: 152; y: 442 + x: 176; y: 383 modifiers: 0 sendToViewport: true } Frame { - msec: 9632 - hash: "843453070c3ac1bf26cfd84d3ab151eb" + msec: 3280 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Mouse { type: 5 button: 0 buttons: 1 - x: 152; y: 440 + x: 176; y: 367 modifiers: 0 sendToViewport: true } @@ -2864,31 +1284,39 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 152; y: 438 + x: 176; y: 350 modifiers: 0 sendToViewport: true } Frame { - msec: 9648 - hash: "843453070c3ac1bf26cfd84d3ab151eb" + msec: 3296 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 174; y: 335 + modifiers: 0 + sendToViewport: true } Mouse { type: 5 button: 0 buttons: 1 - x: 154; y: 429 + x: 172; y: 316 modifiers: 0 sendToViewport: true } Frame { - msec: 9664 - hash: "3b0e0ed925b1c197cd94afd3d1a6d572" + msec: 3312 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Mouse { type: 5 button: 0 buttons: 1 - x: 156; y: 421 + x: 170; y: 296 modifiers: 0 sendToViewport: true } @@ -2896,31 +1324,47 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 158; y: 413 + x: 168; y: 279 modifiers: 0 sendToViewport: true } Frame { - msec: 9680 - hash: "d7b3838ee1219816b76224c29c7ba2e1" + msec: 3328 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 262 + modifiers: 0 + sendToViewport: true } Mouse { type: 5 button: 0 buttons: 1 - x: 160; y: 403 + x: 166; y: 244 modifiers: 0 sendToViewport: true } Frame { - msec: 9696 - hash: "9835b420f0c40a03f8f9fafe39e209f1" + msec: 3344 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 164; y: 231 + modifiers: 0 + sendToViewport: true } Mouse { type: 5 button: 0 buttons: 1 - x: 162; y: 393 + x: 164; y: 222 modifiers: 0 sendToViewport: true } @@ -2928,599 +1372,543 @@ VisualTest { type: 3 button: 1 buttons: 0 - x: 162; y: 393 + x: 164; y: 222 modifiers: 0 sendToViewport: true } Frame { - msec: 9712 - hash: "46fb2005a813fc2c278f1bfe83801c0e" - } - Frame { - msec: 9728 - hash: "81dd9308e475548db21474c37cb9a5b0" - } - Frame { - msec: 9744 - hash: "10043d74eef240abd2360d45845dd51e" - } - Frame { - msec: 9760 - hash: "0f83b8f23ba42b22c10a2b68227db64e" - } - Frame { - msec: 9776 - hash: "7a296e3702c9fef25cb53ac04053853b" - } - Frame { - msec: 9792 - hash: "ae439daa32f76a368ab314c86c55a378" - } - Frame { - msec: 9808 - hash: "42ac3503dfa462bf0b5d8c15f6f3b143" - } - Frame { - msec: 9824 - hash: "b8bb92eb2de7ca0f5924b09f380f47db" - } - Frame { - msec: 9840 - hash: "994e314d2d38005b6006e81468f10efa" - } - Frame { - msec: 9856 - hash: "be6a32f3c82aeccebc7778ff5646637f" - } - Frame { - msec: 9872 - hash: "2fb196f53d5e785e04a14d98d9dab8a1" - } - Frame { - msec: 9888 - hash: "0926f8209f4f35f6e6fa92935d7408e4" - } - Frame { - msec: 9904 - hash: "780450301d37ea2b94eb9386e7e5294c" - } - Frame { - msec: 9920 - hash: "cd4e9629c767813c9a2a2fa30dc5114b" - } - Frame { - msec: 9936 - hash: "409630d7b9c3c4231bccf74f7453f0af" - } - Frame { - msec: 9952 - hash: "4c98e619b487d67d114ed0d7800f157e" - } - Frame { - msec: 9968 - hash: "0a8157dc45764ab8e0e0b89e5c73a76b" + msec: 3360 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 9984 - hash: "ecfc611b58e000df9f608c8889a2a84f" + msec: 3376 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10000 - hash: "5c6bc246446c75d57bcd40e86041892b" + msec: 3392 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10016 - hash: "fe1a3e688da126861b29a94b676b68f7" + msec: 3408 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10032 - hash: "f5feef892bf013916bacb63ff6460cb7" + msec: 3424 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10048 - hash: "665018efd991cab3acb4b80005fc2bd3" + msec: 3440 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10064 - hash: "bc7614e4a0e0724a9cb0981f09f8a7f6" + msec: 3456 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10080 - hash: "463a6da452a5a6267240992ad5284e89" + msec: 3472 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10096 - hash: "eca3f146e0143856f58b4f7aee42e6f8" + msec: 3488 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10112 - hash: "dec9b9845509c4d28d7faae043b292d1" + msec: 3504 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10128 - hash: "49452842cb2429cd465e40478638e0e3" + msec: 3520 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10144 - hash: "a7029d0090d3620ee21b9e3d55eefe78" + msec: 3536 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10160 - hash: "1041b18d422acba0b9a45ca89856e493" + msec: 3552 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10176 - hash: "d53038b688b920715b196dd4cc2b2587" + msec: 3568 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10192 - hash: "da59ffebb491ab5fa98429117c3bb8ac" + msec: 3584 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10208 - hash: "602269f78eaf0df36c66de72e005989a" + msec: 3600 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10224 - hash: "a311b6b35feb4096b0d01753a6695210" + msec: 3616 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10240 - hash: "cd303e8850c6aac58fcf2a98db418f1b" + msec: 3632 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10256 - hash: "6e9132dd840a136cc688676bce7640de" + msec: 3648 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10272 - hash: "a3818492bb4ebd91ce86675d34731c58" + msec: 3664 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10288 - hash: "b85a127895713234028641787312b717" + msec: 3680 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10304 - hash: "a030dc1543e84d8a0ec9f77fd6325060" + msec: 3696 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10320 - hash: "669cd28abe17d419e9cabe4d796a38c3" + msec: 3712 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10336 - hash: "bfdd15cf058050203561b5f935106263" + msec: 3728 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10352 - hash: "a39abc94fee93175a6a37b402750e4f7" + msec: 3744 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10368 - hash: "0c65e19e12d95ec8ee253219b0c3e472" + msec: 3760 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10384 - hash: "15debc234e70765a4510bfbda886a2c9" + msec: 3776 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10400 - hash: "9566a87437cb6e9025f9a3881a620823" + msec: 3792 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10416 - hash: "b66d89244cba537a21901dcb11387bf7" + msec: 3808 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10432 - hash: "03347ce314393bd84873026cd01c562f" + msec: 3824 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10448 - hash: "458fab2449dba089ae6f1e78a230564b" + msec: 3840 + image: "flickable-vertical.3.png" } Frame { - msec: 10464 - hash: "7115f27574bfc68ff58a2e4fb65107dd" + msec: 3856 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10480 - hash: "66260c030dddda4b086bc98982a11934" + msec: 3872 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10496 - hash: "d5790ee5eb8ecf249cb1dcf58aefa4ee" + msec: 3888 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10512 - hash: "6bec07ba1e2ac637aab7a9038cbacc93" + msec: 3904 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10528 - hash: "a72f36cc18c8620a2bd85bac49f6771a" + msec: 3920 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10544 - hash: "65b178ae559ab0ba9c568718f287ff68" + msec: 3936 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10560 - image: "flickable-vertical.10.png" + msec: 3952 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10576 - hash: "b35a8e33f876921d477809b5adb7a201" + msec: 3968 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10592 - hash: "057b69ef8137f38c596432da547f1ead" + msec: 3984 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10608 - hash: "62f76f46857106010c2e862ed19baeea" + msec: 4000 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10624 - hash: "fbfc73e1b20b79d71953c298ca095047" + msec: 4016 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10640 - hash: "aea78988f875083660dd46d6afc71683" + msec: 4032 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10656 - hash: "60d8decd7ded420433256a94f1bf954f" + msec: 4048 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10672 - hash: "221f72cdf18e0b33e7f6a65356fcc61b" + msec: 4064 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10688 - hash: "221f72cdf18e0b33e7f6a65356fcc61b" + msec: 4080 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10704 - hash: "c2eac9c0d84c6b2f133d8751ac5f265f" + msec: 4096 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10720 - hash: "c2eac9c0d84c6b2f133d8751ac5f265f" + msec: 4112 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10736 - hash: "c2eac9c0d84c6b2f133d8751ac5f265f" + msec: 4128 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10752 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4144 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10768 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4160 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10784 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4176 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10800 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4192 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10816 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4208 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10832 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4224 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10848 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4240 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10864 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4256 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10880 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4272 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 2 button: 1 buttons: 1 - x: 98; y: 573 + x: 38; y: 583 modifiers: 0 sendToViewport: true } Frame { - msec: 10896 - hash: "28a06534a2e35250c67112dfb6c05095" - } - Frame { - msec: 10912 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4288 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10928 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4304 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10944 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4320 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10960 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4336 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 3 button: 1 buttons: 0 - x: 98; y: 573 + x: 38; y: 583 modifiers: 0 sendToViewport: true } Frame { - msec: 10976 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4352 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 10992 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4368 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11008 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4384 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11024 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4400 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11040 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4416 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11056 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4432 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11072 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4448 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11088 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4464 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11104 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4480 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11120 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4496 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11136 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4512 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11152 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4528 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11168 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4544 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11184 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4560 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11200 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4576 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11216 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4592 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11232 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4608 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11248 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4624 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11264 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4640 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11280 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4656 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11296 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4672 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11312 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4688 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11328 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4704 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11344 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4720 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11360 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4736 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11376 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4752 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11392 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4768 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11408 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4784 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 110; y: 578 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4800 + image: "flickable-vertical.4.png" + } + Frame { + msec: 4816 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" + } + Frame { + msec: 4832 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 110; y: 578 + modifiers: 0 + sendToViewport: true } Frame { - msec: 11424 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4848 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11440 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4864 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11456 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4880 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11472 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4896 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11488 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4912 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11504 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4928 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11520 - image: "flickable-vertical.11.png" + msec: 4944 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11536 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4960 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11552 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4976 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11568 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 4992 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11584 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5008 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11600 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5024 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11616 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5040 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11632 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5056 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11648 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5072 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11664 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5088 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11680 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5104 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11696 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5120 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11712 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5136 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 11728 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5152 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 2 button: 1 buttons: 1 - x: 170; y: 335 + x: 123; y: 218 modifiers: 0 sendToViewport: true } Frame { - msec: 11744 - hash: "28a06534a2e35250c67112dfb6c05095" - } - Frame { - msec: 11760 - hash: "28a06534a2e35250c67112dfb6c05095" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 170; y: 336 - modifiers: 0 - sendToViewport: true + msec: 5168 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 5 button: 0 buttons: 1 - x: 170; y: 338 + x: 123; y: 219 modifiers: 0 sendToViewport: true } Frame { - msec: 11776 - hash: "28a06534a2e35250c67112dfb6c05095" + msec: 5184 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 5 button: 0 buttons: 1 - x: 170; y: 346 + x: 124; y: 223 modifiers: 0 sendToViewport: true } - Frame { - msec: 11792 - hash: "12040d4dd56848fc93d6390005045188" - } Mouse { type: 5 button: 0 buttons: 1 - x: 170; y: 359 + x: 124; y: 230 modifiers: 0 sendToViewport: true } Frame { - msec: 11808 - hash: "caa70db5f31eb607c2de39734a42796c" + msec: 5200 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 5 button: 0 buttons: 1 - x: 168; y: 367 + x: 126; y: 241 modifiers: 0 sendToViewport: true } @@ -3528,375 +1916,219 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 166; y: 379 + x: 126; y: 257 modifiers: 0 sendToViewport: true } Frame { - msec: 11824 - hash: "ca45ab832b5a8b041ba8bea1185a2b38" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 166; y: 393 - modifiers: 0 - sendToViewport: true + msec: 5216 + hash: "43865bf07d3b0818bd0fd3388451f055" } Mouse { type: 5 button: 0 buttons: 1 - x: 164; y: 407 + x: 130; y: 300 modifiers: 0 sendToViewport: true } Frame { - msec: 11840 - hash: "188042b1a045dc96a65a7fc0e90568c3" + msec: 5232 + hash: "d7e49dfc8f9faef7d405451ae52691e0" } Mouse { type: 5 button: 0 buttons: 1 - x: 164; y: 419 + x: 132; y: 325 modifiers: 0 sendToViewport: true } - Frame { - msec: 11856 - hash: "714a3cf591beeeddbdc2df94f5cedef1" - } Mouse { type: 5 button: 0 buttons: 1 - x: 164; y: 443 + x: 134; y: 349 modifiers: 0 sendToViewport: true } Frame { - msec: 11872 - hash: "e9978c24eef649d01cb2245f783cb562" + msec: 5248 + hash: "427d51731dac5e356c5ab82d272c0d5a" } Mouse { type: 5 button: 0 buttons: 1 - x: 164; y: 461 + x: 136; y: 372 modifiers: 0 sendToViewport: true } - Frame { - msec: 11888 - hash: "bc8f32062afdfe33da7c99ee867bc2a3" - } Mouse { type: 5 button: 0 buttons: 1 - x: 166; y: 467 + x: 138; y: 395 modifiers: 0 sendToViewport: true } Frame { - msec: 11904 - hash: "d788c09f4acba8197b2d8fef2e8ece51" + msec: 5264 + hash: "9370cc84e32afc59c81c4d2dbf5fa690" } Mouse { type: 5 button: 0 buttons: 1 - x: 168; y: 470 + x: 142; y: 433 modifiers: 0 sendToViewport: true } Frame { - msec: 11920 - hash: "b0a383eb416727c22451a30a997f48f1" + msec: 5280 + hash: "984bd78f9f503e8a3ffac5bbe69fe3a9" } Mouse { type: 5 button: 0 buttons: 1 - x: 169; y: 472 + x: 144; y: 470 modifiers: 0 sendToViewport: true } - Frame { - msec: 11936 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 11952 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 11968 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 11984 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12000 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12016 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12032 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12048 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12064 - hash: "6b81b365eb057ffa32d89e564bc92949" - } Mouse { type: 3 button: 1 buttons: 0 - x: 169; y: 472 + x: 144; y: 470 modifiers: 0 sendToViewport: true } Frame { - msec: 12080 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12096 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12112 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12128 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Frame { - msec: 12144 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5296 + hash: "022106d1ecd8195923b6d79fb95d1135" } Frame { - msec: 12160 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5312 + hash: "5b6bd34ae7e59923bb4b4c2e4e7a0bf3" } Frame { - msec: 12176 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5328 + hash: "2f8a121667195d85cd05417a350dd35b" } Frame { - msec: 12192 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5344 + hash: "d0f7fcb01dc6abc0ae29ca1ee45edf24" } Frame { - msec: 12208 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5360 + hash: "9f3e5d23ea33bff4f05900d6faf7dbae" } Frame { - msec: 12224 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5376 + hash: "535f40614a02fa3f627748a5c24b3a39" } Frame { - msec: 12240 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5392 + hash: "138bc0c4dd08ffec0c79c4c7474ed318" } Frame { - msec: 12256 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5408 + hash: "838f07195d00b19104bbbd93c7670dab" } Frame { - msec: 12272 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5424 + hash: "b7fb0944bf53ccc62effe159333449ff" } Frame { - msec: 12288 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5440 + hash: "56a21c9210074ef8a044019fa9375b14" } Frame { - msec: 12304 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5456 + hash: "4ef80a5d73981ce1f1081fc578ea088a" } Frame { - msec: 12320 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5472 + hash: "f3f9cf99ab436c1a2805c0859df9589e" } Frame { - msec: 12336 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5488 + hash: "0d88023fe7af39e409f7a12348d4e3d6" } Frame { - msec: 12352 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5504 + hash: "b4abf98d58fe490ceb7a62621292f8d9" } Frame { - msec: 12368 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5520 + hash: "5c3247324b214b961ed40da985fb50a4" } Frame { - msec: 12384 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5536 + hash: "41195a5c39ac1ecbd175e5663d23cdaa" } Frame { - msec: 12400 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5552 + hash: "028460cd5eecd50a12261e541f1776bf" } Frame { - msec: 12416 - hash: "6b81b365eb057ffa32d89e564bc92949" + msec: 5568 + hash: "56763e343221db0a111bb91e72640911" } Frame { - msec: 12432 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 171; y: 452 - modifiers: 0 - sendToViewport: true + msec: 5584 + hash: "a4b644bf91108dbc9b21a1646dab0b37" } Frame { - msec: 12448 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 172; y: 450 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 173; y: 448 - modifiers: 0 - sendToViewport: true + msec: 5600 + hash: "c2d2d51f0147e78550f762ec84f7f338" } Frame { - msec: 12464 - hash: "6b81b365eb057ffa32d89e564bc92949" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 434 - modifiers: 0 - sendToViewport: true + msec: 5616 + hash: "1a93e2ed871ae094aff5eeaa07385a94" } Frame { - msec: 12480 - image: "flickable-vertical.12.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 175; y: 431 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 423 - modifiers: 0 - sendToViewport: true + msec: 5632 + hash: "977a2efa43d3be0340975ccbe6b0e8a9" } Frame { - msec: 12496 - hash: "7e760a017ab10fe920074405248d1473" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 177; y: 415 - modifiers: 0 - sendToViewport: true + msec: 5648 + hash: "977a2efa43d3be0340975ccbe6b0e8a9" } Frame { - msec: 12512 - hash: "eab43f1c2b6fb79aad578a164b8b7b28" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 181; y: 395 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 183; y: 383 - modifiers: 0 - sendToViewport: true + msec: 5664 + hash: "0a8c81335816c747d320b3a147ee0350" } Frame { - msec: 12528 - hash: "a5446ca4c6650ffc9812845bdb8db088" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 185; y: 371 - modifiers: 0 - sendToViewport: true + msec: 5680 + hash: "0a8c81335816c747d320b3a147ee0350" } Frame { - msec: 12544 - hash: "71cb7dc7f9dbb9e17d7f44885ec71bdb" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 357 - modifiers: 0 - sendToViewport: true + msec: 5696 + hash: "46e69596c809d4c7563d5d44ca62eb02" } Frame { - msec: 12560 - hash: "ccf0908d968f658311a9787182de498a" + msec: 5712 + hash: "46e69596c809d4c7563d5d44ca62eb02" } Mouse { - type: 5 - button: 0 + type: 2 + button: 1 buttons: 1 - x: 187; y: 329 + x: 176; y: 412 modifiers: 0 sendToViewport: true } Frame { - msec: 12576 - hash: "26b9c6379590bbda24d129bd4f19f7d3" + msec: 5728 + hash: "aebff194f1c84190623ebfc358503b5f" } Mouse { type: 5 button: 0 buttons: 1 - x: 187; y: 303 + x: 177; y: 406 modifiers: 0 sendToViewport: true } @@ -3904,1139 +2136,1363 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 187; y: 293 + x: 177; y: 395 modifiers: 0 sendToViewport: true } Frame { - msec: 12592 - hash: "6c88a02ffdffee6d615ddc6a11c1b698" + msec: 5744 + hash: "39f1cee1ad7ab2ab6601e2b67f5d83c7" } Mouse { type: 5 button: 0 buttons: 1 - x: 187; y: 283 + x: 181; y: 367 modifiers: 0 sendToViewport: true } Frame { - msec: 12608 - hash: "38175cb09b6e63353b478635b22dbb5b" + msec: 5760 + image: "flickable-vertical.5.png" } Mouse { type: 5 button: 0 buttons: 1 - x: 187; y: 280 + x: 183; y: 326 modifiers: 0 sendToViewport: true } + Frame { + msec: 5776 + hash: "02d9d0829c64b92e98b8093b38e6f848" + } Mouse { type: 5 button: 0 buttons: 1 - x: 187; y: 277 + x: 183; y: 299 modifiers: 0 sendToViewport: true } - Frame { - msec: 12624 - hash: "5084910bf204e8b688de31d4f9018a57" - } Mouse { type: 5 button: 0 buttons: 1 - x: 187; y: 275 + x: 180; y: 276 modifiers: 0 sendToViewport: true } + Frame { + msec: 5792 + hash: "46f76f341787a80b9f9c16a5bc9f83c5" + } Mouse { type: 5 button: 0 buttons: 1 - x: 187; y: 273 + x: 175; y: 214 modifiers: 0 sendToViewport: true } Frame { - msec: 12640 - hash: "e984565312571ec144a1cd4cc11253e8" + msec: 5808 + hash: "67c3225460673038d190169115622f02" } Mouse { type: 5 button: 0 buttons: 1 - x: 187; y: 272 + x: 167; y: 147 modifiers: 0 sendToViewport: true } Mouse { - type: 5 - button: 0 - buttons: 1 - x: 187; y: 271 + type: 3 + button: 1 + buttons: 0 + x: 167; y: 147 modifiers: 0 sendToViewport: true } Frame { - msec: 12656 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5824 + hash: "2cb9abc32225ea9d39deb09da6119a94" } Frame { - msec: 12672 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5840 + hash: "bf69fa4cd3f73e15f07394d290b801e6" } Frame { - msec: 12688 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5856 + hash: "cf5f2524171ca121f4478c3c6d7dfd35" } Frame { - msec: 12704 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5872 + hash: "d498a494fa489150bd324e18a1c14fe5" } Frame { - msec: 12720 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5888 + hash: "459c2e8110f1c21b3f8d590e7c0355de" } Frame { - msec: 12736 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5904 + hash: "1bde4841026fd6117b49d94d697b03fa" } Frame { - msec: 12752 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5920 + hash: "84b025039284f616d69465ec8cc245b8" } Frame { - msec: 12768 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5936 + hash: "3652c4664895a0b6fbe06521a79c8bb9" } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 187; y: 271 - modifiers: 0 - sendToViewport: true + Frame { + msec: 5952 + hash: "f817f6059b8cb3fc4a85c9c91df6c7a3" } Frame { - msec: 12784 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5968 + hash: "cb671ab3c3a9de0c17df2896e45beca9" } Frame { - msec: 12800 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 5984 + hash: "d9102b25f63ca9274057dad0ab2b6102" } Frame { - msec: 12816 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6000 + hash: "b9df17ad73b7a5b018ab30c5c57afd02" } Frame { - msec: 12832 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6016 + hash: "664494b87407881a11b4732f0713f587" } Frame { - msec: 12848 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6032 + hash: "cac62fc442c064286b7e4a71a13b929c" } Frame { - msec: 12864 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6048 + hash: "989b4649dca89e227f552979af1c68f0" } Frame { - msec: 12880 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6064 + hash: "80b4b11b3cbc684d920fa89c3345d8bc" } Frame { - msec: 12896 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6080 + hash: "dcbd4e93e7ac0ef0e78c6a19cf3295f1" } Frame { - msec: 12912 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6096 + hash: "33f3ddd9d7fa5a472465029d7a7263ae" } Frame { - msec: 12928 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6112 + hash: "fb5675d4870528b9c0591c5a80530b17" } Frame { - msec: 12944 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6128 + hash: "e57dbe962c1ef45893e41559cee19d16" } Frame { - msec: 12960 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6144 + hash: "a9081993871e0171e25159a078a5cdbc" } Frame { - msec: 12976 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6160 + hash: "cadc7f53518ba3f4cbe8e686b90fa5ab" } Frame { - msec: 12992 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 6176 + hash: "e9208a44f95ccc181bfc64e8785bd633" } Frame { - msec: 13008 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6192 + hash: "a69f2969122a547b1af195f581c272b8" } Frame { - msec: 13024 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6208 + hash: "eee0b7c2f01bcc57f141d9aa27f73da6" } Frame { - msec: 13040 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6224 + hash: "f58ac16d11909563cf214b6c2baef0dc" } Frame { - msec: 13056 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6240 + hash: "e373def5a0bcd30ea7f4acb539785e3c" } Frame { - msec: 13072 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6256 + hash: "0dce9f4bab793ea1d6e368cd6fb37047" } Frame { - msec: 13088 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6272 + hash: "4a4725f2546b08faffa3a543de578e59" } Frame { - msec: 13104 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6288 + hash: "ea36b5869634115182c365990518b993" } Frame { - msec: 13120 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6304 + hash: "45b102bd0c5ab42783b9e428cea202a4" } Frame { - msec: 13136 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6320 + hash: "0154e6010f3a8621a8f992bb7dcfd5b8" } Frame { - msec: 13152 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6336 + hash: "035a8c7e9eece0f9ea4f5ad62658d7f9" } Frame { - msec: 13168 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6352 + hash: "fc1050cf971296a9200c548feee08d0a" } Frame { - msec: 13184 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6368 + hash: "ef9c7f1228ac6825cce8ce0e9e7aaac5" } Frame { - msec: 13200 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6384 + hash: "70ef278074b1527aba16eca8c3811af5" } Frame { - msec: 13216 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6400 + hash: "08012939aca6381dedd838a7fd0be1a3" } Frame { - msec: 13232 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6416 + hash: "2c702b17a0ec2aac2928ad8bcc2e080b" } Frame { - msec: 13248 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6432 + hash: "e70e243e8ecc8e8f50ea4f0f4559c8c6" } Frame { - msec: 13264 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6448 + hash: "73013ff1a7f0c3040f3520f0581e4ce0" } Frame { - msec: 13280 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6464 + hash: "14cdd689ae9e5b15e212d9dab63ec946" } Frame { - msec: 13296 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6480 + hash: "354d822bf252559211513e49e417a413" } Frame { - msec: 13312 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6496 + hash: "77eb798efd1447eca75de12dc2c7a215" } Frame { - msec: 13328 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6512 + hash: "08dc9068d21db7ff87d4d88eb1443aed" } Frame { - msec: 13344 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6528 + hash: "baab3b98e70ca51d1cbd27d4a998380f" } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 181; y: 242 - modifiers: 0 - sendToViewport: true + Frame { + msec: 6544 + hash: "baab3b98e70ca51d1cbd27d4a998380f" } Frame { - msec: 13360 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6560 + hash: "baab3b98e70ca51d1cbd27d4a998380f" } Frame { - msec: 13376 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6576 + hash: "84519c415186e5abd122a1f39e26265b" } Frame { - msec: 13392 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6592 + hash: "df63754934af656e08e93ce4fa69c19e" } Frame { - msec: 13408 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6608 + hash: "34439eb26069feabee5ba97bfd1c2cb3" } Frame { - msec: 13424 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6624 + hash: "46534a7da31ac76c52036e51c63db72e" } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 181; y: 242 - modifiers: 0 - sendToViewport: true + Frame { + msec: 6640 + hash: "cf8e86112be37fc94687aa8bd437e1a2" } Frame { - msec: 13440 - image: "flickable-vertical.13.png" + msec: 6656 + hash: "f93ba6420ab0ef719aa10c6aae71c878" } Frame { - msec: 13456 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6672 + hash: "22f991814552e7e3e2db8fea0abe9d6c" } Frame { - msec: 13472 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6688 + hash: "7d2773bec8310d92166ab7184741ace4" } Frame { - msec: 13488 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6704 + hash: "f18aace5e0d4ca8a385a57682d82e43f" } Frame { - msec: 13504 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6720 + image: "flickable-vertical.6.png" } Frame { - msec: 13520 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6736 + hash: "7f445e22f19808ca71416cadd497f305" } Frame { - msec: 13536 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6752 + hash: "d6ef83bec490d2fb0f4d640f8c43f694" } Frame { - msec: 13552 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6768 + hash: "fbd19c34e68a21c8924f83c4d0cbcb79" } Frame { - msec: 13568 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6784 + hash: "179abedb6eef26a2e78c3a7884cb2178" } Frame { - msec: 13584 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6800 + hash: "292af687e9001eb7cf8434094202b4a0" } Frame { - msec: 13600 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6816 + hash: "1de0a8aa08194151e2b72d8b16cdba5f" } Frame { - msec: 13616 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6832 + hash: "ee607cf6f558e3ed7b08dad80a17dd05" } Frame { - msec: 13632 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6848 + hash: "2024a393baa1fa1c2d38ccc6756c4a44" } Frame { - msec: 13648 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6864 + hash: "898ac470a5b1619564496132c0150df2" } Frame { - msec: 13664 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6880 + hash: "b447e3917b7353e97409755159a614bc" } Frame { - msec: 13680 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 6896 + hash: "d03610c18a2c21785e59b4de7b92f20e" + } + Frame { + msec: 6912 + hash: "014dfa76c222aea838483840befff092" + } + Frame { + msec: 6928 + hash: "014dfa76c222aea838483840befff092" + } + Frame { + msec: 6944 + hash: "7830f79e5a37242fd97dd6ff9f89e9d0" + } + Frame { + msec: 6960 + hash: "331a6b6ebaa7e9f7b970bacafe070b2f" + } + Frame { + msec: 6976 + hash: "331a6b6ebaa7e9f7b970bacafe070b2f" + } + Frame { + msec: 6992 + hash: "331a6b6ebaa7e9f7b970bacafe070b2f" + } + Frame { + msec: 7008 + hash: "331a6b6ebaa7e9f7b970bacafe070b2f" + } + Frame { + msec: 7024 + hash: "eb0b45fac8756d32586cac82f25c5a51" + } + Frame { + msec: 7040 + hash: "eb0b45fac8756d32586cac82f25c5a51" + } + Frame { + msec: 7056 + hash: "eb0b45fac8756d32586cac82f25c5a51" + } + Frame { + msec: 7072 + hash: "eb0b45fac8756d32586cac82f25c5a51" + } + Frame { + msec: 7088 + hash: "eb0b45fac8756d32586cac82f25c5a51" + } + Frame { + msec: 7104 + hash: "eb0b45fac8756d32586cac82f25c5a51" + } + Frame { + msec: 7120 + hash: "eb0b45fac8756d32586cac82f25c5a51" + } + Frame { + msec: 7136 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7152 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7168 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7184 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7200 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7216 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7232 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7248 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7264 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Frame { + msec: 7280 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13696 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7296 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13712 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7312 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13728 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7328 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13744 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7344 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13760 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7360 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13776 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7376 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13792 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7392 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13808 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7408 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13824 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7424 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13840 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7440 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13856 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7456 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13872 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7472 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13888 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7488 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13904 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7504 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13920 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7520 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13936 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7536 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Mouse { type: 2 button: 1 buttons: 1 - x: 181; y: 242 + x: 94; y: 581 modifiers: 0 sendToViewport: true } Frame { - msec: 13952 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7552 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13968 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7568 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 13984 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7584 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14000 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7600 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } - Frame { - msec: 14016 - hash: "4b86de37ae9bc630a2f3440811087617" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 94; y: 581 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14032 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7616 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14048 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7632 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14064 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7648 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14080 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7664 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14096 - hash: "4b86de37ae9bc630a2f3440811087617" + msec: 7680 + image: "flickable-vertical.7.png" } Frame { - msec: 14112 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7696 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14128 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7712 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14144 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7728 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14160 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7744 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14176 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7760 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14192 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7776 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14208 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7792 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14224 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7808 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14240 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7824 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14256 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7840 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14272 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7856 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14288 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7872 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14304 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7888 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14320 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7904 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14336 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7920 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14352 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7936 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } - Frame { - msec: 14368 - hash: "d96fb1b387b34f41f80e98c1feb05303" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 146; y: 574 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14384 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7952 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14400 - image: "flickable-vertical.14.png" + msec: 7968 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14416 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 7984 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14432 - hash: "d96fb1b387b34f41f80e98c1feb05303" + msec: 8000 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14448 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8016 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } - Frame { - msec: 14464 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 146; y: 574 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14480 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8032 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14496 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8048 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14512 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8064 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14528 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8080 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14544 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8096 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14560 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8112 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14576 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8128 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14592 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8144 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14608 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8160 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14624 - hash: "ecd5db8e582e6d2e15943ffd9fcb32a7" + msec: 8176 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14640 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8192 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14656 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8208 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14672 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8224 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14688 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8240 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14704 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8256 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14720 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8272 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14736 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8288 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14752 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8304 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 14768 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8320 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } - Frame { - msec: 14784 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 161; y: 422 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 14800 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 162; y: 420 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14816 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8336 + hash: "bd1667fe88a71bc2f52ba5a6c9dc098c" } - Frame { - msec: 14832 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 162; y: 415 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 14848 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 163; y: 411 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14864 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8352 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 163; y: 406 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 165; y: 397 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14880 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8368 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 386 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 375 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14896 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8384 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 364 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 352 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14912 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8400 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 342 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 165; y: 331 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14928 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8416 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 163; y: 319 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 163; y: 308 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14944 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8432 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 163; y: 297 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 163; y: 284 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14960 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8448 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 161; y: 272 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 161; y: 261 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14976 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8464 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 159; y: 250 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 157; y: 235 + modifiers: 0 + sendToViewport: true } Frame { - msec: 14992 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8480 + hash: "1889f1f0e319b90b6a68d76df6eebe96" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 157; y: 224 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 155; y: 211 + modifiers: 0 + sendToViewport: true } Frame { - msec: 15008 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 8496 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } - Frame { - msec: 15024 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 153; y: 198 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 15040 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 153; y: 187 + modifiers: 0 + sendToViewport: true } Mouse { type: 3 button: 1 buttons: 0 - x: 181; y: 242 + x: 153; y: 187 modifiers: 0 sendToViewport: true } Frame { - msec: 15056 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15072 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15088 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15104 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15120 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15136 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15152 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15168 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15184 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15200 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15216 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15232 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15248 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15264 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15280 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8512 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15296 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8528 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15312 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8544 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15328 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8560 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15344 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8576 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15360 - image: "flickable-vertical.15.png" + msec: 8592 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15376 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8608 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15392 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8624 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15408 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8640 + image: "flickable-vertical.8.png" } Frame { - msec: 15424 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8656 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15440 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8672 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15456 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8688 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15472 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8704 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15488 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8720 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15504 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8736 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15520 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8752 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15536 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8768 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15552 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8784 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15568 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8800 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15584 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8816 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15600 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8832 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15616 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8848 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15632 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8864 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15648 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8880 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15664 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8896 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15680 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8912 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15696 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8928 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Frame { - msec: 15712 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8944 + hash: "1889f1f0e319b90b6a68d76df6eebe96" } Mouse { type: 2 button: 1 buttons: 1 - x: 192; y: 218 + x: 127; y: 125 modifiers: 0 sendToViewport: true } Frame { - msec: 15728 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15744 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15760 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15776 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15792 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15808 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15824 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15840 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15856 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15872 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15888 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15904 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15920 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15936 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15952 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15968 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 15984 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" - } - Frame { - msec: 16000 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8960 + hash: "c1d084f6e9361c6c0c70f064ae863051" } - Frame { - msec: 16016 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 127; y: 128 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 16032 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 127; y: 131 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16048 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8976 + hash: "c1d084f6e9361c6c0c70f064ae863051" } - Frame { - msec: 16064 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 128; y: 135 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 16080 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 128; y: 139 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16096 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 8992 + hash: "a84a07f9d3006718d55de7d6ed60795e" } - Frame { - msec: 16112 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 130; y: 152 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16128 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 9008 + hash: "deaa0f57eff99ca88f7204e8d8b159b5" } - Frame { - msec: 16144 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 134; y: 176 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16160 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 9024 + hash: "4366ee113f7c987a2d8e5978b667e3d0" } - Frame { - msec: 16176 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 138; y: 207 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16192 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 9040 + hash: "9dbad53daf3a7988498c561dda4c00a6" } - Frame { - msec: 16208 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 145; y: 238 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16224 - hash: "e3069d9d3cbcd845b1e4763b0759dc38" + msec: 9056 + hash: "e70aeae6d78628c16a7c8c354cf91c98" } - Frame { - msec: 16240 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 152; y: 266 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16256 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9072 + hash: "38aa5fd0540648edce34103704d8b861" } - Frame { - msec: 16272 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 156; y: 288 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16288 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9088 + hash: "ff08c650e24f63fe7eae1984bb190e02" } - Frame { - msec: 16304 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 158; y: 308 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16320 - image: "flickable-vertical.16.png" + msec: 9104 + hash: "0d0f2377991d15416bf76619d2f71218" } - Frame { - msec: 16336 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 160; y: 327 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16352 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9120 + hash: "b7681257ec2ad1d532aa522147dd7549" } - Frame { - msec: 16368 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 160; y: 343 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16384 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9136 + hash: "baaf75edb3c17bbc754e26fe15f1d295" } - Frame { - msec: 16400 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 160; y: 353 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16416 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9152 + hash: "b68aab52cbcaf524ebb80f2a3af014b4" } - Frame { - msec: 16432 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 158; y: 363 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16448 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9168 + hash: "c69d2b45d92950f7246976bcc247c687" } - Frame { - msec: 16464 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 158; y: 373 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16480 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9184 + hash: "68cd8f467ac225f6e2c5a2914f92edc1" } - Frame { - msec: 16496 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 157; y: 383 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16512 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9200 + hash: "90cfbee19fd7c03bcfc9a57d94c7fd8d" } - Frame { - msec: 16528 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 155; y: 387 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 16544 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 155; y: 387 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16560 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9216 + hash: "8216a9f0024507e4cb8406575760947f" } Frame { - msec: 16576 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9232 + hash: "47f76e736f13c6f2318e8c8a8ab69d0e" } Frame { - msec: 16592 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9248 + hash: "75fc24bcf9d4b8d00f8a493b0095f445" } Frame { - msec: 16608 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9264 + hash: "d8e9b69514f411a6672b7057c33bcc41" } Frame { - msec: 16624 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9280 + hash: "9743d8ab32903d7fac7a4101ad24bcfd" } - Frame { - msec: 16640 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 150; y: 438 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16656 - hash: "53a0e69fe4816e6eed0b4e795bf90e19" + msec: 9296 + hash: "6bfcd36f945af8cc7b2aa2cca1cde750" } Mouse { type: 5 button: 0 buttons: 1 - x: 198; y: 222 + x: 150; y: 442 modifiers: 0 sendToViewport: true } @@ -5044,19 +3500,19 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 198; y: 224 + x: 150; y: 446 modifiers: 0 sendToViewport: true } Frame { - msec: 16672 - hash: "c30bea2a73a8b5af4565ef3996f29416" + msec: 9312 + hash: "8e821eb27a5fd0933805d3e88d1f5f1e" } Mouse { type: 5 button: 0 buttons: 1 - x: 198; y: 228 + x: 152; y: 451 modifiers: 0 sendToViewport: true } @@ -5064,127 +3520,135 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 198; y: 230 + x: 152; y: 457 modifiers: 0 sendToViewport: true } Frame { - msec: 16688 - hash: "9612c176ec3ecf76a367728f451522a4" + msec: 9328 + hash: "84191607b7ba11b1204bba0ab5b4f98c" } Mouse { type: 5 button: 0 buttons: 1 - x: 198; y: 233 + x: 152; y: 467 modifiers: 0 sendToViewport: true } Frame { - msec: 16704 - hash: "24f6feeeb1ff82c8d4262f74e4656602" + msec: 9344 + hash: "e154e8cdbc4f9a1d4cbe926306bf76c1" } Mouse { type: 5 button: 0 buttons: 1 - x: 198; y: 238 + x: 152; y: 474 modifiers: 0 sendToViewport: true } Frame { - msec: 16720 - hash: "5823b56f1e362fdfc216a82e2dcdec61" + msec: 9360 + hash: "2510607dadaf22d60838934cd460bde4" } Mouse { type: 5 button: 0 buttons: 1 - x: 198; y: 241 + x: 152; y: 492 modifiers: 0 sendToViewport: true } Frame { - msec: 16736 - hash: "4ee243b91e847dabaceb21b5540c2a6d" + msec: 9376 + hash: "38087462c92bae32df01a27520183c5f" } Mouse { type: 5 button: 0 buttons: 1 - x: 198; y: 245 + x: 154; y: 499 modifiers: 0 sendToViewport: true } Frame { - msec: 16752 - hash: "87f1dc2238577fc5be6b1bd941226f3e" + msec: 9392 + hash: "0e5231ff13dd8b3205acb2c451fcf208" } Mouse { type: 5 button: 0 buttons: 1 - x: 198; y: 251 + x: 154; y: 515 modifiers: 0 sendToViewport: true } Frame { - msec: 16768 - hash: "480c6fcf1b3862a41a7225c35d8080c3" + msec: 9408 + hash: "12dfb280b1cb828b75d04f62b5261f78" } Mouse { type: 5 button: 0 buttons: 1 - x: 198; y: 256 + x: 157; y: 545 modifiers: 0 sendToViewport: true } Frame { - msec: 16784 - hash: "0ac819bd8e6ce19553bd954e466e7ac0" + msec: 9424 + hash: "fc89205b7a0bae9c2726b775aabf7a6a" + } + Frame { + msec: 9440 + hash: "40807414ec0f879ae666f27360d2b91d" } Mouse { type: 5 button: 0 buttons: 1 - x: 199; y: 258 + x: 159; y: 567 modifiers: 0 sendToViewport: true } - Frame { - msec: 16800 - hash: "0636dd7c4eb0b56697fb59fb46f47f9c" - } Mouse { type: 5 button: 0 buttons: 1 - x: 201; y: 267 + x: 160; y: 581 modifiers: 0 sendToViewport: true } Frame { - msec: 16816 - hash: "62f76f46857106010c2e862ed19baeea" + msec: 9456 + hash: "01c759fad050fa6cecefdf7e2d528bd3" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 160; y: 594 + modifiers: 0 + sendToViewport: true } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 276 + x: 162; y: 608 modifiers: 0 sendToViewport: true } Frame { - msec: 16832 - hash: "26b9c6379590bbda24d129bd4f19f7d3" + msec: 9472 + hash: "81887d4c0718d74f51d03c9efcd7d265" } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 279 + x: 162; y: 620 modifiers: 0 sendToViewport: true } @@ -5192,1011 +3656,1159 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 203; y: 280 + x: 162; y: 639 modifiers: 0 sendToViewport: true } Frame { - msec: 16848 - hash: "21baf0596553627c8e683a31c2e6d04f" + msec: 9488 + hash: "d0e6f2146daffb910be0be23a2b77a5c" } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 281 + x: 160; y: 682 modifiers: 0 sendToViewport: true } + Frame { + msec: 9504 + hash: "ffcf5113009c86c8b2df2e9276f2e8c0" + } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 282 + x: 157; y: 704 modifiers: 0 sendToViewport: true } - Frame { - msec: 16864 - hash: "036679da5def5e696361f2373172a3f4" - } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 283 + x: 155; y: 729 modifiers: 0 sendToViewport: true } Frame { - msec: 16880 - hash: "e3fc6101bc6cccf309b3df6b194820ea" + msec: 9520 + hash: "45d262f0b3bec61a2a235ab613db664c" } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 285 + x: 150; y: 775 modifiers: 0 sendToViewport: true } Frame { - msec: 16896 - hash: "d9ee6d0a7455cfd724c1856549100756" + msec: 9536 + hash: "1bb9a85fc290e30b841648bd9573ac84" } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 286 + x: 146; y: 823 modifiers: 0 sendToViewport: true } Frame { - msec: 16912 - hash: "caa70db5f31eb607c2de39734a42796c" + msec: 9552 + hash: "46ff9bb9662543c711fcd84f44fc6af6" } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 287 + x: 141; y: 869 modifiers: 0 sendToViewport: true } Frame { - msec: 16928 - hash: "e2dc88b454e69cf92d6887a2f0629a94" + msec: 9568 + hash: "84fe171380d203a80fedaf4b10412e1a" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 139; y: 907 + modifiers: 0 + sendToViewport: true } Frame { - msec: 16944 - hash: "e2dc88b454e69cf92d6887a2f0629a94" + msec: 9584 + hash: "496f7ba4a3d45861d93e2cb95e3d5dea" } Mouse { type: 5 button: 0 buttons: 1 - x: 203; y: 288 + x: 135; y: 947 modifiers: 0 sendToViewport: true } Frame { - msec: 16960 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9600 + image: "flickable-vertical.9.png" } - Frame { - msec: 16976 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 133; y: 962 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 16992 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 133; y: 977 + modifiers: 0 + sendToViewport: true } Frame { - msec: 17008 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9616 + hash: "e3c4f8d056d2c3b5aef3184fda19a92d" } - Frame { - msec: 17024 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 131; y: 993 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 17040 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 129; y: 1006 + modifiers: 0 + sendToViewport: true } Frame { - msec: 17056 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9632 + hash: "90be1cd9716907fc46309f9f043a6f84" } - Frame { - msec: 17072 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 122; y: 1029 + modifiers: 0 + sendToViewport: true } Frame { - msec: 17088 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9648 + hash: "b6e868b2d23004f75d0bdb1519e8487d" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 118; y: 1043 + modifiers: 0 + sendToViewport: true } Mouse { type: 3 button: 1 buttons: 0 - x: 203; y: 288 + x: 118; y: 1043 modifiers: 0 sendToViewport: true } Frame { - msec: 17104 - hash: "fac8455a2707b04aabff25723375a78b" - } - Frame { - msec: 17120 - hash: "fac8455a2707b04aabff25723375a78b" - } - Frame { - msec: 17136 - hash: "fac8455a2707b04aabff25723375a78b" - } - Frame { - msec: 17152 - hash: "fac8455a2707b04aabff25723375a78b" - } - Frame { - msec: 17168 - hash: "fac8455a2707b04aabff25723375a78b" - } - Frame { - msec: 17184 - hash: "fac8455a2707b04aabff25723375a78b" - } - Frame { - msec: 17200 - hash: "fac8455a2707b04aabff25723375a78b" - } - Frame { - msec: 17216 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9664 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17232 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9680 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17248 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9696 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17264 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9712 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17280 - image: "flickable-vertical.17.png" + msec: 9728 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17296 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9744 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17312 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9760 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17328 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9776 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17344 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9792 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17360 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9808 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17376 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9824 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17392 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9840 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17408 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9856 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17424 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9872 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17440 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9888 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17456 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9904 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17472 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9920 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17488 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9936 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17504 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9952 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17520 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9968 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17536 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 9984 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17552 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10000 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17568 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10016 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17584 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10032 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17600 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10048 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17616 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10064 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17632 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10080 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17648 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10096 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17664 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10112 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17680 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10128 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17696 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10144 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17712 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10160 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17728 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10176 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17744 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10192 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17760 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10208 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17776 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10224 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17792 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10240 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17808 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10256 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17824 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10272 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17840 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10288 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17856 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10304 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17872 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10320 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 17888 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10336 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 17904 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 158; y: 415 + modifiers: 0 + sendToViewport: true } Frame { - msec: 17920 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10352 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Frame { - msec: 17936 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10368 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 17952 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 159; y: 416 + modifiers: 0 + sendToViewport: true } Frame { - msec: 17968 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10384 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 17984 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 160; y: 417 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18000 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 161; y: 422 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18016 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10400 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 18032 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 162; y: 429 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18048 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 444 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18064 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10416 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18080 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 168; y: 459 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18096 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 173; y: 473 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18112 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10432 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18128 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 175; y: 486 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18144 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 178; y: 499 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18160 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10448 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18176 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 180; y: 512 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18192 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 183; y: 524 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18208 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10464 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18224 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 185; y: 535 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18240 - image: "flickable-vertical.18.png" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 187; y: 548 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18256 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10480 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18272 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 189; y: 562 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18288 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 189; y: 577 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18304 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10496 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18320 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 191; y: 593 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18336 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 193; y: 609 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18352 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10512 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18368 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 195; y: 626 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18384 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 197; y: 641 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18400 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10528 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18416 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 197; y: 655 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18432 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 199; y: 670 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18448 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10544 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { - type: 2 - button: 1 + type: 5 + button: 0 buttons: 1 - x: 102; y: 575 + x: 201; y: 681 modifiers: 0 sendToViewport: true } - Frame { - msec: 18464 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 201; y: 690 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18480 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10560 + image: "flickable-vertical.10.png" } - Frame { - msec: 18496 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 201; y: 698 + modifiers: 0 + sendToViewport: true } Mouse { - type: 3 - button: 1 - buttons: 0 - x: 102; y: 575 + type: 5 + button: 0 + buttons: 1 + x: 203; y: 706 modifiers: 0 sendToViewport: true } Frame { - msec: 18512 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10576 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18528 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 203; y: 712 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18544 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 203; y: 718 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18560 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10592 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18576 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 722 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18592 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 725 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18608 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10608 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18624 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 727 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18640 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 731 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18656 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10624 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18672 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 735 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18688 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 737 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18704 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10640 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18720 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 739 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 18736 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 740 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18752 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10656 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18768 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 205; y: 741 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18784 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10672 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18800 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10688 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18816 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10704 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 18832 - hash: "fac8455a2707b04aabff25723375a78b" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 205; y: 741 + modifiers: 0 + sendToViewport: true } Frame { - msec: 18848 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10720 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18864 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10736 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18880 - hash: "fac8455a2707b04aabff25723375a78b" + msec: 10752 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18896 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10768 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18912 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10784 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18928 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10800 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18944 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10816 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18960 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10832 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18976 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10848 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 18992 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10864 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19008 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10880 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19024 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10896 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19040 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10912 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19056 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10928 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19072 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10944 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19088 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10960 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19104 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10976 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19120 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 10992 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19136 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11008 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19152 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11024 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19168 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11040 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19184 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11056 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19200 - image: "flickable-vertical.19.png" + msec: 11072 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19216 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11088 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19232 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11104 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19248 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11120 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19264 - hash: "cce4177eb20b7aa43a7383a16c43f473" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 164; y: 571 - modifiers: 0 - sendToViewport: true + msec: 11136 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19280 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11152 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19296 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11168 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19312 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11184 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19328 - hash: "cce4177eb20b7aa43a7383a16c43f473" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 164; y: 571 - modifiers: 0 - sendToViewport: true + msec: 11200 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19344 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11216 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19360 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11232 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19376 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11248 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19392 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11264 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19408 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11280 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19424 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11296 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19440 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11312 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19456 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11328 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19472 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11344 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19488 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11360 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19504 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11376 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19520 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11392 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19536 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11408 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19552 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11424 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19568 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11440 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19584 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11456 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19600 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11472 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19616 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11488 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19632 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11504 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 19648 - hash: "cce4177eb20b7aa43a7383a16c43f473" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 115; y: 578 + modifiers: 0 + sendToViewport: true } Frame { - msec: 19664 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11520 + image: "flickable-vertical.11.png" } Frame { - msec: 19680 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11536 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19696 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11552 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19712 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11568 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19728 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11584 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 19744 - hash: "cce4177eb20b7aa43a7383a16c43f473" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 115; y: 578 + modifiers: 0 + sendToViewport: true } Frame { - msec: 19760 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11600 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19776 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11616 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19792 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11632 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19808 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11648 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19824 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11664 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19840 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11680 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19856 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11696 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19872 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11712 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19888 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11728 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19904 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11744 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19920 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11760 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19936 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11776 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19952 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11792 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19968 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11808 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 19984 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11824 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20000 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11840 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20016 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11856 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20032 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11872 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 20048 - hash: "cce4177eb20b7aa43a7383a16c43f473" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 130; y: 410 + modifiers: 0 + sendToViewport: true } Frame { - msec: 20064 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11888 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20080 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11904 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20096 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11920 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20112 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11936 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20128 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11952 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20144 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11968 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 20160 - image: "flickable-vertical.20.png" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 130; y: 410 + modifiers: 0 + sendToViewport: true } Frame { - msec: 20176 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 11984 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20192 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 12000 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20208 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 12016 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 20224 - hash: "cce4177eb20b7aa43a7383a16c43f473" + msec: 12032 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { - type: 2 + type: 4 button: 1 buttons: 1 - x: 170; y: 450 + x: 130; y: 410 modifiers: 0 sendToViewport: true } Frame { - msec: 20240 - hash: "b8e7a053fc023be42ab5136f6e7305fd" + msec: 12048 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Frame { - msec: 20256 - hash: "b8e7a053fc023be42ab5136f6e7305fd" + msec: 12064 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Mouse { type: 5 button: 0 buttons: 1 - x: 170; y: 448 + x: 131; y: 410 modifiers: 0 sendToViewport: true } Frame { - msec: 20272 - hash: "b8e7a053fc023be42ab5136f6e7305fd" + msec: 12080 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Mouse { type: 5 button: 0 buttons: 1 - x: 172; y: 438 + x: 133; y: 408 modifiers: 0 sendToViewport: true } - Frame { - msec: 20288 - hash: "40cf6e4567c796d6ad83778fb1959d8a" - } Mouse { type: 5 button: 0 buttons: 1 - x: 176; y: 410 + x: 134; y: 405 modifiers: 0 sendToViewport: true } Frame { - msec: 20304 - hash: "9914584daf02407c1edc3b6a38b8302d" + msec: 12096 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Mouse { type: 5 button: 0 buttons: 1 - x: 176; y: 388 + x: 136; y: 403 modifiers: 0 sendToViewport: true } @@ -6204,351 +4816,219 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 176; y: 366 + x: 140; y: 396 modifiers: 0 sendToViewport: true } Frame { - msec: 20320 - hash: "5aff2316a5e34f5e15b7cb36257a3d72" + msec: 12112 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } Mouse { type: 5 button: 0 buttons: 1 - x: 176; y: 342 + x: 150; y: 380 modifiers: 0 sendToViewport: true } + Frame { + msec: 12128 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" + } Mouse { - type: 3 - button: 1 - buttons: 0 - x: 176; y: 342 + type: 5 + button: 0 + buttons: 1 + x: 154; y: 370 modifiers: 0 sendToViewport: true } - Frame { - msec: 20336 - hash: "de1f9ff1abfa8cdc760bc84129fab40d" - } - Frame { - msec: 20352 - hash: "032c4fd62a0a611207262d317d4ea103" - } - Frame { - msec: 20368 - hash: "1db8a7b3899f5efea25ccf93285ee6bd" - } - Frame { - msec: 20384 - hash: "3c106f68b755862346cddd21d75c0caf" - } - Frame { - msec: 20400 - hash: "41d025dfe037b9cebe84e4c7200e9d15" - } - Frame { - msec: 20416 - hash: "f347687313c88150a6f977ae8b1620fc" - } - Frame { - msec: 20432 - hash: "4bb30faaec54e2a47dfd2b2988a6c231" - } - Frame { - msec: 20448 - hash: "fede02600e790d4b6eb1f85563b37cbc" - } - Frame { - msec: 20464 - hash: "0a949f7150b3709b9eda62c98f98fc62" - } - Frame { - msec: 20480 - hash: "214e571c2346b0d6b5d1220e856a8e67" - } - Frame { - msec: 20496 - hash: "f84207d20cfff984d1c79654a1074d02" - } - Frame { - msec: 20512 - hash: "7dc3592294dcd88fbfff2f984fd2d4c3" - } - Frame { - msec: 20528 - hash: "42829e78f62e692a093df267d2b673e2" - } - Frame { - msec: 20544 - hash: "d264570c78e7d1ea283c72191953a2ce" - } - Frame { - msec: 20560 - hash: "b69b045557a8eada80a24eb4caa7ea4e" - } - Frame { - msec: 20576 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20592 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20608 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20624 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20640 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20656 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20672 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20688 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20704 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20720 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20736 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20752 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20768 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20784 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20800 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20816 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20832 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20848 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20864 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20880 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20896 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20912 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20928 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20944 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20960 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20976 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 20992 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 21008 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 21024 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 21040 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 21056 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 21072 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 21088 - hash: "a76f069dfcb1af0794999c34507e190e" - } - Frame { - msec: 21104 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 158; y: 361 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21120 - image: "flickable-vertical.21.png" + msec: 12144 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 21136 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 161; y: 353 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 21152 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 163; y: 343 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21168 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12160 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 21184 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 332 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 21200 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 166; y: 324 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21216 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12176 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 21232 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 168; y: 315 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 21248 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 168; y: 309 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21264 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12192 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 21280 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 168; y: 303 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 21296 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 168; y: 297 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21312 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12208 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 21328 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 168; y: 293 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 21344 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 168; y: 291 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21360 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12224 + hash: "c246bde0eb2b3e1797dfb770a9db78bb" } - Frame { - msec: 21376 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 168; y: 290 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 21392 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 168; y: 290 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21408 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12240 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21424 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12256 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21440 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12272 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21456 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12288 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21472 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12304 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21488 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12320 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21504 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12336 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21520 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12352 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21536 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12368 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21552 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12384 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 21568 - hash: "a76f069dfcb1af0794999c34507e190e" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 167; y: 295 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21584 - hash: "a76f069dfcb1af0794999c34507e190e" + msec: 12400 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { - type: 2 - button: 1 + type: 5 + button: 0 buttons: 1 - x: 197; y: 124 + x: 167; y: 300 modifiers: 0 sendToViewport: true } @@ -6556,19 +5036,19 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 197; y: 132 + x: 165; y: 308 modifiers: 0 sendToViewport: true } Frame { - msec: 21600 - hash: "06472b42bc00fcaf7f84cd4ac613bbd2" + msec: 12416 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 5 button: 0 buttons: 1 - x: 197; y: 146 + x: 165; y: 316 modifiers: 0 sendToViewport: true } @@ -6576,19 +5056,19 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 197; y: 164 + x: 165; y: 326 modifiers: 0 sendToViewport: true } Frame { - msec: 21616 - hash: "463fce69afc3dec181425c9adaa3e77c" + msec: 12432 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 5 button: 0 buttons: 1 - x: 197; y: 190 + x: 163; y: 336 modifiers: 0 sendToViewport: true } @@ -6596,442 +5076,512 @@ VisualTest { type: 5 button: 0 buttons: 1 - x: 195; y: 218 + x: 163; y: 346 modifiers: 0 sendToViewport: true } Frame { - msec: 21632 - hash: "9af34ff618e277eafad32e0377ecc94b" + msec: 12448 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 165; y: 356 + modifiers: 0 + sendToViewport: true } Mouse { type: 5 button: 0 buttons: 1 - x: 187; y: 250 + x: 165; y: 369 modifiers: 0 sendToViewport: true } Frame { - msec: 21648 - hash: "db4b2333630ccc4a7982361609a12837" + msec: 12464 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Mouse { type: 5 button: 0 buttons: 1 - x: 183; y: 284 + x: 165; y: 382 modifiers: 0 sendToViewport: true } Mouse { - type: 3 - button: 1 - buttons: 0 - x: 183; y: 284 + type: 5 + button: 0 + buttons: 1 + x: 167; y: 393 modifiers: 0 sendToViewport: true } Frame { - msec: 21664 - hash: "50335b19a1e210f87924d01bb343a0e0" - } - Frame { - msec: 21680 - hash: "59b4f80a7cd6b732eb26f3b4147efe7e" + msec: 12480 + image: "flickable-vertical.12.png" } - Frame { - msec: 21696 - hash: "b99cc1f07bcb0480801d4d5403372525" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 167; y: 405 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 21712 - hash: "871040b0f921646609b79828bab38949" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 167; y: 415 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21728 - hash: "2acb3d19eed000313872d5cd66765b53" + msec: 12496 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 21744 - hash: "b5431a2d2e856a726ceac2066b128f8f" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 167; y: 420 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 21760 - hash: "04047c917a95a2a3df30c14bb20601dd" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 167; y: 429 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21776 - hash: "fea7ac3d26975f438129e394c667e628" + msec: 12512 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 21792 - hash: "4db41ff05865cabc4ef288478254e633" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 167; y: 433 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21808 - hash: "e0d3737effd817a8f603eb393677b8b6" + msec: 12528 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 21824 - hash: "d4f06941d213544ddcae714ddc0b47e9" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 167; y: 433 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21840 - hash: "dbb21caf4a4c9b88563f1d0aad35f3d3" + msec: 12544 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21856 - hash: "eb9a052219c3f955f2c036834990089b" + msec: 12560 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21872 - hash: "40090a35caf674ed9c4bf1d10f9209ea" + msec: 12576 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21888 - hash: "064de0abec66d1ddcf0f6073ce7d91ef" + msec: 12592 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21904 - hash: "f407334d0b63a34657dc1306fd67aeb7" + msec: 12608 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21920 - hash: "1c0744be97c65c68ca92bd86d42c7b0e" + msec: 12624 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } Frame { - msec: 21936 - hash: "7469d4a06c5df073e22db3c905baefc1" + msec: 12640 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 21952 - hash: "35912a7e2ecc0c387fc9fb9da7201bfd" + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 145; y: 357 + modifiers: 0 + sendToViewport: true } Frame { - msec: 21968 - hash: "9f835091374f0d0d9a6996e6dad10e19" + msec: 12656 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 21984 - hash: "afade1ecbaf5f920880eaff3b3de606e" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 145; y: 350 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 22000 - hash: "9c70e8a020c8c1101b9884529cb4527f" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 145; y: 342 + modifiers: 0 + sendToViewport: true } Frame { - msec: 22016 - hash: "3e7d4dc75f85dfeb065da18ef1c102c1" + msec: 12672 + hash: "b0e76c5cfeb797888e8c032b3f2781bd" } - Frame { - msec: 22032 - hash: "16852d62a77eefccea9497ae1b09842d" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 145; y: 333 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 22048 - hash: "ea8afda6d837a98f408a7aa133494575" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 145; y: 323 + modifiers: 0 + sendToViewport: true } Frame { - msec: 22064 - hash: "666435dccf30c53eb09ea7ad8b5264a1" + msec: 12688 + hash: "7eda3c99a4c066ed00c717e33a66682c" } - Frame { - msec: 22080 - image: "flickable-vertical.22.png" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 147; y: 305 + modifiers: 0 + sendToViewport: true } Frame { - msec: 22096 - hash: "2e959bf0470bac84e2220d9e8a8bbb97" + msec: 12704 + hash: "85402c05dd1bd85316422aec2b774e4f" } - Frame { - msec: 22112 - hash: "595b6cfd559f8362b010616de4947ec6" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 147; y: 285 + modifiers: 0 + sendToViewport: true } Frame { - msec: 22128 - hash: "976dd345cc7cb4e3c09a288530d3c8af" + msec: 12720 + hash: "f8ebaae72eb98b880aaf5bb8cf517840" } - Frame { - msec: 22144 - hash: "9493e425d5cd3f9eef904a1be63f45f1" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 147; y: 275 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 22160 - hash: "0a2013afebb5e09d82633c8d8a393f01" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 147; y: 264 + modifiers: 0 + sendToViewport: true } Frame { - msec: 22176 - hash: "d8377c464bc59d95e0670d697888d804" + msec: 12736 + hash: "83ebbcd20af8178175ea72698b9bfd08" } - Frame { - msec: 22192 - hash: "52f9416973da953bd6fe55b2fe22786a" + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 145; y: 253 + modifiers: 0 + sendToViewport: true } - Frame { - msec: 22208 - hash: "23b9af0f371b7817e9ceaa1a83995d35" + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 145; y: 253 + modifiers: 0 + sendToViewport: true } Frame { - msec: 22224 - hash: "34b0e0333c91bc4533e0c01eaeb3d3f9" + msec: 12752 + hash: "a154f7125f88c25484aea9f268a10e22" } Frame { - msec: 22240 - hash: "1597b86afe2841c3bb77bb5dd6aa6803" + msec: 12768 + hash: "4a1fdbc170f98e3c438cf47526fd16a1" } Frame { - msec: 22256 - hash: "d74111814ff259fea47e1eb3b36e174b" + msec: 12784 + hash: "99228a13ebf2516199d339cc73e1358f" } Frame { - msec: 22272 - hash: "c64c46fe9cd75afbf2385241ea8e55d4" + msec: 12800 + hash: "724687b54e474e4dc53b105ed9ca2def" } Frame { - msec: 22288 - hash: "1e8740a104643fe30b0e874bbbed44ab" + msec: 12816 + hash: "4db074b34af9472a5d853928953901dc" } Frame { - msec: 22304 - hash: "ef669a8d142947463084383a6c7c7f85" + msec: 12832 + hash: "ab1acd2ba148a7830f75cbf2e09e426c" } Frame { - msec: 22320 - hash: "2314c42b5994bdbfd73eb2c3ea54626b" + msec: 12848 + hash: "04a22e2278823d9e49e524ef2d8d45c5" } Frame { - msec: 22336 - hash: "53a0694d8eee91b968bd43efe43f2c9e" + msec: 12864 + hash: "f5a658c7c2b185e250dc1b245457094b" } Frame { - msec: 22352 - hash: "be4772528f30c18193e49ae04a290af8" + msec: 12880 + hash: "bb611d6a086b0eedb37111d7575847df" } Frame { - msec: 22368 - hash: "a0b0877ab92a0323e35fdb7beb602dee" + msec: 12896 + hash: "04e9e40c43a51b704378871710ad9f8b" } Frame { - msec: 22384 - hash: "a0e299fb4ba811a0b22fb62c222cb86c" + msec: 12912 + hash: "7ff5ba1e30f93de2dd3cad953d3d60fb" } Frame { - msec: 22400 - hash: "2562bc9c9aa60a48b6ca00333f60d163" + msec: 12928 + hash: "f85e46ed733dbbec83509d6a3b4c72a0" } Frame { - msec: 22416 - hash: "486b45c385d88d6f054fa6308b55f2ac" + msec: 12944 + hash: "2f08cc1d92102138d6a4945116727be5" } Frame { - msec: 22432 - hash: "86502af668ed6336dce8fe329e3408a6" + msec: 12960 + hash: "864a68a8519e58081205d74b4184498b" } Frame { - msec: 22448 - hash: "2a79a6530a07f00810310117d00d28ed" + msec: 12976 + hash: "1fb6a1ecbde71566486a1310a5ab9c17" } Frame { - msec: 22464 - hash: "94a5fce3e0c3b219e0d807bfcade11e8" + msec: 12992 + hash: "5ab977d88d850d94340bfc0c15137486" } Frame { - msec: 22480 - hash: "94a5fce3e0c3b219e0d807bfcade11e8" + msec: 13008 + hash: "79bafb9b957d88f938c977b37e1d8b9c" } Frame { - msec: 22496 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13024 + hash: "fa5b1cf343b45407f6cee7ce38ca9eb0" } Frame { - msec: 22512 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13040 + hash: "1147ff69795a65878ffea7bed4b9a93f" } Frame { - msec: 22528 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13056 + hash: "08ad4cd6fbdba8c98dfbc096ab91ebd2" } Frame { - msec: 22544 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13072 + hash: "3ee0c33a1a80b8cad7ec525b8b16cb70" } Frame { - msec: 22560 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13088 + hash: "cabd708943ce14892bb69aa22dc4a2b5" } Frame { - msec: 22576 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13104 + hash: "86a7afcbbd67b50b7bf3ef85f1843e3d" } Frame { - msec: 22592 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13120 + hash: "111f0161479cf82c08dd918b6ece8e45" } Frame { - msec: 22608 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13136 + hash: "33da9e73f1521297c3d250f00cda20cd" } Frame { - msec: 22624 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13152 + hash: "72f166ddddac3962b39cf4283b4554f3" } Frame { - msec: 22640 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13168 + hash: "1ee57340798998f95114d929d2702ce6" } Frame { - msec: 22656 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13184 + hash: "eb036d3246a2361aa1b11c8408f9eb1a" } Frame { - msec: 22672 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13200 + hash: "af73e799d7cb536d0ba6db985396c597" } Frame { - msec: 22688 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13216 + hash: "5d84accad1fa5d421bc3effb148d81a6" } Frame { - msec: 22704 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13232 + hash: "d752289e96eb2398096297234b6b88f6" } Frame { - msec: 22720 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13248 + hash: "53970a50451c182f672d0ddcd572279d" } Frame { - msec: 22736 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13264 + hash: "6323f61cc6966e75be10a49aeaab9a3e" } Frame { - msec: 22752 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13280 + hash: "fb679e5ad89681f482d94b4dab80e3bb" } Frame { - msec: 22768 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13296 + hash: "1788a7f680bbcbcedb2583cead6ced57" } Frame { - msec: 22784 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13312 + hash: "b325580b9f88dd5490d914f580b9d341" } Frame { - msec: 22800 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13328 + hash: "8fa25fff546b060a92b60e6fbb3b2fa8" } Frame { - msec: 22816 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13344 + hash: "2fb5ee5e86745910b46d98943af4c9d5" } Frame { - msec: 22832 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13360 + hash: "7fcdce21e2e1b14501e79d9c716b0011" } Frame { - msec: 22848 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13376 + hash: "bf79452e478bfe3374d4c275fc3b42fb" } Frame { - msec: 22864 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13392 + hash: "1069c4aff64ab8193798965af7a6988e" } Frame { - msec: 22880 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13408 + hash: "3031ea711d0880a2fafd557f23c38cc0" } Frame { - msec: 22896 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13424 + hash: "5955c49ae05578f6a9b023a1f6c8301b" } Frame { - msec: 22912 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13440 + image: "flickable-vertical.13.png" } Frame { - msec: 22928 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13456 + hash: "af2fc9780356c01d44e7e918643e334b" } Frame { - msec: 22944 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13472 + hash: "b28600a5433e08299bf5ab3c789a4d5a" } Frame { - msec: 22960 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13488 + hash: "159dab2806a6fbac4f090c4ca029433e" } Frame { - msec: 22976 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13504 + hash: "b1937894776d083eb38f105901344d55" } Frame { - msec: 22992 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13520 + hash: "2420c1280e6520e35f30879fe139ed77" } Frame { - msec: 23008 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13536 + hash: "ba0018197140b398caa05eada958e2ce" } Frame { - msec: 23024 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13552 + hash: "b04094c2734f71e17a2d0091b3c85565" } Frame { - msec: 23040 - image: "flickable-vertical.23.png" + msec: 13568 + hash: "2ff995d15a49fcbd0adfcb970135ebae" } Frame { - msec: 23056 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13584 + hash: "9b10dc438e944a8711aef1f45c912538" } Frame { - msec: 23072 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13600 + hash: "c397307c99d125789e03b0239c6d7130" } Frame { - msec: 23088 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13616 + hash: "aa6fe1c4d968bbf381f38c09e9c26eea" } Frame { - msec: 23104 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13632 + hash: "8d586f001d41ccde450a4ce88a8ef89a" } Frame { - msec: 23120 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13648 + hash: "80f98a4935097ec76bd863ffe4e3a441" } Frame { - msec: 23136 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13664 + hash: "620b4eddf956d85701387a114ec228fc" } Frame { - msec: 23152 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13680 + hash: "dc56a6cafe22e56d6d5efee62c324784" } Frame { - msec: 23168 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13696 + hash: "8fcf5f5b350ffc80cde03b044dc81e57" } Frame { - msec: 23184 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13712 + hash: "5bc02d5bfcc6f4a9349623139663e664" } Frame { - msec: 23200 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13728 + hash: "6a71734b1a38cdbacf8447a41481d67c" } Frame { - msec: 23216 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13744 + hash: "34b069ef8080e15db86f66983f18c58d" } Frame { - msec: 23232 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13760 + hash: "0131b30e21796e0ea9ad1484ac7ac6e4" } Frame { - msec: 23248 - hash: "8443c45791c906a9fe23831844f48a1c" + msec: 13776 + hash: "0131b30e21796e0ea9ad1484ac7ac6e4" } - Frame { - msec: 23264 - hash: "8443c45791c906a9fe23831844f48a1c +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml index 5f43f95..5c8ff52 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeflickable/flickable-vertical.qml @@ -85,6 +85,6 @@ Rectangle { height: 50 x: 200 y: parent.height - 50 - color: blue + color: "blue" } } -- cgit v0.12 From b6ee57e14e145d9caa3f572d55447ec92f78cea4 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 11:39:07 +1000 Subject: Mark qdeclarativegridview autotests as expect-fail Includes the task numbers of the bugs, for later processing. Task-number: QTBUG-14792 --- .../qdeclarativegridview/data/gridview.0.png | Bin 1303 -> 0 bytes .../qdeclarativegridview/data/gridview.1.png | Bin 1317 -> 0 bytes .../qdeclarativegridview/data/gridview.2.png | Bin 1318 -> 0 bytes .../qdeclarativegridview/data/gridview.3.png | Bin 1306 -> 0 bytes .../qdeclarativegridview/data/gridview.4.png | Bin 1308 -> 0 bytes .../qdeclarativegridview/data/gridview.5.png | Bin 1303 -> 0 bytes .../qdeclarativegridview/data/gridview.6.png | Bin 1323 -> 0 bytes .../qdeclarativegridview/data/gridview.7.png | Bin 1325 -> 0 bytes .../qdeclarativegridview/data/gridview.8.png | Bin 1346 -> 0 bytes .../qdeclarativegridview/data/gridview.9.png | Bin 1303 -> 0 bytes .../qdeclarativegridview/data/gridview.qml | 2859 -------------------- .../qdeclarativegridview/data/gridview2.0.png | Bin 1310 -> 0 bytes .../qdeclarativegridview/data/gridview2.1.png | Bin 1322 -> 0 bytes .../qdeclarativegridview/data/gridview2.10.png | Bin 1313 -> 0 bytes .../qdeclarativegridview/data/gridview2.2.png | Bin 1341 -> 0 bytes .../qdeclarativegridview/data/gridview2.3.png | Bin 1368 -> 0 bytes .../qdeclarativegridview/data/gridview2.4.png | Bin 1319 -> 0 bytes .../qdeclarativegridview/data/gridview2.5.png | Bin 1352 -> 0 bytes .../qdeclarativegridview/data/gridview2.6.png | Bin 1309 -> 0 bytes .../qdeclarativegridview/data/gridview2.7.png | Bin 1347 -> 0 bytes .../qdeclarativegridview/data/gridview2.8.png | Bin 1310 -> 0 bytes .../qdeclarativegridview/data/gridview2.9.png | Bin 1354 -> 0 bytes .../qdeclarativegridview/data/gridview2.qml | 2479 ----------------- .../qmlvisual/qdeclarativegridview/gridview.qml | 2 + .../qmlvisual/qdeclarativegridview/gridview2.qml | 2 + 25 files changed, 4 insertions(+), 5338 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.5.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.6.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.7.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.8.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.9.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.10.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.5.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.6.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.7.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.8.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.9.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.0.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.0.png deleted file mode 100644 index 6c82777..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.1.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.1.png deleted file mode 100644 index 07b1f7c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.2.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.2.png deleted file mode 100644 index f2f08c0..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.3.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.3.png deleted file mode 100644 index 08649f9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.4.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.4.png deleted file mode 100644 index f9c2f17..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.5.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.5.png deleted file mode 100644 index 52ec0bd..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.6.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.6.png deleted file mode 100644 index 3fe25be..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.7.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.7.png deleted file mode 100644 index 4cc12a6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.8.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.8.png deleted file mode 100644 index 2267f23..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.9.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.9.png deleted file mode 100644 index 6c82777..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml deleted file mode 100644 index 67aa10a..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview.qml +++ /dev/null @@ -1,2859 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 32 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 48 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 64 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 80 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 96 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 112 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 128 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 144 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 160 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 176 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 192 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 208 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 224 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 240 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 256 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 272 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 288 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 304 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 320 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 336 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 352 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 368 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 384 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 400 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 416 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Frame { - msec: 432 - hash: "c33447c78ea64452ec3cd1696fb502eb" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 448 - hash: "96ad89eafa7f99269518a192573af91b" - } - Frame { - msec: 464 - hash: "735b00b968d0e2ea1f34cc0bdc028a8e" - } - Frame { - msec: 480 - hash: "ce37c8e15fbb1aea72aff9629683fa96" - } - Frame { - msec: 496 - hash: "a3f2471ef4ceac77a1c20ac327550d8d" - } - Frame { - msec: 512 - hash: "28f120bd3bda9552dbc8cc908409c67d" - } - Frame { - msec: 528 - hash: "f21cf0ed746fa48e67dc90c70c5bbae8" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 544 - hash: "485d55730366b68e01582879f6970fa1" - } - Frame { - msec: 560 - hash: "700e53c78b28993dce5dafb4035f4760" - } - Frame { - msec: 576 - hash: "1e538e175a5e402e2334cf354392e8a7" - } - Frame { - msec: 592 - hash: "0fbfba93eebaf05ae60067b365b6b4bc" - } - Frame { - msec: 608 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 624 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 640 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 656 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 672 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 688 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Frame { - msec: 704 - hash: "7b1893397b76b0c95094eeca1dd21446" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 720 - hash: "25e48099a8194ed2674651818d854c61" - } - Frame { - msec: 736 - hash: "b75d02dfc238ba2292306ca1421279c3" - } - Frame { - msec: 752 - hash: "7e48b7d9c1291b4e438c81f44228d8ad" - } - Frame { - msec: 768 - hash: "fe4b009abe081a6eaeab6ef9e996f3fd" - } - Frame { - msec: 784 - hash: "edea8c305fe88708dbafc03e427caa09" - } - Frame { - msec: 800 - hash: "7b58803f12d0ab893acf539799d79e31" - } - Frame { - msec: 816 - hash: "9b56c3d1d140114dcc57d0a8568e9b95" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 832 - hash: "35e38e273dbc8e565917b21d00fc1530" - } - Frame { - msec: 848 - hash: "116e294391333e8780daeca54c3d51ea" - } - Frame { - msec: 864 - hash: "6219676215f82540d7a53b2a8aa60279" - } - Frame { - msec: 880 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 896 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 912 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 928 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 944 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 960 - image: "gridview.0.png" - } - Frame { - msec: 976 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 992 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1008 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1024 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1040 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1056 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1072 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1088 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1104 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1120 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1136 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 1152 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1168 - hash: "2667c2596de97dc15353158eba03495f" - } - Frame { - msec: 1184 - hash: "6a7b64e1427dcb7e438aa09a739cbc7b" - } - Frame { - msec: 1200 - hash: "5bad6dc745958f5827403ea593c78752" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1216 - hash: "b393401219ada7d094a451dba8af3f1a" - } - Frame { - msec: 1232 - hash: "ba656452f8adf3d1ca7db9286274c37f" - } - Frame { - msec: 1248 - hash: "1e9725c8c364a491f34035fad1f77c63" - } - Frame { - msec: 1264 - hash: "a0aef0b65446dec0673b5cec3a260390" - } - Frame { - msec: 1280 - hash: "d60c11a5d376af0831d6f05f2a839a92" - } - Frame { - msec: 1296 - hash: "1dd2c456c6ee9cc8f9be0e9f3617d44b" - } - Frame { - msec: 1312 - hash: "56208e6551e2f4202bab2d62a1cf46a2" - } - Frame { - msec: 1328 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1344 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1360 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1376 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1392 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1408 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1424 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1440 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1456 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1472 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1488 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1504 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1520 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1536 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1552 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1568 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1584 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1600 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1616 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1632 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Frame { - msec: 1648 - hash: "caa3c1a106d549e6bb94a1746bd7a53c" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1664 - hash: "f0f00d22d15ed9828db7b5f3a3669fe9" - } - Frame { - msec: 1680 - hash: "153e7984089530bbd052c9e4f62eb14c" - } - Frame { - msec: 1696 - hash: "0525d40cc58d054a3abd7ee2486576f8" - } - Frame { - msec: 1712 - hash: "8c23d5245774ab5252c98c19c33f8171" - } - Frame { - msec: 1728 - hash: "5ca243794d1350f04cf973d4bfc8ab89" - } - Frame { - msec: 1744 - hash: "d19b7f4c0897aba498e122d83b4cbbf1" - } - Frame { - msec: 1760 - hash: "99e41460dd8efc6e5c3faf54b14c3d43" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1776 - hash: "703469f8b133156ed3aabe02762d66c3" - } - Frame { - msec: 1792 - hash: "1cc2c383e988048db76a80d8d7f5a0e2" - } - Frame { - msec: 1808 - hash: "8e87117c19eb9d6e600c44e0f3869ae1" - } - Frame { - msec: 1824 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1840 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1856 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1872 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1888 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1904 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1920 - image: "gridview.1.png" - } - Frame { - msec: 1936 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1952 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1968 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Frame { - msec: 1984 - hash: "8304d2432168a2ea8a887d9a135b40b4" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2000 - hash: "4924037ce643d0748b8b2c666e61fd62" - } - Frame { - msec: 2016 - hash: "ef9750584e669a8b2d415d13854e12a6" - } - Frame { - msec: 2032 - hash: "69937eacef6e6b11ad1d5741c69a1faa" - } - Frame { - msec: 2048 - hash: "a1bd870fffd95a0604dd8e170e571632" - } - Frame { - msec: 2064 - hash: "a3a72386594aacc88977cdaa6441df48" - } - Frame { - msec: 2080 - hash: "6d8e89de38d52f0f0f871dfa18361cb5" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2096 - hash: "96cfb1eb6893fac86c9434d1ffb82fcb" - } - Frame { - msec: 2112 - hash: "5e11df1660634ff317be474118174ec5" - } - Frame { - msec: 2128 - hash: "2eb75858b50c3a9a80673ab89014ed63" - } - Frame { - msec: 2144 - hash: "3ff5d66f7902af92d49ebebf04d16c26" - } - Frame { - msec: 2160 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2176 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2192 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2208 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2224 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2240 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2256 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2272 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2288 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2304 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2320 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Frame { - msec: 2336 - hash: "570da61e2d48acd11474fe005110ab4b" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2352 - hash: "efeda5b2d97e1b7c22e2308250501cb7" - } - Frame { - msec: 2368 - hash: "d6158379b699279f66b94a8418e53af1" - } - Frame { - msec: 2384 - hash: "ab960b0669fa594e0552df623a9136ea" - } - Frame { - msec: 2400 - hash: "0ebf6be1305ee1eb8740f4d0365ef4c5" - } - Frame { - msec: 2416 - hash: "46cde47dffc6f2687c8c643eca09b95d" - } - Frame { - msec: 2432 - hash: "2b8698ce02a6964115d960ae19f40c37" - } - Frame { - msec: 2448 - hash: "ff1e7d800bb27b41710c50554adc1091" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2464 - hash: "5837b3aca09038cae23dcb149acc8b0b" - } - Frame { - msec: 2480 - hash: "dbe7c571cdbdb9de4fd01faa6d5374cf" - } - Frame { - msec: 2496 - hash: "f431abcaf05f49ead909296d7649f8a9" - } - Frame { - msec: 2512 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2528 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2544 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2560 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2576 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2592 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2608 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2624 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2640 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2656 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2672 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2688 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2704 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2720 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2736 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2752 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2768 - hash: "043583b19c921740dbc990afd4f508ed" - } - Frame { - msec: 2784 - hash: "043583b19c921740dbc990afd4f508ed" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2800 - hash: "4f2fafdb59db544352e3067d67c0a714" - } - Frame { - msec: 2816 - hash: "4dcd4cdf6f4e305732185ec52cd2f2f6" - } - Frame { - msec: 2832 - hash: "dfd3c29b0520edbbee57dfacfa7e2b30" - } - Frame { - msec: 2848 - hash: "257d3d8bcf78671d35a898befec091cb" - } - Frame { - msec: 2864 - hash: "20e89c544284603943396694abe86756" - } - Frame { - msec: 2880 - image: "gridview.2.png" - } - Frame { - msec: 2896 - hash: "b88c6af89423b32b3a4413035711df03" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2912 - hash: "e34de13af44c449c9ecc86e06ce01ed2" - } - Frame { - msec: 2928 - hash: "98ffe81129aa7cc7325764221f1dae59" - } - Frame { - msec: 2944 - hash: "db2d545de9879362738e71a02a3d1d26" - } - Frame { - msec: 2960 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 2976 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 2992 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3008 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3024 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3040 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3056 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3072 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3088 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Frame { - msec: 3104 - hash: "e67ae32a47213b360c1a445bf645dde2" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3120 - hash: "02d8c90faf56c65252e4f938944bda7b" - } - Frame { - msec: 3136 - hash: "a32994e2320e357241f63b956b6db236" - } - Frame { - msec: 3152 - hash: "9ada466c26c217adbcd7a93df264ed75" - } - Frame { - msec: 3168 - hash: "79d1a3489be95d113e8c611a2ba63456" - } - Frame { - msec: 3184 - hash: "d3aa82455c4ae3ac25097354e132a30f" - } - Frame { - msec: 3200 - hash: "62d12e5933ed4ed048ccafd229f4b2b7" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3216 - hash: "5bc4ac94ae20e425084d0811dee1ba08" - } - Frame { - msec: 3232 - hash: "6d5113e3732dc7a9172eea3667a01f7b" - } - Frame { - msec: 3248 - hash: "e435a2588b25d3336f290331931f5981" - } - Frame { - msec: 3264 - hash: "bce201adbeb319b181cce139f179d7f0" - } - Frame { - msec: 3280 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3296 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3312 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3328 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3344 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3360 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3376 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3392 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3408 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3424 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3440 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Frame { - msec: 3456 - hash: "5fa3ec31176bed2de8cb076b87e0be74" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3472 - hash: "8f0f3cd35ae92047f23084f447046eb8" - } - Frame { - msec: 3488 - hash: "ceb12e6c5e9f0566039040d9f3ff587f" - } - Frame { - msec: 3504 - hash: "dfd0c89c3ea73aceefcdafa71609c720" - } - Frame { - msec: 3520 - hash: "8d8ed1a9dc6a9f74dfc81b79f02af4c5" - } - Frame { - msec: 3536 - hash: "d450bd62e03e1e4c7cb66e98ece05f97" - } - Frame { - msec: 3552 - hash: "d1ece2210cd24eedd5361e5c3a162236" - } - Frame { - msec: 3568 - hash: "77589e48b9db95e702055753046319e5" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3584 - hash: "7793263ecb831a1e63fbd76c8addde03" - } - Frame { - msec: 3600 - hash: "bfa9675f981c37fed27dea100226f61a" - } - Frame { - msec: 3616 - hash: "9780849fe8abd22c32ccafcdd46b0d65" - } - Frame { - msec: 3632 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3648 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3664 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3680 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3696 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3712 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3728 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3744 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3760 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3776 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3792 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3808 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3824 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3840 - image: "gridview.3.png" - } - Frame { - msec: 3856 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3872 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3888 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3904 - hash: "e63d987ba303a42046827f14941b444a" - } - Frame { - msec: 3920 - hash: "e63d987ba303a42046827f14941b444a" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3936 - hash: "a61dbcb7d914afe34009085bf37fb8e2" - } - Frame { - msec: 3952 - hash: "89175b83b4f7ee4b5d99219cdc97aa59" - } - Frame { - msec: 3968 - hash: "f524421286503f6175e4ad71dd89145f" - } - Frame { - msec: 3984 - hash: "ca5af7d98a008eccba1e21be0da61f3c" - } - Frame { - msec: 4000 - hash: "77c19e7e17e00787ff0d7a4e7bad7bc8" - } - Frame { - msec: 4016 - hash: "04c8db761e324101ad92e0ac9ceed7d4" - } - Frame { - msec: 4032 - hash: "97a3dcb81349efab6b44d458e83ce5c4" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4048 - hash: "e86ebc276b88705c97cc9efb66ccc6b2" - } - Frame { - msec: 4064 - hash: "a134bbfd14879f13b288a04d23382348" - } - Frame { - msec: 4080 - hash: "9530ad3f58ad1c66401572869f7d91bc" - } - Frame { - msec: 4096 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4112 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4128 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4144 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4160 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4176 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4192 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4208 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Frame { - msec: 4224 - hash: "db3d030de94b19ea1db5c60be7c7ca5c" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4240 - hash: "980e0fa84fd3bab496623936f5f220a2" - } - Frame { - msec: 4256 - hash: "ed3268911723d664699bbc31317befc1" - } - Frame { - msec: 4272 - hash: "3bfda4b3b0b2d2a97ec1c0b5b3f4da63" - } - Frame { - msec: 4288 - hash: "1616c6def28659d51905564ff83cc112" - } - Frame { - msec: 4304 - hash: "68342f34c18956d3a093f8eeeae6977e" - } - Frame { - msec: 4320 - hash: "ac1b12959e9055a28fe2bda0a12b75bc" - } - Frame { - msec: 4336 - hash: "009b85ff6b86e418c78ed33a5e88d3f1" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4352 - hash: "59753bc7dc69767fe2109fdc41f20dae" - } - Frame { - msec: 4368 - hash: "1c87d3d8c8d564d4d95a26f57fd28f38" - } - Frame { - msec: 4384 - hash: "4e43b7b6787002c9013010dd74c83f49" - } - Frame { - msec: 4400 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4416 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4432 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4448 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4464 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4480 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4496 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4512 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4528 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4544 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4560 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4576 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Frame { - msec: 4592 - hash: "2476aa1a7191b485a76c76e98c9be2b0" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4608 - hash: "84de5b5e8b0fba190a783c72967661c7" - } - Frame { - msec: 4624 - hash: "60b696f4913379d28f300fd1b531c6cb" - } - Frame { - msec: 4640 - hash: "d01e651d9094332fd82ad1cea3e93e9d" - } - Frame { - msec: 4656 - hash: "87be4cd7c894b03b2b64c996e915d71f" - } - Frame { - msec: 4672 - hash: "b07fccb0c5565d2feed5a9fcdf8acead" - } - Frame { - msec: 4688 - hash: "3dca3165fd34be549d21fb6c414c67d8" - } - Frame { - msec: 4704 - hash: "5f69f3298f8ca73fa9b3b6e630c60186" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4720 - hash: "d7f41e9a29d550a7d9a41bb947569abe" - } - Frame { - msec: 4736 - hash: "4ede2e90ad216a2d44580c50a25dea23" - } - Frame { - msec: 4752 - hash: "9b339845ee588b789dc9095c272e0bdf" - } - Frame { - msec: 4768 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4784 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4800 - image: "gridview.4.png" - } - Frame { - msec: 4816 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4832 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4848 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4864 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4880 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4896 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4912 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4928 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4944 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4960 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4976 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 4992 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5008 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5024 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5040 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5056 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5072 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5088 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5104 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5120 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5136 - hash: "9cdea4790972efaecabd52b435107e69" - } - Frame { - msec: 5152 - hash: "9cdea4790972efaecabd52b435107e69" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5168 - hash: "d6f0a6d7604bad811eeba13fd7c45368" - } - Frame { - msec: 5184 - hash: "5f92e1531a3f6c21ec82e3c908167fc7" - } - Frame { - msec: 5200 - hash: "5214e99ff052dcdc8f85bad29de92e03" - } - Frame { - msec: 5216 - hash: "d4abed9f0f1115c9a45b0b9b4f54754e" - } - Frame { - msec: 5232 - hash: "cfae8a0281e704b0e62f6bf31b32800f" - } - Frame { - msec: 5248 - hash: "c203f0674596ae690bf19f2d49be62ac" - } - Frame { - msec: 5264 - hash: "2e2c7e05aade104bdc4f6c489b6f0601" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5280 - hash: "b4b2148b0557dcab3a441165e5e4de5f" - } - Frame { - msec: 5296 - hash: "c5e791d27a42a63d25cdbd492b4af29a" - } - Frame { - msec: 5312 - hash: "0f94ebcb407f8e6ae263bd954f2c8177" - } - Frame { - msec: 5328 - hash: "d9b56b817a411812789881697a28fe4c" - } - Frame { - msec: 5344 - hash: "d9b56b817a411812789881697a28fe4c" - } - Frame { - msec: 5360 - hash: "d9b56b817a411812789881697a28fe4c" - } - Frame { - msec: 5376 - hash: "d9b56b817a411812789881697a28fe4c" - } - Frame { - msec: 5392 - hash: "d9b56b817a411812789881697a28fe4c" - } - Frame { - msec: 5408 - hash: "d9b56b817a411812789881697a28fe4c" - } - Frame { - msec: 5424 - hash: "d9b56b817a411812789881697a28fe4c" - } - Frame { - msec: 5440 - hash: "d9b56b817a411812789881697a28fe4c" - } - Frame { - msec: 5456 - hash: "d9b56b817a411812789881697a28fe4c" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5472 - hash: "6fdfe69e377da72e04dc130f5677ed2c" - } - Frame { - msec: 5488 - hash: "c041d26d43766fa1735f2ada2a43225b" - } - Frame { - msec: 5504 - hash: "aa62dbd6c6256665ee1b4ef468607978" - } - Frame { - msec: 5520 - hash: "987fcdf6483a83b1242053f4e7fb7a26" - } - Frame { - msec: 5536 - hash: "fbde70c34709b68eb22f5460a8815fba" - } - Frame { - msec: 5552 - hash: "911ddc838ebaf5ade1bb026dff2741ba" - } - Frame { - msec: 5568 - hash: "120bbf35b2a3b756bdeaea0df43e49b2" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5584 - hash: "ea93e33c079d6dc5fb18c69fb4fed441" - } - Frame { - msec: 5600 - hash: "b9ac8ab01cb59b1fee11967bdb6d2dd6" - } - Frame { - msec: 5616 - hash: "3ff266bf29cbcaa30bc1e7af5dd9866b" - } - Frame { - msec: 5632 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5648 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5664 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5680 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5696 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5712 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5728 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5744 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5760 - image: "gridview.5.png" - } - Frame { - msec: 5776 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5792 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Frame { - msec: 5808 - hash: "edd6c3a9493a63674e2d7af5f3e8467e" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5824 - hash: "de1f83d25751639dff42f1755a6534c3" - } - Frame { - msec: 5840 - hash: "edefdea8b2461d03fb97cf5ed66e9b6d" - } - Frame { - msec: 5856 - hash: "cef1886397e3932a511f37571b5011f4" - } - Frame { - msec: 5872 - hash: "05589ad354314d9e04ef90c1addd99f5" - } - Frame { - msec: 5888 - hash: "ff88b52e3755b9b4785d2719ddd4f090" - } - Frame { - msec: 5904 - hash: "f59edc3016b177a2e8faa6612d718b17" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 5920 - hash: "dc673a7cdd927f70b28ebcfe51cd3d89" - } - Frame { - msec: 5936 - hash: "3abec0da85fb663e63ab22188e092827" - } - Frame { - msec: 5952 - hash: "50c2c8ac68cafad7c47b576cd8f4a037" - } - Frame { - msec: 5968 - hash: "06c31b861e2b96e6595b2244d7b3f4d5" - } - Frame { - msec: 5984 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6000 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6016 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6032 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6048 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6064 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6080 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6096 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6112 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6128 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6144 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6160 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6176 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6192 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6208 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6224 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6240 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6256 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6272 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6288 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6304 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6320 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6336 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6352 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6368 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6384 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6400 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Frame { - msec: 6416 - hash: "0aa7ce5ba9c875619a6e4629a0eb4065" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 6432 - hash: "7f52a770775c19e10784b4c5f7874210" - } - Frame { - msec: 6448 - hash: "827cfb74286a2a80aca8b6c5277d6cfd" - } - Frame { - msec: 6464 - hash: "8399231eda9b66821d43a3d8c4c7d645" - } - Frame { - msec: 6480 - hash: "fc163583671f3c4023361460b436c895" - } - Frame { - msec: 6496 - hash: "893dea6496c95c32095ad1d673e500c2" - } - Frame { - msec: 6512 - hash: "808c7403b2cdcc882059da56a2f806fe" - } - Frame { - msec: 6528 - hash: "7466b2e5b86ba8ad46be75818659786c" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 6544 - hash: "dd2561cd780e24401130305d47757a53" - } - Frame { - msec: 6560 - hash: "bee89299532d43fc3e6c3e69c343b381" - } - Frame { - msec: 6576 - hash: "94f8474aedee94098592c05d8fc7d868" - } - Frame { - msec: 6592 - hash: "b6ee51bfa4d4ab7a83cca5c18453f0b8" - } - Frame { - msec: 6608 - hash: "b6ee51bfa4d4ab7a83cca5c18453f0b8" - } - Frame { - msec: 6624 - hash: "b6ee51bfa4d4ab7a83cca5c18453f0b8" - } - Frame { - msec: 6640 - hash: "b6ee51bfa4d4ab7a83cca5c18453f0b8" - } - Frame { - msec: 6656 - hash: "b6ee51bfa4d4ab7a83cca5c18453f0b8" - } - Frame { - msec: 6672 - hash: "b6ee51bfa4d4ab7a83cca5c18453f0b8" - } - Frame { - msec: 6688 - hash: "b6ee51bfa4d4ab7a83cca5c18453f0b8" - } - Frame { - msec: 6704 - hash: "b6ee51bfa4d4ab7a83cca5c18453f0b8" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 6720 - image: "gridview.6.png" - } - Frame { - msec: 6736 - hash: "ccd58be20d47422121d6ef799b927a7a" - } - Frame { - msec: 6752 - hash: "e090c7f39649786a1796870e25bd0f0d" - } - Frame { - msec: 6768 - hash: "acf3dcd9f4a869169dbc1ae7fe60e9d0" - } - Frame { - msec: 6784 - hash: "51795e9a720845e8305d23507785e1ca" - } - Frame { - msec: 6800 - hash: "0d34a43e177e6b73e2ff9155747d0385" - } - Frame { - msec: 6816 - hash: "1876c3cdffc1af01da1aaa0ac636d0a8" - } - Frame { - msec: 6832 - hash: "3131296b6edf4190520e2cdb3f8b936e" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 6848 - hash: "ee92f0a764e5081b130e205a5c362b07" - } - Frame { - msec: 6864 - hash: "8737ea2c60aeb215228c00a7fddd1baa" - } - Frame { - msec: 6880 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 6896 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 6912 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 6928 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 6944 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 6960 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 6976 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 6992 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7008 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7024 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 7040 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7056 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7072 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7088 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7104 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7120 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7136 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7152 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 7168 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7184 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7200 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7216 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7232 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7248 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7264 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7280 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7296 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7312 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7328 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7344 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7360 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7376 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7392 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7408 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7424 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7440 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7456 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7472 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7488 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7504 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7520 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7536 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7552 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7568 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7584 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 7600 - hash: "ac036f1f5c5ae23ddfca3060dff83f15" - } - Frame { - msec: 7616 - hash: "eb0d1be15f63af6eaf6634b02e5f240a" - } - Frame { - msec: 7632 - hash: "2423c305bebb3449e87c78e8fb447c88" - } - Frame { - msec: 7648 - hash: "f0ede6ea85647728db80878b3e525edc" - } - Frame { - msec: 7664 - hash: "387d127b2b000dc344ee4768cf2d29b2" - } - Frame { - msec: 7680 - image: "gridview.7.png" - } - Frame { - msec: 7696 - hash: "1d0d8100e994c16d7973ad9a97b0068f" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 7712 - hash: "95fb4a6d0331ffc4773e39ec8c3e6511" - } - Frame { - msec: 7728 - hash: "34738f16150228d971972833d4bd5c8f" - } - Frame { - msec: 7744 - hash: "9b71c8dacc530f32d7c6f409928caf5c" - } - Frame { - msec: 7760 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7776 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7792 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7808 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7824 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7840 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7856 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7872 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7888 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7904 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7920 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7936 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7952 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 7968 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 7984 - hash: "831efd0970c5c29fbe10b3be7707f915" - } - Frame { - msec: 8000 - hash: "0587fc809c38c3bbe1fbac2960596974" - } - Frame { - msec: 8016 - hash: "d20eba806cf4730a850db4c095fa36f9" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8032 - hash: "c1663e75ba05b341e1e970a451958ea0" - } - Frame { - msec: 8048 - hash: "ea40cc33b689d6b42fc5a69fa30178e4" - } - Frame { - msec: 8064 - hash: "a07a1c61de1813158ff743cd326ee427" - } - Frame { - msec: 8080 - hash: "6dfddaa340df8999ca77f6a6e4c6c3ce" - } - Frame { - msec: 8096 - hash: "76ca40bb169c1ddc291847d4be2d38d7" - } - Frame { - msec: 8112 - hash: "e44778541b76208981a3944a64235cac" - } - Frame { - msec: 8128 - hash: "fdf45ea650d31957cc675c3bec8bf53e" - } - Frame { - msec: 8144 - hash: "b78cdb727535ab7e567af08abf25e64c" - } - Frame { - msec: 8160 - hash: "b78cdb727535ab7e567af08abf25e64c" - } - Frame { - msec: 8176 - hash: "b78cdb727535ab7e567af08abf25e64c" - } - Frame { - msec: 8192 - hash: "b78cdb727535ab7e567af08abf25e64c" - } - Frame { - msec: 8208 - hash: "b78cdb727535ab7e567af08abf25e64c" - } - Frame { - msec: 8224 - hash: "b78cdb727535ab7e567af08abf25e64c" - } - Frame { - msec: 8240 - hash: "b78cdb727535ab7e567af08abf25e64c" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8256 - hash: "b78cdb727535ab7e567af08abf25e64c" - } - Frame { - msec: 8272 - hash: "338481e6390f2a61e975084c16427584" - } - Frame { - msec: 8288 - hash: "8923c45c23b1f4250b7d1e483b07a4da" - } - Frame { - msec: 8304 - hash: "b21de834906d0eecea985561e2e41e4f" - } - Frame { - msec: 8320 - hash: "a8c9761cfb20631520ed890cd2648c4b" - } - Frame { - msec: 8336 - hash: "abf96a042ef12190bc48ff49732ef55a" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8352 - hash: "5b9506dfb038cd26dfc81ecd2406ada9" - } - Frame { - msec: 8368 - hash: "be75b8d39f81b2fdaff01469bfc67d4a" - } - Frame { - msec: 8384 - hash: "488aa2977f349df82b5f6ae5e3619d35" - } - Frame { - msec: 8400 - hash: "d69f17f0ce8537511353d20b59d20de0" - } - Frame { - msec: 8416 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8432 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8448 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8464 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8480 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8496 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8512 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8528 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8544 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8560 - hash: "7647efcc0152cc3d6544106f969ace26" - } - Frame { - msec: 8576 - hash: "8f74d33bf95cbf37fdb4521c69373a64" - } - Frame { - msec: 8592 - hash: "e33bb4cd12790c9d9992efdd3e23bee9" - } - Frame { - msec: 8608 - hash: "36f32e34b4093091c4707f26c52896ad" - } - Frame { - msec: 8624 - hash: "5ab5e142f8dc883287c116cedbacfd55" - } - Frame { - msec: 8640 - image: "gridview.8.png" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8656 - hash: "c74212e45a6c4b6a18caeb6a22350609" - } - Frame { - msec: 8672 - hash: "8919643a7d13677dd902941860093209" - } - Frame { - msec: 8688 - hash: "6f2ab4400fadf51b994351f0975e31fc" - } - Frame { - msec: 8704 - hash: "4798559ce6f9bd7455ed5385d0030763" - } - Frame { - msec: 8720 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8736 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8752 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8768 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8784 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8800 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8816 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8832 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8848 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8864 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8880 - hash: "72759bd1e2618c61c42bbe4de3ad3a96" - } - Frame { - msec: 8896 - hash: "fac81cf6f45cb47abc1fa36d23e39d34" - } - Frame { - msec: 8912 - hash: "862f4deee01183fd38b094da59048b23" - } - Frame { - msec: 8928 - hash: "2f3b147221da30d8857d25fc788b3eac" - } - Frame { - msec: 8944 - hash: "5b295b187c6cfc6aefa51e5efc2c27e3" - } - Frame { - msec: 8960 - hash: "fe3139ddc8fdbc1b0c25bd641f83e833" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 8976 - hash: "8f2a9585dc6248a403aafd0f151d6ba0" - } - Frame { - msec: 8992 - hash: "39eca8cc6bb8ea30cc452dc24f8e46dc" - } - Frame { - msec: 9008 - hash: "8dbbc6026942cb6e572f1cb7e2675713" - } - Frame { - msec: 9024 - hash: "62dfa07b96dd18c6be89822654bf09f3" - } - Frame { - msec: 9040 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9056 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9072 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9088 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9104 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9120 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9136 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9152 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9168 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9184 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9200 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9216 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9232 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9248 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9264 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Key { - type: 6 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 9280 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9296 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9312 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9328 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9344 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9360 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9376 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Key { - type: 7 - key: 16777235 - modifiers: 536870912 - text: "1e" - autorep: false - count: 1 - } - Frame { - msec: 9392 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9408 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9424 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9440 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9456 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9472 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9488 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9504 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9520 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9536 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9552 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9568 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9584 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9600 - image: "gridview.9.png" - } - Frame { - msec: 9616 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9632 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9648 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9664 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9680 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9696 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9712 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9728 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9744 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9760 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 9776 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9792 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9808 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9824 - hash: "02c632713d0dc64bff9d8e58f745df95" - } - Frame { - msec: 9840 - hash: "02c632713d0dc64bff9d8e58f745df95" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.0.png deleted file mode 100644 index 3021d58..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.1.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.1.png deleted file mode 100644 index baeb1a6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.10.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.10.png deleted file mode 100644 index b0486e5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.2.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.2.png deleted file mode 100644 index 2d0c731..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.3.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.3.png deleted file mode 100644 index af9ed05..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.4.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.4.png deleted file mode 100644 index 0b0945d..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.5.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.5.png deleted file mode 100644 index 618ae0c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.6.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.6.png deleted file mode 100644 index fc31262..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.7.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.7.png deleted file mode 100644 index 22291ac..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.8.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.8.png deleted file mode 100644 index 3021d58..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.9.png b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.9.png deleted file mode 100644 index 2f2f5b9..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml deleted file mode 100644 index 1c90af9..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/data/gridview2.qml +++ /dev/null @@ -1,2479 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "dba2f6f1c773bd4cd9523108fca861c4" - } - Frame { - msec: 32 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 48 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 64 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 80 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 96 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 112 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 128 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 144 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 160 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 176 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 192 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 208 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 224 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 240 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 256 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 272 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 288 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 304 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 320 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 336 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 352 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 368 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 384 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 400 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 416 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 432 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 448 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 464 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 480 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 496 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 512 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 528 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 544 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 560 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 576 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 592 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 608 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 624 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 640 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 656 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 672 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 688 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 704 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 720 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 736 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 752 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 768 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 784 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 800 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 816 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 832 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 848 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 864 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 880 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 896 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 912 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 928 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 944 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 960 - image: "gridview2.0.png" - } - Frame { - msec: 976 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 992 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1008 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1024 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1040 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1056 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1072 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1088 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1104 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1120 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1136 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1152 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1168 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1184 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1200 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1216 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1232 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1248 - hash: "33d81c39d16c6a326012499796e50e03" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1264 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 1280 - hash: "aaec7184a27e6700d96ffff376b8fa53" - } - Frame { - msec: 1296 - hash: "3fa3a890a4ff4a59336a9a2d478d0dde" - } - Frame { - msec: 1312 - hash: "3711c6c2f4f9aba7f2c72bd1f1d85016" - } - Frame { - msec: 1328 - hash: "23da2f9a800b805ce7b77ff08218907d" - } - Frame { - msec: 1344 - hash: "12e4bc953b06cdaad0720f87fb96a37e" - } - Frame { - msec: 1360 - hash: "46e69658bda69bab202a2790a76ba1cd" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 1376 - hash: "44608e67c69b92ccbb45e119e1158fe3" - } - Frame { - msec: 1392 - hash: "97a309b47017d38294644a486a7ce68e" - } - Frame { - msec: 1408 - hash: "41f42b50b22e0496c8aca5019b24b9cb" - } - Frame { - msec: 1424 - hash: "8603ea1cb60c804563f50bc41c0180fe" - } - Frame { - msec: 1440 - hash: "e29777fa70daafe9640c6e9bb7bd63d6" - } - Frame { - msec: 1456 - hash: "2c4c360320f527e99fee799e68c2c0aa" - } - Frame { - msec: 1472 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1488 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1504 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1520 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1536 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1552 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1568 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1584 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 1600 - hash: "0d30916c7e05ff8609af5894f47a89bb" - } - Frame { - msec: 1616 - hash: "17027b7c099b11cb5382f30dbbd1e647" - } - Frame { - msec: 1632 - hash: "0e17461a4ca843f9903b7f03e99a0b00" - } - Frame { - msec: 1648 - hash: "a5e61901920553e59892fa405beea15a" - } - Frame { - msec: 1664 - hash: "310eaf71fe8d3807606e58a666c65ccd" - } - Frame { - msec: 1680 - hash: "76f556d05fb77082f33eb1836c10587a" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 1696 - hash: "4e7e4b7790a96396e7ea3533b5c32ed9" - } - Frame { - msec: 1712 - hash: "b065287b6490f58ca6f0e9eb2027cf20" - } - Frame { - msec: 1728 - hash: "907cd9dbdffa1d395caaabd466dc8e86" - } - Frame { - msec: 1744 - hash: "3b144e5b4867328beafa3020ce931480" - } - Frame { - msec: 1760 - hash: "b59b2b60b7d55424b61b1b0ed3e227b8" - } - Frame { - msec: 1776 - hash: "4032e934871b315b68c7c2abea42efee" - } - Frame { - msec: 1792 - hash: "8f80127b2f8d6fc10aa84062544cc381" - } - Frame { - msec: 1808 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1824 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1840 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1856 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1872 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1888 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1904 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1920 - image: "gridview2.1.png" - } - Frame { - msec: 1936 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1952 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1968 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 1984 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 2000 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 2016 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2032 - hash: "77d5193bc5f53fe5cb98a236c55f841e" - } - Frame { - msec: 2048 - hash: "a45d2630872a14541f39b862e15ff461" - } - Frame { - msec: 2064 - hash: "714711d7382ef8bba5fb39e2e44bd59c" - } - Frame { - msec: 2080 - hash: "63deed0356e761f94f88be18a7d10053" - } - Frame { - msec: 2096 - hash: "d5b4fc1b568a4a1b63a91b422272c704" - } - Frame { - msec: 2112 - hash: "b6d2c80925cc6b4b7b297bd6ee903c7c" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 2128 - hash: "38117482196360353586cb7ace593894" - } - Frame { - msec: 2144 - hash: "2301f3a148bf4e311cc8ce011ddf65f8" - } - Frame { - msec: 2160 - hash: "2a4982a0961f89a15618f8d4c2081f5a" - } - Frame { - msec: 2176 - hash: "acf8666d6a8a29925f3895aa8e93f713" - } - Frame { - msec: 2192 - hash: "967ed026bc92a6d2747c5227105543a6" - } - Frame { - msec: 2208 - hash: "ff72f3fb95f25990c99c1c14cfef57da" - } - Frame { - msec: 2224 - hash: "0874a4f863596c3860dcf5b1f7f6ceb2" - } - Frame { - msec: 2240 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2256 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2272 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2288 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2304 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2320 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2336 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2352 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2368 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 2384 - hash: "520445d8619ad9bdde0db0e61f17567c" - } - Frame { - msec: 2400 - hash: "7c4bbf0423d63d7642d218cac56a6215" - } - Frame { - msec: 2416 - hash: "e8c77dbc89721b51549f8d46453fe09d" - } - Frame { - msec: 2432 - hash: "7953503590b639872ac12215695e8cea" - } - Frame { - msec: 2448 - hash: "edaee946a2e25fed6de9acfda0d44a14" - } - Frame { - msec: 2464 - hash: "4996ef39bb0122c10d65f8dd8674b386" - } - Frame { - msec: 2480 - hash: "ede7c6ca9d6deb7819c3715e98755d6e" - } - Frame { - msec: 2496 - hash: "e703fad2fcf9244ec9865200c7d17ce3" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 2512 - hash: "e2bfc16fd893bb3eb0e5df89a0169af3" - } - Frame { - msec: 2528 - hash: "cfd0eb2bc378bd46644f3f7820150685" - } - Frame { - msec: 2544 - hash: "442b05b04762c2bcda291aaa0341398e" - } - Frame { - msec: 2560 - hash: "55842a6503057eea98e2075ef160873e" - } - Frame { - msec: 2576 - hash: "730f80233dacf1119660a76d2a34c5fc" - } - Frame { - msec: 2592 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2608 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2624 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2640 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2656 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2672 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2688 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2704 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2720 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2736 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Key { - type: 6 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 2752 - hash: "d4a48ee79a18cc5c0bc123fbb40c3efd" - } - Frame { - msec: 2768 - hash: "4d04c12bc7fab0b22df3135bf3a87a22" - } - Frame { - msec: 2784 - hash: "fdca5a3f8312452feba7f37b1caa6419" - } - Frame { - msec: 2800 - hash: "97b955e0f8cde30299b238d9ac0eb308" - } - Frame { - msec: 2816 - hash: "19664de1a738458810896959ba4087ad" - } - Frame { - msec: 2832 - hash: "4f9a4b6de6a2969e4639076a8f7c258e" - } - Key { - type: 7 - key: 16777234 - modifiers: 536870912 - text: "1c" - autorep: false - count: 1 - } - Frame { - msec: 2848 - hash: "a10f18aa686be2681a48082ec9f01df7" - } - Frame { - msec: 2864 - hash: "b8f39a6cca377dd573429d879286dd63" - } - Frame { - msec: 2880 - image: "gridview2.2.png" - } - Frame { - msec: 2896 - hash: "3301e52a46efbc49882401c77853ffde" - } - Frame { - msec: 2912 - hash: "0c614597f17496ebc701efe7b0c1fbb6" - } - Frame { - msec: 2928 - hash: "6dda2d6b034c932e279cf216c9b3e6ad" - } - Frame { - msec: 2944 - hash: "7bf08cd5fe3ad3f83bbef28f452e0545" - } - Frame { - msec: 2960 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 2976 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 2992 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 3008 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 3024 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 3040 - hash: "1b7ebcf0e3d68e429cb04966120985e5" - } - Frame { - msec: 3056 - hash: "0fe7d46e7c18ce7bb5a098c5c662d557" - } - Frame { - msec: 3072 - hash: "cd5df541cc1ed545bc27da9e4a937261" - } - Frame { - msec: 3088 - hash: "35762467b83fee1870cff9b0436994d3" - } - Frame { - msec: 3104 - hash: "75a620b42caabf5b1576041dbd4c2808" - } - Frame { - msec: 3120 - hash: "f1b06290a6cbd48b8d3d4ce1e42ed754" - } - Frame { - msec: 3136 - hash: "8e1a50dc082828587a4656117760a852" - } - Frame { - msec: 3152 - hash: "aae8e5f166e736040138d8e222a844dd" - } - Frame { - msec: 3168 - hash: "f69e5cf2bcb26fe49126776695b0b7e0" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 3184 - hash: "7b482fece0255ea07496ef0545b008a2" - } - Frame { - msec: 3200 - hash: "3f96eaebfebe8d4eeb347b201b59ab11" - } - Frame { - msec: 3216 - hash: "9943626d2226c3be711c8213906133f0" - } - Frame { - msec: 3232 - hash: "fd5fd8177b3957c27f1de0d95621351a" - } - Frame { - msec: 3248 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3264 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3280 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3296 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3312 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3328 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3344 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3360 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3376 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3392 - hash: "506283ccfe9670633ce0bf60b437b37b" - } - Frame { - msec: 3408 - hash: "fb437f6c23561092a124e498f1604ff2" - } - Frame { - msec: 3424 - hash: "402ba144bbb7260eec4553e68eb35cda" - } - Frame { - msec: 3440 - hash: "76a983de9e85e0c81dfb8908252bd6c9" - } - Frame { - msec: 3456 - hash: "09219f55fae47a0afed887ebf68a36bc" - } - Frame { - msec: 3472 - hash: "344e81cc262093facef2f6a235a734dc" - } - Frame { - msec: 3488 - hash: "8f1c5544eb537555b1c59a377b15e31d" - } - Frame { - msec: 3504 - hash: "606b9bb549fe2e4bbd09d67b7dea0d1a" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3520 - hash: "63e239c97bd01a61cb31ef2869e7f47c" - } - Frame { - msec: 3536 - hash: "f7c176550c39f8a1ad64590cf33a60a4" - } - Frame { - msec: 3552 - hash: "8581cb14ed81efdf9abb638b5e542cc3" - } - Frame { - msec: 3568 - hash: "7a1e9354ecc49d8bc27d303c7bdc81f9" - } - Frame { - msec: 3584 - hash: "610288b97276ee03702ed8a814ef333d" - } - Frame { - msec: 3600 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3616 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3632 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3648 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3664 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3680 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3696 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3712 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3728 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3744 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3760 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3776 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3792 - hash: "8d36bc2f3ab614d19f3ec8821f3e81ed" - } - Frame { - msec: 3808 - hash: "9713c6b9aff051dd0cc45c545d34b688" - } - Frame { - msec: 3824 - hash: "1f8fd4d759e343720a8681b6ad126b72" - } - Frame { - msec: 3840 - image: "gridview2.3.png" - } - Frame { - msec: 3856 - hash: "8550d916d91a40b0c3a886b962e07ffc" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 3872 - hash: "df0c2e474139e79429bfc19c79a65ef8" - } - Frame { - msec: 3888 - hash: "acfb99d081d754276e5ed59bd590aeab" - } - Frame { - msec: 3904 - hash: "2b34cd101b442f7a3de2893fd5514c16" - } - Frame { - msec: 3920 - hash: "df92ced66faa1d59354d8010278438ec" - } - Frame { - msec: 3936 - hash: "dd39a8e6fa3784453461193a6da416cd" - } - Frame { - msec: 3952 - hash: "5670e8f91ea2df451f0974a51cd77d7d" - } - Frame { - msec: 3968 - hash: "74b97a09bfe7400872a2c6214e04a5ac" - } - Frame { - msec: 3984 - hash: "cfd55b963506ab54cf09a7311e84bcc9" - } - Frame { - msec: 4000 - hash: "59657ee9293c03f064d62de826931435" - } - Frame { - msec: 4016 - hash: "31f6a4adf31be5ed0af0ea4097e3acee" - } - Frame { - msec: 4032 - hash: "8f5bfc40c8cdb2f8ce69adb72e7efe76" - } - Frame { - msec: 4048 - hash: "9dc38985113124130e2ca7950e0bd144" - } - Frame { - msec: 4064 - hash: "786e6e8b9e74876a6f393d61a78b8fc7" - } - Frame { - msec: 4080 - hash: "1f4d59a4e4684aab309363a711b30006" - } - Frame { - msec: 4096 - hash: "a11e332de151b43051796e16dbcf75c3" - } - Frame { - msec: 4112 - hash: "1a0e82029ae107cb2a018786752433ff" - } - Frame { - msec: 4128 - hash: "b14c51977c7fbf51f9cf6fec309bff6a" - } - Frame { - msec: 4144 - hash: "2b418f811992399c3f87c268db745632" - } - Frame { - msec: 4160 - hash: "0e9a056207053ca98c4e9f42de244c62" - } - Frame { - msec: 4176 - hash: "1945c3f9e3a1337e7d111e15adea345f" - } - Frame { - msec: 4192 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4208 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4224 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4240 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4256 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4272 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4288 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4304 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4320 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4336 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4352 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4368 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4384 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4400 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4416 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4432 - hash: "d8cf36b6cc15a01ead815d814ae81cb4" - } - Frame { - msec: 4448 - hash: "1945c3f9e3a1337e7d111e15adea345f" - } - Frame { - msec: 4464 - hash: "0e9a056207053ca98c4e9f42de244c62" - } - Frame { - msec: 4480 - hash: "2b418f811992399c3f87c268db745632" - } - Frame { - msec: 4496 - hash: "b14c51977c7fbf51f9cf6fec309bff6a" - } - Frame { - msec: 4512 - hash: "1a0e82029ae107cb2a018786752433ff" - } - Frame { - msec: 4528 - hash: "a11e332de151b43051796e16dbcf75c3" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4544 - hash: "1f4d59a4e4684aab309363a711b30006" - } - Frame { - msec: 4560 - hash: "786e6e8b9e74876a6f393d61a78b8fc7" - } - Frame { - msec: 4576 - hash: "9dc38985113124130e2ca7950e0bd144" - } - Frame { - msec: 4592 - hash: "8f5bfc40c8cdb2f8ce69adb72e7efe76" - } - Frame { - msec: 4608 - hash: "31f6a4adf31be5ed0af0ea4097e3acee" - } - Frame { - msec: 4624 - hash: "59657ee9293c03f064d62de826931435" - } - Frame { - msec: 4640 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4656 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4672 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4688 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4704 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4720 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4736 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4752 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4768 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4784 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4800 - image: "gridview2.4.png" - } - Frame { - msec: 4816 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Key { - type: 6 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4832 - hash: "23aa652a0de7fced4a780d72f0940a1b" - } - Frame { - msec: 4848 - hash: "d46eea049d6156a5e85d9c6811d9d367" - } - Frame { - msec: 4864 - hash: "d5796ae85247cb8502f92f0d044e4e1f" - } - Frame { - msec: 4880 - hash: "90987ac49c1a4e6b668436e3ff631e6c" - } - Frame { - msec: 4896 - hash: "c38d69759ad80242b1fe83ba191cd421" - } - Frame { - msec: 4912 - hash: "09d08aed76a04e492d8a39cc4dd2b8f5" - } - Key { - type: 7 - key: 16777236 - modifiers: 536870912 - text: "1d" - autorep: false - count: 1 - } - Frame { - msec: 4928 - hash: "9671d2ff9a2ef46ce3c750a1965404a4" - } - Frame { - msec: 4944 - hash: "f55857816d666ece4a7987a70883b3d1" - } - Frame { - msec: 4960 - hash: "a2d80527b30316d9120b057bbfcfa666" - } - Frame { - msec: 4976 - hash: "87ca69287c1469cbc7e65d1673016de7" - } - Frame { - msec: 4992 - hash: "51588c7ebbe2dcd87a3c9bebf028aee3" - } - Frame { - msec: 5008 - hash: "917a9a171273fe9fd4c450eeed6f58ed" - } - Frame { - msec: 5024 - hash: "6e7ade250a9a9692caee2a220dd2ac53" - } - Frame { - msec: 5040 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5056 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5072 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5088 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5104 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5120 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5136 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5152 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5168 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5184 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5200 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5216 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5232 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5248 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5264 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5280 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5296 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5312 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5328 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5344 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5360 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5376 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5392 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5408 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5424 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5440 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5456 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5472 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5488 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5504 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5520 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5536 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5552 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5568 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5584 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5600 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 5616 - hash: "ca2dcb16d553889a3a57b48700c2a595" - } - Frame { - msec: 5632 - hash: "c5c9aab9bea757f1c451e89df72bd836" - } - Frame { - msec: 5648 - hash: "a8cf3085f8c3b743f3f15db1ad7b8801" - } - Frame { - msec: 5664 - hash: "c25a92050eced1c304506572723273a3" - } - Frame { - msec: 5680 - hash: "cff981039c1a3eb6c3c1a20f142fbae2" - } - Frame { - msec: 5696 - hash: "930765587fe3355873bbdff66b812b74" - } - Frame { - msec: 5712 - hash: "6a60f97c7b39add465e1bd366e9c644b" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 5728 - hash: "7a1fd3c488d1064a75dc598c9a773291" - } - Frame { - msec: 5744 - hash: "e2ecd7e68e27eb3d2dcb5e368d3ee5a0" - } - Frame { - msec: 5760 - image: "gridview2.5.png" - } - Frame { - msec: 5776 - hash: "20f3aaca2efc3066076e73d1d95e5363" - } - Frame { - msec: 5792 - hash: "b18d476cadc36e22dddc3185f595c123" - } - Frame { - msec: 5808 - hash: "8cbc47555178c8ee355774eab17b4b19" - } - Frame { - msec: 5824 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5840 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5856 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5872 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5888 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5904 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5920 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5936 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5952 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5968 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 5984 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 6000 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 6016 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 6032 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 6048 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 6064 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 6080 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 6096 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 6112 - hash: "e488fb76fb550fba51b95bee3fee80d5" - } - Frame { - msec: 6128 - hash: "8c2fab0c73d1cfbeeb0ec937085d6b3b" - } - Frame { - msec: 6144 - hash: "5d9353517177ef7c6314d8a65cb009ec" - } - Frame { - msec: 6160 - hash: "ed8de504f7e2028cd369c1555314fd81" - } - Frame { - msec: 6176 - hash: "8fe84d8badbe5bd08d097ba6bda10611" - } - Frame { - msec: 6192 - hash: "d77419a55a3cf933505e793bb258e6af" - } - Frame { - msec: 6208 - hash: "457ac82be02e2f5e08e51ccc78c94781" - } - Frame { - msec: 6224 - hash: "e57e2852f065afff9c24c5bc9f29edee" - } - Frame { - msec: 6240 - hash: "f72cd6ad3324936c3a18c264e23e05a9" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 6256 - hash: "a4bf7eae6fc7a05239d09421ae95304a" - } - Frame { - msec: 6272 - hash: "423f3bd07df8bee25818644c07201a3c" - } - Frame { - msec: 6288 - hash: "225e9c698424f287b9458b7839b4479b" - } - Frame { - msec: 6304 - hash: "0f463db7e4acc184a4efb7b5e5c0d397" - } - Frame { - msec: 6320 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6336 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6352 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6368 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6384 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6400 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6416 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6432 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6448 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6464 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6480 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6496 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6512 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6528 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6544 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6560 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6576 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6592 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6608 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6624 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6640 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6656 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6672 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6688 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6704 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6720 - image: "gridview2.6.png" - } - Frame { - msec: 6736 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Key { - type: 6 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 6752 - hash: "b92ad1c3be35c46c0d12bf7701c56f23" - } - Frame { - msec: 6768 - hash: "738f6bcc043d221488285c7e529b1d1c" - } - Frame { - msec: 6784 - hash: "cb0a4e8e79372dd67e8ecfea2143a47c" - } - Frame { - msec: 6800 - hash: "544d1825b36f4e7950c1a62b26c1fd9b" - } - Frame { - msec: 6816 - hash: "df99396622342b4f092b0db34a224c3d" - } - Frame { - msec: 6832 - hash: "47391f51e5df2249a6ca1f1f6e8e80e0" - } - Key { - type: 7 - key: 16777237 - modifiers: 536870912 - text: "1f" - autorep: false - count: 1 - } - Frame { - msec: 6848 - hash: "d8079a874ca18d00aeeb611effcbeb8b" - } - Frame { - msec: 6864 - hash: "4cfd9264af6935aca425da75ebb2d7cc" - } - Frame { - msec: 6880 - hash: "aee6547cb653cd2d56d07285d836149d" - } - Frame { - msec: 6896 - hash: "969720f17eae51258e2e143e14bfa737" - } - Frame { - msec: 6912 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6928 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6944 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6960 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6976 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 6992 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7008 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7024 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7040 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7056 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7072 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7088 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7104 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7120 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7136 - hash: "b6a0ee0b24737bc0045ff3fb68cfe3ad" - } - Frame { - msec: 7152 - hash: "beeaec4b983c970ae448e33047dfdfea" - } - Frame { - msec: 7168 - hash: "7c415ab1b7d8e25b71af75d3eec8ee4a" - } - Frame { - msec: 7184 - hash: "8913037e57b9a6a58b68f2d6e69b1bd1" - } - Frame { - msec: 7200 - hash: "19e59e9409fdaf90ccf75606b58688b7" - } - Frame { - msec: 7216 - hash: "1ae71ef5b1006f637bd8df0769af65a6" - } - Frame { - msec: 7232 - hash: "1f0aa8b368b2dbccafd54b923d8cce95" - } - Frame { - msec: 7248 - hash: "c5079fb25a8c80a995d7aa5fbbd91428" - } - Frame { - msec: 7264 - hash: "59f41220fa5d23db298c9e94f115c17b" - } - Frame { - msec: 7280 - hash: "48259dfe8b266d9e7f50b187be98c3cb" - } - Frame { - msec: 7296 - hash: "f7554552598351c3b8dfcbe3ebc32b3b" - } - Frame { - msec: 7312 - hash: "219e9cd84d7e5c5c0e6cb80100aa3ab5" - } - Frame { - msec: 7328 - hash: "5578e870ee8ce00bce5a59bb25e3d0a9" - } - Frame { - msec: 7344 - hash: "4d9cebbf750c03380694245e0e22ab94" - } - Frame { - msec: 7360 - hash: "a60a8032e97ed0a3caa05012c1283de5" - } - Frame { - msec: 7376 - hash: "3bee20b349a7e9d67f7770ede6da8673" - } - Frame { - msec: 7392 - hash: "d8c34576c25fb8b5e4fa12680ac32e99" - } - Frame { - msec: 7408 - hash: "cd1360aa7db7c3b2f2012dfc44de2198" - } - Frame { - msec: 7424 - hash: "cd82782f63c9a7d21d51b3440c2f038b" - } - Frame { - msec: 7440 - hash: "e59061967a841aa45607c0828b687527" - } - Frame { - msec: 7456 - hash: "01962406c9aaf1aa8bf3ab49e30ddf5f" - } - Frame { - msec: 7472 - hash: "5a5732a568189e598c7985ee806bc67e" - } - Frame { - msec: 7488 - hash: "54775aed3a6283c1fa330d65de5bc70c" - } - Frame { - msec: 7504 - hash: "66640b4a5c1e68924b25de24e3c3f008" - } - Frame { - msec: 7520 - hash: "76999d3125f20ba47dbdff38ee722a8a" - } - Frame { - msec: 7536 - hash: "5159c81533bee8825cff11910bcb90dc" - } - Frame { - msec: 7552 - hash: "ac0295495345987d1e000f6bb2436927" - } - Frame { - msec: 7568 - hash: "d56b4a04f1d2835a0852ea20e8e2f451" - } - Frame { - msec: 7584 - hash: "ae41fe23e2ab508d7642973c0d9d35b0" - } - Frame { - msec: 7600 - hash: "730ca01fbee6ec4928715ec52773c06c" - } - Frame { - msec: 7616 - hash: "ad1fa52c617a2b119d61eb9fb7d58a82" - } - Frame { - msec: 7632 - hash: "c74321a822b515a393e8e218bd45e8e3" - } - Frame { - msec: 7648 - hash: "a9e2f3bee1d47166204c74bdf90cd8c8" - } - Frame { - msec: 7664 - hash: "e10d4bf08980ea7d079a2f359ee62b95" - } - Frame { - msec: 7680 - image: "gridview2.7.png" - } - Frame { - msec: 7696 - hash: "9f0ba6051e684e54ff4e36d980a7e600" - } - Frame { - msec: 7712 - hash: "aa6268d8d7fb3d2b91db3e225e8c818a" - } - Frame { - msec: 7728 - hash: "8e547e55279b1929f42bf51e753f142e" - } - Frame { - msec: 7744 - hash: "5386c71f8d6701379e177f161d714da2" - } - Frame { - msec: 7760 - hash: "a184e9e6012c72fc1aeaed9f98b0fb1e" - } - Frame { - msec: 7776 - hash: "777a6b70ca77c45e2e5e3914cc328dcb" - } - Frame { - msec: 7792 - hash: "424f73f25a1e91126f951838d45adc3b" - } - Frame { - msec: 7808 - hash: "3f7f2eb6b9a5d19fbfcd700baf566dfb" - } - Frame { - msec: 7824 - hash: "c3c4c72b25c2295b82a5fd7454942f77" - } - Frame { - msec: 7840 - hash: "3b35e93d3eb9d28c5c03d6d353f805d2" - } - Frame { - msec: 7856 - hash: "5dcad019a1c0eaaab381a7602e1914ff" - } - Frame { - msec: 7872 - hash: "602a5c569555767413bf445af44c744f" - } - Frame { - msec: 7888 - hash: "3e9facab95dae772f695b6f7c5175063" - } - Frame { - msec: 7904 - hash: "0921220ec36ca7b25eaae699872a2006" - } - Frame { - msec: 7920 - hash: "1d5fa7fd630af62bcc805bdc6686df37" - } - Frame { - msec: 7936 - hash: "165c02de63604aa118d9f8995e6b45af" - } - Frame { - msec: 7952 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 7968 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 7984 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8000 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8016 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8032 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8048 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8064 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8080 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8096 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8112 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8128 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8144 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8160 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8176 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8192 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8208 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8224 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8240 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8256 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8272 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8288 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8304 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8320 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8336 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8352 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8368 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8384 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8400 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8416 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8432 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8448 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8464 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8480 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8496 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8512 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8528 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8544 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8560 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8576 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8592 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8608 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8624 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8640 - image: "gridview2.8.png" - } - Frame { - msec: 8656 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8672 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8688 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8704 - hash: "33d81c39d16c6a326012499796e50e03" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 8720 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8736 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8752 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8768 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8784 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8800 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8816 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8832 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8848 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8864 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8880 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8896 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8912 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8928 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8944 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8960 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8976 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 8992 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 9008 - hash: "33d81c39d16c6a326012499796e50e03" - } - Frame { - msec: 9024 - hash: "33d81c39d16c6a326012499796e50e03" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml index c79e19f..4dac63e 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview.qml @@ -1,5 +1,7 @@ import QtQuick 1.0 +//Currently doesn't behave right, see QTBUG-14837 + Rectangle { width: 300; height: 400; color: "black" diff --git a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml index 811e0e4..e27b4df 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativegridview/gridview2.qml @@ -1,5 +1,7 @@ import QtQuick 1.0 +//Currently doesn't behave right: see QTBUG-14838 + Rectangle { width: 300; height: 400; color: "black" -- cgit v0.12 From efe07823154a1fd1348ddb4951478adace2401b1 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 11:44:38 +1000 Subject: Clean up qdeclarativeparticles visual test update visuals, and add a couple comments. Task-number: QTBUG-14792 --- .../qdeclarativeparticles/data/particles.0.png | Bin 10219 -> 9951 bytes .../qdeclarativeparticles/data/particles.1.png | Bin 13469 -> 14613 bytes .../qdeclarativeparticles/data/particles.2.png | Bin 14051 -> 14056 bytes .../qdeclarativeparticles/data/particles.qml | 376 ++++++++++----------- .../qmlvisual/qdeclarativeparticles/particles.qml | 10 +- 5 files changed, 193 insertions(+), 193 deletions(-) diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.0.png b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.0.png index 7321d95..da77af9 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.1.png b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.1.png index 49d2a5a..578c9e9 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.2.png b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.2.png index 6fe14b7..24c6126 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml index 463edf8..3fec1ef 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/data/particles.qml @@ -10,235 +10,235 @@ VisualTest { } Frame { msec: 32 - hash: "43c0ad5826e8058260951f063f0851ab" + hash: "c7eb3936886726f584d1bd99133a199f" } Frame { msec: 48 - hash: "55eb2c9939514338e7ef58c9276fc223" + hash: "f7f6eeab119435f0cccd55074b4941bf" } Frame { msec: 64 - hash: "6a1bbb91bf450547d6100b6e61a98f6d" + hash: "06f52743e61bf0212971652c500fe5d1" } Frame { msec: 80 - hash: "bdb9b8cab70c72d99aba830eb8e8913b" + hash: "1f9dd3a3a0524c60791362f560936f9b" } Frame { msec: 96 - hash: "71a0e046bc68183b830df9dafd8fa147" + hash: "42538495fc9d63384a1709476c06d750" } Frame { msec: 112 - hash: "e7228e0ed77e05c661282c2d2fe88b3e" + hash: "4d1b53541ffe5cdfcf0e3aa2916b1bac" } Frame { msec: 128 - hash: "93a4c3e501b05844f687a2dd1754aad2" + hash: "6a3a683dbd2ad7c89f0788441303485e" } Frame { msec: 144 - hash: "1856ac86313c16bf4874130d9a48ff45" + hash: "125a936660dae42969fab4144d166ac6" } Frame { msec: 160 - hash: "3637d8dad4f44c938f91b0800bd9fb2f" + hash: "87d008547326ff1bf2c4c2a9d9b99abc" } Frame { msec: 176 - hash: "c5ace4ede38d29363d69c6b4b2f9349f" + hash: "0df69d85b37d3ebf0e314a7e89701703" } Frame { msec: 192 - hash: "a5d832d02f4a635052817654df90caba" + hash: "7af12cac3bd33c903d6aa6fa8f89b498" } Frame { msec: 208 - hash: "9ebf8bea8abe7ac209d47214a87f8fc0" + hash: "424c950111c492ded19df874b938067c" } Frame { msec: 224 - hash: "35b8f5cb18284867be8d27d601394a2b" + hash: "bee69a0df1ca8ccc7d83a52f9de34f8c" } Frame { msec: 240 - hash: "a2c4a6063f219af6f2b29b2d21a4265d" + hash: "47da1538d818e22d836de57d5c6601ce" } Frame { msec: 256 - hash: "27f25ace7b8e93c55638ed99f49b821c" + hash: "fbfb0e177b19d6ef9433619f60dd9580" } Frame { msec: 272 - hash: "4f6511bfbbd8113195a7597eb6dfb219" + hash: "23b4f8bb116e8db48db25ccccedba43a" } Frame { msec: 288 - hash: "6a696159cdbb51a67064c600124535d1" + hash: "13f0847f1b86f880690692066cde21c7" } Frame { msec: 304 - hash: "6cd667eb352256dbb728532634e7ffd0" + hash: "639ca4c978bea080139b219c75bf01d1" } Frame { msec: 320 - hash: "28fa16c8936bf86a8426ded306aa2b8c" + hash: "19debcaa7bbde930eda2fd08ac1e9d8a" } Frame { msec: 336 - hash: "061fecdb88733e3e51c5823571bc4d19" + hash: "1d733c5010604bff67138f1eb9881dcd" } Frame { msec: 352 - hash: "f64530f638b3d18d56593e0b7c884f5d" + hash: "b14435e41a3730baff06bb0800157081" } Frame { msec: 368 - hash: "8530cf40739890dc7401fad65a6325bf" + hash: "504b3548c38d50f15235594f3f3d7be5" } Frame { msec: 384 - hash: "0abc555552e7256dbc424b2eac5c95f2" + hash: "4e73ef73c949da579217c1d94139a75a" } Frame { msec: 400 - hash: "64aeae59a8c958dfc62d92636b2f5217" + hash: "5fced44782484b1962368b9c04bf5246" } Frame { msec: 416 - hash: "3e0f50f5bee017220b129d06b2acde2c" + hash: "6ab0cd5c14e1871a35d003574255c1db" } Frame { msec: 432 - hash: "e676c01ff2e35bdfe674be67d49945b1" + hash: "23f5c485fbd0acd607119e93277284db" } Frame { msec: 448 - hash: "bc060b480aab94fd440fd27f5beb7383" + hash: "02ebd53ee0e6ca3605916b05d827989e" } Frame { msec: 464 - hash: "79c79f723de72315e63da8a7cbe1b425" + hash: "99b1d1e72d7da88a7d5d5a7907e1b1f4" } Frame { msec: 480 - hash: "7bf93c2697af75d0f862a47d57cd6a7f" + hash: "b7de7d40263f2811ec51f28f8ff4929c" } Frame { msec: 496 - hash: "7641b9e233f4aabd99bcd985ce1d51ae" + hash: "e64059f850dd4c8642a9883a1c5356bf" } Frame { msec: 512 - hash: "b596a28cb67617d37408bd25d947d088" + hash: "b0aefb8f8d4d970ba4b51d7f77b55cf1" } Frame { msec: 528 - hash: "f2c5cdf15c27b05c0ea97675ddc41757" + hash: "5ab4b1373c233b2342eb66cf9eccac8d" } Frame { msec: 544 - hash: "eae5eb8c41a1d6d75446618518490f20" + hash: "b3726c296d5919a59c32201d857e92b4" } Frame { msec: 560 - hash: "0be5e9a6d857fe1a262524801c69490d" + hash: "70e246371f9cf83b5913f2fc53f6b736" } Frame { msec: 576 - hash: "65478b8c4d932c10924f70462a662254" + hash: "871cd4b99b6d544d487424219e0caf92" } Frame { msec: 592 - hash: "7b034f3c98e8eb38eec11cf3c2aa0804" + hash: "8c002ec15e88220bf12ebaa5a3390570" } Frame { msec: 608 - hash: "5bbc8eed41500ccbc820cfb38794232f" + hash: "21c994a5ad23938a9e873d04bbd4165e" } Frame { msec: 624 - hash: "1b39d555ca8932b40efd769c4ba74d3f" + hash: "1f04a0ed31823cd0817f3e97a11e3a46" } Frame { msec: 640 - hash: "f9a38e12becbce400191e22f1d22427c" + hash: "f163eda68878ae0ed4cac7f941e24414" } Frame { msec: 656 - hash: "cbc27c72517d76edfc2d3692cd83f151" + hash: "560527d6c7fa64a4739f9c79f3eaab8f" } Frame { msec: 672 - hash: "4a883a5aed05f0bbcefcefea6ef56df6" + hash: "df7e7469ff685c4cd822232b1aa66029" } Frame { msec: 688 - hash: "7a30ea30c0619c87c96bcaba916c64df" + hash: "fa92bf73b0737d4ac8bbc16518cd9c2a" } Frame { msec: 704 - hash: "33cd0797b6d229592ed53117fcaaa898" + hash: "bb2f2765ba20b727701352f11ed30417" } Frame { msec: 720 - hash: "21178ef9366c8a65ecb9e21d584573b0" + hash: "4c45617ce77a5869cdbfcfe851796422" } Frame { msec: 736 - hash: "fe75beac8681fdac8a2b79c9c7267128" + hash: "24aa2eabe8d2a4adc5a096dd201a3bc1" } Frame { msec: 752 - hash: "df26a23d394e053417de86309683c5e0" + hash: "2eb5de2524ad38e1dcd44d89b115e75a" } Frame { msec: 768 - hash: "411594a1ed7c351cb872e0a6f3081b1b" + hash: "8b39e542908051b0ab8fbf3cd36f3be9" } Frame { msec: 784 - hash: "b4b639f204cfed9e1fec872e4de115c2" + hash: "a447e9d7c87c90633dcfc550fcf04ff6" } Frame { msec: 800 - hash: "4d801e2f4848399c011d60264720b912" + hash: "c3d1e7753b592bc0d0c3169e3cf08bb7" } Frame { msec: 816 - hash: "4f28c7b154853ff78cdefb5a5ac9d2b7" + hash: "fb20ccb3b36798835fbc1d529a7424ea" } Frame { msec: 832 - hash: "cc6d4283b0d7bf9f579637575d5e1fef" + hash: "ff253670ae78826250b9612cf2a2e1a4" } Frame { msec: 848 - hash: "8edc371d23d01be547990074b5e640af" + hash: "45fb7f71debd3b61062a4165c04c0637" } Frame { msec: 864 - hash: "874845d7178e6cd8369f21379060f561" + hash: "a1542b5bc5e65cdb3f8775cf21b54429" } Frame { msec: 880 - hash: "98fb6d79990775385603fb1a50ab5186" + hash: "a146b5b88875e4148658dd55e162d6f4" } Frame { msec: 896 - hash: "d15539efc27baabb5a74f464b152d266" + hash: "94222050206925d4c9b38da03125cc0c" } Frame { msec: 912 - hash: "fc44d091d6689e8870162a6d29b6d287" + hash: "71a63ace8450029b968723cfa684330c" } Frame { msec: 928 - hash: "a3c964f4bf524e22092b1650df43375a" + hash: "14e4d2af07146133c6a0e87391747c6a" } Frame { msec: 944 - hash: "ca203fd630ec1eadea37cf36bd30ba40" + hash: "e380593e219531620dbca0a8131b4f13" } Frame { msec: 960 @@ -246,239 +246,239 @@ VisualTest { } Frame { msec: 976 - hash: "2e0630818c04fc6c259eec8561c645cd" + hash: "2b33354b9e53eae7ebd5996ae0350773" } Frame { msec: 992 - hash: "a7b1f6305ddcf4a338e1a96ea31a5341" + hash: "0d2871475891f96e1cc4150cbe725d46" } Frame { msec: 1008 - hash: "23a5013a8f9407d06ac6fd0c1e961743" + hash: "b6d064a26c282ce4fd8cba48de0a0f7b" } Frame { msec: 1024 - hash: "9de73decddaab4269bd33efdb21278a3" + hash: "9ad67d9833d749b2b8158abb3076357b" } Frame { msec: 1040 - hash: "7582c26b45dd11c262f51b387af89cb2" + hash: "ce86624a1e055fdb4711dd73be31dc42" } Frame { msec: 1056 - hash: "650e0d395f1d1f2ddda8711089d85511" + hash: "a2c6fc81e1f02477f6ad084acaf12b0d" } Frame { msec: 1072 - hash: "9ff84e81219aa6bb7ab534b2a47a3930" + hash: "bab24924a5ac4cd45c1fa7b5e4ff3efe" } Frame { msec: 1088 - hash: "11e255273e8ca4716047fb52636f0c3e" + hash: "8c8fd3b9cc257dab84df8e88a3e7a001" } Frame { msec: 1104 - hash: "b2fcbefd13db3c765183b1eefc2ca0bc" + hash: "a3f9936dc4e3161d9db1fa39267cda4d" } Frame { msec: 1120 - hash: "7150aff523c0d480702f6a326699cb65" + hash: "d6669c8a47077f665a93587ea3cafe6e" } Frame { msec: 1136 - hash: "63886c15107a2a7d639069cd81c3cd07" + hash: "601dbd220a7f312d4343323ae99e21ee" } Frame { msec: 1152 - hash: "1ec1fc30bbb5f43a1d6d36bce345f569" + hash: "722411ffc1d6740caed9bf1231bc54ba" } Frame { msec: 1168 - hash: "34060cbc31ce1fbf406cbb595312c609" + hash: "cb3bd6f5ee770399e21a07e56dcf28ef" } Frame { msec: 1184 - hash: "6f3a04c7f411785956e640aa630f7ac4" + hash: "1819d6719e6b56b3e673dacf1865272e" } Frame { msec: 1200 - hash: "d7bdb7e170b6f193eaf4b07c01b4dc6b" + hash: "6b6532937a3e37df28b3939cbadc4741" } Frame { msec: 1216 - hash: "6ca02c0d9cfeb4b1932f7ad1feac9850" + hash: "8a065d54600e9ae3c7958f7b71d8432d" } Frame { msec: 1232 - hash: "d446c7b185361de5c615a17ac1fee607" + hash: "2259806ac264b292f5701f34ffac5c35" } Frame { msec: 1248 - hash: "bc2faf5b7b2972f155954e4e685e80ae" + hash: "e4b2a6440df9141616f89cbb6a6ba0aa" } Frame { msec: 1264 - hash: "2bf26cedc76aea4a6d9744b7dd935db8" + hash: "034b74fe5327909214bb5a6e3084edf2" } Frame { msec: 1280 - hash: "accbee9d0f8cf73ef72aa7bfb49b3fa5" + hash: "976fd9bc54baefe8d71002a22706052a" } Frame { msec: 1296 - hash: "933eb2e46f42e212bdfc515d30f663d3" + hash: "45138388ebc6ec44a205934475907b25" } Frame { msec: 1312 - hash: "7495318c893dbb22771b53e93c7614e8" + hash: "01edec5ae6e33b49baee2abe2a59ad7d" } Frame { msec: 1328 - hash: "894fe23c1b3543451293c047b640c4bb" + hash: "9a89ff95df027e53827c5554a28e05a8" } Frame { msec: 1344 - hash: "9b7179ef059ee82ca4a383f536f47a42" + hash: "8d1cd8a1181b7320990b7348b424ce4b" } Frame { msec: 1360 - hash: "5ec1a5bfac2473efdcad7dba0da4015c" + hash: "2366d1ee0c0740f0d19fe2ce1acfe4c3" } Frame { msec: 1376 - hash: "2bd64528e83260a80e7f2843e2c34a19" + hash: "071988963ab2d1a53243e0f6837fecb0" } Frame { msec: 1392 - hash: "16bf64a9bf6b4bc09b108c65d074b5f2" + hash: "20f1e8adef04cea6bcd1511ac47a7922" } Frame { msec: 1408 - hash: "c33eaa717ba63655f375499058b1be55" + hash: "2241def30a3ef54ea82e5fa2b1ef5997" } Frame { msec: 1424 - hash: "d080f4591f9fd59745bf850525590849" + hash: "15365370ac6859f1bfc76e96e603c417" } Frame { msec: 1440 - hash: "921585c88ec133c83c07650745bb4441" + hash: "45edcbeb23c88f62982f9af9a4647f4c" } Frame { msec: 1456 - hash: "f037b28137b22a0c91fc71fc6626475a" + hash: "b7a9c7c44e6f9ff5132d1ad3f6137dc8" } Frame { msec: 1472 - hash: "e10b3c432a230d5509c2fa7df48b56c9" + hash: "8a55b85fdd63ac63c1a566a5c4d92a04" } Frame { msec: 1488 - hash: "ac02c7b7e68ee8cfad1fe556020e93d8" + hash: "e1973b7d557dec08e6375feefb56db47" } Frame { msec: 1504 - hash: "12d59e70dedfa0c741afed9b98cb9a3a" + hash: "a321445212e561de4262228482b0edbe" } Frame { msec: 1520 - hash: "a9aa635ccde26829d7e1cdc29fcce8d1" + hash: "a2c787a576e1f85561c08330b6801e98" } Frame { msec: 1536 - hash: "f571b3da827b884ad036dade8ad2fe37" + hash: "ba84070f0081d4c7a08ebc3204d9aebf" } Frame { msec: 1552 - hash: "1ffa8d7512e9001cbc78b28451133b44" + hash: "4b82a6908ed0caf3cbfd9dc9211ec69a" } Frame { msec: 1568 - hash: "2ef4b10f2eafd71dfde15f7f00e923c6" + hash: "a1dc7c4ad596fc005cf3077ee78406e1" } Frame { msec: 1584 - hash: "09b3bc232a134eae5ae14c0336f508ba" + hash: "53d76884202d4b9ce3874db796705b80" } Frame { msec: 1600 - hash: "ebadb5c6b4986c865f7f8ef232680b7e" + hash: "9f24c090531259f9d83ea97e842c4f14" } Frame { msec: 1616 - hash: "26621991073510e9a95e3b208e3ee56e" + hash: "541c81585a781bab82d4ee95b9f844ff" } Frame { msec: 1632 - hash: "f18e97f13c06f3c5368edf851f19f401" + hash: "73e15141e6c6bfba4a2c820ba96e3f6e" } Frame { msec: 1648 - hash: "3c322dbbf5ecfe1de56595dcb7d949e1" + hash: "0500129b602ab14925aa09a1d9bee3d0" } Frame { msec: 1664 - hash: "50058d1bb992a6d0601c9d5490149936" + hash: "2d45ba5e0e21430f468332c13ce3ee15" } Frame { msec: 1680 - hash: "4cc78f56f13478ec21a4a0d6b22f956b" + hash: "bafd11c210e683d79ac438c5612503bc" } Frame { msec: 1696 - hash: "d765cd86560dff3faa5a3c902512c74c" + hash: "f968f49e6a0674877c55282e5543edab" } Frame { msec: 1712 - hash: "ad983068c2149b0c06da3b89a5d94d24" + hash: "705307529862a3825a0870b294058825" } Frame { msec: 1728 - hash: "e6da7260001771fc00c472bccae641fe" + hash: "a008a501d1dc16a5ffaee325fdd90816" } Frame { msec: 1744 - hash: "71778ad8a61ecb0f78f7234ecf0d1d97" + hash: "5091621481873738658f4d8543582c62" } Frame { msec: 1760 - hash: "6b2209ea5f7f17c2cd868986f0c907d9" + hash: "141216eeb31b5af4ec247bb930169a7f" } Frame { msec: 1776 - hash: "6513c82829ef7e7c9461dcf5b50f675f" + hash: "bfb203e39ab0a9837fc5b9c9b49d9580" } Frame { msec: 1792 - hash: "0172c5bdf96c8bceab25a6c82bdbe527" + hash: "1f2704480af7dd2bb382d13450f34755" } Frame { msec: 1808 - hash: "64b53bf1c1988d3a799b564089f8e63f" + hash: "f3182da7f6202250a6cc2de3e43fcf87" } Frame { msec: 1824 - hash: "a1bdea4771ec9719cfe88f4e827bd005" + hash: "6fa500f5ff387c5801186fb7eced96f4" } Frame { msec: 1840 - hash: "263de376cee2ba7701a7ca116bc1be81" + hash: "1874d59911d70daf098cd053da69127b" } Frame { msec: 1856 - hash: "9795dada7f09d7d4d40df858dea8bc70" + hash: "52a7bcb9a18e8d4a24c2617124b7961b" } Frame { msec: 1872 - hash: "85ea4c63fc31f79423cb509f6c6d4faa" + hash: "f3a7dd26aa4177dbee02d52df664c751" } Frame { msec: 1888 - hash: "c86d8c4460d1e3c2f26b723dc628fe84" + hash: "5180db29e325f00c3940b6a7b8eb8a8e" } Frame { msec: 1904 - hash: "6bf6ef1fd377bfcf0b93baa7f28e1d3d" + hash: "eab16b6ef76e627eff492cdf5d5da9e2" } Frame { msec: 1920 @@ -486,239 +486,239 @@ VisualTest { } Frame { msec: 1936 - hash: "57b8a48bed9375b74391950c28e611da" + hash: "00743f1dceb5d0351a67a237bcf1985b" } Frame { msec: 1952 - hash: "70203655bc832998529071d7f665ecbe" + hash: "85ecf35d439bd4129f8780d8ee561dfb" } Frame { msec: 1968 - hash: "9ab9808d495f907a255d85fbd82491e2" + hash: "785d712b57b3ec4cee6b9e2fcfa1b775" } Frame { msec: 1984 - hash: "297570136b058ba43e883b0aef20d82f" + hash: "77906acfafec6ab595e8dad00373f953" } Frame { msec: 2000 - hash: "0c2f15ce83e2d961ec36299b13890709" + hash: "33722e5c66ee6dfc87ca62a53590969e" } Frame { msec: 2016 - hash: "6d57b6dcb1dbfa35245d79ef36ca49b2" + hash: "7bd3d9e36789b3456c5e098d02341ce3" } Frame { msec: 2032 - hash: "12a71804fd71991706d8a39b676d1628" + hash: "be4af661ca19ca607acf0d8949b58c26" } Frame { msec: 2048 - hash: "f6a9e1b0b498fc576f3eadeb86c08fe9" + hash: "e249df985887229664d3c61c7b01d2ef" } Frame { msec: 2064 - hash: "051c2ed34cbef82d44aec4841a33f086" + hash: "541a01af440e81c7b20fa9df0e85f5f9" } Frame { msec: 2080 - hash: "12b89590b20fff8d6c94dde40a5d6185" + hash: "3579e5a3ab93b8c9998ef812f43ba158" } Frame { msec: 2096 - hash: "7a29cd11ddb042203465a9522ff951ce" + hash: "c2902c8068a48788e5511d2987191181" } Frame { msec: 2112 - hash: "4853f364261ab8e1c9d35cfe42efb385" + hash: "3fc7d417d13cbccbff81c0630cf968f3" } Frame { msec: 2128 - hash: "7149ab3ed649cac9cf662be7c434056f" + hash: "5507fabe77585c38b2929e2565cd8e9d" } Frame { msec: 2144 - hash: "bbe199700474dda156355d31ac09be39" + hash: "73f6a9a1602929b80ba28ac2c8095a95" } Frame { msec: 2160 - hash: "a3f3fbbe844b8c6fb8cb8bbcc17120e3" + hash: "3377ee6818f1fbf15cfe2916ef7328ed" } Frame { msec: 2176 - hash: "e9a04cfe9e8c50f74978fbd4ecce536a" + hash: "4bea4237a5044b9ffbe9815b877a5b96" } Frame { msec: 2192 - hash: "0df1d4211f770cdd7b8a98ea476c6f42" + hash: "f25dadf7b916625f120d3b5fc1602d0d" } Frame { msec: 2208 - hash: "a6837afb43663b9473db2378b1a9f989" + hash: "ba095d86b7ecc9e2ca6c5d6567d6debf" } Frame { msec: 2224 - hash: "691ea67f3b84b8dda449c2a8e86b1087" + hash: "296129caee6a9526aa2c6071fb07198c" } Frame { msec: 2240 - hash: "16d18947637c63662b9a502c493f06ec" + hash: "42abe26548e9eb7a2c63aea7f349808c" } Frame { msec: 2256 - hash: "8f9207d404da08706e150f3b64d0088d" + hash: "2d187394342584568aa24353233f67f7" } Frame { msec: 2272 - hash: "48ad430e38cdc34845a834cfb9ea70ef" + hash: "5c4047c8ca78103d443f9058f3ec3237" } Frame { msec: 2288 - hash: "1252cfb294ae99c40b03dd021160553f" + hash: "05af8a131ec98b5bc60669bfcdee9a16" } Frame { msec: 2304 - hash: "b1d5e752fbe03c95ee0dc7bbdf6fb9f6" + hash: "b486a796a74962d6b5a4e928ff9e6a2d" } Frame { msec: 2320 - hash: "2282cb42ef0c812ba27e33ed0f962a84" + hash: "8bfa5cc3edf294a728bae51014733230" } Frame { msec: 2336 - hash: "42fc82c8d40d383b3cf31a741a4358c5" + hash: "fb5928a74d75f7eb23ed914e12ea2dba" } Frame { msec: 2352 - hash: "368c1ffa2deb1911929f1769e31c8017" + hash: "16c83f70c3559e97c4a28df7e8b94d95" } Frame { msec: 2368 - hash: "8693bdbde404e36970943ac6b650ca00" + hash: "a7f926210d56dc368c99da12a27db42e" } Frame { msec: 2384 - hash: "57609613c336029b60da428d48842a4e" + hash: "9f235f259af00126a3fc2417d399dee6" } Frame { msec: 2400 - hash: "b61dafe9e87421d3fcf8cb9ff0e7a41b" + hash: "2397c99cc1697303bad9fbd029ee63a3" } Frame { msec: 2416 - hash: "c8c34d1d82bef418ef97f52cb9773cf4" + hash: "b83a021c82c203d6cf690edd5fd98c89" } Frame { msec: 2432 - hash: "aa756c09717dc02e81e76511b4c58f60" + hash: "4e9e74f8b115b69b593f0233f9431258" } Frame { msec: 2448 - hash: "96e75c5ce1b5393f6cc46fbbe0a67689" + hash: "2d8f24eea1e87691eb2292bd01756498" } Frame { msec: 2464 - hash: "fb5febae411f43a6cd218b03b36f5018" + hash: "bad7ffbfe4feac5e7a13a70c8096ddab" } Frame { msec: 2480 - hash: "889870fa67784261e7b73b7d0a53324e" + hash: "6869d23bf601c67593f23402023f931d" } Frame { msec: 2496 - hash: "fb124d4ebee6457f2137f07954619912" + hash: "6e4846623fe8b4a1c850729620cd7502" } Frame { msec: 2512 - hash: "258ae87f78805c555e0ed802c5123eeb" + hash: "f679d87f206ca71de191f3991c13f4b0" } Frame { msec: 2528 - hash: "2e730872c37f118a03864d23ebf7bab3" + hash: "7f503ceda23f0e4718f6216c3b4ddef7" } Frame { msec: 2544 - hash: "381386302f210932bc7d44247a48f13c" + hash: "69f01285109c21cbd32a0f17942734be" } Frame { msec: 2560 - hash: "306f8e6d183eb080da3375d65f2491f0" + hash: "f2060324802c080703ff62c051c7cff2" } Frame { msec: 2576 - hash: "39862f236aabf362d0a07ba64eb212e1" + hash: "45d01b58f0812596aff06a09c1167d83" } Frame { msec: 2592 - hash: "57452ecfea80ebd4d9fd23f8efbb34f2" + hash: "688c9931abdaa7225da91cdf7f2beb48" } Frame { msec: 2608 - hash: "64bd12d4f6e32f19abef79289673c2fe" + hash: "d522505f28615cc17206ca6099dbd83e" } Frame { msec: 2624 - hash: "56340d636f4df7e5f68e84c1d8388429" + hash: "ad86d8cee90c1458b64318f3edd94aee" } Frame { msec: 2640 - hash: "795cd97d4be294fa6157f23793861ec3" + hash: "6dda1a6359b421ef7c9ffa4ecd863341" } Frame { msec: 2656 - hash: "4be9fd5314ad6721a0ddf5a5dc51ccee" + hash: "dcc388cdf2b87e10b07e2f05ab6dce3c" } Frame { msec: 2672 - hash: "3349b775c329db022bf0414b9ed57466" + hash: "a5d64264be7778929116c9407548c7f8" } Frame { msec: 2688 - hash: "587b7070836063f9d138c4a4ee8da8bb" + hash: "cc7ac18a25936825d42694a9022b73fa" } Frame { msec: 2704 - hash: "5bb078819bef7695c9af1bd4b544a26a" + hash: "4423af95764aadbaffe3c608fb3a376b" } Frame { msec: 2720 - hash: "799c05999713e8b29f7d2917f515d2c2" + hash: "ad186cd5735531e2e6bfb2fc387dee2d" } Frame { msec: 2736 - hash: "41bb926661acd8e21300f4933734748a" + hash: "d0e7c8071350bac03cf06996b6f74a63" } Frame { msec: 2752 - hash: "2ead23d38a2f1834c7688a9657d9d7cc" + hash: "d012311c64fb35717155ebc88f9940d6" } Frame { msec: 2768 - hash: "196309eac81adea21630dda19947ef5e" + hash: "13111334420c479b6a3ddbde65e2d143" } Frame { msec: 2784 - hash: "cf414b2004712581f11f27890745c761" + hash: "3a77939f35498ef91590cd57c534fb6a" } Frame { msec: 2800 - hash: "6b2a6837da878fa8f3811b2045e098b1" + hash: "89cbc568600c18c3d7163c3079a3f584" } Frame { msec: 2816 - hash: "7390cfdef1d4bc194b86854b1947f15d" + hash: "2a8db5a4cae5258578749a88fbf915ce" } Frame { msec: 2832 - hash: "9e4543fcf65a56edfbcaf46805343071" + hash: "ddd9cef18ce748096869dae9c2e23de3" } Frame { msec: 2848 - hash: "3a886e2ed813eb7d44d0cd67eb5dee31" + hash: "d9e213af096ce69f75863ed7c39b59f4" } Frame { msec: 2864 - hash: "625baed6cbf3a58b32060810be53d0b6" + hash: "69e9bfa09b8f5a1e2d83b77a5c9bc374" } Frame { msec: 2880 @@ -726,50 +726,50 @@ VisualTest { } Frame { msec: 2896 - hash: "484666ad104cee644c6a7e8ec0c4b10e" + hash: "449168c60d6c9f04c94b3c48f27de7ff" } Frame { msec: 2912 - hash: "41abe2e2d92b293407141d0333d7d04a" + hash: "e60ed277794737b9f5d8c4a575f5b300" } Frame { msec: 2928 - hash: "953c03834bd3b50798b77c0c6bb0f4a8" + hash: "5c1a39fa9789064ff0d5ea1fd4c6d187" } Frame { msec: 2944 - hash: "a076463868003c62df3ee5147ffd4660" + hash: "64c1593bf33b85593153ac9eeeb7793e" } Frame { msec: 2960 - hash: "b389b5c9ed31816dd562a8f1332d28c9" + hash: "dab7df26ba23ed3e750fa6080916f177" } Frame { msec: 2976 - hash: "246706829939a2619d64fad63e424fdb" + hash: "5958428d5ab5a379f9bbcc0f86c20d1b" } Frame { msec: 2992 - hash: "d5e644f16bde52c566191a054a1279e5" + hash: "65929536b7b8b48958fab7bd1e3ccca5" } Frame { msec: 3008 - hash: "10b2e99d2e08939b75c24a6bbf481858" + hash: "cb157ba8c58bb7a8ec357e83e82ab441" } Frame { msec: 3024 - hash: "732a7bb0009f394f0039e09594362c75" + hash: "bf36b7c52a3b3b2fb08524131bb4b9e2" } Frame { msec: 3040 - hash: "261f38ce42a8a8c86daadd497ecfad07" + hash: "0d2dbb3ba42cad9e8b5833c97dd0cdba" } Frame { msec: 3056 - hash: "8b66ae6261db386d6c4e88d0146db090" + hash: "f918a9f5fa6808b545c715dffa2f4838" } Frame { msec: 3072 - hash: "dc8dba79e4466059c29725084cf801bb" + hash: "ec11344fb21ee06df6cface390d611d9" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml index b36a220..78ba061 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativeparticles/particles.qml @@ -4,31 +4,31 @@ import Qt.labs.particles 1.0 Rectangle { width: 640; height: 480; color: "black" - Particles { id:particlesAnotEmitting + Particles { id:particlesAneverEmitting y:60; width: 260; height:30; source: "star.png"; lifeSpan:1000; count: 50; angle:70; angleDeviation:36; velocity:30; velocityDeviation:10; emissionRate: 0 ParticleMotionWander { yvariance:5; xvariance:30; pace:100 } } - Particles { id:particlesA + Particles { id:particlesA //snowy particles from the top y:0; width: 260; height:30; source: "star.png"; lifeSpan:1000; count: 50; angle:70; angleDeviation:36; velocity:30; velocityDeviation:10; emissionRate: 10 ParticleMotionWander { yvariance:5; xvariance:30; pace:100 } } - Particles { id:particlesB + Particles { id:particlesB //particle fountain bursting every second y:280; x:180; width:1; height:1; lifeSpan:1000; source: "star.png" count: 100; angle:270; angleDeviation:45; velocity:50; velocityDeviation:30; emissionRate: 0 ParticleMotionGravity { yattractor: 1000; xattractor:0; acceleration:25 } } - Timer { running: true; interval: 1000; repeat: true; onTriggered: particlesB.burst(200, 2000); } + Timer { running: true; interval: 1000; repeat: true; onTriggered: particlesB.burst(200, 2000); } Column{ x: 340; - Repeater{ + Repeater{//emission variance test model: 5 delegate: Component{ Item{ -- cgit v0.12 From cbeda35432a347851f9ff842403c168ee742eff7 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 11:53:15 +1000 Subject: Update visuals for qdeclarativepathview visual tests The only difference appears to be a change to the flicking parameters, so the test is still valid. Task-number: QTBUG-14792 --- .../data/test-pathview-2.0.png | Bin 2263 -> 2270 bytes .../data/test-pathview-2.1.png | Bin 2329 -> 2332 bytes .../data/test-pathview-2.2.png | Bin 2279 -> 2354 bytes .../data/test-pathview-2.3.png | Bin 2263 -> 2280 bytes .../data/test-pathview-2.4.png | Bin 2263 -> 2280 bytes .../data/test-pathview-2.5.png | Bin 2308 -> 2311 bytes .../data/test-pathview-2.6.png | Bin 2280 -> 2286 bytes .../qdeclarativepathview/data/test-pathview-2.qml | 894 ++++++++++----------- .../qdeclarativepathview/data/test-pathview.0.png | Bin 2412 -> 2412 bytes .../qdeclarativepathview/data/test-pathview.1.png | Bin 2443 -> 2373 bytes .../qdeclarativepathview/data/test-pathview.2.png | Bin 2398 -> 2404 bytes .../qdeclarativepathview/data/test-pathview.3.png | Bin 2390 -> 2390 bytes .../qdeclarativepathview/data/test-pathview.4.png | Bin 2416 -> 2416 bytes .../qdeclarativepathview/data/test-pathview.5.png | Bin 2395 -> 2395 bytes .../qdeclarativepathview/data/test-pathview.qml | 264 +++--- .../qdeclarativepathview/test-pathview.qml | 2 +- 16 files changed, 580 insertions(+), 580 deletions(-) diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.0.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.0.png index 18c8a9e..3e1a92d 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.1.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.1.png index e86acb4..8658d7d 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.2.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.2.png index 17990b7..f1a56d7 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.3.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.3.png index 18c8a9e..e1eaebf 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.3.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.4.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.4.png index 18c8a9e..e1eaebf 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.4.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.5.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.5.png index 8636f8f..06e7d18 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.5.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.6.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.6.png index fa7c4b6..2c6c5f9 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.6.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml index 54ef858..e3baa4d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview-2.qml @@ -6,239 +6,239 @@ VisualTest { } Frame { msec: 16 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 32 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 48 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 64 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 80 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 96 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 112 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 128 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 144 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 160 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 176 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 192 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 208 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 224 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 240 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 256 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 272 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 288 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 304 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 320 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 336 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 352 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 368 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 384 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 400 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 416 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 432 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 448 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 464 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 480 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 496 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 512 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 528 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 544 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 560 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 576 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 592 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 608 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 624 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 640 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 656 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 672 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 688 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 704 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 720 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 736 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 752 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 768 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 784 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 800 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 816 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 832 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 848 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 864 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 880 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 896 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 912 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 928 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 944 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 960 @@ -246,23 +246,23 @@ VisualTest { } Frame { msec: 976 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 992 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 1008 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 1024 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Frame { msec: 1040 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Mouse { type: 2 @@ -274,7 +274,7 @@ VisualTest { } Frame { msec: 1056 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Mouse { type: 5 @@ -286,7 +286,7 @@ VisualTest { } Frame { msec: 1072 - hash: "1ed6fa56736cf7cb2f99b5d362974463" + hash: "cffe9de189a5c9bed3d98f8803b47212" } Mouse { type: 5 @@ -298,7 +298,7 @@ VisualTest { } Frame { msec: 1088 - hash: "24f3dd6c49dd8b19cd0c387409405e18" + hash: "e8c46deb6b5f5739e4b95d53619e9314" } Mouse { type: 5 @@ -310,7 +310,7 @@ VisualTest { } Frame { msec: 1104 - hash: "08c828e7fdfba4252fa7a9fb06eb728e" + hash: "11d19a126669227211f399d262bfd8bd" } Mouse { type: 5 @@ -322,7 +322,7 @@ VisualTest { } Frame { msec: 1120 - hash: "b76110faf8520f52128b5e1af8f2b838" + hash: "46d81424418241d7dd98c581491c08c7" } Mouse { type: 5 @@ -334,7 +334,7 @@ VisualTest { } Frame { msec: 1136 - hash: "5f56acb5f39ac291cc8e73c0268df214" + hash: "8674dba6282cd9dd6ca31442f7f996e2" } Mouse { type: 5 @@ -346,7 +346,7 @@ VisualTest { } Frame { msec: 1152 - hash: "840ee0c0d8ea94e22e783a15687f979d" + hash: "efc9e337337267c43b865f33c8912c4c" } Mouse { type: 5 @@ -358,7 +358,7 @@ VisualTest { } Frame { msec: 1168 - hash: "69827007bbdf5a360ccc34a016315113" + hash: "b3fd11ff8cf16bad9fd7e1329add6029" } Mouse { type: 5 @@ -370,7 +370,7 @@ VisualTest { } Frame { msec: 1184 - hash: "2437beb8f9cb39b125611fb186bad820" + hash: "3be61bd51ca152965c0e789a7587fe98" } Mouse { type: 5 @@ -390,183 +390,183 @@ VisualTest { } Frame { msec: 1200 - hash: "df07c389b26fc191234c70b97bfaa432" + hash: "9b02fac96198b587d59b10ddc021dfca" } Frame { msec: 1216 - hash: "8d4e23f4e91d0e0df9d87c3171d5971f" + hash: "505b19e66a416012cc10125381b3e012" } Frame { msec: 1232 - hash: "dd79837aefeabffa7184be07f2a98969" + hash: "eff92d7a9b0962067d5ef97e86a23c07" } Frame { msec: 1248 - hash: "2d9bb2aaf4b882902f090ff0c89053c8" + hash: "74f48d40be0dd93988d01aa18f26ae96" } Frame { msec: 1264 - hash: "b1ec9adbb026d8002a7f16fe9a8d56d2" + hash: "1f8608199813f9c54c426f59290089fa" } Frame { msec: 1280 - hash: "43b23d6e1aeeb36350c3530650e9156f" + hash: "8b4e68ab41bf4e0e23d86c7f99ff11a5" } Frame { msec: 1296 - hash: "03f231597c4d5010ee71c74217f2483d" + hash: "00180bb46496f5b10350071a7f0e1f85" } Frame { msec: 1312 - hash: "8607c7412a5a1b4ea1522f28c465a83e" + hash: "d966232acbb1ecf2339a1df02642dd9e" } Frame { msec: 1328 - hash: "671e80e290bec997eb36320ff76fdccf" + hash: "0235a7aa18d390099e6934971354f878" } Frame { msec: 1344 - hash: "5f6717112bd45e5ebe194e0f87d12be6" + hash: "136159dc7d4775e108c4738b7c1bcc86" } Frame { msec: 1360 - hash: "ca8e33c7a5428d70ae13cb64e5098a48" + hash: "e976f2c7ef3d61c2e200fcc849e9f4cd" } Frame { msec: 1376 - hash: "86e60eb395f66bbaa1ec07b3e07013c0" + hash: "09181b465a9d228006e827b56ec83c1d" } Frame { msec: 1392 - hash: "342fa6ddc02d0a793e97a79ba8882415" + hash: "8b3f884ac343f1272e3d3af6b2b4d875" } Frame { msec: 1408 - hash: "a907fbcc47807d4eb6d66e070ea7f2de" + hash: "419ffc2f8685ea8d1e5232c4440b2d96" } Frame { msec: 1424 - hash: "04838f8b495bed6d050cbe54d00aad31" + hash: "105b3cc7c5b8f07e90a3c3aaa9d78ce7" } Frame { msec: 1440 - hash: "d485534916473ea6c4612230c5a95421" + hash: "6005de2db98dfd9cb8e3cb42a668a6bd" } Frame { msec: 1456 - hash: "1d3da7cc5b9120724645558584f2f0f3" + hash: "2bae12b6d577965a3cd24bb05c4f5e44" } Frame { msec: 1472 - hash: "c271f057d5f1745e910b2b407c52a4f3" + hash: "e74db37aedd78bf1765d0a3b4ed89023" } Frame { msec: 1488 - hash: "050d1814a9ced514db6cfd2732eb76be" + hash: "49511dcf43ce2dbbe4fbafb461189e72" } Frame { msec: 1504 - hash: "cfcd21aadfe3fd611caad83920fb2432" + hash: "21183bde6a5cb1d9769e01630e1b593a" } Frame { msec: 1520 - hash: "472f900ef8eef74522da3338ce7fa93e" + hash: "15bef0512513a0bdef002a4af5e1b3d3" } Frame { msec: 1536 - hash: "f9d892a81c6ba3b9fc4c6e76082d4fa7" + hash: "d46944a859d8be8c3371bf719ffe6251" } Frame { msec: 1552 - hash: "a3febe1c3c4585e25a410a91cc34c1fa" + hash: "2a5249bc1e0eba408654d6500fe22e6f" } Frame { msec: 1568 - hash: "74cd765c9d9a6fb243070b4a56a07e87" + hash: "df860d60c47ea0eae7ed917ce1cd0578" } Frame { msec: 1584 - hash: "469d324abbef017a99bc587bfae622b3" + hash: "90bfd7e58c63e7e2ad647d37a597c084" } Frame { msec: 1600 - hash: "6054ff6e658f0a5f5e313f0a724d9610" + hash: "a400250799ca74b0de5fa0b00ea54223" } Frame { msec: 1616 - hash: "67cee7ebe428c9d35f1f28274f3049d5" + hash: "1943506235c641ee444394b2bf48f2ea" } Frame { msec: 1632 - hash: "ce6c3a1dd726eacbba6306e56121beef" + hash: "ac9dd2d323a513f6cf729890b5b6dccc" } Frame { msec: 1648 - hash: "a7d5f703c98c0c8cd32b189a79e1fd05" + hash: "029cbaec81f7e1251d8de63b8011f06e" } Frame { msec: 1664 - hash: "41cfd9982767ba904843fb73a5a0ed71" + hash: "c0cf823c09a96cf8b6ac063a87f1e5ed" } Frame { msec: 1680 - hash: "388dcde17a820800237d1185372d889f" + hash: "9ed0e1fef6937f5e05b6647b0fb9d534" } Frame { msec: 1696 - hash: "3bd72585388f04d55900ccd345cd576e" + hash: "61b878c5c6db407032c6abb76e49e1b2" } Frame { msec: 1712 - hash: "0e5c63b066f2b70000eca7f3aaa3a195" + hash: "b842458ea2b17501f089c9b5cdd15cc4" } Frame { msec: 1728 - hash: "15199f3e9f00afc76279b5bbffb78d92" + hash: "8a308f9048be4323eb82229b2bcdfbe2" } Frame { msec: 1744 - hash: "596ad681a3b96afbc284e3af5fd173cb" + hash: "5a4e29c2d768a3d0ca319ae7406920dd" } Frame { msec: 1760 - hash: "e5ae2d0245fc5d74c6ea3f7dddd1ca2a" + hash: "b96f98a169e700ccf5c77b42e1143d50" } Frame { msec: 1776 - hash: "0d152716f9ebe5f0fae3f5cabb20630f" + hash: "570b2182f63d4eebc2c9d136636c5c7a" } Frame { msec: 1792 - hash: "74afbfa464b0d19b53432fa4d5ea2804" + hash: "df2bb468c032ce62cc23ac3600123649" } Frame { msec: 1808 - hash: "c8aa3f4738a8c07cdf2450a24c885ce6" + hash: "f6579e334ba34bae43c6fa9bae465e32" } Frame { msec: 1824 - hash: "2e4e0003f1b1cb10593075862b972643" + hash: "b6bba71527e894c0520eb840db66fc8a" } Frame { msec: 1840 - hash: "acea518c7da7330ae78daf5fbfd1a423" + hash: "510afb9fd3812786cfdfb82b7131a158" } Frame { msec: 1856 - hash: "0b8d4ea6947b522c6aa9a32d9f16723e" + hash: "13da41ed3e0e071c1645e71a003a8a1d" } Frame { msec: 1872 - hash: "19f2aef82586817ef574a70865060997" + hash: "c09aabd8c11c6124d97793563b274c7a" } Frame { msec: 1888 - hash: "115565eb0ba3024dbf15d00ed242c389" + hash: "34101fd20242b0b48d056f24f21c8939" } Frame { msec: 1904 - hash: "7e59425c85acf93f5bf55e139c148737" + hash: "34f064cb167b85e79a2f113eb430a675" } Frame { msec: 1920 @@ -574,139 +574,139 @@ VisualTest { } Frame { msec: 1936 - hash: "ce96601476cf55f665bef09bb1b038e2" + hash: "d50eb3d7eaad3d2a825876dcf1f59d91" } Frame { msec: 1952 - hash: "dc6eaacefe37fc709ac0bef99110f796" + hash: "c0c308b9eb3af4c1af3bc7e197696475" } Frame { msec: 1968 - hash: "82ad9b84425bd8e385524cb052a8fdd4" + hash: "67e630b9f050a64645e276695f3d4932" } Frame { msec: 1984 - hash: "608000b44ade998e225010d5ea562316" + hash: "5bb212885448a7506ee6de766ea80a8a" } Frame { msec: 2000 - hash: "ec6b4d519b7bafcf5293c2b5e6585007" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2016 - hash: "9895792ffa929ba6fc600949f11766b6" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2032 - hash: "0d2b27c9ca22520b269f93c90de08df4" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2048 - hash: "78a61e4565db709215b419aa56f6efab" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2064 - hash: "d6f2aebed062d093c00b27a52f0b14b8" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2080 - hash: "21b7a438ad1e835b84e5576e52abbe84" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2096 - hash: "703e32f43e9a71b8677d6839a0eafe06" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2112 - hash: "b04bea8af558de4120723fc5abd0f36c" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2128 - hash: "ac8e91c3b55e058ce8ff08ad6e3af9b6" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2144 - hash: "54846c8c70b232d05ff5eaf144f6f7d3" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2160 - hash: "52281806f5c80512b4bcab7f61139f74" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2176 - hash: "a352657ff34ef8962162c00647df343a" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2192 - hash: "3a0b12d1f8bf5cae8ac06289dd30d52a" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2208 - hash: "2c6bbcd05719f69b9a67be18de2084a6" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2224 - hash: "ab091484522587412b0e8aceeb8987ce" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2240 - hash: "13682b0d45bcbad0f011d08899085b1d" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2256 - hash: "3c5d6f82eafd1b04edfbcbffbdbe2177" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2272 - hash: "151803d70b7c3327df32c8602fcd677a" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2288 - hash: "78613cec5364fe3f0df84188793d8eac" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2304 - hash: "fc05a3cad43af35230c5ba89f6fd13c5" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2320 - hash: "9f826733b300c89eeb80452129505e8b" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2336 - hash: "8565efc5c1fb1bdf5629e3bd495bb611" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2352 - hash: "3b8f6e8c526ab8cce170277c378a5a69" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2368 - hash: "07db3bc0ab19e0ca829e89558bacf1a1" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2384 - hash: "ed8843024c6ac28a8c782839b362149c" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2400 - hash: "381a9f6564c090613aa2cd0476b95210" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2416 - hash: "c3fabd891fa8e27fd71df175db383667" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2432 - hash: "9b441792fdaa9ba9d340fc0c6a9c11bd" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2448 - hash: "3209c9ba69fa016370e3d56e7e1e37a4" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Frame { msec: 2464 - hash: "34da0a01453fbb2571b370257fd35f8e" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Mouse { type: 2 @@ -726,7 +726,7 @@ VisualTest { } Frame { msec: 2480 - hash: "32e6204a07c493d0a0f9f50773fe8f32" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Mouse { type: 5 @@ -738,7 +738,7 @@ VisualTest { } Frame { msec: 2496 - hash: "2a1814768ae500ba9c24bc2e3e4de1d5" + hash: "f9ec9b4de5244e58fbba2f6871e4a61b" } Mouse { type: 5 @@ -750,7 +750,7 @@ VisualTest { } Frame { msec: 2512 - hash: "7cf6e3c52d12d590beafd061979a49cb" + hash: "a123e6b06abaa4dda4645bc174edc6ad" } Mouse { type: 5 @@ -770,7 +770,7 @@ VisualTest { } Frame { msec: 2528 - hash: "c66c36642ab7f6c32b45e27de38d23b6" + hash: "a706a48bce5eec7a1d55fec0df8c4d81" } Mouse { type: 5 @@ -782,7 +782,7 @@ VisualTest { } Frame { msec: 2544 - hash: "6e003380cc6fd303ae3b499863225ba5" + hash: "297edbcda96e508dc9d0d977951c015a" } Mouse { type: 5 @@ -794,7 +794,7 @@ VisualTest { } Frame { msec: 2560 - hash: "a790259cea2c247493be58c6018435b9" + hash: "7d334b1b7bfe3893473b02b49e2e1bda" } Mouse { type: 5 @@ -814,79 +814,79 @@ VisualTest { } Frame { msec: 2576 - hash: "e6cce7468a27b5063821df8dbaa15c18" + hash: "45ba14d15a8fcac259a06dc85a935f18" } Frame { msec: 2592 - hash: "ff8386cbe89aeac184f4a75237ef4a14" + hash: "0119f472e718a8e6bc59a998c18beb7f" } Frame { msec: 2608 - hash: "1a11a90853b025837b991be40efb78f8" + hash: "fb08ca9960ec17a26dcf27de6474392f" } Frame { msec: 2624 - hash: "17da10de7e2d2fcf125207e2873bdee8" + hash: "b209bd311ce16fa9daf612786b7c5f53" } Frame { msec: 2640 - hash: "dfbda435d05903cc3a31f4f8f31e8985" + hash: "d47eb1544d2c417e5b452df6715efe0e" } Frame { msec: 2656 - hash: "1f3753e809099f20c6289f150a096935" + hash: "caf3eeb521fbd0b5f97e99111d4a2416" } Frame { msec: 2672 - hash: "9454afc9d70103e1f1c00eb0ad2ca534" + hash: "5726e2e19aca222de3ce0125cf1def6c" } Frame { msec: 2688 - hash: "860ab90e2421a0c8faab304915b5e6f2" + hash: "7f2ca733f50390284d90e757788c6c64" } Frame { msec: 2704 - hash: "600258507426a8c3c89e3591ee9328f1" + hash: "72eb5d86be5e9b477abbfbfae78261fc" } Frame { msec: 2720 - hash: "0795a607b893da2bdc0970195f3039fd" + hash: "f0a1dda33df6856a02e5668c6bb45aa2" } Frame { msec: 2736 - hash: "e300b9109e242d85537fc3f4461eaf8e" + hash: "55863490cefc48da96a368b95055ac2b" } Frame { msec: 2752 - hash: "dbb84b38e2bda694f210f133dc133180" + hash: "e01c23ac71fd3906a47b4a969ee592d9" } Frame { msec: 2768 - hash: "2455e9de47da4db88eef35fea1dc2abe" + hash: "b45eb0154d405b49c9f7ea1452601b4e" } Frame { msec: 2784 - hash: "5f0c3d7e089c921a68813a48f0fd8844" + hash: "b5bf040d5dbf4f7cf8c5a0dc3d6aaea1" } Frame { msec: 2800 - hash: "e6d9e7d0fdc724a6a1804bc94629cab4" + hash: "c171c81a12d4971f33154e52f789967a" } Frame { msec: 2816 - hash: "d177183bcbaa27ad061fd88bd037277d" + hash: "fac8265a6d744a11120a0d434821d8b4" } Frame { msec: 2832 - hash: "78dd13fa6367abd14374462d89a3d066" + hash: "2b6b1f9aa8aa32c9e48579d215e31268" } Frame { msec: 2848 - hash: "41d12e4c362ccc99a1a04b3a09f0e68c" + hash: "8455997dc106cd5d386eb3cf3703828c" } Frame { msec: 2864 - hash: "5112700bf72aacb176e63ef054fce244" + hash: "c6525e8ee9c7ac6fa4d0c8d6dd4e1745" } Frame { msec: 2880 @@ -894,239 +894,239 @@ VisualTest { } Frame { msec: 2896 - hash: "0257e67512c62ffc42a272fd304e4ed3" + hash: "bc501c449f5d8b7de40b27204c5344a4" } Frame { msec: 2912 - hash: "42cd0a98aa0f3768cf77aac284072fa9" + hash: "fe850b5232c819a9171d0b93aaf5e811" } Frame { msec: 2928 - hash: "811d27f89b0c434fc49e4280f85c2f27" + hash: "a54d819719aeb80392e5b6ffbc25dea0" } Frame { msec: 2944 - hash: "887406c50c666d08e4d98c040efae9a5" + hash: "8479d90984fd9f619b86529231b840fd" } Frame { msec: 2960 - hash: "27e10fa9d82920c7f761465501d44564" + hash: "6bfa9782e64bfc0041175073aa2bbb80" } Frame { msec: 2976 - hash: "ba67dbe0010ba2aae3ca100886b11553" + hash: "8df19b6bd14c7e1f014dfdb4cc887263" } Frame { msec: 2992 - hash: "8064db575e2c74c0faf7782adc527a08" + hash: "02dd88bf2766c756b840bea3e6f7dd80" } Frame { msec: 3008 - hash: "b7fd5446ad957610ab853e0c597b9a36" + hash: "edf9f3ca4b85ffba5ca051d96b1b3b64" } Frame { msec: 3024 - hash: "092b53eb50e91d74db7899328899cfd3" + hash: "7da796da178c888018981d7dd39b3784" } Frame { msec: 3040 - hash: "0346065ad603b41db9365987ebe81586" + hash: "d4b850c173169ec184634bb2001e3f3d" } Frame { msec: 3056 - hash: "705083f27a338fea544c9806f0d8fcb3" + hash: "37afe96e32df2ac6031d70fe9ded7d56" } Frame { msec: 3072 - hash: "fc29b4888e26deec4c983e487b9bd058" + hash: "7a0f09bc5d91c4295000d39c97b31d76" } Frame { msec: 3088 - hash: "0ff734e0509908eba292c1814f677e5b" + hash: "afbbb94bc89ef4f9e321dd2c391d0af1" } Frame { msec: 3104 - hash: "7181d9011ddd3ad49ee95fac2e146b12" + hash: "93c4ff33449244b76103f0d35cc7a9e1" } Frame { msec: 3120 - hash: "4478b07b0331bb30e60f23ee74475f73" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3136 - hash: "514aa7a4b1230ae1701004f479eeb5f2" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3152 - hash: "56e51f8f36e0f1a5a4b6b21c41151375" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3168 - hash: "f58216f12e507a91482ded5372f960c7" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3184 - hash: "18e8675ca5ea7ade7e32b29f1632e1ff" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3200 - hash: "13ec0166cc7dd82042e596739c598a1e" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3216 - hash: "5cebf9afa912b17ac3161619d238e5da" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3232 - hash: "f096b191e347b7e2eab51b6adc1a5aac" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3248 - hash: "81cffc13a615ab673172912760863c08" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3264 - hash: "e89c7acfc07bc0eb6e9740d545400064" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3280 - hash: "e681f06f57d43a38acb29a3cb45e4384" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3296 - hash: "945bfe7808fb620dc3f7ad887183244c" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3312 - hash: "4d1fc53701adce4e4af87c32e6c5a8de" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3328 - hash: "c42bbf27e800558fab33bc6e9a0f36b9" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3344 - hash: "5f48f59812b17a9be466f0601f0ed0df" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3360 - hash: "f3a3f645115077b7aeb66465280b7a16" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3376 - hash: "d1c295b2157001ff1020515f4b2aceaa" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3392 - hash: "e5f364e0e4bd75dd04280f6b6f48b8ba" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3408 - hash: "f439df4b5907ba0201c0dad934115721" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3424 - hash: "2e7eb0e999792f3aa87c63865f68d26b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3440 - hash: "45d3ccb3b03adc8323445207d2dca502" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3456 - hash: "c345f92a25406e33256bfe47dc7f72f3" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3472 - hash: "dcb2663d27d644c0b50aa7386aa9d488" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3488 - hash: "ebe4b9eaf39676bcdd968f8517efa222" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3504 - hash: "deb3e3e6fdf8fe18de907f88822538e8" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3520 - hash: "30e8ab0e6cf32a45190c4b29e458d858" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3536 - hash: "059e6f57c2c78a25ab8b515c878231f9" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3552 - hash: "fa7621f338ae187edac5cb69b22e64b3" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3568 - hash: "bf287cbb0963fc8e575cd95808e1983d" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3584 - hash: "741dc09e0ae13d6afbdaae701cb699ef" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3600 - hash: "8dd52007df5585aed4b9737a8314a74d" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3616 - hash: "ddcd945a3a4467d8dd0b7a4197aafed5" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3632 - hash: "015deb5f228fa2f77978315ccca4f4c8" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3648 - hash: "e1c960e966873e694837fd98f231cfcb" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3664 - hash: "17a177d37b427d9488e36d19b345a397" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3680 - hash: "d4aded08d04f79d50536ecf539c0583d" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3696 - hash: "72890e9b84acf9df6083e23ab9270da1" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3712 - hash: "313859115de570f8d41f67c4db7cf49e" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3728 - hash: "98918d73b6d6b375db53470dd72c7b35" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3744 - hash: "ff706517a4d257747893c11a3b059926" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3760 - hash: "73e62664a31232c1a349568c8da6ce64" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3776 - hash: "bed046c6eae90d267e859cd76d3eacfb" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3792 - hash: "4643348fc1b47f0d3244e7e717247953" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3808 - hash: "0305bfc35b5618da19e9eabb3c1b5d2b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3824 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3840 @@ -1134,47 +1134,47 @@ VisualTest { } Frame { msec: 3856 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3872 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3888 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3904 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3920 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3936 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3952 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3968 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 3984 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4000 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4016 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 2 @@ -1186,7 +1186,7 @@ VisualTest { } Frame { msec: 4032 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1198,7 +1198,7 @@ VisualTest { } Frame { msec: 4048 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1210,7 +1210,7 @@ VisualTest { } Frame { msec: 4064 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1222,7 +1222,7 @@ VisualTest { } Frame { msec: 4080 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1234,7 +1234,7 @@ VisualTest { } Frame { msec: 4096 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1254,7 +1254,7 @@ VisualTest { } Frame { msec: 4112 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1266,7 +1266,7 @@ VisualTest { } Frame { msec: 4128 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1278,7 +1278,7 @@ VisualTest { } Frame { msec: 4144 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1298,7 +1298,7 @@ VisualTest { } Frame { msec: 4160 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1310,7 +1310,7 @@ VisualTest { } Frame { msec: 4176 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1322,7 +1322,7 @@ VisualTest { } Frame { msec: 4192 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1342,7 +1342,7 @@ VisualTest { } Frame { msec: 4208 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1354,7 +1354,7 @@ VisualTest { } Frame { msec: 4224 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1366,7 +1366,7 @@ VisualTest { } Frame { msec: 4240 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1386,7 +1386,7 @@ VisualTest { } Frame { msec: 4256 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1398,7 +1398,7 @@ VisualTest { } Frame { msec: 4272 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1410,7 +1410,7 @@ VisualTest { } Frame { msec: 4288 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1430,7 +1430,7 @@ VisualTest { } Frame { msec: 4304 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1442,7 +1442,7 @@ VisualTest { } Frame { msec: 4320 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1454,7 +1454,7 @@ VisualTest { } Frame { msec: 4336 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1474,115 +1474,115 @@ VisualTest { } Frame { msec: 4352 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4368 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4384 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4400 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4416 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4432 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4448 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4464 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4480 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4496 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4512 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4528 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4544 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4560 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4576 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4592 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4608 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4624 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4640 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4656 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4672 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4688 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4704 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4720 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4736 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4752 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4768 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4784 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4800 @@ -1590,147 +1590,147 @@ VisualTest { } Frame { msec: 4816 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4832 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4848 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4864 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4880 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4896 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4912 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4928 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4944 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4960 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4976 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 4992 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5008 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5024 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5040 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5056 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5072 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5088 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5104 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5120 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5136 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5152 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5168 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5184 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5200 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5216 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5232 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5248 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5264 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5280 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5296 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5312 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5328 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5344 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5360 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Frame { msec: 5376 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 2 @@ -1742,7 +1742,7 @@ VisualTest { } Frame { msec: 5392 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1762,7 +1762,7 @@ VisualTest { } Frame { msec: 5408 - hash: "754f9689239e6154a762a6a1e9e0131b" + hash: "5e21e09fa0ec2b1e9f29be60100c40f2" } Mouse { type: 5 @@ -1774,7 +1774,7 @@ VisualTest { } Frame { msec: 5424 - hash: "ba4e61f8de7f078cfc1e5fc8dd3c65f3" + hash: "d269b601f6c58e4349a5bc41ed8040cb" } Mouse { type: 5 @@ -1786,7 +1786,7 @@ VisualTest { } Frame { msec: 5440 - hash: "00389598468dbd1a90cada9543715770" + hash: "b5fb0c0e78b48380e5d9dd82be64554c" } Mouse { type: 5 @@ -1798,7 +1798,7 @@ VisualTest { } Frame { msec: 5456 - hash: "ab020b76bc23554e176bd3a59712c3bc" + hash: "86699ae4ad4491a39272704aa8d2be0a" } Mouse { type: 5 @@ -1810,7 +1810,7 @@ VisualTest { } Frame { msec: 5472 - hash: "96483c5c51cc851c55166b13617b12ea" + hash: "f7ad9df8715594e9012d9e6ba61784ae" } Mouse { type: 5 @@ -1822,7 +1822,7 @@ VisualTest { } Frame { msec: 5488 - hash: "1ad679d1400a0f185a380a75840c6a50" + hash: "5d50347997afcdd437e8f5b1afd5fdb6" } Mouse { type: 5 @@ -1842,7 +1842,7 @@ VisualTest { } Frame { msec: 5504 - hash: "b5ed338d402d16a831c0595311350789" + hash: "40290cb6417848caf299aac419e78b3e" } Mouse { type: 5 @@ -1862,63 +1862,63 @@ VisualTest { } Frame { msec: 5520 - hash: "bf51ff7b6f264170d9c5700559e03262" + hash: "cdd32a53cd968afc378069fa7fc08fc1" } Frame { msec: 5536 - hash: "0d62681e661aad7b67b880e13afeb4de" + hash: "2f0e8c2f895506b3d484da3024c0e823" } Frame { msec: 5552 - hash: "3371739270c458d4ce8a08f2e12d4ba5" + hash: "e97ab47515d55760919b4319f7aa2f4a" } Frame { msec: 5568 - hash: "db271b0ebfa0172d8386ac9afde9f296" + hash: "e8698483768d3cf121985ffce93c89e0" } Frame { msec: 5584 - hash: "d64c064ab483c9636b2736c67b2b1a48" + hash: "75f23e628458b6abce65873777ec2226" } Frame { msec: 5600 - hash: "20a8ccb0ff1c0d5ff606b343f1a32bff" + hash: "5477a54c2c2fd9de2b76a82fb8c9c371" } Frame { msec: 5616 - hash: "5547bb0a4d6b51733829597b9d8d141a" + hash: "c20f1a85cf8166664b1dc44986fc7f1a" } Frame { msec: 5632 - hash: "1135177a5cb24aa11372653985599775" + hash: "44f4b02055397a06c628564d9f2180f3" } Frame { msec: 5648 - hash: "5031ea6ca8ec59155edb7c1f10f77925" + hash: "09d79da372ded40a24d1fdc0d5d97fa6" } Frame { msec: 5664 - hash: "7c5c1015af23f32c002a24a880201883" + hash: "7fec934dac44b7365ef110fc9fa2ff0b" } Frame { msec: 5680 - hash: "c1dd3ad07775d74d2e81b830d07543e0" + hash: "d9f6e4e21629626f9f3fbdf879173147" } Frame { msec: 5696 - hash: "ad6651f644be3c6f1ebf340809fe516f" + hash: "674967f6494a5aa45f4344142f54145f" } Frame { msec: 5712 - hash: "1eb69541ae67d9d9193b86a6592de4c2" + hash: "59090ec0960776ae02deb8f2365848a8" } Frame { msec: 5728 - hash: "c9c40ec693a421243804efb8f99707f4" + hash: "6ced1eb439584cd55d7ea83b4c6ad89d" } Frame { msec: 5744 - hash: "832884a5102069ca085001156a04e74e" + hash: "2f93341754e279408ebe9389987d6354" } Frame { msec: 5760 @@ -1926,239 +1926,239 @@ VisualTest { } Frame { msec: 5776 - hash: "df0c7d73069e1087d34c7a703197cb2a" + hash: "6ecfb56d8e685d6e251938ecc740a0d3" } Frame { msec: 5792 - hash: "4a8e1f548e48b86140aa1a5fa8b17bd3" + hash: "eb3254187a72afde5091eb240f1ce043" } Frame { msec: 5808 - hash: "f79f47e3a0c16a1361fa287a594c4673" + hash: "cc367bfa5264fa7539d26ca7f2b81300" } Frame { msec: 5824 - hash: "c26da5ed2e4055f5c172b48163560143" + hash: "6a869340f179e768d271b28fd8983c1b" } Frame { msec: 5840 - hash: "0e971cd0c2e25d52b689d4b22509a7d9" + hash: "e22f23a5d5e55eed1e74414dfd4da00f" } Frame { msec: 5856 - hash: "40bae0ef35772c476cddccc034b7c872" + hash: "c6b0c88158ff5052bb3e8ff4c46fa0f3" } Frame { msec: 5872 - hash: "ce1fc0faae5e313bc21e024dac3097da" + hash: "8cebf630fa954c5a3be2b26b29597379" } Frame { msec: 5888 - hash: "ba614972cec0e9fa47cb09f1ba77eefb" + hash: "60bc980648f99ca37a80bff2e462f2f6" } Frame { msec: 5904 - hash: "2266ae29490ae01ff8a2329956c124a7" + hash: "8c3db2a7a7314931a5553408f41551af" } Frame { msec: 5920 - hash: "debae0194926cb5af0a8f7fdfb7f08b8" + hash: "97323491971e95f6d09c83afbcadcbdc" } Frame { msec: 5936 - hash: "10a7111367cfcbe24063b9ee6975e4fc" + hash: "9abecb040056c3d07614c1d0253d08c6" } Frame { msec: 5952 - hash: "3c0f9e0603e33506f31ff6569d007b97" + hash: "b3efc154d193cb69f074c511918f4976" } Frame { msec: 5968 - hash: "69d92abce3f093cc7610bd715a7396fa" + hash: "e8fd8d8ebfb33d0f7c7717f89dec87b8" } Frame { msec: 5984 - hash: "befad9882a6af920684d94c74d8d7f78" + hash: "fe9eb2c5b292db6fedbdacb4e31b8d9c" } Frame { msec: 6000 - hash: "10632052ac53504bd36687ba7aa7ebc1" + hash: "6e86cbefdb523a7153019aa6c3bdee40" } Frame { msec: 6016 - hash: "af4053320c12cbcc6f0e7e321dba1c83" + hash: "142b81c3de5c7140680f6c0ed77e7a55" } Frame { msec: 6032 - hash: "4560c5fcef9d630d744e80dc46947b9d" + hash: "cfef661007ee19ef6c39cc784f3e8369" } Frame { msec: 6048 - hash: "012ee780ed98131321aaa241a2599c5f" + hash: "1305eafc2ffd60605274e043829bce0c" } Frame { msec: 6064 - hash: "25d3fb9d44bc2be3b86a5451d8ffaec2" + hash: "3c6d2fc8364dd9e5e0409cc6f3d16e78" } Frame { msec: 6080 - hash: "09c5cbff81a5c9fae40ec29b936ee52b" + hash: "e1eb0c51700d3b5c56cf8555d9eb8cf6" } Frame { msec: 6096 - hash: "27a0b1d2ea2fc8729e5542c6462c1815" + hash: "9778e7a92f9223f4a8b01edab2627c94" } Frame { msec: 6112 - hash: "c6f347c942aed190ebee077b5bd0888c" + hash: "7616da76832eace7846df67ff29524bd" } Frame { msec: 6128 - hash: "029d78844bd72acb310bd2887489bdf0" + hash: "f7bf509b2764a44227e1b6ebbb6bcabe" } Frame { msec: 6144 - hash: "3af16ab398f1515e90e81460ac061a74" + hash: "a2efece1011c7f90872154242db70d46" } Frame { msec: 6160 - hash: "0151ca050722645e2899919f79f6aa0b" + hash: "f77dbceb3f26533f2f795ea16116a880" } Frame { msec: 6176 - hash: "eead61dfc1851bc9fba3b4bca510af6a" + hash: "8874effc7fa1455c658490f42aad0046" } Frame { msec: 6192 - hash: "da822098c606556ad8683316f5a821ab" + hash: "6d8e2a8c79eed4edbc7a1005fd7e85fd" } Frame { msec: 6208 - hash: "ee47fc2bcf2264f5799a76308fbf2b65" + hash: "7d0f33ce8f934f0d4bfd6ac5b50bc0a6" } Frame { msec: 6224 - hash: "81b208b84ca887d35cda79b5c0e4cd4e" + hash: "1aefde7dbbd6ca7f57637147bfd7a664" } Frame { msec: 6240 - hash: "fd52ccaddcb79a2dfa12bb57640a3610" + hash: "524fa1fc729a033983817fd9591dff09" } Frame { msec: 6256 - hash: "b187e8fcd0a777657a733c260aaaf557" + hash: "c5559eb1e5bb5d2ab20888831a3924a0" } Frame { msec: 6272 - hash: "2cfe47a86bf9df3704002288b6249ed9" + hash: "e5e78ff025bfa205f6ad243484122ec1" } Frame { msec: 6288 - hash: "b79b81706f62789a15557ac1a017addf" + hash: "b3a4e501838e7c44f9b0e21b263922a3" } Frame { msec: 6304 - hash: "77a84eb447fe7034783678f6903ff76d" + hash: "c35ddb641840b7d7a100e074aab82bb8" } Frame { msec: 6320 - hash: "82529385d3072812fa737193914ece1c" + hash: "1121ff859d3a120efd8d3f6b307d2f5c" } Frame { msec: 6336 - hash: "a7ccfa6c8aebf2016f2f12045d2f1abe" + hash: "2be325c442cfc17ae7b722add60170e1" } Frame { msec: 6352 - hash: "486d38e7ea6a5cf13f2ecd1c6919ece7" + hash: "c3e86d4a73c739c159e71255ca08457e" } Frame { msec: 6368 - hash: "6c5bd377d2289ec88f969e961f1dcf65" + hash: "fc56984eb2c3c9db61a54edcfe67f36b" } Frame { msec: 6384 - hash: "92e20565fbcf8c7c9a67726f3a0dd41f" + hash: "477421a20f47af33b4272fd8f63718bb" } Frame { msec: 6400 - hash: "0fcd995a26262b875440d0d9f03d16c4" + hash: "dee4659125ff750159c5b5ec0acd6a99" } Frame { msec: 6416 - hash: "f679759eddca739764bd2816ee53ef31" + hash: "31dce66ad26dbcee6f1515dd43a94354" } Frame { msec: 6432 - hash: "adffd1da9b750df3d9f48820a2235c0b" + hash: "25c4478c27d808b85746cd65fbb1f93f" } Frame { msec: 6448 - hash: "e0f8730acf7a6802ade228f95d700c08" + hash: "f9094ea959b54b92a6d39db6cd9b5f10" } Frame { msec: 6464 - hash: "2c5209c3715bb9f39ac23a8b32a17ef9" + hash: "47f1d0f234073353ca233206c2872093" } Frame { msec: 6480 - hash: "741694ef4cbd3477a8e13ba89fc9d607" + hash: "3a6cf2c77f1ae99977f2ed0b4683aecf" } Frame { msec: 6496 - hash: "e88d6a61acb3fde6b441c2e718a0c2fb" + hash: "df203035dbd68ffe2c9dc532061e7927" } Frame { msec: 6512 - hash: "b91863800e6ab967616d68def388d5d5" + hash: "20f69f8e32fd217967feb9a955e27717" } Frame { msec: 6528 - hash: "4c28a99236c351a2e3e3301c0b5bbba8" + hash: "0bd932d1953ee28c38a359ddfb0c2075" } Frame { msec: 6544 - hash: "6affb524d7f63fef94d29629a148be04" + hash: "0c6c75cca96a1d04c9b60d9bd1543318" } Frame { msec: 6560 - hash: "f7823d25adf673117f010738d977b787" + hash: "9b4c8f6cf066800c1f2bb07357fc2e0d" } Frame { msec: 6576 - hash: "dfb930f3db30ec53c8e9a1aa5d9056e4" + hash: "eb861eb18ddb237cd11d24e101be83d1" } Frame { msec: 6592 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "086db75c06bf1fb1f527f5c8e6255d02" } Frame { msec: 6608 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "e807b1166ca3f658c780b1fef8400b8d" } Frame { msec: 6624 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6640 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6656 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6672 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6688 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6704 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6720 @@ -2166,138 +2166,138 @@ VisualTest { } Frame { msec: 6736 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6752 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6768 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6784 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6800 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6816 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6832 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6848 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6864 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6880 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6896 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6912 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6928 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6944 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6960 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6976 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 6992 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7008 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7024 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7040 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7056 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7072 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7088 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7104 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7120 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7136 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7152 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7168 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7184 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7200 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7216 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7232 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7248 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } Frame { msec: 7264 - hash: "57269234dc01b66f6aeb841c328c06b5" + hash: "a9c65a178a4b4598705bf736c0b1b595" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.0.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.0.png index 16a7e10..d94ea19 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.0.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.1.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.1.png index 116ce88..df940df 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.1.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.2.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.2.png index 13896d4..d10afe1 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.2.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.3.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.3.png index 5d18003..8f99617 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.3.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.4.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.4.png index cd3387f..18b1c09 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.4.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.5.png b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.5.png index 9f31c69..e15d688 100644 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.5.png and b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml index 06d32b6..949807d 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/data/test-pathview.qml @@ -246,7 +246,7 @@ VisualTest { } Frame { msec: 912 - hash: "1c2d4a99e7e2f5e945c05857d6a463a2" + hash: "01b9c877f51b878ed262943aedcf89b4" } Mouse { type: 5 @@ -558,79 +558,79 @@ VisualTest { } Frame { msec: 1616 - hash: "0b3782e842a6c54585d6a266314025d8" + hash: "64c0ba48b59addcbd9dc2a36c24b3070" } Frame { msec: 1632 - hash: "02409885b82ebac931df18d8e23238d7" + hash: "5ce463d514a776055897052defbae117" } Frame { msec: 1648 - hash: "edcbd91ad267c125c431367be3e4a8a3" + hash: "16b25853ec30feee97c3f11a0ea5767e" } Frame { msec: 1664 - hash: "47641fd7ec919b3c041c5acc04b0d083" + hash: "55cfc9179923c935a44de0fee69d74ce" } Frame { msec: 1680 - hash: "ea8f026fee0fba2c27a8df1e1e531acb" + hash: "47641fd7ec919b3c041c5acc04b0d083" } Frame { msec: 1696 - hash: "e2e8a398760be380f9b2b7dbcb03c0e8" + hash: "466eedb320beed99d7eba5a71095438a" } Frame { msec: 1712 - hash: "a1767f2e10f9ab87050ef246a4a29bbb" + hash: "a7520215940ca21acd148ca88c0fec62" } Frame { msec: 1728 - hash: "f60cccf793bd6d356d69b1394638a201" + hash: "f5c8bff5c3305064dbaa777707994de3" } Frame { msec: 1744 - hash: "31dc8c50a99164c19445a089223c8813" + hash: "95b37e22bb68634029e18bcef7e9502c" } Frame { msec: 1760 - hash: "78ff726b7da5ba03fa74f66b39bf1006" + hash: "f60cccf793bd6d356d69b1394638a201" } Frame { msec: 1776 - hash: "6f8a540dccf7182f6aed8903a0afb109" + hash: "d77a5c2553e9391c14a49dba951ae236" } Frame { msec: 1792 - hash: "c914c500507b9c7180dcf25e985135e9" + hash: "0bfa2f6e5fa25a9847c2515de8ad53bd" } Frame { msec: 1808 - hash: "39702ce38bcfca46ef3a8dbb7299c725" + hash: "202c077b20213814545ab594987b3c46" } Frame { msec: 1824 - hash: "969b71ee88a1d244e62af1cecc105234" + hash: "32c5d1644c4f6a3386b4300b1dadae2e" } Frame { msec: 1840 - hash: "11c8397fb9d7b993761b08ba8c9958e5" + hash: "c914c500507b9c7180dcf25e985135e9" } Frame { msec: 1856 - hash: "79ad4a90ab449e3232db993b30786d89" + hash: "62095b2214425007cb19a6218819ed21" } Frame { msec: 1872 - hash: "daf979fd50e0860bf30f377a059d89dc" + hash: "06d25e03eca85906c93d60b7c80b353c" } Frame { msec: 1888 - hash: "5412e7524dc22e8064c8a8c684092802" + hash: "605992eb3f636b705b4b6dd7dfbe1a5f" } Frame { msec: 1904 - hash: "2c3bea8bf10ecf6c19b93e94cb7ac0ea" + hash: "3241ccb6da86acc69bb07c044ba5bade" } Frame { msec: 1920 @@ -638,15 +638,15 @@ VisualTest { } Frame { msec: 1936 - hash: "bbfa2f8aaab0abaff9d771d5ec546d96" + hash: "f09fe53cd6698a94d1626df1a1e4079b" } Frame { msec: 1952 - hash: "be2811bf369bc9dd8c5d9deec3b84788" + hash: "aff96cfa2f88f1f2ce6af5e6a838fb79" } Frame { msec: 1968 - hash: "779838915f48eb917d36c3f2b65eedae" + hash: "dddc255c053608f6b199cebb40e164bc" } Mouse { type: 2 @@ -666,7 +666,7 @@ VisualTest { } Frame { msec: 1984 - hash: "d20b5fe14b47dfb1e73f8ef44802da11" + hash: "345864eccf0b48f94097c9e0f037d71d" } Mouse { type: 5 @@ -678,7 +678,7 @@ VisualTest { } Frame { msec: 2000 - hash: "5312dd1f9d309ab5134b8bb67685488e" + hash: "05e9776009f78d5466473c67a900e74d" } Mouse { type: 5 @@ -698,219 +698,219 @@ VisualTest { } Frame { msec: 2016 - hash: "8d6b6cbb74cc654bc5aff10a807dd3cb" + hash: "3a2bca372b5e492d71c73c945851a616" } Frame { msec: 2032 - hash: "dee717869177d1de4a26599b120f1c3d" + hash: "f7957d18f0fc7421f7109dfc5debba3a" } Frame { msec: 2048 - hash: "2b2c60f42024784ceed5c68505dfa5ca" + hash: "cdd2a73b65b60991f1a3671cc668fa0e" } Frame { msec: 2064 - hash: "1a6a108fd6cf607ec08dbedd804d12f7" + hash: "d1646d66d0726f163cd32d4e985da46b" } Frame { msec: 2080 - hash: "10bc4d0a1dc400fedc9a68b68c6525fd" + hash: "1d2ea750a691ba78943c8e6e1a950017" } Frame { msec: 2096 - hash: "dc6a4abfbfb38e90af2308320d0f795b" + hash: "c372a639a59e7cb1f5573de540dd0dcf" } Frame { msec: 2112 - hash: "82c61d8461001c19af7c2b458d427e0b" + hash: "964fc74c67a84cb84516389c57468ada" } Frame { msec: 2128 - hash: "e455d9ccffedaa708532bb69ad15871e" + hash: "7310eb82821b9c209dd9e54d7b8d2e61" } Frame { msec: 2144 - hash: "b9c6169ad08724fc70df30668dfe7509" + hash: "55b62e5afa61e8acb4faf97f7c2b1aa5" } Frame { msec: 2160 - hash: "a3fe5862be470470854d4157c1c027db" + hash: "4a9994d898380369eb705efb52839402" } Frame { msec: 2176 - hash: "6a3804bd5f4fd5f1c424615ceb620525" + hash: "340811fac74949d8561c825547801ab0" } Frame { msec: 2192 - hash: "df0d72248310654a9cf47e707fe9e414" + hash: "4ab688cb3f157dff07a652a84d1ed1da" } Frame { msec: 2208 - hash: "beb19f2b2979ab40b5ccf8c0fbe9b72f" + hash: "a249bd338776e1f0d11ad70aebcb91b3" } Frame { msec: 2224 - hash: "be3449b49048b764bea68a76baa0fc75" + hash: "6db4a1fd4f2597a180705b7d927ef512" } Frame { msec: 2240 - hash: "4a615cae9c8f85e7b8aecd4c9014f1eb" + hash: "7a47ac68a2a433d6edce92b772c3c608" } Frame { msec: 2256 - hash: "b3c274f1a9d65684c0a55a544bf77810" + hash: "10f23e9e7729a6525549b71143ae539c" } Frame { msec: 2272 - hash: "31456b01fcfb60a77d2b9662c2fff7b6" + hash: "c977e2525e1fb7406414862fbd23fcf8" } Frame { msec: 2288 - hash: "2be5cf3f6158bf09659acc68b134846f" + hash: "66251028e13fbd8f4f4d6836eb9615f9" } Frame { msec: 2304 - hash: "5f9c725a11305f3e6c48ab332faabf50" + hash: "925b50a4f9fe33d83463914c2221be82" } Frame { msec: 2320 - hash: "277c2733c7245d045665198984b74224" + hash: "7169f87de9a332bb94108661e9783a54" } Frame { msec: 2336 - hash: "265b8342bc747fb43a5291df0f4ce48b" + hash: "3ff3c0d2db8d1d65cfc7b14520cf41aa" } Frame { msec: 2352 - hash: "803b49ec31955b481009a51c64bcce65" + hash: "0757ee68ff9923a2dbeb2129f3d4409c" } Frame { msec: 2368 - hash: "a717b30ad50746cdf0fae82212ac88f0" + hash: "223dd69204949b494cda0762ef9965fd" } Frame { msec: 2384 - hash: "65f46c8e69f24d060b5da6f866867f51" + hash: "e97c6ba010857de43baeccbe85e2b262" } Frame { msec: 2400 - hash: "52f9e5d1106d00a950470076a50e4239" + hash: "9f170350da8b3785d5db9c24ce8cacf8" } Frame { msec: 2416 - hash: "058a787aae2845308e68bb93f6a811e4" + hash: "512f3a1ef9d5c263ab22559490dc3022" } Frame { msec: 2432 - hash: "621985111c25994c0c0fe3635be67c1d" + hash: "0f3df7f366bc918c55172df45c22056e" } Frame { msec: 2448 - hash: "2949b8185cefbaaf587a043d805cc670" + hash: "71f8f04423b9a3356aa08235a91ddde7" } Frame { msec: 2464 - hash: "d4a03127ae5047184c736617deeac92d" + hash: "0c48c98562318f7bac502c49fd09fd5e" } Frame { msec: 2480 - hash: "876c6c5ac4500de6234423bf6f3511d6" + hash: "17defd865ec00da3a74360044a906ea9" } Frame { msec: 2496 - hash: "eb08aa172cfbdb696b6f672dfa7b6fff" + hash: "07ef0b634016b52023174a6a593cb2aa" } Frame { msec: 2512 - hash: "a60c13b8f46faa0a35dbb539010550d4" + hash: "56d06c41e9ad55852654bcc6ce77504d" } Frame { msec: 2528 - hash: "c6f8786506e0326a5734ab8aea782f95" + hash: "05848d818a1531a649f9c23947e67855" } Frame { msec: 2544 - hash: "a49927f2aae24e692fc379f0ab6f4ee9" + hash: "11c8397fb9d7b993761b08ba8c9958e5" } Frame { msec: 2560 - hash: "2f1a2d50e1090b34ad1ea6a36eec4fe0" + hash: "82255275db096d4150bd6cbd07805b3f" } Frame { msec: 2576 - hash: "a5ee24d37be960a88684748b73dc75fe" + hash: "8dd3572656f6feb16d55d9318b6b6317" } Frame { msec: 2592 - hash: "28682389395b47ae33ceec1ba3beef4e" + hash: "8096e99b41c38a777df2010057119afb" } Frame { msec: 2608 - hash: "1869667b50b76d99716dd0d7849901fa" + hash: "4187c358b8319dffdef36c67b02a4921" } Frame { msec: 2624 - hash: "2806ee1005193f55825aa6147583985f" + hash: "f891ef9a694bc6513f04e38d34c78e24" } Frame { msec: 2640 - hash: "c00589dce90e3ab2f2c8890f30f80d3d" + hash: "77db9416fb003a5bb793b6573ca3a3cd" } Frame { msec: 2656 - hash: "1f1881f0a29525e380ecbcce15499fa4" + hash: "152cf831ca83212fc026b1146c49a386" } Frame { msec: 2672 - hash: "2a4c3ff764545a3899c864680f22f0a3" + hash: "a596b17515b471d5e67edda3baf8938b" } Frame { msec: 2688 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "307db3e3c929da9783b12d7a2efdbda5" } Frame { msec: 2704 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "1baff6641852daabdc639a35a4821189" } Frame { msec: 2720 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "1f7df5b9c29773c7ae3d08005e7dd903" } Frame { msec: 2736 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "7eb1937ccb2727c27e57b7d7960678d2" } Frame { msec: 2752 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "8294b7a9105083887634973a1c64b70a" } Frame { msec: 2768 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "89ea9be6ebb280ff43d7b037d989aa53" } Frame { msec: 2784 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "4cbeaef4f796eebf114c5e470389d30a" } Frame { msec: 2800 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "0ce8c069bf3fb31d759d62e429c67a15" } Frame { msec: 2816 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "201f1b39884249f60a53a201f783ce9b" } Frame { msec: 2832 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "bcafa2c76a9747a64565a3d3484c1c91" } Frame { msec: 2848 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "94c7ff74b5a37b6e03a47afc40fde107" } Frame { msec: 2864 - hash: "2685820514ce5d5729f3761b1eaa1682" + hash: "08127dfa54da0616ce6cb19c646487ed" } Frame { msec: 2880 @@ -934,7 +934,7 @@ VisualTest { } Frame { msec: 2896 - hash: "ce00c77e8ff1768b41f5585344af1c58" + hash: "b76ce9c50fcbe38a29c1930302dd61da" } Mouse { type: 5 @@ -946,7 +946,7 @@ VisualTest { } Frame { msec: 2912 - hash: "24f401275fa6ec7d26234609792fe0b8" + hash: "d30704b159562c21cd2f42f2370acdfa" } Mouse { type: 5 @@ -958,7 +958,7 @@ VisualTest { } Frame { msec: 2928 - hash: "d3c74863c627a1b922a6b6c4a24f8c40" + hash: "db0916ebf147ee738aaf7492bd38c262" } Mouse { type: 5 @@ -978,203 +978,203 @@ VisualTest { } Frame { msec: 2944 - hash: "64a3209e6adc737065e5d5c3202a7283" + hash: "128058d78c8ceabf4867c8c2d23c8007" } Frame { msec: 2960 - hash: "cf936ffe4330edefddb31c59368491fc" + hash: "9a59b6d1576b70796abcd58167e5135e" } Frame { msec: 2976 - hash: "a67213db044bb876f737cd355fe54444" + hash: "2d5f030aa7ae5f7b5df1894f0250a391" } Frame { msec: 2992 - hash: "0f9e97057cbbd8071e0f5f61318bdf9c" + hash: "fb45fe68abab13f5eb4e8022f1e4e2f1" } Frame { msec: 3008 - hash: "c5f38d334df86ebb6ac4600c83eced20" + hash: "ad090853500b3720c1bb4d750731e25c" } Frame { msec: 3024 - hash: "6d8e6049a36eac4136dbdb5fb18d0650" + hash: "f8f560f26cc0b63f51858c5119b7a1ef" } Frame { msec: 3040 - hash: "8ee97cff4a632e6e297bd3bdac27b8d4" + hash: "87e9d53c0ffcf7231693d9d6619ad37e" } Frame { msec: 3056 - hash: "aca1fcd005d211d35245e64a44002c01" + hash: "73000f490569eb178d47a00b96d39a17" } Frame { msec: 3072 - hash: "7076180bf0eb14a5e733be9320f1f009" + hash: "b8a196eca9c3bd95659931115bec319f" } Frame { msec: 3088 - hash: "e0a0545b3a0b6a0b07d3fa987e1d58b6" + hash: "5f9265d0818701ce08066b55a8bbd904" } Frame { msec: 3104 - hash: "0294b098ce7f0d381542776320e52d2e" + hash: "9a62f2e25e8d32872e43fbdcdb838756" } Frame { msec: 3120 - hash: "36f8bcc42add38fe149e34a703cf8a02" + hash: "1c7b238074d274e4f105b5c2b7fd6dac" } Frame { msec: 3136 - hash: "631426bde50fd35d1da1c30d9878253e" + hash: "f6fbd5658a122ced7257852b4d38605d" } Frame { msec: 3152 - hash: "a4d64c9d378138bedf63389e58d8f1d6" + hash: "24a0cc1d69213b12f9420fa9ffee7319" } Frame { msec: 3168 - hash: "17fdf61bffd947c2e9898f5c4517fdf8" + hash: "8811594c57e514da3afeb04460569e5d" } Frame { msec: 3184 - hash: "653b8c7a55bc4ca763238098711eafa1" + hash: "760d4afdc958184b5b68bc3bcc2f1d3b" } Frame { msec: 3200 - hash: "89e15b3ee1b1fc945801e08cfcdba62c" + hash: "b3b2ca99af9aa022dfebf71bfa1cd491" } Frame { msec: 3216 - hash: "7ea615af67336895e6cee6d3a39ff7de" + hash: "293dbff5edf4dde1f57ca3af1c4bce5e" } Frame { msec: 3232 - hash: "88faee45db80f04ef1120c35057a5f7d" + hash: "0c48c98562318f7bac502c49fd09fd5e" } Frame { msec: 3248 - hash: "8cfe34047b29ac85e58d55e0f6e0b195" + hash: "1cac8d792f55f3e47549d628bd729a7d" } Frame { msec: 3264 - hash: "39255546502fcb882005fe4c38c21fb0" + hash: "d63664b4a6c42c67a3c700e3a000fc07" } Frame { msec: 3280 - hash: "6bf7a959a05fc27f651b2a3ba07de30d" + hash: "be41201056bd58d4793c9c7b5cc63f3f" } Frame { msec: 3296 - hash: "c2c61cb8dbbbd38827277ab32579c6da" + hash: "0ea52d61c7b8803d76340874b846783d" } Frame { msec: 3312 - hash: "ff370d4b4e44c4cbacca96107105df21" + hash: "260c743db91b8802e2c27f8c92d620e5" } Frame { msec: 3328 - hash: "ccadd9e070d54de21c76397d18ad3de8" + hash: "33d3dbe981874cd04edd35a4e5bf4e68" } Frame { msec: 3344 - hash: "6302c39de00070b0a23f9dc87f74dd8d" + hash: "27d183bfe7a7775ba47578de7a5b2dcb" } Frame { msec: 3360 - hash: "7ab69e6d9809c78dc723609bd2761206" + hash: "a6c0bd87922ca8d40fe413ab8624dd24" } Frame { msec: 3376 - hash: "c429cc724b39891805cf4c1448de60b3" + hash: "218d68463d34cc31dc81756be9effd02" } Frame { msec: 3392 - hash: "396ddf0b01e9fe7c2bfb220e64a0c7ec" + hash: "29e9148ab8c0aa66988a6bcda12b06ea" } Frame { msec: 3408 - hash: "7a519a4efeecef5e7623a270e458fb13" + hash: "8cc09fb7e94b1bd0d3482e0bf5d0abec" } Frame { msec: 3424 - hash: "869d174a939e0638a1a22d5c8a010c14" + hash: "39a595b99ed012a1e54b516b75f8652d" } Frame { msec: 3440 - hash: "9ecd2cf4e3b42ff93bcbf4db9829666c" + hash: "30754f5e10dc0d148f10a5eced16258a" } Frame { msec: 3456 - hash: "b06b58b250d3df365806a3f8991d57f3" + hash: "85de32bfdfaea28e4c534dca69b1255e" } Frame { msec: 3472 - hash: "7a6fb03feb2ae0af1f143daedd22a88b" + hash: "459bda74f223c6cfbee12524939b09ef" } Frame { msec: 3488 - hash: "e9fe338dbe7afb69f3870743b0a18805" + hash: "db2ae2401ff1a65911339e2292f075dd" } Frame { msec: 3504 - hash: "04b8def2085e9ce4065b02b938915557" + hash: "0cc18d7cbf42cb68baedd73cf59d8c08" } Frame { msec: 3520 - hash: "7e6942f72012875ba83a1c9121e1f786" + hash: "36c72c3d608fc5126f4b62d4416ad54e" } Frame { msec: 3536 - hash: "291e2d79a79959d9c8c586b6bdc31689" + hash: "7f4db14f493a300ba37dae79a9d60084" } Frame { msec: 3552 - hash: "e490bc7fd92f486b964cca967bd33b38" + hash: "efe0031b95195bebfd887ef63c2ce441" } Frame { msec: 3568 - hash: "0c9858e0445e25d2b12c84801de441cb" + hash: "ade092ef64fc3b1e4d4afc86dca3cf71" } Frame { msec: 3584 - hash: "72ba7a4aacb150e1e9c6de72cff82258" + hash: "e57a7cf2f90b87fed0fd438599fabae3" } Frame { msec: 3600 - hash: "1daca95256842545a5b77bcc46782478" + hash: "1be372fe7de83c4d019e3856c03b39b6" } Frame { msec: 3616 - hash: "869f3d16e203ad47f1ae7ca83e369b75" + hash: "4cb14166395004b6f0f04c6d95879583" } Frame { msec: 3632 - hash: "9cc9cb20aab3369f4e3c5259d291708c" + hash: "a5ec71ba41f5fc0eeebf907749f26266" } Frame { msec: 3648 - hash: "a507b957bab3efe2023a65f8c8b3540a" + hash: "257ef3bb651dbd43635576563c0f97c7" } Frame { msec: 3664 - hash: "9fce2a6cddd8b06a80ce16599b56caa6" + hash: "aa95d440ff9c75215bd2483befe18f78" } Frame { msec: 3680 - hash: "2f85d3064968e3e7b669f733fad58459" + hash: "670815d144a7838b02bf24cf586c8df4" } Frame { msec: 3696 - hash: "6dd6fad85dc5317a22a05a8486317767" + hash: "5f58ff1dd96ee21710ce2aeee81c232b" } Frame { msec: 3712 - hash: "b0faa2ec225cd96fb6d2fd05dc66bed1" + hash: "0c5a6c2dfbac5b97481b8e505fd4c4eb" } Frame { msec: 3728 - hash: "3188219f095c2a9ac7c0f6034463d769" + hash: "b269e9fe4d14537c8bef0b66effe7319" } Frame { msec: 3744 diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml index ce516ac..c89bd68 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepathview/test-pathview.qml @@ -33,7 +33,7 @@ Rectangle { PathView { id: photoPathView; model: rssModel; delegate: photoDelegate - y: 100; width: 800; height: 330; pathItemCount: 10; z: 1 + y: 100; width: 800; height: 330; z: 1 path: Path { startX: -50; startY: 40; -- cgit v0.12 From f1354b80b78adfdb8a4f0a09dc2f593f4b02a4ea Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 12:08:59 +1000 Subject: Clean up qdeclarativepositioner tests dynamic.qml is now at expect-fail status, see QTBUG-14839 Task-number: QTBUG-14792 --- .../qdeclarativepositioners/data/dynamic.0.png | Bin 1429 -> 0 bytes .../qdeclarativepositioners/data/dynamic.1.png | Bin 1433 -> 0 bytes .../qdeclarativepositioners/data/dynamic.2.png | Bin 1431 -> 0 bytes .../qdeclarativepositioners/data/dynamic.3.png | Bin 1428 -> 0 bytes .../qdeclarativepositioners/data/dynamic.4.png | Bin 1432 -> 0 bytes .../qdeclarativepositioners/data/dynamic.5.png | Bin 1434 -> 0 bytes .../qdeclarativepositioners/data/dynamic.qml | 1603 -------------------- .../data/usingRepeater.0.png | Bin 2782 -> 0 bytes .../qdeclarativepositioners/data/usingRepeater.qml | 268 +--- .../qmlvisual/qdeclarativepositioners/dynamic.qml | 65 +- .../qdeclarativepositioners/usingRepeater.qml | 5 +- 11 files changed, 70 insertions(+), 1871 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.5.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.0.png diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.0.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.0.png deleted file mode 100644 index f474afe..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.1.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.1.png deleted file mode 100644 index 8b7ae74..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.2.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.2.png deleted file mode 100644 index 9088bb4..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.3.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.3.png deleted file mode 100644 index 18cd429..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.4.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.4.png deleted file mode 100644 index 739afc1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.5.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.5.png deleted file mode 100644 index 93f0682..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml deleted file mode 100644 index 4b36e16..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/dynamic.qml +++ /dev/null @@ -1,1603 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 32 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 48 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 64 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 80 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 96 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 112 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 128 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 144 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 160 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 176 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 192 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 208 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 224 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 240 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 256 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 272 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 288 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 304 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 320 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 336 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 352 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 368 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 384 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 400 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 416 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 432 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 448 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 464 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 480 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 496 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 512 - hash: "ee42cfa8cbbd67becb7d50998d26fe73" - } - Frame { - msec: 528 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 544 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 560 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 576 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 592 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 608 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 624 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 640 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 656 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 672 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 688 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 704 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 720 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 736 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 752 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 768 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 784 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 800 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 816 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 832 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 848 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 864 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 880 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 896 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 912 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 928 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 944 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 960 - image: "dynamic.0.png" - } - Frame { - msec: 976 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 992 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 1008 - hash: "62727b1025930e19bb03c8f533a12ced" - } - Frame { - msec: 1024 - hash: "3e52e7d7d428cf1b850cb9c60dbb3c21" - } - Frame { - msec: 1040 - hash: "64f75ab14c979d33d6e0c0d86b76cd35" - } - Frame { - msec: 1056 - hash: "c198a48f4050f176465649d203d6e09a" - } - Frame { - msec: 1072 - hash: "6dd8cee5a585a96e78f2cf7478c4da62" - } - Frame { - msec: 1088 - hash: "09edfbce2ea4b8a547f769ce709dcb6b" - } - Frame { - msec: 1104 - hash: "e93d01aa6e4f5d3fc82cf5a008e3ea17" - } - Frame { - msec: 1120 - hash: "0e2e7b5eec0e62853972b0139b8c17c6" - } - Frame { - msec: 1136 - hash: "26d4f54628ce20f5665bdc6ddc7f3b6a" - } - Frame { - msec: 1152 - hash: "59836aa6eff85b0152be352b97076d89" - } - Frame { - msec: 1168 - hash: "47cc9894096731a52ca342ab04df9aad" - } - Frame { - msec: 1184 - hash: "ec95dd3b34a0f17f6fb9b5bedab73653" - } - Frame { - msec: 1200 - hash: "e32c2b70882828b5082ca3ec889a0dde" - } - Frame { - msec: 1216 - hash: "68d3f8e9c9d5388a6f8360368c8f4d2f" - } - Frame { - msec: 1232 - hash: "17378b2bd8bde7f357fa5463f457c7b2" - } - Frame { - msec: 1248 - hash: "03db786cd54ec34ce8db15953a5fc847" - } - Frame { - msec: 1264 - hash: "9e22a82a622ed0287c44cc629059d5bd" - } - Frame { - msec: 1280 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1296 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1312 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1328 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1344 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1360 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1376 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1392 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1408 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1424 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1440 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1456 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1472 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1488 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1504 - hash: "42955cd23747f7c37d0f0229c0955e90" - } - Frame { - msec: 1520 - hash: "981fb1ee75e307b548a32df08a86f4cd" - } - Frame { - msec: 1536 - hash: "f77568307e93d8cd9f0ae417cc19d6e3" - } - Frame { - msec: 1552 - hash: "3bdd4468e26aceee0dad6b3b97b1c1ea" - } - Frame { - msec: 1568 - hash: "252c9ebc2c32755b2289ee1b03877fe3" - } - Frame { - msec: 1584 - hash: "64169b7eb7b7ae8573556c5f80230965" - } - Frame { - msec: 1600 - hash: "4965dfa709a9ac7d8f7dfb4bf8303c65" - } - Frame { - msec: 1616 - hash: "8c53cf92510154087341ac65a93aae5a" - } - Frame { - msec: 1632 - hash: "4dd7502e3e238743d2f3cf038270491e" - } - Frame { - msec: 1648 - hash: "cd9a58316837eb92f4ac92dbd86bdba3" - } - Frame { - msec: 1664 - hash: "5de043e3ac8696b59293a2fa60ed7e65" - } - Frame { - msec: 1680 - hash: "1bf42a6f6be5a3468d2f47cccfac761e" - } - Frame { - msec: 1696 - hash: "ca05510c1ad25e5d3b002603f4379a09" - } - Frame { - msec: 1712 - hash: "f6904a918a6475f1965d74372e52a4b1" - } - Frame { - msec: 1728 - hash: "9e2312ddfc1648b615288107a06c9f9c" - } - Frame { - msec: 1744 - hash: "95c470273b1cb08d4d602efcce339554" - } - Frame { - msec: 1760 - hash: "dade96f707d4a21885480e13b258b7e9" - } - Frame { - msec: 1776 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1792 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1808 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1824 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1840 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1856 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1872 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1888 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1904 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1920 - image: "dynamic.1.png" - } - Frame { - msec: 1936 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1952 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1968 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 1984 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 2000 - hash: "0bfbd46f1d4cf562253fb383776cb601" - } - Frame { - msec: 2016 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2032 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2048 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2064 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2080 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2096 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2112 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2128 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2144 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2160 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2176 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2192 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2208 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2224 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2240 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2256 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2272 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2288 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2304 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2320 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2336 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2352 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2368 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2384 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2400 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2416 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2432 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2448 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2464 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2480 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2496 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2512 - hash: "6fc83e8d4ac99b34062c122a8f7f1850" - } - Frame { - msec: 2528 - hash: "fabf4e535bc4cc17497939d2eeae4a2d" - } - Frame { - msec: 2544 - hash: "a7981035f46869f5ae824d0c58b263b2" - } - Frame { - msec: 2560 - hash: "86d8e369bdceb499b244f84ed9e80ba3" - } - Frame { - msec: 2576 - hash: "e28a7dc7ea8690da75670b5a6e93a26b" - } - Frame { - msec: 2592 - hash: "bf4e815360a67bd80732bd8812269b21" - } - Frame { - msec: 2608 - hash: "a6f8c56cb93da8acc0c90e35596a60d4" - } - Frame { - msec: 2624 - hash: "1e60656f0758605169e51b57bd03af36" - } - Frame { - msec: 2640 - hash: "c069b26b9fae47e0104070d702ba9562" - } - Frame { - msec: 2656 - hash: "457eb2ca1adff6cbb158afa140b2f20b" - } - Frame { - msec: 2672 - hash: "4e5e750b0d94b6777aebff85d38225d9" - } - Frame { - msec: 2688 - hash: "96d9840c2354a8786a8470309be97544" - } - Frame { - msec: 2704 - hash: "ac7570cc7eeff1acd8c47f2d9328f8be" - } - Frame { - msec: 2720 - hash: "887f937bb263c54f29659f27f2b7a3e3" - } - Frame { - msec: 2736 - hash: "616371183c82b97f69a4c6e2367b8066" - } - Frame { - msec: 2752 - hash: "36de8ffa9abe850fb681b37aea45ef8b" - } - Frame { - msec: 2768 - hash: "0505101f0edaaf7ff17deeaaddc6bbf9" - } - Frame { - msec: 2784 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2800 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2816 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2832 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2848 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2864 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2880 - image: "dynamic.2.png" - } - Frame { - msec: 2896 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2912 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2928 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2944 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2960 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2976 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 2992 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 3008 - hash: "e8c53dd8343d7d4c384c2f8507ff0631" - } - Frame { - msec: 3024 - hash: "99e4d853d64a381e8db27707b5ff2b25" - } - Frame { - msec: 3040 - hash: "ab0e62aeffc0d57a5e1d63e6cf49b809" - } - Frame { - msec: 3056 - hash: "4ab11bbf1fb6adb0eec8895f78a24a41" - } - Frame { - msec: 3072 - hash: "634ff2ceb39a3f263a3362238a4ae252" - } - Frame { - msec: 3088 - hash: "7f4856873dc23a02297b2497101de9b9" - } - Frame { - msec: 3104 - hash: "bca3919e9d8e6dc5badd8090401dc934" - } - Frame { - msec: 3120 - hash: "824bfe40c3657cfe1368563640e4cfce" - } - Frame { - msec: 3136 - hash: "f831c1600f68bda139697c406ca70c5e" - } - Frame { - msec: 3152 - hash: "f8102ca251a9ff46a8fe5a24cff0d2d6" - } - Frame { - msec: 3168 - hash: "f33407ad684aa16efc6615d1cf6fa4b9" - } - Frame { - msec: 3184 - hash: "a73d27f776a6ebfc90309b34421700e5" - } - Frame { - msec: 3200 - hash: "ff2a4e2663fc50dfec35152f0e79f935" - } - Frame { - msec: 3216 - hash: "4935f5f58f2672e9d240625151044bda" - } - Frame { - msec: 3232 - hash: "f3ad5c203f621fe4d5d321c3c1880743" - } - Frame { - msec: 3248 - hash: "d4fb7cd2e1f6a533dae65ddbb50da8ac" - } - Frame { - msec: 3264 - hash: "91705e9234c4f02d0a730f6270f9e95f" - } - Frame { - msec: 3280 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3296 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3312 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3328 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3344 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3360 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3376 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3392 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3408 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3424 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3440 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3456 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3472 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3488 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3504 - hash: "41e177bec783497b996d6d5f6dac1a15" - } - Frame { - msec: 3520 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3536 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3552 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3568 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3584 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3600 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3616 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3632 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3648 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3664 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3680 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3696 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3712 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3728 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3744 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3760 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3776 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3792 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3808 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3824 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3840 - image: "dynamic.3.png" - } - Frame { - msec: 3856 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3872 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3888 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3904 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3920 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3936 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3952 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3968 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 3984 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4000 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4016 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4032 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4048 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4064 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4080 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4096 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4112 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4128 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4144 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4160 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4176 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4192 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4208 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4224 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4240 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4256 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4272 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4288 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4304 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4320 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4336 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4352 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4368 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4384 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4400 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4416 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4432 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4448 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4464 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4480 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4496 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4512 - hash: "496dc6261695bcf04a8e574146544e98" - } - Frame { - msec: 4528 - hash: "9681be99003f8a14cc5654d06d2c8255" - } - Frame { - msec: 4544 - hash: "bcb592a2335aa2e35956881fd028f4e6" - } - Frame { - msec: 4560 - hash: "f914b25fdcb02a02b71220d82b7b2a75" - } - Frame { - msec: 4576 - hash: "63c82c08eb7f2bd50b54b94c952df3f2" - } - Frame { - msec: 4592 - hash: "8a8dc82be81fa55605c6c2e749895120" - } - Frame { - msec: 4608 - hash: "271f8d79b8052dfcd840ffa9ba9ffeec" - } - Frame { - msec: 4624 - hash: "8f77bbd0585b57e69ac1919bd81ee3b1" - } - Frame { - msec: 4640 - hash: "b974260a2f90e141ebc33ced98fbca88" - } - Frame { - msec: 4656 - hash: "77ada180f8a45652a6fa636d7ece4d9d" - } - Frame { - msec: 4672 - hash: "4c8dc2e33cd989cb3b0938c6c75b5f95" - } - Frame { - msec: 4688 - hash: "a145954989508b925a444e14f0c27a20" - } - Frame { - msec: 4704 - hash: "8d27ff203819174747ae4a5cee8d0ae8" - } - Frame { - msec: 4720 - hash: "830f34b0dab780c6efe2294872ba8508" - } - Frame { - msec: 4736 - hash: "5d70a4bbd815569cfe5735b596bad080" - } - Frame { - msec: 4752 - hash: "964527bb82ea006e03b030c787a8597c" - } - Frame { - msec: 4768 - hash: "1ad54954b818fa9e6032ac4b6114e7db" - } - Frame { - msec: 4784 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4800 - image: "dynamic.4.png" - } - Frame { - msec: 4816 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4832 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4848 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4864 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4880 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4896 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4912 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4928 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4944 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4960 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4976 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 4992 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 5008 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 5024 - hash: "47865243cc252aef67774001af70c54c" - } - Frame { - msec: 5040 - hash: "baeb8adffc13e230e797e0437f2ad5fa" - } - Frame { - msec: 5056 - hash: "d2e440fcad0ee2b7b35d7e5c4e581f73" - } - Frame { - msec: 5072 - hash: "fb8acb2f69234d3ee089281d0297ad7c" - } - Frame { - msec: 5088 - hash: "7fda29a83dc535ed8d6b35e999400311" - } - Frame { - msec: 5104 - hash: "6482e3eb10cfdbdeb57dd38ba3e3d67e" - } - Frame { - msec: 5120 - hash: "4d222549bc2565c1598a532460aae4e6" - } - Frame { - msec: 5136 - hash: "776d1b0f9945c0e1ceda0cf117264919" - } - Frame { - msec: 5152 - hash: "f2c362b34a0982ee1a11dea6b063945e" - } - Frame { - msec: 5168 - hash: "115f02b8893972b5b1d63525ce70762e" - } - Frame { - msec: 5184 - hash: "7f2d53581fe2c6c45a628fa4cd9b5742" - } - Frame { - msec: 5200 - hash: "b5ed1120c4edf842b15d5144adbd93b0" - } - Frame { - msec: 5216 - hash: "3511938df57c4cdce316692de204b057" - } - Frame { - msec: 5232 - hash: "99583918d068ab5d132fe7a699c2a7a6" - } - Frame { - msec: 5248 - hash: "c0ce9df18479dbb57fb1dbc777f4f0e5" - } - Frame { - msec: 5264 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5280 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5296 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5312 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5328 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5344 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5360 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5376 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5392 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5408 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5424 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5440 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5456 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5472 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5488 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5504 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5520 - hash: "b24db7b5c406328380fcf9927fb26c5c" - } - Frame { - msec: 5536 - hash: "98cc64411264d8a635a6afe6b11cee6e" - } - Frame { - msec: 5552 - hash: "b86434b7af8ad1db946c43a2791d69ab" - } - Frame { - msec: 5568 - hash: "f45616f9e33658d1dddb537e842c8768" - } - Frame { - msec: 5584 - hash: "e49d8955e27cdc19a37c331e56c81af1" - } - Frame { - msec: 5600 - hash: "b2dbe764906b50195f65dc11a5842515" - } - Frame { - msec: 5616 - hash: "71ce7c63d65c29cdffd83f5ae07f0b93" - } - Frame { - msec: 5632 - hash: "901d01e1fc777ec185cd023ad0ace4c1" - } - Frame { - msec: 5648 - hash: "a3f31de30fc2e92bae1f735504216216" - } - Frame { - msec: 5664 - hash: "0fc52dd8102506e3e7671fa548551b23" - } - Frame { - msec: 5680 - hash: "fb92809e728416035dbb91116ad8fe0e" - } - Frame { - msec: 5696 - hash: "9003dc8ca4f781909035cb03dc45864f" - } - Frame { - msec: 5712 - hash: "2bff1de793ad8521fd54413849c3cf29" - } - Frame { - msec: 5728 - hash: "8362e4db7c4446282d844a4fc6632d19" - } - Frame { - msec: 5744 - hash: "b874fa274c6ec77c106ff4a0288f9169" - } - Frame { - msec: 5760 - image: "dynamic.5.png" - } - Frame { - msec: 5776 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5792 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5808 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5824 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5840 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5856 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5872 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5888 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5904 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5920 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5936 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5952 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5968 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 5984 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 6000 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 6016 - hash: "e64ac8e11e36cafb25c947c5802d54b9" - } - Frame { - msec: 6032 - hash: "7621e64568058b82bcb6f6b46cee3ebc" - } - Frame { - msec: 6048 - hash: "f77f6de6fc88813f49427b4888a59dbf" - } - Frame { - msec: 6064 - hash: "d3a48f596219372ac25941e4c5ec5b2b" - } - Frame { - msec: 6080 - hash: "d572d932b613f9ca1e0acf144f127dd1" - } - Frame { - msec: 6096 - hash: "edf317eaf51d933bcd0f57f214921a81" - } - Frame { - msec: 6112 - hash: "e0cee7959a5a8a08ad03d75e7b5c6ca1" - } - Frame { - msec: 6128 - hash: "96877a15f44d4a2c8d9974cb28b9e1b6" - } - Frame { - msec: 6144 - hash: "c0ffb0ef6dd9d007d201feebd2f68e44" - } - Frame { - msec: 6160 - hash: "209fb930223243fa19c5dde9e85ec518" - } - Frame { - msec: 6176 - hash: "ae98ac4dba0e78eb8fb7f7dbe29b2832" - } - Frame { - msec: 6192 - hash: "c94a7d68ce007d83df77a595a5815a96" - } - Frame { - msec: 6208 - hash: "4c28e409bf5a6c1289bcab8cd59a9e42" - } - Frame { - msec: 6224 - hash: "ea1009f1a3446dd5ce937e6949794794" - } - Frame { - msec: 6240 - hash: "940c16766c2f87feef48e1187672ca9b" - } - Frame { - msec: 6256 - hash: "93664c87c8dcfadc0345f646b2508625" - } - Frame { - msec: 6272 - hash: "93664c87c8dcfadc0345f646b2508625" - } - Frame { - msec: 6288 - hash: "93664c87c8dcfadc0345f646b2508625" - } - Frame { - msec: 6304 - hash: "93664c87c8dcfadc0345f646b2508625" - } - Frame { - msec: 6320 - hash: "93664c87c8dcfadc0345f646b2508625" - } - Frame { - msec: 6336 - hash: "93664c87c8dcfadc0345f646b2508625" - } - Frame { - msec: 6352 - hash: "93664c87c8dcfadc0345f646b2508625" - } - Frame { - msec: 6368 - hash: "93664c87c8dcfadc0345f646b2508625" - } - Frame { - msec: 6384 - hash: "93664c87c8dcfadc0345f646b2508625" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.0.png b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.0.png deleted file mode 100644 index 3234c98..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml index bdf8fee..5d88df7 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/data/usingRepeater.qml @@ -6,334 +6,130 @@ VisualTest { } Frame { msec: 16 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 32 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 48 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 64 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 80 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 96 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 112 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 128 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 144 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 160 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 176 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 192 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 208 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 224 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 240 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 256 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "1a396cf01a6c31155609532654653599" } Frame { msec: 272 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 288 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 304 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 320 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 336 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 352 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 368 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 384 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 400 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 416 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 432 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 448 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 464 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 480 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 496 - hash: "e9c524091a0351926c3d658b9935f176" + hash: "8a4565aee33d40840bda26b65b6a0d90" } Frame { msec: 512 - hash: "e9c524091a0351926c3d658b9935f176" - } - Frame { - msec: 528 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 544 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 560 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 576 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 592 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 608 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 624 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 640 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 656 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 672 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 688 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 704 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 720 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 736 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 752 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 768 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 784 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 800 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 816 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 832 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 848 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 864 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 880 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 896 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 912 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 928 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 944 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 960 - image: "usingRepeater.0.png" - } - Frame { - msec: 976 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 992 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1008 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1024 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1040 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1056 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1072 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1088 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1104 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1120 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1136 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1152 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1168 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1184 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1200 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1216 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1232 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1248 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1264 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1280 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1296 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1312 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" - } - Frame { - msec: 1328 - hash: "2b1fb0ebb6f728fe685d95b5947cce90" + hash: "8a4565aee33d40840bda26b65b6a0d90" } } diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml index 8da3602..8a522a5 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/dynamic.qml @@ -1,13 +1,14 @@ import QtQuick 1.0 +//Expected to fail until QTBUG-14839 is resolved Item { - width: 400; height: 400; + width: 120; height: 60; property int step: 0 function tick() { step++; if(step == 1){ - row1.destroy(); //Not dynamically created, so is this valid? + //row1.destroy(); //Not dynamically created, so is this valid? }else if(step == 2){ r2a.destroy(); }else if(step == 3){ @@ -21,42 +22,46 @@ Item { }else if(step == 7){ r3c.parent = row2; }else if(step == 8){ - row3.destroy(); + //row3.destroy();//empty now, so should have no effect//May be invalid, but was deleting the reparent items at one point }else{ repeater.model++; } } - //Tests base positioner functionality, so just using row - Row{ - id: row1 - Rectangle{id: r1a; width:20; height:20; color: "red"} - Rectangle{id: r1b; width:20; height:20; color: "green"} - Rectangle{id: r1c; width:20; height:20; color: "blue"} - } - Row{ - y:20 - id: row2 - move: Transition{NumberAnimation{properties:"x"}} - Repeater{ - id: repeater - model: 0; - delegate: Component{ Rectangle { color: "yellow"; width:20; height:20;}} + //Tests base positioner functionality, so don't need them all. + Column{ + move: Transition{NumberAnimation{properties:"y"}} + Row{ + id: row1 + height: childrenRect.height + Rectangle{id: r1a; width:20; height:20; color: "red"} + Rectangle{id: r1b; width:20; height:20; color: "green"} + Rectangle{id: r1c; width:20; height:20; color: "blue"} + } + Row{ + id: row2 + height: childrenRect.height + move: Transition{NumberAnimation{properties:"x"}} + Repeater{ + id: repeater + model: 0; + delegate: Component{ Rectangle { color: "yellow"; width:20; height:20;}} + } + Rectangle{id: r2a; width:20; height:20; color: "red"} + Rectangle{id: r2b; width:20; height:20; color: "green"} + Rectangle{id: r2c; width:20; height:20; color: "blue"} + } + Row{ + move: Transition{NumberAnimation{properties:"x"}} + id: row3 + height: childrenRect.height + Rectangle{id: r3a; width:20; height:20; color: "red"} + Rectangle{id: r3b; width:20; height:20; color: "green"} + Rectangle{id: r3c; width:20; height:20; color: "blue"} } - Rectangle{id: r2a; width:20; height:20; color: "red"} - Rectangle{id: r2b; width:20; height:20; color: "green"} - Rectangle{id: r2c; width:20; height:20; color: "blue"} - } - Row{ - move: Transition{NumberAnimation{properties:"x"}} - y:40 - id: row3 - Rectangle{id: r3a; width:20; height:20; color: "red"} - Rectangle{id: r3b; width:20; height:20; color: "green"} - Rectangle{id: r3c; width:20; height:20; color: "blue"} } Timer{ - interval: 500; + interval: 250; running: true; repeat: true; onTriggered: tick(); diff --git a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml index c318a99..c236b6a 100644 --- a/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml +++ b/tests/auto/declarative/qmlvisual/qdeclarativepositioners/usingRepeater.qml @@ -1,7 +1,7 @@ import QtQuick 1.0 Item{ - width: 200; height: 600 + width: 40; height: 320 Column{ Rectangle{color:"Red"; width:40; height:40;} Repeater{ @@ -11,5 +11,6 @@ Item{ } Rectangle{color:"Blue"; width:40; height:40;} } - Timer{ interval: 500; running: true; onTriggered: rep.model=6;} + Timer{ interval: 250; running: true; onTriggered: rep.model=6;} + Timer{ interval: 500; running: true; onTriggered: Qt.quit();} } -- cgit v0.12 From 8389b9c2cdb2957c3e6db678e39fba060df9d045 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 12:13:26 +1000 Subject: Clean up qdeclarativesmoothedanimation visual tests Smoothed animation test is actually just a subset of smoothed follow now Task-number: QTBUG-14792 --- .../data/easefollow.0.png | Bin 1305 -> 0 bytes .../data/easefollow.1.png | Bin 1306 -> 0 bytes .../data/easefollow.2.png | Bin 1305 -> 0 bytes .../data/easefollow.3.png | Bin 1303 -> 0 bytes .../data/easefollow.4.png | Bin 1303 -> 0 bytes .../data/easefollow.5.png | Bin 1305 -> 0 bytes .../data/easefollow.6.png | Bin 1306 -> 0 bytes .../data/easefollow.qml | 1807 -------------------- .../smoothedanimation.qml | 45 - 9 files changed, 1852 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.5.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.6.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.0.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.0.png deleted file mode 100644 index 21b6afb..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.1.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.1.png deleted file mode 100644 index bb8a02b..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.2.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.2.png deleted file mode 100644 index da60237..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.3.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.3.png deleted file mode 100644 index 3e943e8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.4.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.4.png deleted file mode 100644 index 4fbaf26..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.5.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.5.png deleted file mode 100644 index c10d196..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.6.png b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.6.png deleted file mode 100644 index a672c06..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml deleted file mode 100644 index 2500ef0..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/data/easefollow.qml +++ /dev/null @@ -1,1807 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "1f60efdb8704b92c9361daa468a25391" - } - Frame { - msec: 32 - hash: "3bb6a87617e0e5d4922e573eec975886" - } - Frame { - msec: 48 - hash: "268941737e6324d580890b151de621fb" - } - Frame { - msec: 64 - hash: "99c674eccc082d7f0982257a748d93e5" - } - Frame { - msec: 80 - hash: "2970467e8262c8a3f0b11be71245d048" - } - Frame { - msec: 96 - hash: "63cbd06d6bb035d27c18dba49238d8b2" - } - Frame { - msec: 112 - hash: "49f77bb3d323f882c0ec56e1f1040b3a" - } - Frame { - msec: 128 - hash: "40263c5f9b5d2236536163785f832b4d" - } - Frame { - msec: 144 - hash: "dc63b1c21a2027c4beb9c297a3677fbd" - } - Frame { - msec: 160 - hash: "4fab52ea29a819fec032f19dbcbef012" - } - Frame { - msec: 176 - hash: "60b48407a8f8ae2cce7d3e7c8b21991c" - } - Frame { - msec: 192 - hash: "6e542c681092a5ebeef0534fa2bd2d6c" - } - Frame { - msec: 208 - hash: "c7c6471969bbf81efdb86d1695548fc6" - } - Frame { - msec: 224 - hash: "b7f4ad9a49feb400894209c02b94478a" - } - Frame { - msec: 240 - hash: "3eb58b2f5233aead976183c13f241113" - } - Frame { - msec: 256 - hash: "54f2036c50c6d8079fc0cadc01385980" - } - Frame { - msec: 272 - hash: "f297659d75f6e724d72bd548821f4c9f" - } - Frame { - msec: 288 - hash: "112798f080336fc9c603a7e9097dd8aa" - } - Frame { - msec: 304 - hash: "c432e6ec2b53ca43cb7a7325d0cc379b" - } - Frame { - msec: 320 - hash: "4a6d3db3efd665ad7f372bf3f2508ed7" - } - Frame { - msec: 336 - hash: "0befa5dc4d2cc196fed0eb1a3aa75b8f" - } - Frame { - msec: 352 - hash: "a34d010b50d59c362b54e44d69c2df91" - } - Frame { - msec: 368 - hash: "cbdacced50186c87066ce1d46548b27e" - } - Frame { - msec: 384 - hash: "a4060010ae4d3c0973bda48d68f7bd0a" - } - Frame { - msec: 400 - hash: "47353437da587f732f986004c09884d0" - } - Frame { - msec: 416 - hash: "080c348145167bbec671a04da6f7564f" - } - Frame { - msec: 432 - hash: "69dead737c717a076ae3865680341fb4" - } - Frame { - msec: 448 - hash: "1efdc31c5c8fa72fc848877deb6caaa4" - } - Frame { - msec: 464 - hash: "28d7da1e933d0585d03acf4a529e7b42" - } - Frame { - msec: 480 - hash: "bf85534124bf025b7ede0d6c80b8e443" - } - Frame { - msec: 496 - hash: "cdbeb2d51541b1b1eff060efe993db91" - } - Frame { - msec: 512 - hash: "52ad56ae16c8ab523adda8edc512dd87" - } - Frame { - msec: 528 - hash: "61b1937f4c8dd2cb0ddd7031c5bfb3ab" - } - Frame { - msec: 544 - hash: "1b109baba71b16827f90da654af093a3" - } - Frame { - msec: 560 - hash: "d56621362802c8626868f36ba1e7db22" - } - Frame { - msec: 576 - hash: "ee5555ec3ad8760f43bbf5958a925936" - } - Frame { - msec: 592 - hash: "1ed2831144a453af1978605c0e42d17c" - } - Frame { - msec: 608 - hash: "c74d5cdb3395a702269dfa88c8c9d975" - } - Frame { - msec: 624 - hash: "ea98ddd9588cc23fd82a342ec2925ba8" - } - Frame { - msec: 640 - hash: "e76b94d6d57f1a510f7649eaab892562" - } - Frame { - msec: 656 - hash: "022f40b6fe9dbaf8019855234acb3461" - } - Frame { - msec: 672 - hash: "467da4f48aa6aeb113f0797facf157e8" - } - Frame { - msec: 688 - hash: "8df407aadd4d896eb6537e1555a0242f" - } - Frame { - msec: 704 - hash: "122e4671881e31f54e617729f4fbb3b0" - } - Frame { - msec: 720 - hash: "562718f101c3cd7525b890076413df5e" - } - Frame { - msec: 736 - hash: "07feae99ecf4b70eb094fd3e10deca56" - } - Frame { - msec: 752 - hash: "0980d133b1006cc07796023880415163" - } - Frame { - msec: 768 - hash: "7112b6ac97678b3b942c64c5108f0329" - } - Frame { - msec: 784 - hash: "bb9f893a9aaee60ab6c30918552828a4" - } - Frame { - msec: 800 - hash: "65d1f29437aaaea33676757276f1e434" - } - Frame { - msec: 816 - hash: "52adcf2509f3236ac8ef571708e77206" - } - Frame { - msec: 832 - hash: "22df5e7eda8a813531d0e0366cbfbf64" - } - Frame { - msec: 848 - hash: "fe9b7b7812dd2410b8ed2eb19aa78f4d" - } - Frame { - msec: 864 - hash: "141e22de4469f316b5ef5471f3c7bba0" - } - Frame { - msec: 880 - hash: "1125c0a105fc4a2cae36b798058ce23f" - } - Frame { - msec: 896 - hash: "8c17c5da2ae867fb0016a485ba9e4166" - } - Frame { - msec: 912 - hash: "d8da9fc7ec4dcefb894c5a6a71e9d001" - } - Frame { - msec: 928 - hash: "00ff642bea89fd89de394d78f8c5db33" - } - Frame { - msec: 944 - hash: "8549063d517a3ce1ffd44c56b3b6cf5e" - } - Frame { - msec: 960 - image: "easefollow.0.png" - } - Frame { - msec: 976 - hash: "95a642caa72bb31cc1e04ecc12d07cd0" - } - Frame { - msec: 992 - hash: "e65c823476bf920d0386f62ca831e6a0" - } - Frame { - msec: 1008 - hash: "91e8913dc693c91a674a10b5b088dd8f" - } - Frame { - msec: 1024 - hash: "1a469ffa0d530f72c78dc14783891c78" - } - Frame { - msec: 1040 - hash: "6e46a83d07f8bc034b421103ef0e4f8c" - } - Frame { - msec: 1056 - hash: "8ddacab411a8b73b6c9e69576fa1b003" - } - Frame { - msec: 1072 - hash: "41f419a85fe44efe27c9a526d83a1e9a" - } - Frame { - msec: 1088 - hash: "73d4ece31b258f9caf4556ce20a5be1f" - } - Frame { - msec: 1104 - hash: "ef3ebe0acb50386cf79b9f08fbba2fbc" - } - Frame { - msec: 1120 - hash: "c11a84d2fa80f28adb1466409812e987" - } - Frame { - msec: 1136 - hash: "2e9db854b02d28b38063ff2a8e821ed1" - } - Frame { - msec: 1152 - hash: "48e073c0e6b19aea8314629a2179af87" - } - Frame { - msec: 1168 - hash: "77e518b7428d93b67a8fb0d33d85ed97" - } - Frame { - msec: 1184 - hash: "1d18323af9c62e015513451883f8b39f" - } - Frame { - msec: 1200 - hash: "df49889ba157cdc1ca240d08d2760ad7" - } - Frame { - msec: 1216 - hash: "7b8cd2bcf0a4c38ab870f27894a43d2f" - } - Frame { - msec: 1232 - hash: "84f10e0c9fd57dd1799df7fc34c5ef01" - } - Frame { - msec: 1248 - hash: "ead4e609bc4a0755032b1648485b9625" - } - Frame { - msec: 1264 - hash: "9a9829c3bd4a3a4155383c37e21e8db8" - } - Frame { - msec: 1280 - hash: "5008917f60256abad867f32c1caf954d" - } - Frame { - msec: 1296 - hash: "c21455d66ed0754177af5ce44b7c7600" - } - Frame { - msec: 1312 - hash: "e8332f2586d80a2700b610e8fe5c72d9" - } - Frame { - msec: 1328 - hash: "0d0c8af138f98bae8a370ebec4a4796c" - } - Frame { - msec: 1344 - hash: "04065e8feeb900d18deeb941572f7f10" - } - Frame { - msec: 1360 - hash: "992a225b1f25bf5b21dd7f8a55dc4b70" - } - Frame { - msec: 1376 - hash: "8ef739d91ee2a4337cbfc3dc94ce9845" - } - Frame { - msec: 1392 - hash: "46744977a26b37ab65e65e1891ceafe7" - } - Frame { - msec: 1408 - hash: "1b4c0d79eeb8d6b2e30172f3664407b9" - } - Frame { - msec: 1424 - hash: "d572831ed34d14d1125570b8b8767bdb" - } - Frame { - msec: 1440 - hash: "8b785c756d11e0fc18959d0897a45673" - } - Frame { - msec: 1456 - hash: "164a71ffcea63ceb6c1ebeb8d0d07af1" - } - Frame { - msec: 1472 - hash: "e128dc12d5117eed9f7c0a16e8348ba2" - } - Frame { - msec: 1488 - hash: "4c7db5b12d83bf22b1c88ac06ca7c385" - } - Frame { - msec: 1504 - hash: "c7283df8dbd78121e17a5893e3ea4f3c" - } - Frame { - msec: 1520 - hash: "fea768e5bb43f6d86d88ced9f73915de" - } - Frame { - msec: 1536 - hash: "b99b54f8e75452c539bb4e7b6a36e944" - } - Frame { - msec: 1552 - hash: "b7274938d16f03b376ad9739e2e893f1" - } - Frame { - msec: 1568 - hash: "e61601942193add8c1c8ebf5c5319932" - } - Frame { - msec: 1584 - hash: "8fdc2181e0120391505706716ba7e5d7" - } - Frame { - msec: 1600 - hash: "66f737ed28453da5175d6b5e807c374d" - } - Frame { - msec: 1616 - hash: "2e00a7895d61edbe794f0a8000871b30" - } - Frame { - msec: 1632 - hash: "1a279fc6b7c4105eccc4e3bc99481bef" - } - Frame { - msec: 1648 - hash: "bc1dea4d23ca9bc29b72a8c2bde4787b" - } - Frame { - msec: 1664 - hash: "8ef40e0be5fb82b32b365b3d4b85421d" - } - Frame { - msec: 1680 - hash: "ee37c68bf38d5eed4e3e9a31306f6801" - } - Frame { - msec: 1696 - hash: "303d760c87a7a833606c8e9f46cb5fc0" - } - Frame { - msec: 1712 - hash: "cc2563b47c58efd39bec6b4e0f2995bb" - } - Frame { - msec: 1728 - hash: "33f7daf09497510475283d6dc7c51228" - } - Frame { - msec: 1744 - hash: "5b5e2de9934c80bd49e0eb7afd85151d" - } - Frame { - msec: 1760 - hash: "5e6bf706336789ca6b60a82998b70113" - } - Frame { - msec: 1776 - hash: "b4d4a860f49bfb88dd2079862b40b7ec" - } - Frame { - msec: 1792 - hash: "07b571fa55327487e34a592c778beb67" - } - Frame { - msec: 1808 - hash: "cb5b349a536cf75a83734181b3eab92b" - } - Frame { - msec: 1824 - hash: "ce903bb58c5c86f2955e68412893aedf" - } - Frame { - msec: 1840 - hash: "ffa89e879558c83ed538812a93e2fe29" - } - Frame { - msec: 1856 - hash: "562aa66bf537853be82a654542c8b80e" - } - Frame { - msec: 1872 - hash: "dc45dac0cc20220bcc81210fb5506ee2" - } - Frame { - msec: 1888 - hash: "3b429eb827df0800a1ad8b906ea32ef9" - } - Frame { - msec: 1904 - hash: "d6ebaf12515d9e24cdbf6d75080c0b28" - } - Frame { - msec: 1920 - image: "easefollow.1.png" - } - Frame { - msec: 1936 - hash: "9f6d26224055c809dc2f3490cd0ff880" - } - Frame { - msec: 1952 - hash: "5630cc8f0b401f7d81bdceaaae5cce68" - } - Frame { - msec: 1968 - hash: "dafda60467e5e2b99c41543dd191ac2d" - } - Frame { - msec: 1984 - hash: "e053cb07a734278cd111d612883c165e" - } - Frame { - msec: 2000 - hash: "63870f3e99c11707004dab9439d61389" - } - Frame { - msec: 2016 - hash: "14c311a6fab45f828c3a19535ea9edc8" - } - Frame { - msec: 2032 - hash: "13e614446cbfcbfd2a7ecc5f0e8688df" - } - Frame { - msec: 2048 - hash: "173c97f59da05b9347180a4824e60c06" - } - Frame { - msec: 2064 - hash: "932e2a9bbcb7dc5befca8f63d8fa3c95" - } - Frame { - msec: 2080 - hash: "4b8f232ffe0cbc7f900de5737c9f95be" - } - Frame { - msec: 2096 - hash: "9686d294d4e931a5eed0e6b5bda63377" - } - Frame { - msec: 2112 - hash: "969c569d92e3ec51dfbdd20d64432224" - } - Frame { - msec: 2128 - hash: "0cef3550cca9fb5611b836098c517dd1" - } - Frame { - msec: 2144 - hash: "6728080a09aa5d48462a3abb8e285e8a" - } - Frame { - msec: 2160 - hash: "4b904dc671b7fc72db0b6e52543e96bd" - } - Frame { - msec: 2176 - hash: "38232f89dffc9b16db6ea60b02f8d1be" - } - Frame { - msec: 2192 - hash: "6b41f2a0f950eddad217a03e137f9a9b" - } - Frame { - msec: 2208 - hash: "be576ea74c2c404da46fcf1d22de6df9" - } - Frame { - msec: 2224 - hash: "3f44bad4b51ceff2944337064a5efa91" - } - Frame { - msec: 2240 - hash: "e1ab98ac1366e9fd8af62a6a26878c73" - } - Frame { - msec: 2256 - hash: "bd131e1725a54b3dbbb86a29ca8a56a9" - } - Frame { - msec: 2272 - hash: "4d3e8af70f228643803f780c4e36f1a6" - } - Frame { - msec: 2288 - hash: "853a5ab4271af7a7638454cfa883aa33" - } - Frame { - msec: 2304 - hash: "ede9260157000f346900153ce2409278" - } - Frame { - msec: 2320 - hash: "b2b16d8ce1ba89f0d9558ac387e25c3d" - } - Frame { - msec: 2336 - hash: "387d338910453637c5cf80fa35528e56" - } - Frame { - msec: 2352 - hash: "26deabf9cdd994455f2a8802eb0e04dc" - } - Frame { - msec: 2368 - hash: "13939659a315dae1b81e3ea166102edf" - } - Frame { - msec: 2384 - hash: "be92b55bb7562372401b25a9167abb2b" - } - Frame { - msec: 2400 - hash: "ee7bf60d7ee97b7de5e909b9af88df80" - } - Frame { - msec: 2416 - hash: "434313a3bcd1d7582b0d89b9a145ef09" - } - Frame { - msec: 2432 - hash: "0857ca59a283897e3df62b9633488f83" - } - Frame { - msec: 2448 - hash: "76718fc7e3d21b54930bc8307a57733a" - } - Frame { - msec: 2464 - hash: "93a91588b38129053a462b920fd686e3" - } - Frame { - msec: 2480 - hash: "2a2486c52fde915696fd8cbd3682e8db" - } - Frame { - msec: 2496 - hash: "b1f4ab6cc5fb4a3a1b4885f2d1b29277" - } - Frame { - msec: 2512 - hash: "4258afce8a85a2e9ead149e34b43d8fc" - } - Frame { - msec: 2528 - hash: "6672c71b98e13d51ebb523aed9036a72" - } - Frame { - msec: 2544 - hash: "eaa39af7eb78948f433e3b44a9454317" - } - Frame { - msec: 2560 - hash: "0a766bc97bea67d4b848c703eaa6777a" - } - Frame { - msec: 2576 - hash: "0b461ec1885ede1dd96b71cf38bfd3d6" - } - Frame { - msec: 2592 - hash: "15efc929370a3864529080e30db1026a" - } - Frame { - msec: 2608 - hash: "e1529e30ff1e4ea1b092a88e85f2f1f6" - } - Frame { - msec: 2624 - hash: "f29bd9dbf7317e94b885da63f0cb7374" - } - Frame { - msec: 2640 - hash: "e5294e087e2ce0d7d936c0129b6c37ae" - } - Frame { - msec: 2656 - hash: "9c63129e774b391cc398cf5da5c9339c" - } - Frame { - msec: 2672 - hash: "4371d85854419d4b00671176bb7c5a2b" - } - Frame { - msec: 2688 - hash: "dd10b3f50e2fdc56c75f00321634b1cc" - } - Frame { - msec: 2704 - hash: "aac6256b21152a5f1f8c576b667d275e" - } - Frame { - msec: 2720 - hash: "c937c44037b2228590d334df4d56a86f" - } - Frame { - msec: 2736 - hash: "f6c714db51cbd1bdb737afe612c33f9c" - } - Frame { - msec: 2752 - hash: "0bba45af79f3201bc7cf042d5c648f73" - } - Frame { - msec: 2768 - hash: "941b08ddbafea3bd46262c060b1e290b" - } - Frame { - msec: 2784 - hash: "d898918dc2023de239b4ab38f7420960" - } - Frame { - msec: 2800 - hash: "d1a16dc2282329113093d06862e7a871" - } - Frame { - msec: 2816 - hash: "bba5359475f643fbeee240e71e843d4c" - } - Frame { - msec: 2832 - hash: "03cf861f4b6bc767e723e47e95c2448b" - } - Frame { - msec: 2848 - hash: "a64bf158c6199b88bc2db3b741d342f0" - } - Frame { - msec: 2864 - hash: "cf0fe7cb42ba842f1c28c1211adb768d" - } - Frame { - msec: 2880 - image: "easefollow.2.png" - } - Frame { - msec: 2896 - hash: "9b3c6414e4ef5a452a5c92bb0b893fc3" - } - Frame { - msec: 2912 - hash: "7cc7ddec3ac2d8cac33c0b0f80a7544d" - } - Frame { - msec: 2928 - hash: "7dd4e7d606e953c872c57fad786d64aa" - } - Frame { - msec: 2944 - hash: "117cc903a39d99ca22f6556095e6f883" - } - Frame { - msec: 2960 - hash: "c6c9304fd65fee1909473bdb21ac7806" - } - Frame { - msec: 2976 - hash: "8e704fe81c040f49c4d80e7dcc46084d" - } - Frame { - msec: 2992 - hash: "d202d5c0a058e1e088fdd280e59f17bb" - } - Frame { - msec: 3008 - hash: "90c072dea32c056f8bd6d010df681929" - } - Frame { - msec: 3024 - hash: "80b4e99f1b47e64084e295a2a3e1121e" - } - Frame { - msec: 3040 - hash: "41d6307075ec9ae9e92d227921f71289" - } - Frame { - msec: 3056 - hash: "f33de23cf4a5c4881310c6866261d387" - } - Frame { - msec: 3072 - hash: "441faa0a1fc95d66b27479dfc1e40188" - } - Frame { - msec: 3088 - hash: "2314b5f6ba3864abd5e87bc87bd621b0" - } - Frame { - msec: 3104 - hash: "e71e3b0ad953258ceef3101e38283fdb" - } - Frame { - msec: 3120 - hash: "890c3b0e727f136bf1ccc486531c9677" - } - Frame { - msec: 3136 - hash: "2a0d23e6dcc6475c323dbf8eb36e8094" - } - Frame { - msec: 3152 - hash: "692682e82347936f87a66484b428e959" - } - Frame { - msec: 3168 - hash: "cf4005c08789762ad21be1a1d78755c9" - } - Frame { - msec: 3184 - hash: "566184563091626bb20ae679e3ce3b91" - } - Frame { - msec: 3200 - hash: "f88a24ad3bbc2699924bb9a7ff6490b3" - } - Frame { - msec: 3216 - hash: "23f3f63d07b2bdc2b82ff4e8606a634d" - } - Frame { - msec: 3232 - hash: "fe121c71ce469ec6f0bf957eb2f0447b" - } - Frame { - msec: 3248 - hash: "ba217690a33c701afe11842aa8105cbb" - } - Frame { - msec: 3264 - hash: "e5c7c1323108f13ba26f5198cc62c137" - } - Frame { - msec: 3280 - hash: "664f76d3d0008b56be2790c470befc91" - } - Frame { - msec: 3296 - hash: "b3f54070ba64b983ccd2a15941ef4c35" - } - Frame { - msec: 3312 - hash: "8a0ba2ae36ad3811778f3a3bc55743f5" - } - Frame { - msec: 3328 - hash: "bfdc71733ca45a2ba2e8abf751554a62" - } - Frame { - msec: 3344 - hash: "686e4d7bb5ae148d37fc2a1f6004a33a" - } - Frame { - msec: 3360 - hash: "29c553d9fe42fdbbd019d0ead61dffa0" - } - Frame { - msec: 3376 - hash: "bfa2b72c6554a2ed80a3b86f2cbed986" - } - Frame { - msec: 3392 - hash: "074ff90417a947f0a04926d5675d073b" - } - Frame { - msec: 3408 - hash: "6f56f9e0aa40149156ca71d6f8d4476a" - } - Frame { - msec: 3424 - hash: "950ce749bbf572021de2dd1688cb87e6" - } - Frame { - msec: 3440 - hash: "2d0903bd71862dc6f28bd702d955ae99" - } - Frame { - msec: 3456 - hash: "2733adae56728f1b744a4086ecb98052" - } - Frame { - msec: 3472 - hash: "779859d739e799bba15beeb97d18e682" - } - Frame { - msec: 3488 - hash: "9074386cfabe136b8839637e5cd58f57" - } - Frame { - msec: 3504 - hash: "fa5bcbf20c6ad0a218f23d98961229a1" - } - Frame { - msec: 3520 - hash: "5406c94da1717eaa5eb0010564216059" - } - Frame { - msec: 3536 - hash: "27d0a3c3a33c04df843bebd72ef79824" - } - Frame { - msec: 3552 - hash: "270df9c99c2679071b854b3d82337f79" - } - Frame { - msec: 3568 - hash: "5b3945505443a67e7a91f66fe42b4fe3" - } - Frame { - msec: 3584 - hash: "9a2f8565c354cb366725368ed323ccf4" - } - Frame { - msec: 3600 - hash: "6702cb7ccd61c008b511932d7bd5d107" - } - Frame { - msec: 3616 - hash: "f6b86c3a1cc88357f588b6dae11aae30" - } - Frame { - msec: 3632 - hash: "b10c23937f420db72af8abaf126f71c2" - } - Frame { - msec: 3648 - hash: "7d6b0810ffc6e488c8168e19bccb7358" - } - Frame { - msec: 3664 - hash: "c01ef69ec46391909619434e9d9dd0ce" - } - Frame { - msec: 3680 - hash: "a046464fccb0c5ba1f63f8b569821a44" - } - Frame { - msec: 3696 - hash: "8763c526924d882438f9aa9bfb4fe87d" - } - Frame { - msec: 3712 - hash: "dede7a62d6e5c10e8f30caa075bd8dfd" - } - Frame { - msec: 3728 - hash: "3b408e5c986f5bb01d8c3949876b792f" - } - Frame { - msec: 3744 - hash: "0a458f3b17cdd3ea85522779c9346af9" - } - Frame { - msec: 3760 - hash: "fef521f0301cce90af88d37e6d441ec8" - } - Frame { - msec: 3776 - hash: "3d083e0822242b3b37c6839ca91a1f68" - } - Frame { - msec: 3792 - hash: "f8fe013a717e6e61830137bdc78a8b40" - } - Frame { - msec: 3808 - hash: "0ae80ad65dd194043500fa50b5a547a6" - } - Frame { - msec: 3824 - hash: "a53c67fa32ef971eaea202fa5d8a6ad6" - } - Frame { - msec: 3840 - image: "easefollow.3.png" - } - Frame { - msec: 3856 - hash: "41f86bbf0658b127f01e8d46d7ec941b" - } - Frame { - msec: 3872 - hash: "d20f21df127565f9eb87c5d759a638d9" - } - Frame { - msec: 3888 - hash: "85ff94f03cea3e111807e90d062c1367" - } - Frame { - msec: 3904 - hash: "aa637850fe5f05a71ac4c7d31dbb36ee" - } - Frame { - msec: 3920 - hash: "c86a67096c5e62bb73b785cdf6a5b6b1" - } - Frame { - msec: 3936 - hash: "9d53537f2c50a0016bf7bb522b2ec3d8" - } - Frame { - msec: 3952 - hash: "b48630c27c27785ddce568a85d4dc58f" - } - Frame { - msec: 3968 - hash: "01c1bdb6e261cc509f26712b13eeb554" - } - Frame { - msec: 3984 - hash: "af8a44284695fd999acd5944434f0372" - } - Frame { - msec: 4000 - hash: "b156d9d6d5163f007ac4a309d8927ae9" - } - Frame { - msec: 4016 - hash: "2df3715416c3c005f04b66fe1258c0d8" - } - Frame { - msec: 4032 - hash: "96b4a7c6b8542b50fc345b54d38ec82a" - } - Frame { - msec: 4048 - hash: "7e62e757fafa06833444c3a7e1d96ce4" - } - Frame { - msec: 4064 - hash: "5222a8f9366c7d974d0687d05d229069" - } - Frame { - msec: 4080 - hash: "ec96169f4633c3bddfd582feeb8e9ad4" - } - Frame { - msec: 4096 - hash: "cb10db893d1e1cb2a370507dc5679985" - } - Frame { - msec: 4112 - hash: "d7e346c2ac77796bde639bd829b72e85" - } - Frame { - msec: 4128 - hash: "ba5bea8857e4fb444bedd3873563e7db" - } - Frame { - msec: 4144 - hash: "05556fba5d1714f70fd6c2bfb43d213b" - } - Frame { - msec: 4160 - hash: "aeeabf35f9759f045a670a9b9f90dc68" - } - Frame { - msec: 4176 - hash: "131bd453f4c7726e5fdd546252700e2e" - } - Frame { - msec: 4192 - hash: "7c5c3b5bb7a4082e6b9b43640e29f4e2" - } - Frame { - msec: 4208 - hash: "07515e21b7a7895f333e4a8bbd2202eb" - } - Frame { - msec: 4224 - hash: "6cf136f223ac6edd39ba6ed9b4445884" - } - Frame { - msec: 4240 - hash: "84264f5745add8a922101735ed8def84" - } - Frame { - msec: 4256 - hash: "660863d1e4b361f2e5445b417be0d2ad" - } - Frame { - msec: 4272 - hash: "7ceb86f4b16546370d72164d0ca3147c" - } - Frame { - msec: 4288 - hash: "a13e97da9722545ad87ac3c5eb92c497" - } - Frame { - msec: 4304 - hash: "5896b5307cbd609d2062d3607786d40c" - } - Frame { - msec: 4320 - hash: "c8c511115394116e4544c67f615ea5d5" - } - Frame { - msec: 4336 - hash: "59ca5fdf12a735e5c292901b54acccb2" - } - Frame { - msec: 4352 - hash: "155cce2738d34e0eac86f5eb63d638f0" - } - Frame { - msec: 4368 - hash: "83a840c3ae7dbd9a05c17fdd8be07d7a" - } - Frame { - msec: 4384 - hash: "800a15de28b14d88f0ad58fc3f4a2520" - } - Frame { - msec: 4400 - hash: "c8381439a3cd3f9e7f80061023723a6e" - } - Frame { - msec: 4416 - hash: "e3d63000db4b9458b202dece49d1bdba" - } - Frame { - msec: 4432 - hash: "c943e56781695798f3c221f8ab09681a" - } - Frame { - msec: 4448 - hash: "1137ee66d7fbf5a84c33f5ffff15b3dd" - } - Frame { - msec: 4464 - hash: "5a98013cc4462aad18cad8d941f77aa0" - } - Frame { - msec: 4480 - hash: "d0b3748fb49a13c0ad9a68b0e2914921" - } - Frame { - msec: 4496 - hash: "12113f71f9117670acbd7877edded7e0" - } - Frame { - msec: 4512 - hash: "22983424da08cdae7a9c6a8905b37736" - } - Frame { - msec: 4528 - hash: "b2db5618a025cefb2650124c81880c49" - } - Frame { - msec: 4544 - hash: "84fb5e7edc5b42163a83e0cd362b3a46" - } - Frame { - msec: 4560 - hash: "39d6f1ed0f60a0c366c22e1442c455ac" - } - Frame { - msec: 4576 - hash: "702367f6e4aaa2a862e57f9e02a08758" - } - Frame { - msec: 4592 - hash: "ecc75293bc156c560d55cb7d278a4e58" - } - Frame { - msec: 4608 - hash: "e68af8e97ce65376fd7904e599440c92" - } - Frame { - msec: 4624 - hash: "75fe9f766d6cf636cd72d8879a461439" - } - Frame { - msec: 4640 - hash: "162aef147ef4bbb0cd92bd70e4f37f62" - } - Frame { - msec: 4656 - hash: "d879aae8949976c7bad4d97f1e5b5549" - } - Frame { - msec: 4672 - hash: "8a983d7228190721f988de2d72cb3aa2" - } - Frame { - msec: 4688 - hash: "a4f3c63fde664d128cd35b129a4f9a23" - } - Frame { - msec: 4704 - hash: "115fb5f3c9b7f1c28ab379596faba91c" - } - Frame { - msec: 4720 - hash: "ea9600c4d6c77a3b32e59401aa84fe96" - } - Frame { - msec: 4736 - hash: "bd6531fdd9cfd46af2df73bacb31f4c5" - } - Frame { - msec: 4752 - hash: "33bdcf1df50eab5e7963c649fbd32226" - } - Frame { - msec: 4768 - hash: "236e88fb72369a55f9eba4b50712ae85" - } - Frame { - msec: 4784 - hash: "5eb3c14a6296fb3a1c58603b2fc937c8" - } - Frame { - msec: 4800 - image: "easefollow.4.png" - } - Frame { - msec: 4816 - hash: "31d11a1ce6422524241c77603fe53e61" - } - Frame { - msec: 4832 - hash: "44e8b9947026c10b922c84883dd8e889" - } - Frame { - msec: 4848 - hash: "d049e4f7c4bc1849398859a4d630c1b3" - } - Frame { - msec: 4864 - hash: "e83b4757898e4eeef74be8213619fbfa" - } - Frame { - msec: 4880 - hash: "d08f40615f2d5abc6236e856a67575dd" - } - Frame { - msec: 4896 - hash: "d9cb26bf1b8bbafb2aed8f74bd454077" - } - Frame { - msec: 4912 - hash: "aa321b94a6cc53b2ebac80e834c0a908" - } - Frame { - msec: 4928 - hash: "48da37164be156b67a4b3b14e50f2375" - } - Frame { - msec: 4944 - hash: "f522ce7728a4a9e7fad86c72f29bd8f9" - } - Frame { - msec: 4960 - hash: "9bc1d16b4bda596702a3d8a3fad8a5c5" - } - Frame { - msec: 4976 - hash: "5275dccf18745dec6c59b846de17d9ef" - } - Frame { - msec: 4992 - hash: "4eb6babc177b96f69b148d52f56d82d7" - } - Frame { - msec: 5008 - hash: "ccdfb454070ac04c4fe4f3513c52f8c8" - } - Frame { - msec: 5024 - hash: "07f6adad6e8ff4f0eff92c758636a951" - } - Frame { - msec: 5040 - hash: "241e0ad9218d49be477509e008e45548" - } - Frame { - msec: 5056 - hash: "151a482e821779da8a61063f1cc73f8c" - } - Frame { - msec: 5072 - hash: "1499d207c5a3a9bc7bbb84d9c5e35578" - } - Frame { - msec: 5088 - hash: "c253753f653157a5058ef071f16b8bbb" - } - Frame { - msec: 5104 - hash: "ec9fea5a870724a106b952edef7fb466" - } - Frame { - msec: 5120 - hash: "99b673f8ed049d31a2aecabcc46d841d" - } - Frame { - msec: 5136 - hash: "61e77fea693ea55aafbdc94c40c3ab33" - } - Frame { - msec: 5152 - hash: "53e44a3732ee6858d5bd596b4c5d5305" - } - Frame { - msec: 5168 - hash: "5b25d3894a56dc4f4a0aa8f88cb69e23" - } - Frame { - msec: 5184 - hash: "5683ad02f1b9126f4e4ff6b03044fdc6" - } - Frame { - msec: 5200 - hash: "0a3ec255575ec1b70e0b10cf59c7c5fd" - } - Frame { - msec: 5216 - hash: "0f5f46fe3fdf42d4651891f13c8afc7e" - } - Frame { - msec: 5232 - hash: "b6955407245c73e356a460d99dad77be" - } - Frame { - msec: 5248 - hash: "6018b53414921943b37c33fa04a29697" - } - Frame { - msec: 5264 - hash: "ff184d349ce0b648f8c1fce91ae997f6" - } - Frame { - msec: 5280 - hash: "9c112a3a785d970593887eeab72fa7fe" - } - Frame { - msec: 5296 - hash: "00384fb20d4c6cd6236d519d2d734cc3" - } - Frame { - msec: 5312 - hash: "601ea99400e5f50ee9a5a4b74b6f3017" - } - Frame { - msec: 5328 - hash: "9afed04bf7eca24d9b6d31ac84ae59c2" - } - Frame { - msec: 5344 - hash: "1983319c8043bfe403513af7ccb5b924" - } - Frame { - msec: 5360 - hash: "b0244e4e1b61202ede78405415c22bca" - } - Frame { - msec: 5376 - hash: "ec5516b1aaeace8784b04649c51ab40b" - } - Frame { - msec: 5392 - hash: "8ff7d2001594abb588f769bab15406d7" - } - Frame { - msec: 5408 - hash: "64d5fd96a1726aa5276f9b508566676f" - } - Frame { - msec: 5424 - hash: "ab49497a6c825038354f076bdbbbc235" - } - Frame { - msec: 5440 - hash: "6b821e43be932800b20af58a7b5a1ff7" - } - Frame { - msec: 5456 - hash: "683a2902300f930e2a81a82dc37c583b" - } - Frame { - msec: 5472 - hash: "86d7946d7fbb66369ccbf26430939225" - } - Frame { - msec: 5488 - hash: "fb38f5fb6555fc14e95a47c595a6ea0c" - } - Frame { - msec: 5504 - hash: "3878f685d9fa3299e9ffe78c22595387" - } - Frame { - msec: 5520 - hash: "b48840a68ff007901b02332c7177f315" - } - Frame { - msec: 5536 - hash: "9d847abc99220b04aceef12e5c09aac0" - } - Frame { - msec: 5552 - hash: "9893ac89fda64d96ec4140c3c87e17a5" - } - Frame { - msec: 5568 - hash: "cd94e1c36e6be9877cd9c12df42bd968" - } - Frame { - msec: 5584 - hash: "c1ce5e53b74af022dc103ad74ff5f1af" - } - Frame { - msec: 5600 - hash: "b3630e08eac02a9578a00b01baabaaba" - } - Frame { - msec: 5616 - hash: "0eb9241aa1f9526c1e24ba76d630805c" - } - Frame { - msec: 5632 - hash: "1b532ae7f9253469467522d4ca66c47b" - } - Frame { - msec: 5648 - hash: "7e6e49079ed6330da2e337a5e4ffd730" - } - Frame { - msec: 5664 - hash: "0391d668f4b906b244a5f5c1713573c2" - } - Frame { - msec: 5680 - hash: "8070fa3280d0d64bf976d4a276359c4c" - } - Frame { - msec: 5696 - hash: "f7d0d36a2d40c798f56ac7ecc1effca6" - } - Frame { - msec: 5712 - hash: "9f8e35ee5080e811c670c480a9c2bd9f" - } - Frame { - msec: 5728 - hash: "c7fea75a43a59a11aa504df32afcdaf8" - } - Frame { - msec: 5744 - hash: "7e549a93ffc6ddcc3d8111f10c05b29e" - } - Frame { - msec: 5760 - image: "easefollow.5.png" - } - Frame { - msec: 5776 - hash: "92d298262f610a2dafa095e3d67c80af" - } - Frame { - msec: 5792 - hash: "db8826b0b2feece0999863b8827a6234" - } - Frame { - msec: 5808 - hash: "12c7050e8094bb39212aed0163666d1a" - } - Frame { - msec: 5824 - hash: "69531beace5c749bf90160a4b25f736a" - } - Frame { - msec: 5840 - hash: "ce873e4dbc8853183b54d59991b2e030" - } - Frame { - msec: 5856 - hash: "fa1078973634578d69527402b11fb7e0" - } - Frame { - msec: 5872 - hash: "1e3b3db590567c0afd1913101192cda9" - } - Frame { - msec: 5888 - hash: "7b9e097018278b784973a546da3d401a" - } - Frame { - msec: 5904 - hash: "a7b0667093888480de6697280aeea9ba" - } - Frame { - msec: 5920 - hash: "e381f2422ead86575abf643b0b0c9797" - } - Frame { - msec: 5936 - hash: "44b08f5a0de2a6955e02f67753f409c8" - } - Frame { - msec: 5952 - hash: "db04665e58448ecc7f95baa3e4ea79a5" - } - Frame { - msec: 5968 - hash: "0e4aae728d8d543538a9446c41e18e91" - } - Frame { - msec: 5984 - hash: "e3cd1bbb1d9963e5c74d36e526a871b0" - } - Frame { - msec: 6000 - hash: "bcd893a0e200ddda4e1468c159018865" - } - Frame { - msec: 6016 - hash: "9c5293356aa6312f909e655e9bcf961b" - } - Frame { - msec: 6032 - hash: "0bab7b9166f6af554d4fa0badeec739e" - } - Frame { - msec: 6048 - hash: "e74996581f0aaeced118c5cbfd977d90" - } - Frame { - msec: 6064 - hash: "5d128eb20a2a23da8c2d9a35293e5769" - } - Frame { - msec: 6080 - hash: "ebbbc343698287faf7ffa7526a726b54" - } - Frame { - msec: 6096 - hash: "d812172192cc19590f9a2d7dbf970439" - } - Frame { - msec: 6112 - hash: "60263addb1b4b5ac43f8199b8ed77e40" - } - Frame { - msec: 6128 - hash: "702a1ff2876eaaa59359811bb6437c5b" - } - Frame { - msec: 6144 - hash: "8f81dc43decce5094ee7a089f0009730" - } - Frame { - msec: 6160 - hash: "efda5dd9edd83a0da089d0b28806c6b6" - } - Frame { - msec: 6176 - hash: "7274a33a7a5272d7abdaf41f4b2bf664" - } - Frame { - msec: 6192 - hash: "0cc80077476e721a3da85c17cc56a65e" - } - Frame { - msec: 6208 - hash: "e65a534f0e7e70520a9c2cfa09ee8159" - } - Frame { - msec: 6224 - hash: "b05b514c63bd8998785382e6a9cbd849" - } - Frame { - msec: 6240 - hash: "10a04d641e0cc65c120d8bcf2f3e54c8" - } - Frame { - msec: 6256 - hash: "68418e2206a496dd15a05b50fec6f87e" - } - Frame { - msec: 6272 - hash: "6549e0989e1c86e3a7eb0dcc8dd31380" - } - Frame { - msec: 6288 - hash: "bd0193c2cbc8958f674f4ec52a693b72" - } - Frame { - msec: 6304 - hash: "746440b45a3688dbd32b34c57454e956" - } - Frame { - msec: 6320 - hash: "6b54ee8af30be2178e8b3afab5dcb4c7" - } - Frame { - msec: 6336 - hash: "ba2fbad3fe2fe25ec0c0c542659168dc" - } - Frame { - msec: 6352 - hash: "84bd72703bd8200f8f090783d06ae451" - } - Frame { - msec: 6368 - hash: "17c9fb063280c2ee4cb4a13273bbb199" - } - Frame { - msec: 6384 - hash: "df28fd55719f5c2d164596d02c2faff2" - } - Frame { - msec: 6400 - hash: "c2e280e78e892200d40022d17ce695b7" - } - Frame { - msec: 6416 - hash: "c657caa0c5158e178ec5df80bbad6bcb" - } - Frame { - msec: 6432 - hash: "d91f4f6ec6503fe8280f9b02dd11e64a" - } - Frame { - msec: 6448 - hash: "0fb9400cdca9dbd4035fbf8af9952360" - } - Frame { - msec: 6464 - hash: "cac0e1b4aa094306b95f90ede4705391" - } - Frame { - msec: 6480 - hash: "e60a4bb14300a937a767effee931c60f" - } - Frame { - msec: 6496 - hash: "8b461397e3f210ee7e9305dcab2af2db" - } - Frame { - msec: 6512 - hash: "6ce9ec0942dd06c9f73929a7e176852c" - } - Frame { - msec: 6528 - hash: "da36e254635eea854a6552ba008117f9" - } - Frame { - msec: 6544 - hash: "0bec6402b5eb09d05ce8e9ff5253ea8d" - } - Frame { - msec: 6560 - hash: "72f6610527d395ca590eda166ef6bc4e" - } - Frame { - msec: 6576 - hash: "622ae3fd47adb2432e2a40d3c5539393" - } - Frame { - msec: 6592 - hash: "0b18c49e2bbf9370216e06b555faf183" - } - Frame { - msec: 6608 - hash: "0c090bb975fb883301b52479fd6f5fdf" - } - Frame { - msec: 6624 - hash: "c4205d7ecb7327426d9591e77247acab" - } - Frame { - msec: 6640 - hash: "f0e0075243e4b8aa97056248fe6033ed" - } - Frame { - msec: 6656 - hash: "47f99b40a8764ee9d9e429061fb7acb2" - } - Frame { - msec: 6672 - hash: "49e8c1e974b0716570d85109b53817a5" - } - Frame { - msec: 6688 - hash: "72f981bad831b6ed858009527902f734" - } - Frame { - msec: 6704 - hash: "e959a0493b06369a429f90f66cb65977" - } - Frame { - msec: 6720 - image: "easefollow.6.png" - } - Frame { - msec: 6736 - hash: "93470d983282f24425558f47ad705154" - } - Frame { - msec: 6752 - hash: "cdccbe1a7c7abd4a6a6ee754ed0c9759" - } - Frame { - msec: 6768 - hash: "0e1b7b5332a9fcdb492db5314a2a0267" - } - Frame { - msec: 6784 - hash: "1e1ffe3439aab51d0b325474e7d8dc28" - } - Frame { - msec: 6800 - hash: "e8e7e9b5871caf77f15678616d6c9c8a" - } - Frame { - msec: 6816 - hash: "9771fff3b7752154d093c038bea73d28" - } - Frame { - msec: 6832 - hash: "1af851ea214cbddb0e3a743084a5cf6b" - } - Frame { - msec: 6848 - hash: "1566182a7e29bbb738705a90c4909617" - } - Frame { - msec: 6864 - hash: "feed650e1d948fe622234d212fb745f2" - } - Frame { - msec: 6880 - hash: "3cd3d063275b91f9680717421c118ba4" - } - Frame { - msec: 6896 - hash: "c1f088801334762cd499e7cc70e1e59a" - } - Frame { - msec: 6912 - hash: "e8f8d153e7a027a5092a9209411d97f7" - } - Frame { - msec: 6928 - hash: "f11747c3533b4b2fc77a64ca0cace8b0" - } - Frame { - msec: 6944 - hash: "21618c67a2a8bbce86fc872060ad40e8" - } - Frame { - msec: 6960 - hash: "02da96335db74b87ceefe91b1dfe72e6" - } - Frame { - msec: 6976 - hash: "2b2e4143143ead8dea5865fd782f1775" - } - Frame { - msec: 6992 - hash: "13e710900b05e26cdb030b1e2b2be715" - } - Frame { - msec: 7008 - hash: "29e8995d17aac4d02034debcbb9fcb98" - } - Frame { - msec: 7024 - hash: "1099db1b3e4c69e84c6ab1b7c311bf1e" - } - Frame { - msec: 7040 - hash: "cc7cb720043334f1eeb385dce4389dc2" - } - Frame { - msec: 7056 - hash: "34c7a62c1bc7261e2fd31c40068b37a7" - } - Frame { - msec: 7072 - hash: "7fafbe05cbcaa21893e3aa0f1fcfb5a0" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 7088 - hash: "5b26c8cf047706633795a8ed3e703a89" - } - Frame { - msec: 7104 - hash: "e0774bf9e74d0cde81c5cb216a9258fc" - } - Frame { - msec: 7120 - hash: "0870262f643245e13f4fba79fd575897" - } - Frame { - msec: 7136 - hash: "8faf0d050bb435ade8af5012c1a6b0dc" - } - Frame { - msec: 7152 - hash: "382c037895cc39a6870db57b5016c01f" - } - Frame { - msec: 7168 - hash: "f1f5a2cbc103ab1bee9f537fa8266e03" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml b/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml deleted file mode 100644 index ac0c141..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativesmoothedanimation/smoothedanimation.qml +++ /dev/null @@ -1,45 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - width: 800; height: 240; color: "gray" - - Rectangle { - id: rect - width: 50; height: 20; y: 30; color: "black" - SequentialAnimation on x { - loops: Animation.Infinite - NumberAnimation { from: 50; to: 700; duration: 2000 } - NumberAnimation { from: 700; to: 50; duration: 2000 } - } - } - - Rectangle { - width: 50; height: 20; y: 60; color: "red" - x: rect.x - Behavior on x { SmoothedAnimation { velocity: 400 } } - } - - Rectangle { - width: 50; height: 20; y: 90; color: "yellow" - x: rect.x - Behavior on x { SmoothedAnimation { velocity: 300; reversingMode: SmoothedAnimation.Immediate } } - } - - Rectangle { - width: 50; height: 20; y: 120; color: "green" - x: rect.x - Behavior on x { SmoothedAnimation { reversingMode: SmoothedAnimation.Sync } } - } - - Rectangle { - width: 50; height: 20; y: 150; color: "purple" - x: rect.x - Behavior on x { SmoothedAnimation { maximumEasingTime: 200 } } - } - - Rectangle { - width: 50; height: 20; y: 180; color: "blue" - x: rect.x - Behavior on x { SmoothedAnimation { duration: 300 } } - } -} -- cgit v0.12 From 55c4d94dfea78951f3371d3697a3cb28539b3012 Mon Sep 17 00:00:00 2001 From: Yann Bodson <yann.bodson@nokia.com> Date: Fri, 29 Oct 2010 12:21:10 +1000 Subject: Regression: QML fonts look bad on Mac with font smoothing on Task-number: QTBUG-14840 --- src/declarative/util/qdeclarativeview.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/declarative/util/qdeclarativeview.cpp b/src/declarative/util/qdeclarativeview.cpp index 2381172..0e31a20 100644 --- a/src/declarative/util/qdeclarativeview.cpp +++ b/src/declarative/util/qdeclarativeview.cpp @@ -72,6 +72,7 @@ QT_BEGIN_NAMESPACE DEFINE_BOOL_CONFIG_OPTION(frameRateDebug, QML_SHOW_FRAMERATE) +extern Q_GUI_EXPORT bool qt_applefontsmoothing_enabled; class QDeclarativeScene : public QGraphicsScene { @@ -696,7 +697,14 @@ void QDeclarativeView::paintEvent(QPaintEvent *event) if (frameRateDebug()) time = d->frameTimer.restart(); +#ifdef Q_WS_MAC + bool oldSmooth = qt_applefontsmoothing_enabled; + qt_applefontsmoothing_enabled = false; +#endif QGraphicsView::paintEvent(event); +#ifdef Q_WS_MAC + qt_applefontsmoothing_enabled = oldSmooth; +#endif QDeclarativeDebugTrace::endRange(QDeclarativeDebugTrace::Painting); -- cgit v0.12 From 2255e4f681d20b095f328a8ee3f33ce328353a8f Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 13:14:12 +1000 Subject: Update qdeclarativespringanimation visual tests Still correct, main problem was not getting updated visuals when we switched away from follows. Task-number: QTBUG-14792 --- .../qdeclarativespringanimation/clock.qml | 64 + .../content/background.png | Bin 0 -> 46895 bytes .../qdeclarativespringanimation/content/center.png | Bin 0 -> 765 bytes .../qdeclarativespringanimation/content/clock.png | Bin 0 -> 20653 bytes .../qdeclarativespringanimation/content/hour.png | Bin 0 -> 625 bytes .../qdeclarativespringanimation/content/minute.png | Bin 0 -> 625 bytes .../qdeclarativespringanimation/content/second.png | Bin 0 -> 303 bytes .../qdeclarativespringanimation/data/clock.0.png | Bin 0 -> 16437 bytes .../qdeclarativespringanimation/data/clock.1.png | Bin 0 -> 16543 bytes .../qdeclarativespringanimation/data/clock.qml | 615 +++++++ .../qdeclarativespringanimation/data/follow.0.png | Bin 0 -> 975 bytes .../qdeclarativespringanimation/data/follow.1.png | Bin 0 -> 1244 bytes .../qdeclarativespringanimation/data/follow.2.png | Bin 0 -> 1225 bytes .../qdeclarativespringanimation/data/follow.3.png | Bin 0 -> 1243 bytes .../qdeclarativespringanimation/data/follow.4.png | Bin 0 -> 1230 bytes .../qdeclarativespringanimation/data/follow.5.png | Bin 0 -> 1244 bytes .../qdeclarativespringanimation/data/follow.6.png | Bin 0 -> 1242 bytes .../qdeclarativespringanimation/data/follow.qml | 1763 ++++++++++++++++++++ .../qdeclarativespringanimation/follow.qml | 79 + .../qmlvisual/qdeclarativespringfollow/clock.qml | 67 - .../content/background.png | Bin 46895 -> 0 bytes .../qdeclarativespringfollow/content/center.png | Bin 765 -> 0 bytes .../qdeclarativespringfollow/content/clock.png | Bin 20653 -> 0 bytes .../qdeclarativespringfollow/content/hour.png | Bin 625 -> 0 bytes .../qdeclarativespringfollow/content/minute.png | Bin 625 -> 0 bytes .../qdeclarativespringfollow/content/second.png | Bin 303 -> 0 bytes .../qdeclarativespringfollow/data/clock.0.png | Bin 17294 -> 0 bytes .../qdeclarativespringfollow/data/clock.1.png | Bin 17394 -> 0 bytes .../qdeclarativespringfollow/data/clock.2.png | Bin 17524 -> 0 bytes .../qdeclarativespringfollow/data/clock.3.png | Bin 17572 -> 0 bytes .../qdeclarativespringfollow/data/clock.qml | 1135 ------------- .../qdeclarativespringfollow/data/follow.0.png | Bin 959 -> 0 bytes .../qdeclarativespringfollow/data/follow.1.png | Bin 1244 -> 0 bytes .../qdeclarativespringfollow/data/follow.10.png | Bin 1299 -> 0 bytes .../qdeclarativespringfollow/data/follow.2.png | Bin 1224 -> 0 bytes .../qdeclarativespringfollow/data/follow.3.png | Bin 1243 -> 0 bytes .../qdeclarativespringfollow/data/follow.4.png | Bin 1230 -> 0 bytes .../qdeclarativespringfollow/data/follow.5.png | Bin 1231 -> 0 bytes .../qdeclarativespringfollow/data/follow.6.png | Bin 1239 -> 0 bytes .../qdeclarativespringfollow/data/follow.7.png | Bin 1241 -> 0 bytes .../qdeclarativespringfollow/data/follow.8.png | Bin 1237 -> 0 bytes .../qdeclarativespringfollow/data/follow.9.png | Bin 1229 -> 0 bytes .../qdeclarativespringfollow/data/follow.qml | 1763 -------------------- .../qmlvisual/qdeclarativespringfollow/follow.qml | 79 - 44 files changed, 2521 insertions(+), 3044 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/clock.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/background.png create mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/center.png create mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/clock.png create mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/hour.png create mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/minute.png create mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/second.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.0.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.1.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.2.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.3.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.4.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.5.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.6.png create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.qml create mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringanimation/follow.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/background.png delete mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/center.png delete mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/clock.png delete mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/hour.png delete mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/minute.png delete mode 100755 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/second.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.0.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.1.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.10.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.2.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.3.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.4.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.5.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.6.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.7.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.8.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.9.png delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml delete mode 100644 tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/clock.qml new file mode 100644 index 0000000..0e4e642 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/clock.qml @@ -0,0 +1,64 @@ +import QtQuick 1.0 + +Rectangle { + id: clock + color: "gray" + width: 200; height: 200 + + property variant hours: 10 + property variant minutes: 28 + property variant seconds: 0 + + Timer { + interval: 1000; running: true; repeat: true; triggeredOnStart: true + onTriggered: seconds++ + } + + Image { id: background; source: "content/clock.png" } + + Image { + x: 92.5; y: 27 + source: "content/hour.png" + transform: Rotation { + id: hourRotation + origin.x: 7.5; origin.y: 73 + angle: (clock.hours * 30) + (clock.minutes * 0.5) + + Behavior on angle { + SpringAnimation { spring: 2; damping: 0.2; modulus: 360 } + } + } + } + + Image { + x: 93.5; y: 17 + source: "content/minute.png" + transform: Rotation { + id: minuteRotation + origin.x: 6.5; origin.y: 83 + angle: clock.minutes * 6 + + Behavior on angle { + SpringAnimation { spring: 2; damping: 0.2; modulus: 360 } + } + } + } + + Image { + x: 97.5; y: 20 + source: "content/second.png" + transform: Rotation { + id: secondRotation + origin.x: 2.5; origin.y: 80 + angle: clock.seconds * 6 + + Behavior on angle { + SpringAnimation { spring: 5; damping: 0.25; modulus: 360 } + } + } + } + + Image { + anchors.centerIn: background; source: "content/center.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/background.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/background.png new file mode 100644 index 0000000..a885950 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/background.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/center.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/center.png new file mode 100755 index 0000000..7fbd802 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/center.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/clock.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/clock.png new file mode 100755 index 0000000..462edac Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/clock.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/hour.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/hour.png new file mode 100755 index 0000000..f8061a1 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/hour.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/minute.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/minute.png new file mode 100755 index 0000000..1297ec7 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/minute.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/second.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/second.png new file mode 100755 index 0000000..4aa9fb5 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/content/second.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.0.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.0.png new file mode 100644 index 0000000..f159b6b Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.1.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.1.png new file mode 100644 index 0000000..d24af1a Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.qml new file mode 100644 index 0000000..a3cd66b --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/clock.qml @@ -0,0 +1,615 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "cb33c89e5108c85e43b53489d1255862" + } + Frame { + msec: 32 + hash: "cb33c89e5108c85e43b53489d1255862" + } + Frame { + msec: 48 + hash: "fcf631cb42237d2ce9e57ef5fef85f93" + } + Frame { + msec: 64 + hash: "a9f1e24d60588ff9b565b15847669438" + } + Frame { + msec: 80 + hash: "c5a07045cd24b835fdd0653db5b34f9f" + } + Frame { + msec: 96 + hash: "bce3e9bfa92f81f0c8746a4777ce1b3e" + } + Frame { + msec: 112 + hash: "6da93132be1be8b42aaf007306ce5990" + } + Frame { + msec: 128 + hash: "8695e73f009bd20f3f3aae4a6b8f0098" + } + Frame { + msec: 144 + hash: "172ece19e661999ce48053007a92f107" + } + Frame { + msec: 160 + hash: "6e02e658d8873dd678dc9cc7cc8035a0" + } + Frame { + msec: 176 + hash: "d8e9bad91fd91bce0310a24233ecb906" + } + Frame { + msec: 192 + hash: "9c23533f0a4d47ec192bed2e48f11c60" + } + Frame { + msec: 208 + hash: "9c23533f0a4d47ec192bed2e48f11c60" + } + Frame { + msec: 224 + hash: "be0ee20e9eb94b80171f66fa6f1c2441" + } + Frame { + msec: 240 + hash: "83b841f7ea7a5e92a21ec0d0130b4281" + } + Frame { + msec: 256 + hash: "3bbf822e403f4198fbfaa6973726947d" + } + Frame { + msec: 272 + hash: "172ece19e661999ce48053007a92f107" + } + Frame { + msec: 288 + hash: "602ca5ac2fc928b831d8e10de01f5bf7" + } + Frame { + msec: 304 + hash: "9f07659e63a5b3412ede3c8400678cc6" + } + Frame { + msec: 320 + hash: "6104f86706bd11cee6b5aeef495eacfa" + } + Frame { + msec: 336 + hash: "b564cfe8c73b3d51e07bbcf5320868f8" + } + Frame { + msec: 352 + hash: "b2136411eee23d64718a63269071499f" + } + Frame { + msec: 368 + hash: "7f610f3b80c2cf002c6565ac4b7a8325" + } + Frame { + msec: 384 + hash: "5480e79cc96fdaffecb2d9dec254c8d4" + } + Frame { + msec: 400 + hash: "50eea6c6f135c21ecf05fc83ad1ae9a8" + } + Frame { + msec: 416 + hash: "2d3634d621782194674da127abe66039" + } + Frame { + msec: 432 + hash: "285180aa632c9247c3b7aa26f5544da6" + } + Frame { + msec: 448 + hash: "8695e73f009bd20f3f3aae4a6b8f0098" + } + Frame { + msec: 464 + hash: "914dc6254f29a6cffc80e90a23b61130" + } + Frame { + msec: 480 + hash: "a564dc3a53b607ca7e9fc6920b65abc3" + } + Frame { + msec: 496 + hash: "6104f86706bd11cee6b5aeef495eacfa" + } + Frame { + msec: 512 + hash: "6f34176630c5d9d421a1a31cb3b97a28" + } + Frame { + msec: 528 + hash: "62199c5663263fee08ba5ce560c7429d" + } + Frame { + msec: 544 + hash: "1110cb0281044eb0679e9dc373a7d063" + } + Frame { + msec: 560 + hash: "0ec354101faf6603c9ca56fe82dc8ac3" + } + Frame { + msec: 576 + hash: "0ec354101faf6603c9ca56fe82dc8ac3" + } + Frame { + msec: 592 + hash: "1110cb0281044eb0679e9dc373a7d063" + } + Frame { + msec: 608 + hash: "1110cb0281044eb0679e9dc373a7d063" + } + Frame { + msec: 624 + hash: "62199c5663263fee08ba5ce560c7429d" + } + Frame { + msec: 640 + hash: "1716d50c65b4319845fdc7ea1ceafe4d" + } + Frame { + msec: 656 + hash: "d087befa8f95f70e33604748230d5dd5" + } + Frame { + msec: 672 + hash: "7ae892fbab85d76e713ab70ca13d3f1f" + } + Frame { + msec: 688 + hash: "fb069bfb88b35f9f15273e04a62a9534" + } + Frame { + msec: 704 + hash: "41c69834e756bafc051ff65e149f8994" + } + Frame { + msec: 720 + hash: "f0c13b542b9ee9b0c9f4ef800900db16" + } + Frame { + msec: 736 + hash: "f0c13b542b9ee9b0c9f4ef800900db16" + } + Frame { + msec: 752 + hash: "f0c13b542b9ee9b0c9f4ef800900db16" + } + Frame { + msec: 768 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 784 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 800 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 816 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 832 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 848 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 864 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 880 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 896 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 912 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 928 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 944 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 960 + image: "clock.0.png" + } + Frame { + msec: 976 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 992 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 1008 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 1024 + hash: "2ff4e8f394a62892adb348271435205c" + } + Frame { + msec: 1040 + hash: "0ec9e1163fe8284ab27aa55f94bf3b14" + } + Frame { + msec: 1056 + hash: "9b6efbb358b1c7928e005620a60ab4a9" + } + Frame { + msec: 1072 + hash: "5be6fe791a3bb6f72a6c6a3d1e2fa86e" + } + Frame { + msec: 1088 + hash: "41fefdc45bd52600f7f108d4163d484b" + } + Frame { + msec: 1104 + hash: "45828a5bef6c4ad4d274c0ea46f72e44" + } + Frame { + msec: 1120 + hash: "17f0925ae38ee4c523713592d6b9f541" + } + Frame { + msec: 1136 + hash: "ed3acc723c29321751702903b57a557a" + } + Frame { + msec: 1152 + hash: "ded71422852eec4464f54e9c1b01b28a" + } + Frame { + msec: 1168 + hash: "0318d105aa5f7d3bebb0d24a85065f90" + } + Frame { + msec: 1184 + hash: "9abe4cb4e8ff6ffafd993b10ac55aad9" + } + Frame { + msec: 1200 + hash: "b92dba35b477ce11822277ba64582232" + } + Frame { + msec: 1216 + hash: "3a9a6106e1f12ffbc81ae9d4b30376fe" + } + Frame { + msec: 1232 + hash: "4647b6e6c95e3339094c7e2641458137" + } + Frame { + msec: 1248 + hash: "0977f3ed3ab6426423f7a7bfb0bd1726" + } + Frame { + msec: 1264 + hash: "930002bcd6986af36678d23c3dc17330" + } + Frame { + msec: 1280 + hash: "ded71422852eec4464f54e9c1b01b28a" + } + Frame { + msec: 1296 + hash: "16164138479aed4db7fd9a1c785556cb" + } + Frame { + msec: 1312 + hash: "0b884e6a8a1c93d62fcee037f9ad8745" + } + Frame { + msec: 1328 + hash: "dd1323c721a0ede74910c16df4b47074" + } + Frame { + msec: 1344 + hash: "ed3acc723c29321751702903b57a557a" + } + Frame { + msec: 1360 + hash: "e8c528178425f7c6089ed6d094e734fb" + } + Frame { + msec: 1376 + hash: "f2954641b11004bc4d29a217791e3833" + } + Frame { + msec: 1392 + hash: "5d4d4086c4aebf04eb5b0045cf9a36a8" + } + Frame { + msec: 1408 + hash: "f2954641b11004bc4d29a217791e3833" + } + Frame { + msec: 1424 + hash: "c2e47da0e709c9ddeee01ae29d3ad059" + } + Frame { + msec: 1440 + hash: "e539f0142b3f6c2f7de084ddedbe979e" + } + Frame { + msec: 1456 + hash: "ed3acc723c29321751702903b57a557a" + } + Frame { + msec: 1472 + hash: "ae191ede94be250b60744d81179c5054" + } + Frame { + msec: 1488 + hash: "f985b1ab4feae3bd7066e15bdd026c1a" + } + Frame { + msec: 1504 + hash: "dd1323c721a0ede74910c16df4b47074" + } + Frame { + msec: 1520 + hash: "c99c541e424ebe82f1cceea204f3ffdc" + } + Frame { + msec: 1536 + hash: "dcdeb76d6e4c676e736ec9fcf68f993b" + } + Frame { + msec: 1552 + hash: "599bfdb42d46a31bf8639e7b1c89526b" + } + Frame { + msec: 1568 + hash: "bef384984df19143de0c290a6621146d" + } + Frame { + msec: 1584 + hash: "bef384984df19143de0c290a6621146d" + } + Frame { + msec: 1600 + hash: "04192a5408bc1aff5431b4ea0be94b27" + } + Frame { + msec: 1616 + hash: "8da64659fb7f532eac43a67accd319ee" + } + Frame { + msec: 1632 + hash: "dcdeb76d6e4c676e736ec9fcf68f993b" + } + Frame { + msec: 1648 + hash: "fba3a7729e46d8e78d203188ef29d829" + } + Frame { + msec: 1664 + hash: "c99c541e424ebe82f1cceea204f3ffdc" + } + Frame { + msec: 1680 + hash: "c99c541e424ebe82f1cceea204f3ffdc" + } + Frame { + msec: 1696 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1712 + hash: "7f62ba22b5567d4ea96725a6215ff98a" + } + Frame { + msec: 1728 + hash: "a21cc4fa347929fd816ad36f4b33efab" + } + Frame { + msec: 1744 + hash: "a21cc4fa347929fd816ad36f4b33efab" + } + Frame { + msec: 1760 + hash: "a21cc4fa347929fd816ad36f4b33efab" + } + Frame { + msec: 1776 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1792 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1808 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1824 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1840 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1856 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1872 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1888 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1904 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1920 + image: "clock.1.png" + } + Frame { + msec: 1936 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1952 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1968 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 1984 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 2000 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 2016 + hash: "a3e6173e6d82d2cb52149588b32851e4" + } + Frame { + msec: 2032 + hash: "dba66886121f802a4a49ee1e220279db" + } + Frame { + msec: 2048 + hash: "b43648a05b6900bd0402bb56c98692df" + } + Frame { + msec: 2064 + hash: "8213e39455c952a589a90eea0040edfe" + } + Frame { + msec: 2080 + hash: "0d72dcbb2de67c84c0cf802e1de2b32b" + } + Frame { + msec: 2096 + hash: "db5b4994b46f3e0de86149af8b99abb6" + } + Frame { + msec: 2112 + hash: "440f7414e3db5339f2180bf1fcdc1c55" + } + Frame { + msec: 2128 + hash: "f757740304369ac45bb88657f79f304e" + } + Frame { + msec: 2144 + hash: "4521da9bcf198f78f7270cca959adfe4" + } + Frame { + msec: 2160 + hash: "92d602d139aedf31180f12349a1edcad" + } + Frame { + msec: 2176 + hash: "4092500cb913f0c9ae49d61e53553371" + } + Frame { + msec: 2192 + hash: "dee122e2c46b398c48a7ef1619683a6f" + } + Frame { + msec: 2208 + hash: "1817fa481e8648dd092e29403b0f887e" + } + Frame { + msec: 2224 + hash: "93a69d88553709c0f164b11d8d765805" + } + Frame { + msec: 2240 + hash: "92d602d139aedf31180f12349a1edcad" + } + Frame { + msec: 2256 + hash: "4ff6679a9615ca8bd5dd63c296cca3d5" + } + Frame { + msec: 2272 + hash: "4521da9bcf198f78f7270cca959adfe4" + } + Frame { + msec: 2288 + hash: "127b93b536f6266965941af5888a63dd" + } + Frame { + msec: 2304 + hash: "1a3e36e44069a8bf29b73acfd8340044" + } + Frame { + msec: 2320 + hash: "1065e18d2b41af8b0b5c4f5ae2a30d4d" + } + Frame { + msec: 2336 + hash: "37144e92ba8c7edd2ef87ecb6525ed5f" + } + Frame { + msec: 2352 + hash: "d6445d8270ddbf5fcd196b3d71393da4" + } + Frame { + msec: 2368 + hash: "b55cc8bdf97531912fa1df1f379e623c" + } + Frame { + msec: 2384 + hash: "fdb86be92fa17fd4e773e5fd65f249a3" + } + Frame { + msec: 2400 + hash: "b55cc8bdf97531912fa1df1f379e623c" + } + Frame { + msec: 2416 + hash: "eb0de8259f7a6be756102f79b5220f56" + } + Frame { + msec: 2432 + hash: "5afbb87fe77112b86282252a2ffe3821" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.0.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.0.png new file mode 100644 index 0000000..c79ac9c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.0.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.1.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.1.png new file mode 100644 index 0000000..d00d78d Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.1.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.2.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.2.png new file mode 100644 index 0000000..c01c980 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.2.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.3.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.3.png new file mode 100644 index 0000000..6bca85f Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.3.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.4.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.4.png new file mode 100644 index 0000000..5f024d2 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.4.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.5.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.5.png new file mode 100644 index 0000000..b244fbe Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.5.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.6.png b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.6.png new file mode 100644 index 0000000..141753c Binary files /dev/null and b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.6.png differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.qml new file mode 100644 index 0000000..e5c55a4 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/data/follow.qml @@ -0,0 +1,1763 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "e94ba580322887dbbbf9cb6309e39c23" + } + Frame { + msec: 32 + hash: "e94ba580322887dbbbf9cb6309e39c23" + } + Frame { + msec: 48 + hash: "787a59cda2c0b27d8959026e6d1b9427" + } + Frame { + msec: 64 + hash: "9ca724d4b31aa16015b5cbb50eea0c3a" + } + Frame { + msec: 80 + hash: "8a2c62a0190da1b7c1bade243baea6b8" + } + Frame { + msec: 96 + hash: "e129bebca7ad348c3134569d8eee4efc" + } + Frame { + msec: 112 + hash: "fd6387415e1c02fe6d17d9c3aa1d1ed8" + } + Frame { + msec: 128 + hash: "a82a4042fdca7c30facd2c4740c455f7" + } + Frame { + msec: 144 + hash: "62195722eb3acbfbad137ec71fd50bfe" + } + Frame { + msec: 160 + hash: "449819cdc880d59650732b5447ec6237" + } + Frame { + msec: 176 + hash: "552a838ebcacc0e08fa93b64a2433831" + } + Frame { + msec: 192 + hash: "3984992606d54f05eb31dd0974af2183" + } + Frame { + msec: 208 + hash: "3fd7225bbb0215ca8b6397580f2352a5" + } + Frame { + msec: 224 + hash: "0fd8f26f40a9049de1cf2a9493d579d1" + } + Frame { + msec: 240 + hash: "d08f0c57f071dc42e79fc5e0e3c32eeb" + } + Frame { + msec: 256 + hash: "084c2db330ee82cd032df248ecc9629d" + } + Frame { + msec: 272 + hash: "98da0d7f280d7fc4579c970c9a173b51" + } + Frame { + msec: 288 + hash: "4c819c54ced1b6ef0574417a7e11f2e7" + } + Frame { + msec: 304 + hash: "3dc5f7b412cb176c3b23d37cda3ef87c" + } + Frame { + msec: 320 + hash: "c368a01b43d94205c03f9c750c37f330" + } + Frame { + msec: 336 + hash: "8842bd0c8b17cac4fc9df84835999174" + } + Frame { + msec: 352 + hash: "26829e9c7ca44dfcb0c03852f4158a18" + } + Frame { + msec: 368 + hash: "ecffdb0888f1721e27b163e1f29a1950" + } + Frame { + msec: 384 + hash: "eaead96f2683c464a12df8aadba20691" + } + Frame { + msec: 400 + hash: "1e931963925bd208dce1ec9011372a3b" + } + Frame { + msec: 416 + hash: "1c3fd049001c1e883f21d0d1e0e32cba" + } + Frame { + msec: 432 + hash: "e8c3422ca637750ac52565594737d092" + } + Frame { + msec: 448 + hash: "b1c36322cf89e15a80af7c43f2aebca1" + } + Frame { + msec: 464 + hash: "f676c3171495f7bb2cb1812cfebaa17a" + } + Frame { + msec: 480 + hash: "255119e2efa99c8e31fee611aaaa5137" + } + Frame { + msec: 496 + hash: "e0bd32e3d44cfc2351db105f4595f18a" + } + Frame { + msec: 512 + hash: "b7f23b8f3769f929b42491efda7ebe19" + } + Frame { + msec: 528 + hash: "718cee11d869a8a8c5191cc0c09f2d30" + } + Frame { + msec: 544 + hash: "fbdbf92f8c5f507605ff50abc594682b" + } + Frame { + msec: 560 + hash: "c07fdc69c72b40d3c8dd1cc499008888" + } + Frame { + msec: 576 + hash: "38e17ecd537dc0f51211ad672a2ebb21" + } + Frame { + msec: 592 + hash: "2cbdc8728ef779c62f9938672986658a" + } + Frame { + msec: 608 + hash: "7fb66509d5d1df34861e9c70f9a579f0" + } + Frame { + msec: 624 + hash: "410b89392e859058718a08b79ec3d8fa" + } + Frame { + msec: 640 + hash: "9bd90f80700217d08dafed93b81ee9cf" + } + Frame { + msec: 656 + hash: "6d83671504a4274887b4e0d9bd2b24e7" + } + Frame { + msec: 672 + hash: "51ff7bd3fd4a776af33fce7b935b145c" + } + Frame { + msec: 688 + hash: "20f27392368b63b248bcd455cf3c9106" + } + Frame { + msec: 704 + hash: "1a5ab296bd55aa215c9b04a7ff6c73a1" + } + Frame { + msec: 720 + hash: "020fd7b14e8662fc006b0c39adca7c6a" + } + Frame { + msec: 736 + hash: "2619120bdb25a153963bdf05c4a16d44" + } + Frame { + msec: 752 + hash: "fd321314031efeb9ce71146764289d9f" + } + Frame { + msec: 768 + hash: "378a71f09445dfff284db919787cbf87" + } + Frame { + msec: 784 + hash: "d59eefe82ab8a00c903141dd9ea767ef" + } + Frame { + msec: 800 + hash: "0a65004d69a4567f2a5c7e84dab3a905" + } + Frame { + msec: 816 + hash: "92a4631716a51ff484ca14d9cfe05b2e" + } + Frame { + msec: 832 + hash: "87203f627cf410cad56d6ba38a140efa" + } + Frame { + msec: 848 + hash: "054cc085998cc059a6b7b4a7300dd36b" + } + Frame { + msec: 864 + hash: "af3fefeb908a0485c723d36f61eff0a4" + } + Frame { + msec: 880 + hash: "3f905d1e1ea79858b5a9bbfeab4eb255" + } + Frame { + msec: 896 + hash: "f935f1fc5f26a201098d894fca9a4d1f" + } + Frame { + msec: 912 + hash: "42b003dbb531da514716b9c32bdd3614" + } + Frame { + msec: 928 + hash: "a82fed83ee4efee7896b639c7691b13a" + } + Frame { + msec: 944 + hash: "31ad8cbf875233ea495330b0d3d4d2dd" + } + Frame { + msec: 960 + image: "follow.0.png" + } + Frame { + msec: 976 + hash: "78422e0e8d323dea6aa655a2980b7562" + } + Frame { + msec: 992 + hash: "5d71ff48b865ad4266eb8292f981b04e" + } + Frame { + msec: 1008 + hash: "df599d934d131c92b209284277009efb" + } + Frame { + msec: 1024 + hash: "5aaf33d11eb70ffdfe89246c637caed7" + } + Frame { + msec: 1040 + hash: "9648cf623a66ded145c4fd23a42917b3" + } + Frame { + msec: 1056 + hash: "9d33c2cc44ceac5a527ddcf809a51df6" + } + Frame { + msec: 1072 + hash: "6d0ad2e0d012e53a03e246e6d5e49e13" + } + Frame { + msec: 1088 + hash: "d33fa68796e38b19f44571d11c1bcd33" + } + Frame { + msec: 1104 + hash: "636680f49bbf30b0fac31a6c581f18dd" + } + Frame { + msec: 1120 + hash: "66801dbc39301e6b46b244fe502e0340" + } + Frame { + msec: 1136 + hash: "f8fa6a033483279e78636f26493b10ac" + } + Frame { + msec: 1152 + hash: "11b46611550173df42986dee4339d907" + } + Frame { + msec: 1168 + hash: "5c9afdb519006079ee8d28b2b60d0b76" + } + Frame { + msec: 1184 + hash: "9a55c38b2cd8abf25fbe448c7ef80971" + } + Frame { + msec: 1200 + hash: "27ebdf1424e892b35c93ec009d942407" + } + Frame { + msec: 1216 + hash: "2d9e3f0ae56f7337012b51c4dd173108" + } + Frame { + msec: 1232 + hash: "e6f89ca892131d68ff1f4ca95c95d807" + } + Frame { + msec: 1248 + hash: "f75791f1b12a217d37acb09bdb114cc5" + } + Frame { + msec: 1264 + hash: "94c5ab1460fb1b0f957a9718b45bca36" + } + Frame { + msec: 1280 + hash: "e246c8a0ec3d01ea20258b24a5673fe1" + } + Frame { + msec: 1296 + hash: "529de7735e73409dff266d8c1275215c" + } + Frame { + msec: 1312 + hash: "330400763a670580570cb62241ebec62" + } + Frame { + msec: 1328 + hash: "ae444d1de9c509fc6f74136ca90f927a" + } + Frame { + msec: 1344 + hash: "c43631ca8ee90ea5dc7664be5bc45429" + } + Frame { + msec: 1360 + hash: "b366ac4a5b66c331a7667e9df0fc4eda" + } + Frame { + msec: 1376 + hash: "1c7f4c47a9c57a34787cc9703e99bff1" + } + Frame { + msec: 1392 + hash: "5555535609d512e8d34549b6624f74b8" + } + Frame { + msec: 1408 + hash: "be59df714541923494b59f31f57e310e" + } + Frame { + msec: 1424 + hash: "63e434f053032e54298f6e61c8d4da7d" + } + Frame { + msec: 1440 + hash: "b0bb838637eceb6f8993ebc5b887afed" + } + Frame { + msec: 1456 + hash: "fc39f33add4ebcaf578558ecd4aea281" + } + Frame { + msec: 1472 + hash: "3f36faa7cc1e5898d4d5890c47633ff3" + } + Frame { + msec: 1488 + hash: "4b328002b4461869b1f7de48e7291902" + } + Frame { + msec: 1504 + hash: "26252c63924d2abcaebea2c7caf1d7aa" + } + Frame { + msec: 1520 + hash: "a9a6023484ae439be86b2c2ff59dc40b" + } + Frame { + msec: 1536 + hash: "620dab11bd4aab84cc0d949c48dd9a5d" + } + Frame { + msec: 1552 + hash: "3b45ef80ee3e6fbbd3533bfa0d666e2f" + } + Frame { + msec: 1568 + hash: "b33306abcb6a8402e491b7216495c778" + } + Frame { + msec: 1584 + hash: "3cc52e8649a02e87785f1dc63f5c1efd" + } + Frame { + msec: 1600 + hash: "fe21141f48da685213ed9d7641b2e7a0" + } + Frame { + msec: 1616 + hash: "205aac4e822e20bd32f637256250f3c8" + } + Frame { + msec: 1632 + hash: "124df0948f36aaf6151556d301f4b930" + } + Frame { + msec: 1648 + hash: "c1701edd5eaf143fd1dbdc4a5324b48a" + } + Frame { + msec: 1664 + hash: "117402df55367c918a3835958f4ab1d6" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 195; y: 95 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 1680 + hash: "73e3b86a1da28490cae4b03fdceefe19" + } + Frame { + msec: 1696 + hash: "172e329fb47d6db0180242990a84fe3b" + } + Frame { + msec: 1712 + hash: "82cf704cdfd406bab22689bc888ddc8d" + } + Frame { + msec: 1728 + hash: "4c288f198a06d1b2815d34c3c8f97051" + } + Frame { + msec: 1744 + hash: "6404d81456bb95a6b1c1ae55a181e40e" + } + Frame { + msec: 1760 + hash: "2c01571e523002166ba6ec476bc8a68b" + } + Frame { + msec: 1776 + hash: "95388037c1f79a9dab951031f1d7c307" + } + Frame { + msec: 1792 + hash: "c4ee57d9bffbb5f0ff173db48eadf2e3" + } + Frame { + msec: 1808 + hash: "703ac9672a9c55cf08e6381ef76ac13c" + } + Frame { + msec: 1824 + hash: "ea7726d2a2923290398262c8f70d511e" + } + Frame { + msec: 1840 + hash: "5d1af6cbdb4ee5b00045751204408632" + } + Frame { + msec: 1856 + hash: "a52aa37b10a05382f1b136896b7e00e8" + } + Frame { + msec: 1872 + hash: "a5acc1a45c95a67725e5e15084b7be18" + } + Frame { + msec: 1888 + hash: "c9fac8b5a4110493958d49b073ea96ed" + } + Frame { + msec: 1904 + hash: "6fca3a5c6d1cfbf1b905aca25b7785c5" + } + Frame { + msec: 1920 + image: "follow.1.png" + } + Frame { + msec: 1936 + hash: "379d5c4ced414f856e476095fbedfb7d" + } + Frame { + msec: 1952 + hash: "b2f980ab19d44ee98ab3e82a19adfe2d" + } + Frame { + msec: 1968 + hash: "e01732623930aebefd76ab62c81dc722" + } + Frame { + msec: 1984 + hash: "3a59c6851bc89eb31100092b1ceddbd9" + } + Frame { + msec: 2000 + hash: "2949de19eacb9f35816aa7ba69614f2c" + } + Frame { + msec: 2016 + hash: "f2c4c1f4429cbb6bd10f2318b2cb6904" + } + Frame { + msec: 2032 + hash: "2c48af64162e7e028cd536dba03eab71" + } + Frame { + msec: 2048 + hash: "7fe13b8f9253f720b6591b396cfba2d1" + } + Frame { + msec: 2064 + hash: "559947a03e650575a764801366cc504b" + } + Frame { + msec: 2080 + hash: "a8d09f6c862fd5ec2dcf34f06d1ef744" + } + Frame { + msec: 2096 + hash: "e3bb4b62209631ff84134f2243bfdb42" + } + Frame { + msec: 2112 + hash: "a1956a9d1939bc154ea0c88d596948cc" + } + Frame { + msec: 2128 + hash: "c98a375727860da1e827d4dd74af8f63" + } + Frame { + msec: 2144 + hash: "df4edcbb2ef5348341ff55c808609b6c" + } + Frame { + msec: 2160 + hash: "6287564be85b7cbadc6bb6f0232bc837" + } + Frame { + msec: 2176 + hash: "9826fdb48f7ea770fa5f198ec49d7cb7" + } + Frame { + msec: 2192 + hash: "56f82641a5591df9bb929cc0d32eb95d" + } + Frame { + msec: 2208 + hash: "526c55e555fb2e58796561efa3568c50" + } + Frame { + msec: 2224 + hash: "6b4b74613421c1841a17c369cb316754" + } + Frame { + msec: 2240 + hash: "37f785c30947d5eec113dcf6af649abf" + } + Frame { + msec: 2256 + hash: "5ff2c975dd9e261c764537c836627c4d" + } + Frame { + msec: 2272 + hash: "efe554981583749c3d09988bce7fed02" + } + Frame { + msec: 2288 + hash: "0f7204b4afb0ea5d58e49650e8027c0c" + } + Frame { + msec: 2304 + hash: "817291f91f4b309710ad3aed53a7d47a" + } + Frame { + msec: 2320 + hash: "c15c9cd03089090cf8a777c1f0d88de7" + } + Frame { + msec: 2336 + hash: "05f45cb8d0856dcc81091351615e35d6" + } + Frame { + msec: 2352 + hash: "99785a16fed6d6409b4b47ec55afb56b" + } + Frame { + msec: 2368 + hash: "39032cb4432ee9536af500673fccf526" + } + Frame { + msec: 2384 + hash: "9057653e3cd6042831037d3590e7595b" + } + Frame { + msec: 2400 + hash: "76c772eb2ab8f117c260c9c96bc99e1d" + } + Frame { + msec: 2416 + hash: "b6474665b8f8bcdd76d1a38efecad889" + } + Frame { + msec: 2432 + hash: "106c2d2efafad0181e3ded3a6805f2c6" + } + Frame { + msec: 2448 + hash: "5275fa4ffef6c1909f9d03bb1e7b9cae" + } + Frame { + msec: 2464 + hash: "0c1043c0087d60000dc7259d4ac03618" + } + Frame { + msec: 2480 + hash: "645748569b4f5cb9b206b0808bb7d23d" + } + Frame { + msec: 2496 + hash: "dd95dfa80e1b3ff511e7c75efd0d87ce" + } + Frame { + msec: 2512 + hash: "86b3dd03b04d7610837cdc67cad07e0a" + } + Frame { + msec: 2528 + hash: "8264f67ac92e4ebcfe4cc8e954f8c5d2" + } + Frame { + msec: 2544 + hash: "6bf52377d822b09eb28a1ec36d3a36a9" + } + Frame { + msec: 2560 + hash: "7ae1d65cdaf7fa71eb4ec318b37bb0aa" + } + Frame { + msec: 2576 + hash: "860f5ce9844c90cf9e6a6d383ff0972f" + } + Frame { + msec: 2592 + hash: "5502229c038dfc59d966f69ae6ed8957" + } + Frame { + msec: 2608 + hash: "21843c027bc1434ae60b3bb0fced2c54" + } + Frame { + msec: 2624 + hash: "962df45680949c3eb6c968f98cd76b20" + } + Frame { + msec: 2640 + hash: "f313c26fa76a0edce61244bdf92528e4" + } + Frame { + msec: 2656 + hash: "b7bbde239e98cbd66b1e51b54b747f51" + } + Frame { + msec: 2672 + hash: "62340707fbc832fcb805c8f80ab353d1" + } + Frame { + msec: 2688 + hash: "d008a3f7af1810ff70b68b38a4cd0f0d" + } + Frame { + msec: 2704 + hash: "e651dd628af24faf34d716beb392b052" + } + Frame { + msec: 2720 + hash: "a97733963c7a7616b25741545b07ffba" + } + Frame { + msec: 2736 + hash: "3e017cc1db720cf16521bd17308e4f44" + } + Frame { + msec: 2752 + hash: "13652ebaa610cca71486517e2eed21a5" + } + Frame { + msec: 2768 + hash: "09f0f500c6f7d11be39c31f9e589b38a" + } + Frame { + msec: 2784 + hash: "b87968cbc60ddc6a5f5699e830410eab" + } + Frame { + msec: 2800 + hash: "50e65b043d1f07a321a08ee4c25204f6" + } + Frame { + msec: 2816 + hash: "122d1ffa1510468e8c4067e0f511588f" + } + Frame { + msec: 2832 + hash: "585f6c25caaafb99a22a23d8a998d202" + } + Frame { + msec: 2848 + hash: "9b245a00ad576666c10f509d8a80a61e" + } + Frame { + msec: 2864 + hash: "9b245a00ad576666c10f509d8a80a61e" + } + Frame { + msec: 2880 + image: "follow.2.png" + } + Frame { + msec: 2896 + hash: "3c5d3d10bacc093afc6a9c0b5aa4cddc" + } + Frame { + msec: 2912 + hash: "31926d69c2309fdf13fbd7f0e9868c3d" + } + Frame { + msec: 2928 + hash: "eb3acacce5dd31b0e94b59b9e546ccae" + } + Frame { + msec: 2944 + hash: "9a51cff3276d75803a0a6e480f7ecb70" + } + Frame { + msec: 2960 + hash: "fbbd8b9d519993a699815d935bcd2b9f" + } + Frame { + msec: 2976 + hash: "0314190c6de73f9f374a4eaed0709645" + } + Frame { + msec: 2992 + hash: "8ca1a203bdb5446094eb948aeb0a333e" + } + Frame { + msec: 3008 + hash: "301e1b86ce38e11ad9d0d7aba0909985" + } + Frame { + msec: 3024 + hash: "922095867d0a91b73ab7a63df2041279" + } + Frame { + msec: 3040 + hash: "ba8275f3ba4633bf64a1f81f630c90f1" + } + Frame { + msec: 3056 + hash: "efe39545279a7bd015d2de75d2b9d8b1" + } + Frame { + msec: 3072 + hash: "78926c3c0c6fcf89b9291f9902710964" + } + Frame { + msec: 3088 + hash: "ea63dcb7f00d3ddede0d8be59ad9d6bc" + } + Frame { + msec: 3104 + hash: "286ad493301b713a49e378f123482a53" + } + Frame { + msec: 3120 + hash: "a4bbbb8bb88188d3e99996502e3eebd1" + } + Frame { + msec: 3136 + hash: "a6100e79f3dc5af594e86ab6cd8dfb76" + } + Frame { + msec: 3152 + hash: "d9e3f777dc89bcf1b7f712206db768e2" + } + Frame { + msec: 3168 + hash: "768045c600c0aa0b1e9e6f012733c600" + } + Frame { + msec: 3184 + hash: "d8b4caa641ddee786f7898359efe9d07" + } + Frame { + msec: 3200 + hash: "f7c3b76d5bb7c263ac9447eaad685158" + } + Frame { + msec: 3216 + hash: "f7f97db815d653ec29fa31b87f72af2a" + } + Frame { + msec: 3232 + hash: "18524623762487b60943312cd8bd4388" + } + Frame { + msec: 3248 + hash: "5823dee5dd56e9f7515601f9629ccbae" + } + Frame { + msec: 3264 + hash: "5823dee5dd56e9f7515601f9629ccbae" + } + Frame { + msec: 3280 + hash: "5823dee5dd56e9f7515601f9629ccbae" + } + Frame { + msec: 3296 + hash: "5823dee5dd56e9f7515601f9629ccbae" + } + Frame { + msec: 3312 + hash: "18524623762487b60943312cd8bd4388" + } + Frame { + msec: 3328 + hash: "430995770b655054aaeda383df8e27f7" + } + Frame { + msec: 3344 + hash: "16a3a00f2b89aed676f80d63c4933ec3" + } + Frame { + msec: 3360 + hash: "6c55aa62079ec546522edbf69c37b270" + } + Frame { + msec: 3376 + hash: "0d68ca3ccecdd831013950cc7405e46e" + } + Frame { + msec: 3392 + hash: "9da2511bc8b434218695fa74ed543439" + } + Frame { + msec: 3408 + hash: "05afdd0b99dab81a500cdc2b2f0786fe" + } + Frame { + msec: 3424 + hash: "e6f8882d146ae60bcc6ea47ff41a637b" + } + Frame { + msec: 3440 + hash: "154542ed0e88321294f382501819aefc" + } + Frame { + msec: 3456 + hash: "8f47b6980c387c5020145bf04645fd2d" + } + Frame { + msec: 3472 + hash: "b34b055c7602f1f4e1cde875b258120c" + } + Frame { + msec: 3488 + hash: "5a697f675575f05e297d4877604b9a47" + } + Frame { + msec: 3504 + hash: "729dff1d1b357d19fc81804ec8940d0e" + } + Frame { + msec: 3520 + hash: "c6f3fee46baa94a6139d2ee40254b160" + } + Frame { + msec: 3536 + hash: "af0e700bb8ae34834510830f8b44afdb" + } + Frame { + msec: 3552 + hash: "9c87bb54c2dfe58c2da9194dae6f7502" + } + Frame { + msec: 3568 + hash: "2132356a92c75d725f9feafb8201b142" + } + Frame { + msec: 3584 + hash: "50d855d2595eeae2bfd6aaa8c2fa0454" + } + Frame { + msec: 3600 + hash: "5fde3c62d6e53a9056e3586f9dcda59e" + } + Frame { + msec: 3616 + hash: "8f04460254a1e9fb949d5165894cd92a" + } + Frame { + msec: 3632 + hash: "2b514c5e3b20d30f9c7e71092c69f081" + } + Frame { + msec: 3648 + hash: "2c1ba6224037790e15f5c0f2864ace4d" + } + Frame { + msec: 3664 + hash: "0d5b8e7bd5f560888aacaf2b3c6827a8" + } + Frame { + msec: 3680 + hash: "ae25004530e7df134414018e4a34780e" + } + Frame { + msec: 3696 + hash: "1a8fd9eaf9a91f1b42924f8986fbed9a" + } + Frame { + msec: 3712 + hash: "2ea6de2025d40ed5beeff12a5b70ccc9" + } + Frame { + msec: 3728 + hash: "624e417718d3cac1e4b7e4ce258ce6ea" + } + Frame { + msec: 3744 + hash: "8b56d29391257c7be8966af6be26ea9f" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 195; y: 95 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3760 + hash: "5c0d977d8b446d9191bde57335cf1062" + } + Frame { + msec: 3776 + hash: "100be2b21d069e3a5dbb694a90da4d4f" + } + Frame { + msec: 3792 + hash: "caab03f6c81080dd8fdbedb4e94ae4a5" + } + Frame { + msec: 3808 + hash: "3328a4d06f2f80a7e9ccf2ff21522fca" + } + Frame { + msec: 3824 + hash: "a534e6cc28daf3eff6a9cf8379bd6375" + } + Frame { + msec: 3840 + image: "follow.3.png" + } + Frame { + msec: 3856 + hash: "0aed83364cd59e3f7309c92593894d43" + } + Frame { + msec: 3872 + hash: "d3f1c3593375ca5c022a1361a7ec70bd" + } + Frame { + msec: 3888 + hash: "67843e6192e2ecaa3820c37dc2f93106" + } + Frame { + msec: 3904 + hash: "19a022f678e5b8f4ebdff936162323dc" + } + Frame { + msec: 3920 + hash: "34e55ae70c9e156db339ae15642359c3" + } + Frame { + msec: 3936 + hash: "3784778c817f9d9bb73d990cfe12685a" + } + Frame { + msec: 3952 + hash: "0403fdf79e3ba339c7e3786db0c9c0f0" + } + Frame { + msec: 3968 + hash: "93e4a0d5645d1cfc916f1e8422655555" + } + Frame { + msec: 3984 + hash: "29080bfabb87160b7c51385fb36b474b" + } + Frame { + msec: 4000 + hash: "9da2d83edc9d35f00fb8a159e79de4d9" + } + Frame { + msec: 4016 + hash: "5505a42d4788f00cfc7499fbfda851ce" + } + Frame { + msec: 4032 + hash: "bdd3040ab16fa9ffdd2fbc66b06699f8" + } + Frame { + msec: 4048 + hash: "2a347e30a20c693a9440caa60ade0a0f" + } + Frame { + msec: 4064 + hash: "0307f1857c091a639d47f112ce1a2f5a" + } + Frame { + msec: 4080 + hash: "778d18e539bbd562ebe39283a6315df1" + } + Frame { + msec: 4096 + hash: "0369cf6c3d1f5db2e92ee1f7c5d3b8ed" + } + Frame { + msec: 4112 + hash: "9f7413587ab50f1abf776bf180ec2d6f" + } + Frame { + msec: 4128 + hash: "7d04a27236485808e571e8a39f23ea17" + } + Frame { + msec: 4144 + hash: "a1dff63b723473d5a4c9c59975a2fb81" + } + Frame { + msec: 4160 + hash: "9795ea70a3b9d3b7805221a58c19e5da" + } + Frame { + msec: 4176 + hash: "f1392c489e21107136eb8e0d1e8b427e" + } + Frame { + msec: 4192 + hash: "95c225ef07171a96335e99078195b06a" + } + Frame { + msec: 4208 + hash: "d46ef3e7f9cec06e8c18afc0d07be4f3" + } + Frame { + msec: 4224 + hash: "b017f5b51d423bb0fca0d6df3aaded8b" + } + Frame { + msec: 4240 + hash: "60584d085b0cd6fbc436773be678597e" + } + Frame { + msec: 4256 + hash: "117951465dfd5c386826b295560d2dec" + } + Frame { + msec: 4272 + hash: "1b70137da5f4e024593999e93121fe8b" + } + Frame { + msec: 4288 + hash: "bd50dffd41941fef127f39b55c4748e0" + } + Frame { + msec: 4304 + hash: "8eec34d8e1d2e22d11b85a671cd4d3aa" + } + Frame { + msec: 4320 + hash: "9e3c97cfad5002ef5f3fcc365aeb7bd0" + } + Frame { + msec: 4336 + hash: "28e1cf1ee033915ea2ee39c9ab00a73d" + } + Frame { + msec: 4352 + hash: "99101a156a553f441f00221f6facbf1f" + } + Frame { + msec: 4368 + hash: "419023e5d59d16c26b35bee7d3cea559" + } + Frame { + msec: 4384 + hash: "485d23519293975b04031fe4baa5c276" + } + Frame { + msec: 4400 + hash: "c8bc60735e0ede26dbaf228294853f9a" + } + Frame { + msec: 4416 + hash: "ada3680b807d59843e3adf6640704066" + } + Frame { + msec: 4432 + hash: "3e28f3adf9241512cd0d6918d81ffffb" + } + Frame { + msec: 4448 + hash: "8f339acc33cbc89ae1c62391ce021bb3" + } + Frame { + msec: 4464 + hash: "d303960c0853a90557d64a04b8283c94" + } + Frame { + msec: 4480 + hash: "f907dbdacf2cfa9fdf8f9c8dead5b4c4" + } + Frame { + msec: 4496 + hash: "30c6e6f283f4a3f538cdda9c2e92de8c" + } + Frame { + msec: 4512 + hash: "04d2ac55774b43107a43a7d33764199b" + } + Frame { + msec: 4528 + hash: "cddf3e111cbc59e721725daa1d8a0c31" + } + Frame { + msec: 4544 + hash: "15b1b63cd1695207ebf9f04387be0739" + } + Frame { + msec: 4560 + hash: "690769b9bbe86a3c5b1fbdee39615fbd" + } + Frame { + msec: 4576 + hash: "2bd640d8ddbf878d808f22656fef1ed9" + } + Frame { + msec: 4592 + hash: "a654f1e4519bf883d554276ebbe96323" + } + Frame { + msec: 4608 + hash: "68f0313cfc3f51a0bb9b47c5407c19b6" + } + Frame { + msec: 4624 + hash: "77f29806b084de4cabf7ab9bf1a93d5e" + } + Frame { + msec: 4640 + hash: "f9991189e3282d107b98fb0ae5f5ef00" + } + Frame { + msec: 4656 + hash: "0cd1f2f6e347d48feea1b26a4968dec7" + } + Frame { + msec: 4672 + hash: "e75a6f6a088e2289042572a161ffb0e9" + } + Frame { + msec: 4688 + hash: "5a541081444c0a71128223a4c4c3144c" + } + Frame { + msec: 4704 + hash: "6813d442cc610f346a5441ed0cd723e5" + } + Frame { + msec: 4720 + hash: "24ec539bc57899819915f833f26deacd" + } + Frame { + msec: 4736 + hash: "3a7ed1b4b533b817674aa141c420cd61" + } + Frame { + msec: 4752 + hash: "d0a643fae97bb152e97ca60e96299003" + } + Frame { + msec: 4768 + hash: "c84093931520f4661eff6645091a294b" + } + Frame { + msec: 4784 + hash: "81e7ceaece82505a4a16ead195a66162" + } + Frame { + msec: 4800 + image: "follow.4.png" + } + Frame { + msec: 4816 + hash: "a510d302d2441b9a07463aed8b592d32" + } + Frame { + msec: 4832 + hash: "d1824ced8af34ad9edb36a58ae9aa7f5" + } + Frame { + msec: 4848 + hash: "167b9a49fbb94908e09e7e9c9147cd8b" + } + Frame { + msec: 4864 + hash: "442d5f0906840de526d59a80ada322c0" + } + Frame { + msec: 4880 + hash: "78206c4d4d23c7c1ba888b9062b09432" + } + Frame { + msec: 4896 + hash: "e898202cfebbff1952efc6e01254d855" + } + Frame { + msec: 4912 + hash: "ab31dc7bbad2b0552359866bb8d92f0c" + } + Frame { + msec: 4928 + hash: "f093304e88964376baf9721d53d4fb49" + } + Frame { + msec: 4944 + hash: "3ef76f3e1c44d13c3a469bd192ff7b5d" + } + Frame { + msec: 4960 + hash: "5d3b6d0d91f8cc5b89e39407bc3b5a15" + } + Frame { + msec: 4976 + hash: "3c73573f12f49b34e1d990a55ad913fa" + } + Frame { + msec: 4992 + hash: "d1bac071b01a1c6fddab90cdc435fad4" + } + Frame { + msec: 5008 + hash: "36a219aadec910f1dbef616c641e1d2b" + } + Frame { + msec: 5024 + hash: "5871fc67d361cc988551592ee21dfb23" + } + Frame { + msec: 5040 + hash: "6e65ee6c814b9a9da205c36925e663bf" + } + Frame { + msec: 5056 + hash: "290b20fa8e91d34000d7c2d81745f6d2" + } + Frame { + msec: 5072 + hash: "19e7405a9083a8143f7bb040f8837b29" + } + Frame { + msec: 5088 + hash: "c0a0fa2b4c1ceb6c70594994a1ac8713" + } + Frame { + msec: 5104 + hash: "c236224c16743fb606deb78bcb8afc8d" + } + Frame { + msec: 5120 + hash: "7d44db15eb300b4338ffc26e9bcfce20" + } + Frame { + msec: 5136 + hash: "067a79148a194c45c6f32d85316a1e11" + } + Frame { + msec: 5152 + hash: "9075c379044476994a87f0fdcce8e332" + } + Frame { + msec: 5168 + hash: "b2316988fbd51096a4f512e71fe7d0a2" + } + Frame { + msec: 5184 + hash: "280f70877d93af5f84e178aad6a102d8" + } + Frame { + msec: 5200 + hash: "3eef4ae7e43a8cf1cd9dd562237296f8" + } + Frame { + msec: 5216 + hash: "e3184f77ce3a47ca4dca6386f42d7fec" + } + Frame { + msec: 5232 + hash: "a2a5df66fe4808ea8d466cac84ba910c" + } + Frame { + msec: 5248 + hash: "9f8a0e54788112d6c30482e840504f35" + } + Frame { + msec: 5264 + hash: "ae69cf84798844f9f360c86790feaecd" + } + Frame { + msec: 5280 + hash: "0244526572acb6266db5b7eb9d29c6fc" + } + Frame { + msec: 5296 + hash: "8fb53d60b95ddb5aef27442934ea9983" + } + Frame { + msec: 5312 + hash: "930fcfde491b4f5681e3861764003895" + } + Frame { + msec: 5328 + hash: "bcdcd0a637112d113ebe11dc18823237" + } + Frame { + msec: 5344 + hash: "65a564d5a5afbc14c0cdad4d52753507" + } + Frame { + msec: 5360 + hash: "0c5056d438d2d54938f31ef5f996673a" + } + Frame { + msec: 5376 + hash: "11c157ad2236fc390ffbdf339366cbc1" + } + Frame { + msec: 5392 + hash: "6cb341b1f281a97a35c2e41bfd4c4d9d" + } + Frame { + msec: 5408 + hash: "553a945f7f19f70ddae4ebe88e52a79b" + } + Frame { + msec: 5424 + hash: "d10b42b4095a2474e66a5a322f72e936" + } + Frame { + msec: 5440 + hash: "0f943d61e8072d70eddee8aa1ba0de5a" + } + Frame { + msec: 5456 + hash: "3df18e237b666e78d57857739b759e6d" + } + Frame { + msec: 5472 + hash: "1ddc0bfdb2ca7b6dee63f1024e62f26e" + } + Frame { + msec: 5488 + hash: "aaa397714528f41238059e3a88833abc" + } + Frame { + msec: 5504 + hash: "c94bd69f925c782656afc5f9618180a6" + } + Frame { + msec: 5520 + hash: "824ff8c0e1ab43e3c0eaa79b7cc19b9c" + } + Frame { + msec: 5536 + hash: "6c440a0b2293811335bdbf2c4f25f47d" + } + Frame { + msec: 5552 + hash: "bfc7936cdf833d5b720ec9baca740112" + } + Frame { + msec: 5568 + hash: "375fa305dbae2872dc9b20e59381cc0c" + } + Frame { + msec: 5584 + hash: "fffd6173aa49e74164dc17a238bcd830" + } + Frame { + msec: 5600 + hash: "44d9007e00fab161fd393b653255d7f4" + } + Frame { + msec: 5616 + hash: "f669ee25c58b4fa20a01705d334f0065" + } + Frame { + msec: 5632 + hash: "2dbb7d57711b67d5d9e1b81f70e22d34" + } + Frame { + msec: 5648 + hash: "19351b91448265cb95c1670ee283c611" + } + Frame { + msec: 5664 + hash: "19351b91448265cb95c1670ee283c611" + } + Frame { + msec: 5680 + hash: "3a24b99d048348a21f4e4bd69393de89" + } + Frame { + msec: 5696 + hash: "35a6fe955a52950bbfa954a453e4008e" + } + Frame { + msec: 5712 + hash: "896f4ec28c976237b34fb2725a44460e" + } + Frame { + msec: 5728 + hash: "ed3008ea950ec84c57518e573ea36d15" + } + Frame { + msec: 5744 + hash: "3447c7be992759f772c1db2033eead99" + } + Frame { + msec: 5760 + image: "follow.5.png" + } + Frame { + msec: 5776 + hash: "6354ebe3aa919a52902b5a5346b473ae" + } + Frame { + msec: 5792 + hash: "adc55f2fcf312a90b025a75fa80aa079" + } + Frame { + msec: 5808 + hash: "3ac85cad400d2b8e4f33798f4f6b7b42" + } + Frame { + msec: 5824 + hash: "1c115efd84ccbe489d24c3c521c4a61c" + } + Frame { + msec: 5840 + hash: "39518f1bbc0c4aba6ff517bc3dc7c279" + } + Frame { + msec: 5856 + hash: "7bd28d32996f4de61c415d3217da16d0" + } + Frame { + msec: 5872 + hash: "f5d06e25d775bf8db07e95625a712733" + } + Frame { + msec: 5888 + hash: "4820ea6ea3be88af2f86111c547a19d7" + } + Frame { + msec: 5904 + hash: "fa6e681c368118b7f135a47ae8fc12ff" + } + Frame { + msec: 5920 + hash: "f6b30e618aeeb837d2b3eca270b0a060" + } + Frame { + msec: 5936 + hash: "ac8504bde8d3063a8bf02b9d4b69d755" + } + Frame { + msec: 5952 + hash: "9670537bb77caa8e23fda7bbfa96ca60" + } + Frame { + msec: 5968 + hash: "8cd292865ce5c1d240e9ddc93881a0ed" + } + Frame { + msec: 5984 + hash: "de112013e526203d151c46e6cfba9f92" + } + Frame { + msec: 6000 + hash: "cd61066e697de8c055aaa168791c2d8c" + } + Frame { + msec: 6016 + hash: "cd61066e697de8c055aaa168791c2d8c" + } + Frame { + msec: 6032 + hash: "e68b27ff14aac03c827fd43ac488d23e" + } + Frame { + msec: 6048 + hash: "e68b27ff14aac03c827fd43ac488d23e" + } + Frame { + msec: 6064 + hash: "1f61d857a8c26587fbda5895c603441a" + } + Frame { + msec: 6080 + hash: "1e0dffdd02e05ade1ae444427d4aa345" + } + Frame { + msec: 6096 + hash: "9a416ee7a1de9ac45ab2d609233c9520" + } + Frame { + msec: 6112 + hash: "dfa35bf1cd908011c3214a506bcbdcb8" + } + Frame { + msec: 6128 + hash: "bd502dc72dce4af3036f7af9ed7cf9e9" + } + Frame { + msec: 6144 + hash: "0506667a14ace4e2edf04956c137e217" + } + Frame { + msec: 6160 + hash: "a38ed1532a40210ad7da4c0d4d1a7195" + } + Frame { + msec: 6176 + hash: "8ac8a8df937da526bbffb9a3590d89ac" + } + Frame { + msec: 6192 + hash: "07527cb9a4494e11f4c9f99eb72598b9" + } + Frame { + msec: 6208 + hash: "655b0327ef0f8711810714ba50f2f8cc" + } + Frame { + msec: 6224 + hash: "4c1ce8b4eb16c69614e2560c04ad48cf" + } + Frame { + msec: 6240 + hash: "7a382ae4e6a48826eaa2c83ee7a73fb2" + } + Frame { + msec: 6256 + hash: "5acd5f250c5b32d9006ed68dfecbfa1c" + } + Frame { + msec: 6272 + hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" + } + Frame { + msec: 6288 + hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" + } + Frame { + msec: 6304 + hash: "07e5f1277558bfe7638b00cf9d967baf" + } + Frame { + msec: 6320 + hash: "07e5f1277558bfe7638b00cf9d967baf" + } + Frame { + msec: 6336 + hash: "07e5f1277558bfe7638b00cf9d967baf" + } + Frame { + msec: 6352 + hash: "07e5f1277558bfe7638b00cf9d967baf" + } + Frame { + msec: 6368 + hash: "07e5f1277558bfe7638b00cf9d967baf" + } + Frame { + msec: 6384 + hash: "877aca1c64e588845329ca8a38222604" + } + Frame { + msec: 6400 + hash: "877aca1c64e588845329ca8a38222604" + } + Frame { + msec: 6416 + hash: "877aca1c64e588845329ca8a38222604" + } + Frame { + msec: 6432 + hash: "877aca1c64e588845329ca8a38222604" + } + Frame { + msec: 6448 + hash: "877aca1c64e588845329ca8a38222604" + } + Frame { + msec: 6464 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6480 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6496 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6512 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6528 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6544 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6560 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6576 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6592 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6608 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6624 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6640 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6656 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6672 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6688 + hash: "b0f28e923f93dcdcea8460ca9d8cd674" + } + Frame { + msec: 6704 + hash: "228920e994ebf71d542c71ce8263614e" + } + Frame { + msec: 6720 + image: "follow.6.png" + } + Frame { + msec: 6736 + hash: "228920e994ebf71d542c71ce8263614e" + } + Frame { + msec: 6752 + hash: "228920e994ebf71d542c71ce8263614e" + } + Frame { + msec: 6768 + hash: "228920e994ebf71d542c71ce8263614e" + } + Frame { + msec: 6784 + hash: "228920e994ebf71d542c71ce8263614e" + } + Frame { + msec: 6800 + hash: "228920e994ebf71d542c71ce8263614e" + } + Frame { + msec: 6816 + hash: "228920e994ebf71d542c71ce8263614e" + } + Frame { + msec: 6832 + hash: "07e5f1277558bfe7638b00cf9d967baf" + } + Key { + type: 6 + key: 16777249 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 6848 + hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" + } + Frame { + msec: 6864 + hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" + } + Frame { + msec: 6880 + hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" + } + Frame { + msec: 6896 + hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" + } + Frame { + msec: 6912 + hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" + } + Frame { + msec: 6928 + hash: "3189e5a89d7b2ba1e6a06f6e3070e8c1" + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/follow.qml new file mode 100644 index 0000000..0097449 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/qdeclarativespringanimation/follow.qml @@ -0,0 +1,79 @@ +import QtQuick 1.0 + +Rectangle { + color: "#ffffff" + width: 320; height: 240 + + Rectangle { + id: rect + color: "#00ff00" + y: 200; width: 60; height: 20 + SequentialAnimation on y { + loops: Animation.Infinite + NumberAnimation { + to: 20; duration: 500 + easing.type: "InOutQuad" + } + NumberAnimation { + to: 200; duration: 2000 + easing.type: "OutBounce" + } + PauseAnimation { duration: 1000 } + } + } + + // Velocity + Rectangle { + color: "#ff0000" + x: rect.width; width: rect.width; height: 20 + y: rect.y + Behavior on y { SpringAnimation { velocity: 200 } } + } + + // Spring + Rectangle { + color: "#ff0000" + x: rect.width * 2; width: rect.width/2; height: 20 + y: rect.y + Behavior on y { SpringAnimation { spring: 1.0; damping: 0.2 } } + } + Rectangle { + color: "#880000" + x: rect.width * 2.5; width: rect.width/2; height: 20 + y: rect.y + Behavior on y { SpringAnimation { spring: 1.0; damping: 0.2; mass: 3.0 } } // "heavier" object + } + + // Follow mouse + MouseArea { + id: mouseRegion + anchors.fill: parent + Rectangle { + id: ball + property int targetX: mouseRegion.mouseX - 10 + property int targetY: mouseRegion.mouseY - 10 + + x: targetX + y: targetY + width: 20; height: 20 + radius: 10 + color: "#0000ff" + + Behavior on x { SpringAnimation { spring: 1.0; damping: 0.05; epsilon: 0.25 } } + Behavior on y { SpringAnimation { spring: 1.0; damping: 0.05; epsilon: 0.25 } } + + states: [ + State { + name: "following" + when: ball.x != ball.targetX || ball.y != ball.targetY + PropertyChanges { target: ball; color: "#ff0000" } + } + ] + transitions: [ + Transition { + ColorAnimation { duration: 200 } + } + ] + } + } +} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml deleted file mode 100644 index 44c4dcd..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/clock.qml +++ /dev/null @@ -1,67 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - id: clock - color: "gray" - width: 200; height: 200 - - property variant hours: 10 - property variant minutes: 28 - property variant seconds: 0 - - Timer { - interval: 1000; running: true; repeat: true; triggeredOnStart: true - onTriggered: seconds++ - } - - Image { id: background; source: "content/clock.png" } - - Image { - x: 92.5; y: 27 - source: "content/hour.png" - smooth: true - transform: Rotation { - id: hourRotation - origin.x: 7.5; origin.y: 73 - angle: (clock.hours * 30) + (clock.minutes * 0.5) - - Behavior on angle { - SpringAnimation { spring: 2; damping: 0.2; modulus: 360 } - } - } - } - - Image { - x: 93.5; y: 17 - source: "content/minute.png" - smooth: true - transform: Rotation { - id: minuteRotation - origin.x: 6.5; origin.y: 83 - angle: clock.minutes * 6 - - Behavior on angle { - SpringAnimation { spring: 2; damping: 0.2; modulus: 360 } - } - } - } - - Image { - x: 97.5; y: 20 - source: "content/second.png" - smooth: true - transform: Rotation { - id: secondRotation - origin.x: 2.5; origin.y: 80 - angle: clock.seconds * 6 - - Behavior on angle { - SpringAnimation { spring: 5; damping: 0.25; modulus: 360 } - } - } - } - - Image { - anchors.centerIn: background; source: "content/center.png" - } -} diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/background.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/background.png deleted file mode 100644 index a885950..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/background.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/center.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/center.png deleted file mode 100755 index 7fbd802..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/center.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/clock.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/clock.png deleted file mode 100755 index 462edac..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/clock.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/hour.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/hour.png deleted file mode 100755 index f8061a1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/hour.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/minute.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/minute.png deleted file mode 100755 index 1297ec7..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/minute.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/second.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/second.png deleted file mode 100755 index 4aa9fb5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/content/second.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.0.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.0.png deleted file mode 100644 index baf1d45..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.1.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.1.png deleted file mode 100644 index 932f63f..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.2.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.2.png deleted file mode 100644 index a5cb437..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.3.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.3.png deleted file mode 100644 index 62e895c..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml deleted file mode 100644 index 5da471e..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/clock.qml +++ /dev/null @@ -1,1135 +0,0 @@ -import Qt.VisualTest 4.7 - -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/qmlvisual/qdeclarativespringfollow/data/follow.0.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.0.png deleted file mode 100644 index 3f42e75..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.1.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.1.png deleted file mode 100644 index d661df6..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.1.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.10.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.10.png deleted file mode 100644 index e8c96e1..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.2.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.2.png deleted file mode 100644 index 35bfa43..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.2.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.3.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.3.png deleted file mode 100644 index 74141cf..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.3.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.4.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.4.png deleted file mode 100644 index 9544054..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.4.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.5.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.5.png deleted file mode 100644 index 4b02c79..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.5.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.6.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.6.png deleted file mode 100644 index 8ea8345..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.6.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.7.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.7.png deleted file mode 100644 index 76a73e8..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.7.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.8.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.8.png deleted file mode 100644 index 8824940..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.8.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.9.png b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.9.png deleted file mode 100644 index f954cc5..0000000 Binary files a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml deleted file mode 100644 index e7e5b3c..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/data/follow.qml +++ /dev/null @@ -1,1763 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "3561ebf22b19c7bd5a70947d36b50b63" - } - Frame { - msec: 32 - hash: "3561ebf22b19c7bd5a70947d36b50b63" - } - Frame { - msec: 48 - hash: "bd0006fc34f58ec1ea6aa4c4acbb0070" - } - Frame { - msec: 64 - hash: "c25f9fb6aea93413bfef5eb176c02476" - } - Frame { - msec: 80 - hash: "4ce0eb12fb41960e60e208dffb09ed3a" - } - Frame { - msec: 96 - hash: "75b3375881969710b6eb21f2a93c36cc" - } - Frame { - msec: 112 - hash: "91e9b13e332959e41a29c0b225675a05" - } - Frame { - msec: 128 - hash: "8e04a31a953b42903dffe86b37b3f59f" - } - Frame { - msec: 144 - hash: "837e0e646a2853d3fde571f9dd966fc7" - } - Frame { - msec: 160 - hash: "7367e25ae1e3a3731d83da76d5795f8c" - } - Frame { - msec: 176 - hash: "3621846fb85b286a886a02de442e76c4" - } - Frame { - msec: 192 - hash: "ed20a4c3476b8bb5545d5343747c39c8" - } - Frame { - msec: 208 - hash: "1fc73efb410e9beb3f791cbff8e814b3" - } - Frame { - msec: 224 - hash: "199c99a4e3aa14fbc8c8a0d8baacf998" - } - Frame { - msec: 240 - hash: "513ce5a2f57e40002a26b7722c8a10db" - } - Frame { - msec: 256 - hash: "b80b51cd4e75bdc799bbe79e66b7d02b" - } - Frame { - msec: 272 - hash: "e1531b6c5b3ac872563fdfaf49d32a27" - } - Frame { - msec: 288 - hash: "6d7cfd78ebd56ae6adfc97aad5d11b13" - } - Frame { - msec: 304 - hash: "4252ebb2fba165e39f025f631e0a676a" - } - Frame { - msec: 320 - hash: "04d6ae51415b083bbb0eabd1b0304ca4" - } - Frame { - msec: 336 - hash: "750df1f1626c8b84dd72a35bf081fe00" - } - Frame { - msec: 352 - hash: "003d7a846e09ba23ee8a7ae6d473be9f" - } - Frame { - msec: 368 - hash: "5cf3abdbb9a5b8cba6a8afe8abb60ced" - } - Frame { - msec: 384 - hash: "0669f86043a0c84d0b4672cc5c1136b4" - } - Frame { - msec: 400 - hash: "94f59435fe4f3ca06699c996b537ae8c" - } - Frame { - msec: 416 - hash: "211c8ec42a6d6949253af71c6eeffa53" - } - Frame { - msec: 432 - hash: "6de6c6d1b4a37a864b96c0293be8ebf5" - } - Frame { - msec: 448 - hash: "468d67d069eaac1968a6ad52e56f3ab5" - } - Frame { - msec: 464 - hash: "18d8de7a5c73d8c8188e6ae00a701820" - } - Frame { - msec: 480 - hash: "4387c724ed49bfbbca238bf57a704a14" - } - Frame { - msec: 496 - hash: "f317c59f65c7266765333048d8545748" - } - Frame { - msec: 512 - hash: "6575d40c2f27f110443a2ede8a873c77" - } - Frame { - msec: 528 - hash: "3e65cb675124dbd9db5116fa7584e223" - } - Frame { - msec: 544 - hash: "df80612a74b33eca81db6f43aa33e411" - } - Frame { - msec: 560 - hash: "6b2bc20397f3fb452ea14d81e9efd61d" - } - Frame { - msec: 576 - hash: "e5b8a2476487f6cd9fd37e3b3f54f88d" - } - Frame { - msec: 592 - hash: "e93f8156e2dc278a5e20d9e28b48d9fa" - } - Frame { - msec: 608 - hash: "e524d5117888b0b68781ffaf1a3e7303" - } - Frame { - msec: 624 - hash: "f3b777409534d87c59e60499fd6a3808" - } - Frame { - msec: 640 - hash: "09d1fa8f1306eb6f51db97d04c2d7ad3" - } - Frame { - msec: 656 - hash: "acebdcebe6880c8b3b94ad7606181b72" - } - Frame { - msec: 672 - hash: "347945a94002cd44d7a2df47f82940a1" - } - Frame { - msec: 688 - hash: "c716014d63ff2a22cab04dadc18b10c1" - } - Frame { - msec: 704 - hash: "ced019e3f8b5ca079582d01f1f585a8e" - } - Frame { - msec: 720 - hash: "d61d31de835ea8d1ffa56fd04c873ac1" - } - Frame { - msec: 736 - hash: "2eec542c5af4c6eecc153cc0fcae7dd3" - } - Frame { - msec: 752 - hash: "c13b9443e1c000a2877e4586428da308" - } - Frame { - msec: 768 - hash: "c5c2e30b3dc3298afc201f6045e79e59" - } - Frame { - msec: 784 - hash: "308f2ca66133d37c2fcb222e68698d25" - } - Frame { - msec: 800 - hash: "bf820215986a35b56daf07c164fd2a79" - } - Frame { - msec: 816 - hash: "a0bb21475100fb25b767d055d70b062f" - } - Frame { - msec: 832 - hash: "bfb0927bcb23689820b0f96ea56426fc" - } - Frame { - msec: 848 - hash: "8f294742ca9dd6ab10689f1f4ec2ed96" - } - Frame { - msec: 864 - hash: "f60c232307570fb4ec6e74f18e243553" - } - Frame { - msec: 880 - hash: "7411970ab72d8b2dbf48ee8d4e6503b3" - } - Frame { - msec: 896 - hash: "d4d766038daeae2fbec290204ca3983b" - } - Frame { - msec: 912 - hash: "f85525c3fd784ee7f9a3d9465e37d6f3" - } - Frame { - msec: 928 - hash: "c5e63da86ddbd2a54c7cd3d03e5428a2" - } - Frame { - msec: 944 - hash: "369a7405b1717ddf06c99ab1dd6d4cb0" - } - Frame { - msec: 960 - image: "follow.0.png" - } - Frame { - msec: 976 - hash: "18d5c4378f9daf63bf4cb76d76374548" - } - Frame { - msec: 992 - hash: "f36e649db2e1ec9fbe15e7711ea13ab5" - } - Frame { - msec: 1008 - hash: "f68515607dca1bda14b6afa6e05ebb6b" - } - Frame { - msec: 1024 - hash: "bc5cc4c9050a5bd4c64debd12643fd73" - } - Frame { - msec: 1040 - hash: "f053a18bca4d8c47a0f181fad8118e9a" - } - Frame { - msec: 1056 - hash: "9a2218f51faed4fa891c507fe6828d2c" - } - Frame { - msec: 1072 - hash: "ce671ff4dd1f343243f2fcc263d137f4" - } - Frame { - msec: 1088 - hash: "8624f8d814094ad25a1482a11f424990" - } - Frame { - msec: 1104 - hash: "324dad940b3adb54491d6cdd4e7d8aa7" - } - Frame { - msec: 1120 - hash: "0cd7c53ec5b591053de6769967b8bad5" - } - Frame { - msec: 1136 - hash: "e9e8f5e9c2dc179498943d0b5912af09" - } - Frame { - msec: 1152 - hash: "5f1552ccd61f09335a88658ee1c4e97e" - } - Frame { - msec: 1168 - hash: "866e01eed7e26dd1bd9af8aaddf4d7c0" - } - Frame { - msec: 1184 - hash: "2efba3c33c4c7b6d89ce7efca2dc516a" - } - Frame { - msec: 1200 - hash: "2de9d8a2ad64d2491b3444712be032dc" - } - Frame { - msec: 1216 - hash: "84206972322eae033d05f71b178180c9" - } - Frame { - msec: 1232 - hash: "8571d11da1a893edcbe5add1a9399d7a" - } - Frame { - msec: 1248 - hash: "c0d65ecefa77ee7cb1c08a560e3ad572" - } - Frame { - msec: 1264 - hash: "0f8a8523969713771a6c7984069b15e4" - } - Frame { - msec: 1280 - hash: "2e80e4b54538b7b586f4a3be55eb6da3" - } - Frame { - msec: 1296 - hash: "ae028381f311a60946ecd26eab95bb42" - } - Frame { - msec: 1312 - hash: "ac5902d58bc116a002c093f55cf20278" - } - Frame { - msec: 1328 - hash: "242f8617718048cfab9950b812eb1b26" - } - Frame { - msec: 1344 - hash: "b642f2f0d3161f80a702b09a910c589b" - } - Frame { - msec: 1360 - hash: "d1508034ecd908120c6f58cf08360c3c" - } - Frame { - msec: 1376 - hash: "ad10a5ea8598616f2ffa633eecfbd43a" - } - Frame { - msec: 1392 - hash: "1d2c3cfaac1cca868f31872bf4248de8" - } - Frame { - msec: 1408 - hash: "28da57a6aec84318ff6aa029ac17f1dd" - } - Frame { - msec: 1424 - hash: "6f9bf89843d5e40f6c282e69337e7d25" - } - Frame { - msec: 1440 - hash: "1c5733ad9620805127372fb76f5b0228" - } - Frame { - msec: 1456 - hash: "16f21041e9e475a37c478cf38cdc353b" - } - Frame { - msec: 1472 - hash: "b39ea2e8a1991b3ea5be818a284ff69f" - } - Frame { - msec: 1488 - hash: "4f5bdc935080707525a2b74936b41b2e" - } - Frame { - msec: 1504 - hash: "a39426dc761df1d2ba398aa17d220ded" - } - Frame { - msec: 1520 - hash: "2e965042273b377958b04190250d273e" - } - Frame { - msec: 1536 - hash: "51f021c1d50291b425c98dee4894b330" - } - Frame { - msec: 1552 - hash: "88fea2e6d6898084acb5897833adb182" - } - Frame { - msec: 1568 - hash: "12f55e64c8ec9825bf6c5cfd5d50d2bb" - } - Frame { - msec: 1584 - hash: "365b358eb7a678e1076774c36a82f452" - } - Frame { - msec: 1600 - hash: "a992b326739bff87bf042c711a7fa65c" - } - Frame { - msec: 1616 - hash: "083aa3c766a3b50492e51aab3ee128d0" - } - Frame { - msec: 1632 - hash: "16a2db3b3a773e2612bc57f7a7d7fbbe" - } - Frame { - msec: 1648 - hash: "32a28101a53d308b107d26a30ae7cdd9" - } - Frame { - msec: 1664 - hash: "da3908e584542ff2f73cb22369f49c1c" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 195; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1680 - hash: "8ad535bb0c5decd8c970aa36286d57e7" - } - Frame { - msec: 1696 - hash: "5bfbcab7607622486c350a9117ab0884" - } - Frame { - msec: 1712 - hash: "17e13c8bfd81081f6400d3e71daecb4c" - } - Frame { - msec: 1728 - hash: "9411a66b6c3ef9a98bc62dea282d6a51" - } - Frame { - msec: 1744 - hash: "423cded80165ee13f903460e5396526b" - } - Frame { - msec: 1760 - hash: "709cc55316e6702c1359b66c06676603" - } - Frame { - msec: 1776 - hash: "27232931c000a2edb5c3d480a6692e6b" - } - Frame { - msec: 1792 - hash: "22311fd0903b53f50df824ba345ca350" - } - Frame { - msec: 1808 - hash: "9bb066e60e7e5b3eaa0a221b8ba1a431" - } - Frame { - msec: 1824 - hash: "517000255d372d384773dff8c80f5a65" - } - Frame { - msec: 1840 - hash: "329dbd77ae53ea8e4beb669a976033a8" - } - Frame { - msec: 1856 - hash: "2acd5d3e878e1db5413270c1a50ffc83" - } - Frame { - msec: 1872 - hash: "8eb5946ac5d53dfc2813d1f1c6a2b6c5" - } - Frame { - msec: 1888 - hash: "375299e5b1067e02d5de3238a37659f2" - } - Frame { - msec: 1904 - hash: "f385c90e585db5555e873996165f55af" - } - Frame { - msec: 1920 - image: "follow.1.png" - } - Frame { - msec: 1936 - hash: "6c13bb69b6483c72463437e102a9dabb" - } - Frame { - msec: 1952 - hash: "c1b5d10688681c3b2363bb6d4173deca" - } - Frame { - msec: 1968 - hash: "b434649e4c9b2c184d2f9036f9d041bf" - } - Frame { - msec: 1984 - hash: "ca32e9f9080983803bb37b7231ed1c84" - } - Frame { - msec: 2000 - hash: "976eab47b2d6445fdd8293f2c73564c1" - } - Frame { - msec: 2016 - hash: "e63daea8f3bc79cea7a6b8dcfd31a094" - } - Frame { - msec: 2032 - hash: "626cbe5e6b79f2fd0ef57c943666b571" - } - Frame { - msec: 2048 - hash: "4e07255ce12a21966eec33c0cc623d96" - } - Frame { - msec: 2064 - hash: "94045005de77725c63c62575a6b06852" - } - Frame { - msec: 2080 - hash: "3b6dcf783c5e9fe99ce3d9ca02bceff6" - } - Frame { - msec: 2096 - hash: "e901ed7e831e2d012b97b98b3ab6fa1b" - } - Frame { - msec: 2112 - hash: "74ef03f72d032daaff13114fde02b824" - } - Frame { - msec: 2128 - hash: "9eb334d7dda3801c1fe292844040e014" - } - Frame { - msec: 2144 - hash: "82bf8fb5e3a9bf167f3f00b1f6ab3c06" - } - Frame { - msec: 2160 - hash: "df3a2bc7758d00d595347e62c7e53c4a" - } - Frame { - msec: 2176 - hash: "e77ac04a6ad9f97226b45d202a0d5196" - } - Frame { - msec: 2192 - hash: "37411333a28ea840c59cabd96fd1deba" - } - Frame { - msec: 2208 - hash: "8d1eb90ffd080bcd078b69c9635108d1" - } - Frame { - msec: 2224 - hash: "68ee5d58b2edeb6b5a64a714115e4499" - } - Frame { - msec: 2240 - hash: "003ddf0a5dd3d4bb947a34bdd22ad8c1" - } - Frame { - msec: 2256 - hash: "bf3c89d0a09ed2159a78f10124f5d7bb" - } - Frame { - msec: 2272 - hash: "6ec994f41d4540db988846416c2f7b4f" - } - Frame { - msec: 2288 - hash: "9ca7e3ca6ea26e8259d34a8c0f80f7a9" - } - Frame { - msec: 2304 - hash: "edf5cea581d46400914610213c8503ea" - } - Frame { - msec: 2320 - hash: "9b96aac3f98cd37a361788be8b81e308" - } - Frame { - msec: 2336 - hash: "5d304a8398512ebc85bebf973ed6a4f4" - } - Frame { - msec: 2352 - hash: "cf2a27a395f23f7976a48d69f5e8e120" - } - Frame { - msec: 2368 - hash: "458323a37208ea14972d8f84cebc66a5" - } - Frame { - msec: 2384 - hash: "da9c8e4d168b9cd32d5ec3f5857d2942" - } - Frame { - msec: 2400 - hash: "5d6663be8e02b0a7a4701595c9c26663" - } - Frame { - msec: 2416 - hash: "4190712a39ca07f810a6d84e15488393" - } - Frame { - msec: 2432 - hash: "26b22be0a1c2fecec1e25a6513b19484" - } - Frame { - msec: 2448 - hash: "3e623bc2b9e8cec49671571291cf6afb" - } - Frame { - msec: 2464 - hash: "3e623bc2b9e8cec49671571291cf6afb" - } - Frame { - msec: 2480 - hash: "2cb2968d16323af4659b3197d391bb91" - } - Frame { - msec: 2496 - hash: "5376b1285647950428b29e75f2e27c4f" - } - Frame { - msec: 2512 - hash: "baaacc3940c8d36f715d90e046346bed" - } - Frame { - msec: 2528 - hash: "277719afea4c119f17c34c59ef0b7984" - } - Frame { - msec: 2544 - hash: "00a172ff8afd1e8444fb84249a3af0fd" - } - Frame { - msec: 2560 - hash: "bf8a0f939a5602a0a9f5a3bc7c8d0d86" - } - Frame { - msec: 2576 - hash: "b22860751790b3113b2cb299c9f628b8" - } - Frame { - msec: 2592 - hash: "fdda1e520457974443720bd44f21d929" - } - Frame { - msec: 2608 - hash: "538af31f9463cd07163d54adc2721345" - } - Frame { - msec: 2624 - hash: "2ca50398746c8fb1c936fd412c7556b4" - } - Frame { - msec: 2640 - hash: "63cd898c3e22a29846489e5c47f455a1" - } - Frame { - msec: 2656 - hash: "1e69cc765c3f2c27c2b6e7f3e47f515a" - } - Frame { - msec: 2672 - hash: "9d7ce0df7bee9a387917ef228fd50652" - } - Frame { - msec: 2688 - hash: "afa0b735a9dd0734362b3f3f7d7177c3" - } - Frame { - msec: 2704 - hash: "91bee07133319a0adbf9a31c430e58ad" - } - Frame { - msec: 2720 - hash: "6aee88b6391e524bafc15524825ada74" - } - Frame { - msec: 2736 - hash: "655ce421faa628b3389f084fe675ad53" - } - Frame { - msec: 2752 - hash: "367fd34b54f12e896839b0ef4fb06925" - } - Frame { - msec: 2768 - hash: "0b3ac04504bfe876c4338a4dc3721280" - } - Frame { - msec: 2784 - hash: "c6cdb77888f1a3cbfe4cfec28bfad12d" - } - Frame { - msec: 2800 - hash: "ef01302544f4da4575035d3e4f2443c9" - } - Frame { - msec: 2816 - hash: "53f01d26a75f7e91d14b8975c81638d5" - } - Frame { - msec: 2832 - hash: "10fc7b3f7e5dff21edef4123d252cba0" - } - Frame { - msec: 2848 - hash: "10fc7b3f7e5dff21edef4123d252cba0" - } - Frame { - msec: 2864 - hash: "10fc7b3f7e5dff21edef4123d252cba0" - } - Frame { - msec: 2880 - image: "follow.2.png" - } - Frame { - msec: 2896 - hash: "143970d31598c017d7f24e8b09fd0f0a" - } - Frame { - msec: 2912 - hash: "fc6c38bfdcd2df7a928e83d57dc0b18d" - } - Frame { - msec: 2928 - hash: "647c09aae23ea5ec7979775d3022cacf" - } - Frame { - msec: 2944 - hash: "f1ed5cd564be1eed3242997c14a99887" - } - Frame { - msec: 2960 - hash: "aec3d7f18d6c4002229ef1d36727c4b0" - } - Frame { - msec: 2976 - hash: "3552e5a3923593a2c66ecd5e2cb2ee25" - } - Frame { - msec: 2992 - hash: "55a72327b726a3c75383cc5a28ba9503" - } - Frame { - msec: 3008 - hash: "c25ff06944f8c92006245452e07215ef" - } - Frame { - msec: 3024 - hash: "cc0187a10a7ccf087838a481f667af6e" - } - Frame { - msec: 3040 - hash: "ae9d7ff04066eb998d052c2e21b58327" - } - Frame { - msec: 3056 - hash: "91707fa1aaa267e6d1d56d173a063bde" - } - Frame { - msec: 3072 - hash: "c076a33b8afcaf915387375f065e49df" - } - Frame { - msec: 3088 - hash: "c24390ec788b5f34356e7a6507507a93" - } - Frame { - msec: 3104 - hash: "e42c9800379de3076d00802c68cc99e8" - } - Frame { - msec: 3120 - hash: "a2d3ba5353b1c967da93d96b61f7927f" - } - Frame { - msec: 3136 - hash: "fe719953aa3468d373801bb80ae93eff" - } - Frame { - msec: 3152 - hash: "e89b9bed1ebc7ebdd37d6975ecb0601c" - } - Frame { - msec: 3168 - hash: "7f3d84f49a7dd4fe39a1ba0ed7f5da3e" - } - Frame { - msec: 3184 - hash: "b16c9e05f72e7c8fa59f80422b987600" - } - Frame { - msec: 3200 - hash: "bd0606da0f7bc6c47a361462b3b2dede" - } - Frame { - msec: 3216 - hash: "88f81db6d705b745c4d2ffe470cb6966" - } - Frame { - msec: 3232 - hash: "4ac6769d3f725720bba6c125b43885cd" - } - Frame { - msec: 3248 - hash: "4ac6769d3f725720bba6c125b43885cd" - } - Frame { - msec: 3264 - hash: "4ac6769d3f725720bba6c125b43885cd" - } - Frame { - msec: 3280 - hash: "4ac6769d3f725720bba6c125b43885cd" - } - Frame { - msec: 3296 - hash: "88f81db6d705b745c4d2ffe470cb6966" - } - Frame { - msec: 3312 - hash: "88f81db6d705b745c4d2ffe470cb6966" - } - Frame { - msec: 3328 - hash: "1f112ff43280a208e967e373db8e3f34" - } - Frame { - msec: 3344 - hash: "6d966dafdfd2cf1927c14f749e24a99c" - } - Frame { - msec: 3360 - hash: "8ab4ce88e52d7cd2ec9059cdb973590d" - } - Frame { - msec: 3376 - hash: "62d877f18b8d3fcf6b076946f2ce05f7" - } - Frame { - msec: 3392 - hash: "efe3729cdeddc4bcee105b27e4062dcd" - } - Frame { - msec: 3408 - hash: "a2eb63f12d434925d0780f4992155556" - } - Frame { - msec: 3424 - hash: "5eee7ec87bb399e1395a8d337ede021b" - } - Frame { - msec: 3440 - hash: "59769ae407be01b016df8d7fbf484243" - } - Frame { - msec: 3456 - hash: "bbadb689ec5b76f76340905252b2376a" - } - Frame { - msec: 3472 - hash: "97cd4f34259ac8370e8557ef3ecf5a96" - } - Frame { - msec: 3488 - hash: "17c1513fe4c0132e15355378c6a6ee11" - } - Frame { - msec: 3504 - hash: "7b19041638fc7d1cf60512f579f388dd" - } - Frame { - msec: 3520 - hash: "4d23bbf68cb8b32638b73ac20551ee50" - } - Frame { - msec: 3536 - hash: "3f0326db5a851887a534e80cc29dc21d" - } - Frame { - msec: 3552 - hash: "df5902d22a31c4deac1428d2758a0ffa" - } - Frame { - msec: 3568 - hash: "21badb1464775fa935c2619b91aa6e6e" - } - Frame { - msec: 3584 - hash: "e8cf87f4a65f6915addc16de29c90108" - } - Frame { - msec: 3600 - hash: "d3d4487b887695b7bba8e0af7756a0f8" - } - Frame { - msec: 3616 - hash: "d7f52590e4f51621ad2d62c975a5d1ef" - } - Frame { - msec: 3632 - hash: "9ebdc2b3ef05748e2cc8988f968f7a37" - } - Frame { - msec: 3648 - hash: "74bb7974f9315e70e976c21955390b9e" - } - Frame { - msec: 3664 - hash: "59e16a89e523160f2a482c22f003f87f" - } - Frame { - msec: 3680 - hash: "d8284c216df0fdd37525f26b88707572" - } - Frame { - msec: 3696 - hash: "d8711b4444eea59acc544652cea3c4ce" - } - Frame { - msec: 3712 - hash: "12148c3f2b5f41a4ac4801e990b20114" - } - Frame { - msec: 3728 - hash: "34429cbdfe581a524b1f9072cc404539" - } - Frame { - msec: 3744 - hash: "1f6a17b91d73e10bcbdd166d97546822" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 195; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "bccd4f135f27199b3a710576e0013c53" - } - Frame { - msec: 3776 - hash: "6aa4db9ecb8fa4ad4d4f81434c369759" - } - Frame { - msec: 3792 - hash: "a7f2951411d8f5322ce91b3da7e86d64" - } - Frame { - msec: 3808 - hash: "25fe19f3398d3d1a74ad8ed4114149d7" - } - Frame { - msec: 3824 - hash: "05c3dae68897a461de2923824bef9390" - } - Frame { - msec: 3840 - image: "follow.3.png" - } - Frame { - msec: 3856 - hash: "db6265c30dd614720d1532ffc411a28f" - } - Frame { - msec: 3872 - hash: "f5de8e4ba755bc0a1e4c3f36ed3e6a93" - } - Frame { - msec: 3888 - hash: "ad68229e5fe9a2570074648005c5e5df" - } - Frame { - msec: 3904 - hash: "02d894680766289fe659a86b02d6c9ca" - } - Frame { - msec: 3920 - hash: "4f228534dd909207e8d149c74bd8fd90" - } - Frame { - msec: 3936 - hash: "f0b5c64f6a50e156452caf6a352c11e1" - } - Frame { - msec: 3952 - hash: "64d46ff443534dbdb3cca88b7fc3e758" - } - Frame { - msec: 3968 - hash: "717ad4b8012a21c6ed38dee5ea978f36" - } - Frame { - msec: 3984 - hash: "ed38c7b528bcbb3e291761104bf1e86e" - } - Frame { - msec: 4000 - hash: "8cc8674d325a2c72c41654ffbe5bce1f" - } - Frame { - msec: 4016 - hash: "ab66dd60cc0e58d23bef5c709fe901ad" - } - Frame { - msec: 4032 - hash: "b3b824cae4ddaac4a224e84f0e282fa4" - } - Frame { - msec: 4048 - hash: "ead7fe4bec7987c24c305e114797284c" - } - Frame { - msec: 4064 - hash: "e5e9501f1ca61ea9f99aadfc5ca02214" - } - Frame { - msec: 4080 - hash: "f74a00eb31e1604f13a6ffb29fbd91b7" - } - Frame { - msec: 4096 - hash: "539aca62492408ccc1815c67b55cb399" - } - Frame { - msec: 4112 - hash: "4f548ad0eb7c4ce88a777e3b7ce2d3a8" - } - Frame { - msec: 4128 - hash: "b0190c5ed53ff812988dd7a2152ffa61" - } - Frame { - msec: 4144 - hash: "48214bdfbdcba256043e2cec7f5e321b" - } - Frame { - msec: 4160 - hash: "952614329111d1d83b0304aa919af177" - } - Frame { - msec: 4176 - hash: "fd874a73062dedfe7b904ad4c9fbcbc9" - } - Frame { - msec: 4192 - hash: "365b9a18cf37521718ef98589ac23933" - } - Frame { - msec: 4208 - hash: "32bbbf93d78925ef12f830386f0dbe2b" - } - Frame { - msec: 4224 - hash: "835d391a498b7d470b317e91453ba2f9" - } - Frame { - msec: 4240 - hash: "07d0cd82a39bfea2567587745f1e330d" - } - Frame { - msec: 4256 - hash: "9560a63581007038e1c463b906a4b346" - } - Frame { - msec: 4272 - hash: "076d25daafe8b582aeff39e247653285" - } - Frame { - msec: 4288 - hash: "f2e66dad3231250b951388396705c839" - } - Frame { - msec: 4304 - hash: "f168773343e928b60aad5430b9ca739d" - } - Frame { - msec: 4320 - hash: "99ed4dc4be1a0e8d98e1a54d51208da3" - } - Frame { - msec: 4336 - hash: "23b3e73a966f52ce6166bc91955570a1" - } - Frame { - msec: 4352 - hash: "00cdb999f3d2c6fcad708c37c3059c3d" - } - Frame { - msec: 4368 - hash: "96f1bef93ba1768afcc42924145d49ff" - } - Frame { - msec: 4384 - hash: "0a76f6d5ec710e4046f32f76be8e0d68" - } - Frame { - msec: 4400 - hash: "98f97a6c7eac1a493e81e79956177668" - } - Frame { - msec: 4416 - hash: "9424ca6ba64d0d0c0bd1ee9da1b5085a" - } - Frame { - msec: 4432 - hash: "2049a22079ac590aad3c9f6496879bcb" - } - Frame { - msec: 4448 - hash: "f70f9f6bd3abf3bdcb70038cda5ed311" - } - Frame { - msec: 4464 - hash: "48d6d01e1d80fea8eb05572ca26b692c" - } - Frame { - msec: 4480 - hash: "af152dc6de929a8231687611cc301f28" - } - Frame { - msec: 4496 - hash: "2ec869cd61570b570586870f80ba3832" - } - Frame { - msec: 4512 - hash: "42be0431c015dcd0f5f6dd59ba7c2d7d" - } - Frame { - msec: 4528 - hash: "abc112f396c5e504a19dce255437720c" - } - Frame { - msec: 4544 - hash: "a371c4f49af16bdacc5ab5abbfc99e99" - } - Frame { - msec: 4560 - hash: "1ebfd139bfabbbaf522acd63e3f47462" - } - Frame { - msec: 4576 - hash: "b36086718a3dd89500adbf67aa7b0f1d" - } - Frame { - msec: 4592 - hash: "e3ea2ad4955cb2ab8d503b331b3594c3" - } - Frame { - msec: 4608 - hash: "4214c9f474d7f11bed74e32f5b3a0e9f" - } - Frame { - msec: 4624 - hash: "f290e1dbf13ae399a2644eea3715804a" - } - Frame { - msec: 4640 - hash: "6538c60446e3303dc1126c3c9c47ae42" - } - Frame { - msec: 4656 - hash: "5319667f181eb5647710ccc6eddf43c9" - } - Frame { - msec: 4672 - hash: "b98b68ea99d5a107115b50c32aa45c35" - } - Frame { - msec: 4688 - hash: "2cc38e2915f77a46082c32c9393ae0c5" - } - Frame { - msec: 4704 - hash: "40c695b17834cbba86d4dde0729f620b" - } - Frame { - msec: 4720 - hash: "e8d5a95cfc726ce2626951ef1c68a948" - } - Frame { - msec: 4736 - hash: "ab96c1668890ceffba74219d83e15e99" - } - Frame { - msec: 4752 - hash: "4d69a73b3940911940b419028dabd223" - } - Frame { - msec: 4768 - hash: "281043e3c045df177cbfae1abf51a8d1" - } - Frame { - msec: 4784 - hash: "8adf6d8154d7950efe6b5bd7e2b760b6" - } - Frame { - msec: 4800 - image: "follow.4.png" - } - Frame { - msec: 4816 - hash: "7fba4249c76b7f81c2b88cf906ce8ce6" - } - Frame { - msec: 4832 - hash: "50b3c89d4d783469843b3acacb9690dd" - } - Frame { - msec: 4848 - hash: "29f950ab7e6299036e78c8f37d114990" - } - Frame { - msec: 4864 - hash: "3f8aecc5453406c9d8160eeb9691ed91" - } - Frame { - msec: 4880 - hash: "ad7ff48fed4ca9e236271d169c3bf696" - } - Frame { - msec: 4896 - hash: "2a2f872e4ef5c062a61fb59238df8794" - } - Frame { - msec: 4912 - hash: "87cf2e21d7e56a82437a8ff3fa2bdc8c" - } - Frame { - msec: 4928 - hash: "c3b04bb24d86d2aebd8fde7845f114cf" - } - Frame { - msec: 4944 - hash: "3ad95d59a1f1841e3ff2324055ca23c0" - } - Frame { - msec: 4960 - hash: "b91068fdce1fb2be9a64902a3dfa6b0d" - } - Frame { - msec: 4976 - hash: "30f0118eb0bba40927a8038da03b652b" - } - Frame { - msec: 4992 - hash: "ce5f3d15d3536be16b960f02a7335b99" - } - Frame { - msec: 5008 - hash: "85b853c3f48b915ed6e80815709e8ac2" - } - Frame { - msec: 5024 - hash: "c3511a76aa6dc2f1422a473ca4d80d0f" - } - Frame { - msec: 5040 - hash: "deb1df70b4e1801c635356c65c0a5a46" - } - Frame { - msec: 5056 - hash: "d04983df9b0ffc45e629af55a8e5cc95" - } - Frame { - msec: 5072 - hash: "2a55c97509819657f5f8604d4789d9d4" - } - Frame { - msec: 5088 - hash: "94589d594fa2e5ed621459ec2c8bd7e8" - } - Frame { - msec: 5104 - hash: "a8a1bd7c15a5bdfe15d6580d719bdba6" - } - Frame { - msec: 5120 - hash: "b4e1a4b1b649820be217c46b5086c8a4" - } - Frame { - msec: 5136 - hash: "4de7d7ce85717eb9a67c61745ea26c0a" - } - Frame { - msec: 5152 - hash: "c8ee53b7e659e10c7dbcf44e1a45f794" - } - Frame { - msec: 5168 - hash: "f46ce03bc5a932c39862577c5a5cd24c" - } - Frame { - msec: 5184 - hash: "d417370ed6fb99ccfa443eb97e6de331" - } - Frame { - msec: 5200 - hash: "336af06572992960c829d4a209048263" - } - Frame { - msec: 5216 - hash: "4066e8eef292abf9b58bc89b4b5f3ce9" - } - Frame { - msec: 5232 - hash: "360f037a02bf4a337b278886266ff2f1" - } - Frame { - msec: 5248 - hash: "79e9f387b0ce164057640c0caab8d10d" - } - Frame { - msec: 5264 - hash: "ee8741d1810303cfe5ecff39c7d52fdd" - } - Frame { - msec: 5280 - hash: "4cba1c857f0af49d7fe68584f99c89d7" - } - Frame { - msec: 5296 - hash: "c0ae482a2fbb9f15a2c2ff631cc85c2c" - } - Frame { - msec: 5312 - hash: "3b6bf6d6a0aeebdc92eff4e336fd3b6e" - } - Frame { - msec: 5328 - hash: "43033eb8aeba6b49c135a1702f6b8f47" - } - Frame { - msec: 5344 - hash: "1319c7e3a84484723891ee43a80bc765" - } - Frame { - msec: 5360 - hash: "838ec693c923565d77b060f262beb1e8" - } - Frame { - msec: 5376 - hash: "74306669836425de03cec617d4ed849a" - } - Frame { - msec: 5392 - hash: "c063f4951755c8939399d0d560a0f762" - } - Frame { - msec: 5408 - hash: "512c739e0ff25f7d6b983a193f7fc2c3" - } - Frame { - msec: 5424 - hash: "6c5f69cc2ce2992fd2ecb0ea3691e2b8" - } - Frame { - msec: 5440 - hash: "f5dbc5ce0ba00eafb9379ee86de67150" - } - Frame { - msec: 5456 - hash: "f62bb7d8d9749272ca3e2bd1931598fb" - } - Frame { - msec: 5472 - hash: "052fdac05286edcdd7fcd4d6d9582f39" - } - Frame { - msec: 5488 - hash: "ac4702306e5be156fe7b069cb90e1038" - } - Frame { - msec: 5504 - hash: "127e94c79f4d33e5f223a0853629245f" - } - Frame { - msec: 5520 - hash: "dd77216b0a90c46dd5c264d38ab0fd74" - } - Frame { - msec: 5536 - hash: "a4e50b39aa367d4cd7650d088d186856" - } - Frame { - msec: 5552 - hash: "6e14946b9b23f0fc137bd61c02af1ca5" - } - Frame { - msec: 5568 - hash: "8c550d5e4cfbcee2c7bd6c20dba53f41" - } - Frame { - msec: 5584 - hash: "9f2385fb614bdaafe022712148f786d2" - } - Frame { - msec: 5600 - hash: "c87903c96ae5a4b91c5bda524bfd4a4f" - } - Frame { - msec: 5616 - hash: "9a98de9b4237b7c0ccb4468344d410bc" - } - Frame { - msec: 5632 - hash: "7ff448f395ff50cde1f6e6cfaf0c1541" - } - Frame { - msec: 5648 - hash: "ab7a6998a5b26e3d58bd1d0a949f3709" - } - Frame { - msec: 5664 - hash: "ab7a6998a5b26e3d58bd1d0a949f3709" - } - Frame { - msec: 5680 - hash: "2e1b5636ab75af91bd5b0d48c04828f5" - } - Frame { - msec: 5696 - hash: "0976b605c78f6f8512acdfb61b9d123a" - } - Frame { - msec: 5712 - hash: "bb816bfd8bd3972c80c3a76c9ddf785e" - } - Frame { - msec: 5728 - hash: "c3518990fc7aa5660a9e86034cf4c46f" - } - Frame { - msec: 5744 - hash: "b27230d8aeb214e18b43de167213ef7b" - } - Frame { - msec: 5760 - image: "follow.5.png" - } - Frame { - msec: 5776 - hash: "fc55f00ae456c2687ed05ab4b6906a33" - } - Frame { - msec: 5792 - hash: "50051a48d1fae3bc9c9d1f0a964d9561" - } - Frame { - msec: 5808 - hash: "279a38d7261241c744c2317ea9843567" - } - Frame { - msec: 5824 - hash: "0b3ed3960713dbda36326b7de492c42e" - } - Frame { - msec: 5840 - hash: "fff5737541317406c4a0ef06f1cdc041" - } - Frame { - msec: 5856 - hash: "47aef0d79da45139a3981a75290cc9b8" - } - Frame { - msec: 5872 - hash: "d79f9f9371c76a855ea4f2cdeed97acd" - } - Frame { - msec: 5888 - hash: "66610a0d5b926d419da26e20b04b55a5" - } - Frame { - msec: 5904 - hash: "9891ad954da8535b44cc234bb2588f30" - } - Frame { - msec: 5920 - hash: "b53056146701fae1598ab49e6399db01" - } - Frame { - msec: 5936 - hash: "064799027a3f60458a3797c6c87d3e29" - } - Frame { - msec: 5952 - hash: "81ad252f10e6f8f2a08e7df1d25e8a47" - } - Frame { - msec: 5968 - hash: "09fbd923da02844f50ad25059f82560c" - } - Frame { - msec: 5984 - hash: "f41d8370afdce8a154ab42204ca8d92d" - } - Frame { - msec: 6000 - hash: "748b2d020c28b3ac36b08377b4a2544b" - } - Frame { - msec: 6016 - hash: "748b2d020c28b3ac36b08377b4a2544b" - } - Frame { - msec: 6032 - hash: "d8c02a54c0d1df20127025d547c741af" - } - Frame { - msec: 6048 - hash: "d8c02a54c0d1df20127025d547c741af" - } - Frame { - msec: 6064 - hash: "d7fd0dab22fec0f68ed01cfd6d32e7f5" - } - Frame { - msec: 6080 - hash: "f0b035eda10c07f5c3c825784ad96437" - } - Frame { - msec: 6096 - hash: "54b83800f8a01e1a4d57b8b1d371fb09" - } - Frame { - msec: 6112 - hash: "19ad51c31e9cfdb314c76f323574806c" - } - Frame { - msec: 6128 - hash: "dcf269a115781eb4df232a527de87a87" - } - Frame { - msec: 6144 - hash: "95053206702a6118c23b541ff7fbef0d" - } - Frame { - msec: 6160 - hash: "933a158398ee746c0465c2e7af9b6b4d" - } - Frame { - msec: 6176 - hash: "ade4a4aa03f5787dce1331ed27ff9c6e" - } - Frame { - msec: 6192 - hash: "9ecc7d4cb5cf0dd815e208e13e2c932a" - } - Frame { - msec: 6208 - hash: "98e40cba2e717e57a5dcd3413e166f65" - } - Frame { - msec: 6224 - hash: "f68f45b71f6d596eaa76fa2bc46cfe1b" - } - Frame { - msec: 6240 - hash: "9230c9b1013b83b073ccb90d2633043f" - } - Frame { - msec: 6256 - hash: "5d0fc4842b75703d29816fa0330624ba" - } - Frame { - msec: 6272 - hash: "5d0fc4842b75703d29816fa0330624ba" - } - Frame { - msec: 6288 - hash: "5d0fc4842b75703d29816fa0330624ba" - } - Frame { - msec: 6304 - hash: "96008d5b8446f67e07129d02300d122d" - } - Frame { - msec: 6320 - hash: "96008d5b8446f67e07129d02300d122d" - } - Frame { - msec: 6336 - hash: "96008d5b8446f67e07129d02300d122d" - } - Frame { - msec: 6352 - hash: "96008d5b8446f67e07129d02300d122d" - } - Frame { - msec: 6368 - hash: "96008d5b8446f67e07129d02300d122d" - } - Frame { - msec: 6384 - hash: "478be760047d33bd66017bdd304ff3ae" - } - Frame { - msec: 6400 - hash: "478be760047d33bd66017bdd304ff3ae" - } - Frame { - msec: 6416 - hash: "478be760047d33bd66017bdd304ff3ae" - } - Frame { - msec: 6432 - hash: "478be760047d33bd66017bdd304ff3ae" - } - Frame { - msec: 6448 - hash: "478be760047d33bd66017bdd304ff3ae" - } - Frame { - msec: 6464 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6480 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6496 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6512 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6528 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6544 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6560 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6576 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6592 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6608 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6624 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6640 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6656 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6672 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6688 - hash: "8ff11dfe2642dc099c240e8aef8285df" - } - Frame { - msec: 6704 - 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/qmlvisual/qdeclarativespringfollow/follow.qml b/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml deleted file mode 100644 index 0097449..0000000 --- a/tests/auto/declarative/qmlvisual/qdeclarativespringfollow/follow.qml +++ /dev/null @@ -1,79 +0,0 @@ -import QtQuick 1.0 - -Rectangle { - color: "#ffffff" - width: 320; height: 240 - - Rectangle { - id: rect - color: "#00ff00" - y: 200; width: 60; height: 20 - SequentialAnimation on y { - loops: Animation.Infinite - NumberAnimation { - to: 20; duration: 500 - easing.type: "InOutQuad" - } - NumberAnimation { - to: 200; duration: 2000 - easing.type: "OutBounce" - } - PauseAnimation { duration: 1000 } - } - } - - // Velocity - Rectangle { - color: "#ff0000" - x: rect.width; width: rect.width; height: 20 - y: rect.y - Behavior on y { SpringAnimation { velocity: 200 } } - } - - // Spring - Rectangle { - color: "#ff0000" - x: rect.width * 2; width: rect.width/2; height: 20 - y: rect.y - Behavior on y { SpringAnimation { spring: 1.0; damping: 0.2 } } - } - Rectangle { - color: "#880000" - x: rect.width * 2.5; width: rect.width/2; height: 20 - y: rect.y - Behavior on y { SpringAnimation { spring: 1.0; damping: 0.2; mass: 3.0 } } // "heavier" object - } - - // Follow mouse - MouseArea { - id: mouseRegion - anchors.fill: parent - Rectangle { - id: ball - property int targetX: mouseRegion.mouseX - 10 - property int targetY: mouseRegion.mouseY - 10 - - x: targetX - y: targetY - width: 20; height: 20 - radius: 10 - color: "#0000ff" - - Behavior on x { SpringAnimation { spring: 1.0; damping: 0.05; epsilon: 0.25 } } - Behavior on y { SpringAnimation { spring: 1.0; damping: 0.05; epsilon: 0.25 } } - - states: [ - State { - name: "following" - when: ball.x != ball.targetX || ball.y != ball.targetY - PropertyChanges { target: ball; color: "#ff0000" } - } - ] - transitions: [ - Transition { - ColorAnimation { duration: 200 } - } - ] - } - } -} -- cgit v0.12 From 8daae0d2ba5d3aca1d0ab640f30afe8ddc1146f7 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 13:22:15 +1000 Subject: Clean up QML Rect visual tests Mostly just creating the test scripts. Task-number: QTBUG-14792 --- .../qmlvisual/rect/data/GradientRect.0.png | Bin 0 -> 248 bytes .../qmlvisual/rect/data/GradientRect.qml | 11 + .../declarative/qmlvisual/rect/data/MyRect.0.png | Bin 0 -> 135 bytes .../declarative/qmlvisual/rect/data/MyRect.qml | 11 + .../qmlvisual/rect/data/rect-painting.0.png | Bin 29725 -> 25197 bytes .../qmlvisual/rect/data/rect-painting.qml | 276 --------------------- 6 files changed, 22 insertions(+), 276 deletions(-) create mode 100644 tests/auto/declarative/qmlvisual/rect/data/GradientRect.0.png create mode 100644 tests/auto/declarative/qmlvisual/rect/data/GradientRect.qml create mode 100644 tests/auto/declarative/qmlvisual/rect/data/MyRect.0.png create mode 100644 tests/auto/declarative/qmlvisual/rect/data/MyRect.qml diff --git a/tests/auto/declarative/qmlvisual/rect/data/GradientRect.0.png b/tests/auto/declarative/qmlvisual/rect/data/GradientRect.0.png new file mode 100644 index 0000000..2ca5d28 Binary files /dev/null and b/tests/auto/declarative/qmlvisual/rect/data/GradientRect.0.png differ diff --git a/tests/auto/declarative/qmlvisual/rect/data/GradientRect.qml b/tests/auto/declarative/qmlvisual/rect/data/GradientRect.qml new file mode 100644 index 0000000..116ab2a --- /dev/null +++ b/tests/auto/declarative/qmlvisual/rect/data/GradientRect.qml @@ -0,0 +1,11 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "GradientRect.0.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/rect/data/MyRect.0.png b/tests/auto/declarative/qmlvisual/rect/data/MyRect.0.png new file mode 100644 index 0000000..3eb9a8d Binary files /dev/null and b/tests/auto/declarative/qmlvisual/rect/data/MyRect.0.png differ diff --git a/tests/auto/declarative/qmlvisual/rect/data/MyRect.qml b/tests/auto/declarative/qmlvisual/rect/data/MyRect.qml new file mode 100644 index 0000000..72141c8 --- /dev/null +++ b/tests/auto/declarative/qmlvisual/rect/data/MyRect.qml @@ -0,0 +1,11 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + image: "MyRect.0.png" + } +} diff --git a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.0.png b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.0.png index 3b7970d..391e760 100644 Binary files a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.0.png and b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.0.png differ diff --git a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml index 7c42d13..9fc073c 100644 --- a/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml +++ b/tests/auto/declarative/qmlvisual/rect/data/rect-painting.qml @@ -6,282 +6,6 @@ VisualTest { } Frame { msec: 16 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 32 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 48 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 64 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 80 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 96 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 112 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 128 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 144 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 160 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 176 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 192 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 208 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 224 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 240 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 256 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 272 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 288 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 304 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 320 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 336 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 352 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 368 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 384 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 400 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 416 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 432 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 448 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 464 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 480 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 496 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 512 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 528 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 544 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 560 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 576 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 592 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 608 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 624 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 640 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 656 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 672 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 688 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 704 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 720 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 736 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 752 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 768 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 784 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 800 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 816 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 832 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 848 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 864 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 880 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 896 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 912 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 928 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 944 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 960 image: "rect-painting.0.png" } - Frame { - msec: 976 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 992 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 1008 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 1024 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 1040 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 1056 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 1072 - hash: "79998980caccd4eb479fbd9f2a13c860" - } - Frame { - msec: 1088 - hash: "79998980caccd4eb479fbd9f2a13c860" - } } -- cgit v0.12 From 0f09354da8595b39685076f5da79f6820eb6705a Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 13:31:53 +1000 Subject: Clean up repeater visual tests Replace text with coloured rectangles, for more cross platform stability Task-number: QTBUG-14792 --- .../auto/declarative/qmlvisual/repeater/basic1.qml | 24 +- .../auto/declarative/qmlvisual/repeater/basic2.qml | 24 +- .../auto/declarative/qmlvisual/repeater/basic3.qml | 28 +- .../auto/declarative/qmlvisual/repeater/basic4.qml | 28 +- .../qmlvisual/repeater/data-MAC/basic1.0.png | Bin 1550 -> 0 bytes .../qmlvisual/repeater/data-MAC/basic1.qml | 323 ---------------- .../qmlvisual/repeater/data-MAC/basic2.0.png | Bin 1550 -> 0 bytes .../qmlvisual/repeater/data-MAC/basic2.qml | 331 ---------------- .../qmlvisual/repeater/data-MAC/basic3.0.png | Bin 1550 -> 0 bytes .../qmlvisual/repeater/data-MAC/basic3.qml | 347 ----------------- .../qmlvisual/repeater/data-MAC/basic4.0.png | Bin 1550 -> 0 bytes .../qmlvisual/repeater/data-MAC/basic4.qml | 419 --------------------- .../qmlvisual/repeater/data-X11/basic1.0.png | Bin 1354 -> 0 bytes .../qmlvisual/repeater/data-X11/basic1.qml | 323 ---------------- .../qmlvisual/repeater/data-X11/basic2.0.png | Bin 1354 -> 0 bytes .../qmlvisual/repeater/data-X11/basic2.qml | 331 ---------------- .../qmlvisual/repeater/data-X11/basic3.0.png | Bin 1354 -> 0 bytes .../qmlvisual/repeater/data-X11/basic3.qml | 347 ----------------- .../qmlvisual/repeater/data-X11/basic4.0.png | Bin 1354 -> 0 bytes .../qmlvisual/repeater/data-X11/basic4.qml | 419 --------------------- .../qmlvisual/repeater/data/basic1.0.png | Bin 1513 -> 707 bytes .../declarative/qmlvisual/repeater/data/basic1.qml | 312 --------------- .../qmlvisual/repeater/data/basic2.0.png | Bin 1513 -> 707 bytes .../declarative/qmlvisual/repeater/data/basic2.qml | 320 ---------------- .../qmlvisual/repeater/data/basic3.0.png | Bin 1513 -> 707 bytes .../declarative/qmlvisual/repeater/data/basic3.qml | 336 ----------------- .../qmlvisual/repeater/data/basic4.0.png | Bin 1513 -> 707 bytes .../declarative/qmlvisual/repeater/data/basic4.qml | 408 -------------------- 28 files changed, 60 insertions(+), 4260 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.0.png delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.0.png delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.0.png delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.0.png delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.0.png delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.0.png delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.0.png delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.0.png delete mode 100644 tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml diff --git a/tests/auto/declarative/qmlvisual/repeater/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/basic1.qml index 7f1ba84..5d994b9 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic1.qml @@ -1,25 +1,29 @@ import QtQuick 1.0 Rectangle { - color: "blue" - width: 300 - height: 200 - Row { - Repeater { + color: "white" + width: 120 + height: 240 + id: page + Column{ + Repeater{ delegate: Rectangle { - color: "red" + color: "thistle" width: 100 height: 100 - Text { - text: name + Rectangle { + anchors.centerIn: parent + width: 60 + height: 60 + color: name } } model: ListModel { ListElement { - name: "January" + name: "palegoldenrod" } ListElement { - name: "February" + name: "lightsteelblue" } } } diff --git a/tests/auto/declarative/qmlvisual/repeater/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/basic2.qml index b10420c..ea14e92 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic2.qml @@ -1,29 +1,33 @@ import QtQuick 1.0 Rectangle { - color: "blue" - width: 300 - height: 200 + color: "white" + width: 120 + height: 240 + id: page Component { id: delegate Rectangle { - color: "red" + color: "thistle" width: 100 height: 100 - Text { - text: name + Rectangle { + anchors.centerIn: parent + width: 60 + height: 60 + color: name } } } - Row { - Repeater { + Column{ + Repeater{ delegate: delegate model: ListModel { ListElement { - name: "January" + name: "palegoldenrod" } ListElement { - name: "February" + name: "lightsteelblue" } } } diff --git a/tests/auto/declarative/qmlvisual/repeater/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/basic3.qml index a296801..0193db3 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic3.qml @@ -1,27 +1,31 @@ import QtQuick 1.0 Rectangle { - color: "blue" - width: 300 - height: 200 + color: "white" + width: 120 + height: 240 + id: page ListModel { - id: dataSource + id: model ListElement { - name: "January" + name: "palegoldenrod" } ListElement { - name: "February" + name: "lightsteelblue" } } - Row { - Repeater { - model: dataSource + Column{ + Repeater{ + model: model delegate: Rectangle { - color: "red" + color: "thistle" width: 100 height: 100 - Text { - text: name + Rectangle { + anchors.centerIn: parent + width: 60 + height: 60 + color: name } } } diff --git a/tests/auto/declarative/qmlvisual/repeater/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/basic4.qml index fa85835..c7c0d29 100644 --- a/tests/auto/declarative/qmlvisual/repeater/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/basic4.qml @@ -1,32 +1,36 @@ import QtQuick 1.0 Rectangle { - color: "blue" - width: 300 - height: 200 + color: "white" + width: 120 + height: 240 + id: page ListModel { - id: dataSource + id: model ListElement { - name: "January" + name: "palegoldenrod" } ListElement { - name: "February" + name: "lightsteelblue" } } Component { id: delegate Rectangle { - color: "red" + color: "thistle" width: 100 height: 100 - Text { - text: name + Rectangle { + anchors.centerIn: parent + width: 60 + height: 60 + color: name } } } - Row { - Repeater { - model: dataSource + Column{ + Repeater{ + model: model delegate: delegate } } diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.0.png b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.0.png deleted file mode 100644 index 2658b6b..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml deleted file mode 100644 index d11a9dd..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic1.qml +++ /dev/null @@ -1,323 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 32 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 48 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 64 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 80 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 96 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 112 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 128 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 144 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 160 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 176 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 192 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 208 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 224 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 240 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 256 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 272 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 288 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 304 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 320 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 336 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 352 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 368 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 384 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 400 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 416 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 432 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 448 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 464 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 480 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 496 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 512 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 528 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 544 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 560 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 576 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 592 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 608 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 624 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 640 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 656 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 672 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 688 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 704 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 720 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 736 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 752 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 768 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 784 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 800 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 816 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 832 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 848 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 864 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 880 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 896 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 912 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 928 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 944 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 960 - image: "basic1.0.png" - } - Frame { - msec: 976 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 992 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1008 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1024 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1040 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1056 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1072 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1088 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1104 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1120 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1136 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1152 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1168 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1184 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1216 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1232 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.0.png b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.0.png deleted file mode 100644 index 2658b6b..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml deleted file mode 100644 index 9b36f60..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic2.qml +++ /dev/null @@ -1,331 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 32 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 48 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 64 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 80 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 96 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 112 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 128 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 144 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 160 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 176 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 192 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 208 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 224 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 240 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 256 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 272 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 288 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 304 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 320 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 336 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 352 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 368 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 384 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 400 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 416 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 432 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 448 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 464 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 480 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 496 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 512 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 528 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 544 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 560 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 576 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 592 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 608 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 624 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 640 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 656 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 672 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 688 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 704 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 720 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 736 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 752 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 768 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 784 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 800 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 816 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 832 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 848 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 864 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 880 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 896 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 912 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 928 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 944 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 960 - image: "basic2.0.png" - } - Frame { - msec: 976 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 992 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1008 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1024 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1040 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1056 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1072 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1088 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1104 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1120 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1136 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1152 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1168 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1184 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1200 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1216 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1232 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1248 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1264 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.0.png b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.0.png deleted file mode 100644 index 2658b6b..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml deleted file mode 100644 index 9752b72..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic3.qml +++ /dev/null @@ -1,347 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 32 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 48 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 64 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 80 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 96 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 112 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 128 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 144 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 160 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 176 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 192 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 208 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 224 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 240 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 256 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 272 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 288 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 304 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 320 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 336 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 352 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 368 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 384 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 400 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 416 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 432 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 448 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 464 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 480 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 496 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 512 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 528 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 544 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 560 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 576 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 592 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 608 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 624 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 640 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 656 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 672 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 688 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 704 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 720 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 736 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 752 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 768 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 784 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 800 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 816 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 832 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 848 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 864 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 880 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 896 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 912 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 928 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 944 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 960 - image: "basic3.0.png" - } - Frame { - msec: 976 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 992 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1008 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1024 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1040 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1056 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1072 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1088 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1104 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1120 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1136 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1152 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1168 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1184 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1200 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1216 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1232 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1248 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1264 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1280 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1296 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1312 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1328 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.0.png b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.0.png deleted file mode 100644 index 2658b6b..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml deleted file mode 100644 index 8492621..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data-MAC/basic4.qml +++ /dev/null @@ -1,419 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 32 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 48 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 64 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 80 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 96 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 112 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 128 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 144 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 160 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 176 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 192 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 208 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 224 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 240 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 256 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 272 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 288 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 304 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 320 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 336 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 352 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 368 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 384 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 400 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 416 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 432 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 448 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 464 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 480 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 496 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 512 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 528 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 544 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 560 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 576 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 592 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 608 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 624 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 640 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 656 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 672 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 688 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 704 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 720 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 736 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 752 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 768 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 784 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 800 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 816 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 832 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 848 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 864 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 880 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 896 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 912 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 928 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 944 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 960 - image: "basic4.0.png" - } - Frame { - msec: 976 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 992 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1008 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1024 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1040 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1056 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1072 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1088 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1104 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1120 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1136 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1152 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1168 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1184 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1200 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1216 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1232 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1248 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1264 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1280 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1296 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1312 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1328 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1344 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1360 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1376 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1392 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1408 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1424 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1440 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1456 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1472 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1488 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1504 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1520 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1536 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1552 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1568 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1584 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1600 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } - Frame { - msec: 1616 - hash: "2ab8ff9a9fb09111ac07d3966aac9d94" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.0.png b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.0.png deleted file mode 100644 index 18ab543..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml deleted file mode 100644 index f9880f8..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic1.qml +++ /dev/null @@ -1,323 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 32 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 48 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 64 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 80 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 96 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 112 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 128 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 144 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 160 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 176 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 192 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 208 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 224 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 240 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 256 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 272 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 288 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 304 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 320 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 336 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 352 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 368 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 384 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 400 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 416 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 432 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 448 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 464 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 480 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 496 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 512 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 528 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 544 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 560 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 576 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 592 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 608 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 624 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 640 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 656 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 672 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 688 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 704 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 720 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 736 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 752 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 768 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 784 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 800 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 816 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 832 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 848 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 864 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 880 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 896 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 912 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 928 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 944 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 960 - image: "basic1.0.png" - } - Frame { - msec: 976 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 992 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1008 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1024 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1040 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1056 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1072 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1088 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1104 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1120 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1136 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1152 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1168 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1184 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1216 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1232 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.0.png b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.0.png deleted file mode 100644 index 18ab543..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml deleted file mode 100644 index cc980e1..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic2.qml +++ /dev/null @@ -1,331 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 32 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 48 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 64 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 80 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 96 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 112 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 128 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 144 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 160 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 176 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 192 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 208 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 224 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 240 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 256 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 272 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 288 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 304 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 320 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 336 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 352 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 368 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 384 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 400 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 416 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 432 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 448 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 464 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 480 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 496 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 512 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 528 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 544 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 560 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 576 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 592 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 608 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 624 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 640 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 656 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 672 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 688 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 704 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 720 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 736 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 752 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 768 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 784 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 800 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 816 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 832 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 848 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 864 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 880 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 896 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 912 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 928 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 944 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 960 - image: "basic2.0.png" - } - Frame { - msec: 976 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 992 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1008 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1024 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1040 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1056 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1072 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1088 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1104 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1120 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1136 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1152 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1168 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1184 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1200 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1216 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1232 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1248 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1264 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.0.png b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.0.png deleted file mode 100644 index 18ab543..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml deleted file mode 100644 index e395dde..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic3.qml +++ /dev/null @@ -1,347 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 32 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 48 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 64 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 80 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 96 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 112 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 128 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 144 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 160 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 176 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 192 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 208 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 224 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 240 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 256 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 272 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 288 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 304 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 320 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 336 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 352 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 368 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 384 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 400 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 416 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 432 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 448 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 464 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 480 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 496 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 512 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 528 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 544 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 560 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 576 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 592 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 608 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 624 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 640 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 656 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 672 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 688 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 704 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 720 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 736 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 752 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 768 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 784 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 800 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 816 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 832 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 848 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 864 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 880 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 896 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 912 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 928 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 944 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 960 - image: "basic3.0.png" - } - Frame { - msec: 976 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 992 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1008 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1024 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1040 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1056 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1072 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1088 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1104 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1120 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1136 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1152 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1168 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1184 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1200 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1216 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1232 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1248 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1264 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1280 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1296 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1312 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1328 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.0.png b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.0.png deleted file mode 100644 index 18ab543..0000000 Binary files a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.0.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml deleted file mode 100644 index b0dc6b8..0000000 --- a/tests/auto/declarative/qmlvisual/repeater/data-X11/basic4.qml +++ /dev/null @@ -1,419 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 32 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 48 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 64 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 80 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 96 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 112 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 128 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 144 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 160 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 176 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 192 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 208 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 224 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 240 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 256 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 272 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 288 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 304 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 320 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 336 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 352 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 368 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 384 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 400 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 416 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 432 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 448 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 464 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 480 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 496 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 512 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 528 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 544 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 560 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 576 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 592 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 608 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 624 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 640 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 656 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 672 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 688 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 704 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 720 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 736 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 752 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 768 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 784 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 800 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 816 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 832 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 848 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 864 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 880 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 896 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 912 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 928 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 944 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 960 - image: "basic4.0.png" - } - Frame { - msec: 976 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 992 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1008 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1024 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1040 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1056 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1072 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1088 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1104 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1120 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1136 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1152 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1168 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1184 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1200 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1216 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1232 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1248 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1264 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1280 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1296 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1312 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1328 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1344 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1360 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1376 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1392 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1408 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Key { - type: 6 - key: 16777249 - modifiers: 0 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1424 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1440 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1456 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1472 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1488 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1504 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1520 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1536 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1552 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1568 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1584 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1600 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } - Frame { - msec: 1616 - hash: "71dedc2f057c660fa5089de2dd6313a4" - } -} diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic1.0.png b/tests/auto/declarative/qmlvisual/repeater/data/basic1.0.png index aea0e98..3e8043a 100644 Binary files a/tests/auto/declarative/qmlvisual/repeater/data/basic1.0.png and b/tests/auto/declarative/qmlvisual/repeater/data/basic1.0.png differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml index f0950d7..aad4858 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic1.qml @@ -6,318 +6,6 @@ VisualTest { } Frame { msec: 16 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 32 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 48 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 64 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 80 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 96 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 112 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 128 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 144 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 160 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 176 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 192 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 208 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 224 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 240 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 256 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 272 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 288 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 304 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 320 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 336 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 352 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 368 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 384 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 400 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 416 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 432 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 448 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 464 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 480 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 496 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 512 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 528 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 544 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 560 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 576 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 592 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 608 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 624 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 640 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 656 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 672 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 688 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 704 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 720 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 736 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 752 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 768 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 784 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 800 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 816 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 832 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 848 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 864 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 880 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 896 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 912 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 928 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 944 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 960 image: "basic1.0.png" } - Frame { - msec: 976 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 992 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1008 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1024 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1040 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1056 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1072 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1088 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1104 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1120 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1136 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1152 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1168 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1184 - hash: "539de20cf149353d2677111ea3de5681" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1200 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1216 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1232 - hash: "539de20cf149353d2677111ea3de5681" - } } diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic2.0.png b/tests/auto/declarative/qmlvisual/repeater/data/basic2.0.png index aea0e98..3e8043a 100644 Binary files a/tests/auto/declarative/qmlvisual/repeater/data/basic2.0.png and b/tests/auto/declarative/qmlvisual/repeater/data/basic2.0.png differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml index fcf3fee..373ad27 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic2.qml @@ -6,326 +6,6 @@ VisualTest { } Frame { msec: 16 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 32 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 48 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 64 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 80 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 96 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 112 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 128 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 144 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 160 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 176 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 192 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 208 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 224 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 240 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 256 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 272 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 288 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 304 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 320 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 336 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 352 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 368 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 384 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 400 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 416 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 432 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 448 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 464 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 480 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 496 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 512 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 528 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 544 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 560 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 576 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 592 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 608 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 624 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 640 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 656 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 672 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 688 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 704 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 720 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 736 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 752 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 768 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 784 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 800 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 816 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 832 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 848 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 864 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 880 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 896 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 912 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 928 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 944 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 960 image: "basic2.0.png" } - Frame { - msec: 976 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 992 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1008 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1024 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1040 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1056 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1072 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1088 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1104 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1120 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1136 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1152 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1168 - hash: "539de20cf149353d2677111ea3de5681" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1184 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1200 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1216 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1232 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1248 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1264 - hash: "539de20cf149353d2677111ea3de5681" - } } diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic3.0.png b/tests/auto/declarative/qmlvisual/repeater/data/basic3.0.png index aea0e98..3e8043a 100644 Binary files a/tests/auto/declarative/qmlvisual/repeater/data/basic3.0.png and b/tests/auto/declarative/qmlvisual/repeater/data/basic3.0.png differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml index 8447aca..f5dbf65 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic3.qml @@ -6,342 +6,6 @@ VisualTest { } Frame { msec: 16 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 32 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 48 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 64 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 80 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 96 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 112 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 128 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 144 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 160 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 176 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 192 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 208 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 224 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 240 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 256 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 272 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 288 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 304 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 320 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 336 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 352 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 368 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 384 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 400 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 416 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 432 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 448 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 464 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 480 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 496 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 512 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 528 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 544 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 560 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 576 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 592 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 608 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 624 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 640 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 656 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 672 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 688 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 704 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 720 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 736 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 752 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 768 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 784 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 800 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 816 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 832 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 848 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 864 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 880 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 896 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 912 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 928 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 944 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 960 image: "basic3.0.png" } - Frame { - msec: 976 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 992 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1008 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1024 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1040 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1056 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1072 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1088 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1104 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1120 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1136 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1152 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1168 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1184 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1200 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1216 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1232 - hash: "539de20cf149353d2677111ea3de5681" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1248 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1264 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1280 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1296 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1312 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1328 - hash: "539de20cf149353d2677111ea3de5681" - } } diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic4.0.png b/tests/auto/declarative/qmlvisual/repeater/data/basic4.0.png index aea0e98..3e8043a 100644 Binary files a/tests/auto/declarative/qmlvisual/repeater/data/basic4.0.png and b/tests/auto/declarative/qmlvisual/repeater/data/basic4.0.png differ diff --git a/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml b/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml index eeb60fa..5e494d1 100644 --- a/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml +++ b/tests/auto/declarative/qmlvisual/repeater/data/basic4.qml @@ -6,414 +6,6 @@ VisualTest { } Frame { msec: 16 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 32 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 48 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 64 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 80 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 96 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 112 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 128 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 144 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 160 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 176 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 192 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 208 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 224 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 240 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 256 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 272 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 288 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 304 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 320 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 336 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 352 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 368 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 384 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 400 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 416 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 432 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 448 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 464 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 480 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 496 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 512 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 528 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 544 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 560 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 576 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 592 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 608 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 624 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 640 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 656 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 672 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 688 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 704 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 720 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 736 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 752 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 768 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 784 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 800 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 816 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 832 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 848 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 864 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 880 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 896 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 912 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 928 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 944 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 960 image: "basic4.0.png" } - Frame { - msec: 976 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 992 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1008 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1024 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1040 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1056 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1072 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1088 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1104 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1120 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1136 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1152 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1168 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1184 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1200 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1216 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1232 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1248 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1264 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1280 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1296 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1312 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1328 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1344 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1360 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1376 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1392 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1408 - hash: "539de20cf149353d2677111ea3de5681" - } - Key { - type: 6 - key: 16777249 - modifiers: 67108864 - text: "" - autorep: false - count: 1 - } - Frame { - msec: 1424 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1440 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1456 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1472 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1488 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1504 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1520 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1536 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1552 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1568 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1584 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1600 - hash: "539de20cf149353d2677111ea3de5681" - } - Frame { - msec: 1616 - hash: "539de20cf149353d2677111ea3de5681" - } } -- cgit v0.12 From 8ba02a8f5a537b9f7e1ff671abe6eed67029db58 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 13:41:51 +1000 Subject: Disable WebView visualtests Until this element is maintained, all tests are entering expectFail state. Task-number: QTBUG-14792 --- .../qmlvisual/webview/autosize/data/autosize.qml | 115 - .../webview/javascript/data/evaluateJavaScript.qml | 3759 -------------------- .../webview/javascript/data/windowObjects.qml | 2643 -------------- .../qmlvisual/webview/settings/data/fontFamily.qml | 395 -- .../qmlvisual/webview/settings/data/fontSize.qml | 339 -- .../webview/settings/data/noAutoLoadImages.qml | 595 ---- .../webview/settings/data/setFontFamily.qml | 351 -- .../qmlvisual/webview/zooming/data/pageWidth.qml | 227 -- .../webview/zooming/data/renderControl.qml | 415 --- .../qmlvisual/webview/zooming/data/resolution.qml | 1319 ------- .../webview/zooming/data/zoomTextOnly.qml | 655 ---- .../qmlvisual/webview/zooming/data/zooming.qml | 2115 ----------- 12 files changed, 12928 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml deleted file mode 100644 index 6122138..0000000 --- a/tests/auto/declarative/qmlvisual/webview/autosize/data/autosize.qml +++ /dev/null @@ -1,115 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "b2d863e57dee2a297d038e18acc70f92" - } - Frame { - msec: 32 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 48 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 64 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 80 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 96 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 112 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 128 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 144 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 160 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 176 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 192 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 208 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 224 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 240 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 256 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 272 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 288 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 304 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 320 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 336 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 352 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 368 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 384 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 400 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 416 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 432 - hash: "903a4c7e619abba5342c8c827f26a722" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml b/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml deleted file mode 100644 index bfe40da..0000000 --- a/tests/auto/declarative/qmlvisual/webview/javascript/data/evaluateJavaScript.qml +++ /dev/null @@ -1,3759 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 32 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 48 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 64 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 80 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 96 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 112 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 128 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 144 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 160 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 176 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 192 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 208 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 224 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 240 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 256 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 272 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 288 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 304 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 320 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 336 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 352 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 368 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 384 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 400 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 416 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 195; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 187; y: 35 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 432 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 153; y: 77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 448 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 145; y: 87 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 139; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 464 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 135; y: 111 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 129; y: 121 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 480 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 125; y: 131 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 121; y: 139 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 117; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 496 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 111; y: 157 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 512 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 107; y: 165 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 101; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 528 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 97; y: 177 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 95; y: 185 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 544 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 189 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 89; y: 195 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 560 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 85; y: 199 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 201 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 576 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 203 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 204 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 81; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 592 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 80; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 608 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 79; y: 205 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 78; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 624 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 77; y: 207 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 76; y: 208 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 75; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 640 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 71; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 656 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 218 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 220 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 672 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 69; y: 222 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 68; y: 224 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 688 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 67; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 704 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 720 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 736 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 752 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 768 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 784 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 67; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 800 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 66; y: 224 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 816 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 66; y: 222 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 832 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 65; y: 221 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 61; y: 217 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 848 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 60; y: 215 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 864 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 59; y: 214 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 880 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 55; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 896 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 912 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 928 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 944 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 960 - image: "evaluateJavaScript.0.png" - } - Frame { - msec: 976 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 992 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1008 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 55; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1024 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1040 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1056 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1072 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1088 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 55; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1104 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1120 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1136 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1152 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1168 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1184 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1200 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1216 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1232 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1248 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1264 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1280 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1296 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 212 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 63; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1312 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 65; y: 210 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 67; y: 209 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1328 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 69; y: 208 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 71; y: 207 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1344 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 73; y: 207 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 206 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 75; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1360 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1376 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1392 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1408 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1424 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1440 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1456 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1472 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1488 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1504 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1520 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1536 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1552 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1568 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1584 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1600 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1616 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1632 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1648 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1664 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1680 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Frame { - msec: 1696 - hash: "f35c69aed43a795ff02b46d7b01ef64a" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1712 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1728 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1744 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1760 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1776 - hash: "244200622435603a75f58366496daf8b" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1792 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1808 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1824 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1840 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1856 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1872 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1888 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1904 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1920 - image: "evaluateJavaScript.1.png" - } - Frame { - msec: 1936 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1952 - hash: "244200622435603a75f58366496daf8b" - } - Frame { - msec: 1968 - hash: "244200622435603a75f58366496daf8b" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 1984 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2000 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2016 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2032 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2048 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 2064 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2080 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2096 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2112 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2128 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2144 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2160 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2176 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Frame { - msec: 2192 - hash: "44dc10a2914a391b57e68c2002a95adf" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 2208 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2224 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2240 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2256 - hash: "c93921d0611e95373338c14cfcc17481" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 2272 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2288 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2304 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2320 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2336 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2352 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2368 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2384 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2400 - hash: "c93921d0611e95373338c14cfcc17481" - } - Frame { - msec: 2416 - hash: "c93921d0611e95373338c14cfcc17481" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 2432 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2448 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2464 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2480 - hash: "9266775c7f2156977ff56fcd45246229" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 2496 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2512 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2528 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2544 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2560 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2576 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2592 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2608 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2624 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2640 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2656 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2672 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2688 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2704 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2720 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2736 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2752 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2768 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2784 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2800 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2816 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2832 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2848 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2864 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2880 - image: "evaluateJavaScript.2.png" - } - Frame { - msec: 2896 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2912 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2928 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2944 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2960 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2976 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 2992 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3008 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3024 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3040 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3056 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3072 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3088 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3104 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3120 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3136 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3152 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3168 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3184 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3200 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3216 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3232 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3248 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3264 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3280 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3296 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3312 - hash: "9266775c7f2156977ff56fcd45246229" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3328 - hash: "9266775c7f2156977ff56fcd45246229" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 72; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3344 - hash: "9266775c7f2156977ff56fcd45246229" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 206 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 68; y: 206 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 65; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3360 - hash: "9266775c7f2156977ff56fcd45246229" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 63; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "9266775c7f2156977ff56fcd45246229" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 61; y: 206 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 59; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3392 - hash: "9266775c7f2156977ff56fcd45246229" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 206 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 55; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3408 - hash: "9266775c7f2156977ff56fcd45246229" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 54; y: 206 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 53; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3424 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3440 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3456 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3472 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3488 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3504 - hash: "9266775c7f2156977ff56fcd45246229" - } - Frame { - msec: 3520 - hash: "9266775c7f2156977ff56fcd45246229" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 52; y: 206 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 52; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3536 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3552 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3568 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3584 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3600 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3616 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3632 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3648 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 52; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3664 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3680 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3696 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3712 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3728 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3744 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3760 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3776 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3792 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3808 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3824 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3840 - image: "evaluateJavaScript.3.png" - } - Frame { - msec: 3856 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3872 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3888 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3904 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3920 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3936 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3952 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3968 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Frame { - msec: 3984 - hash: "b62d9027299daa6ab8304d812ed00f83" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 4000 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4016 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4032 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4048 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4064 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4080 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4096 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4112 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 4128 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4144 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4160 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4176 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4192 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4208 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4224 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4240 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4256 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4272 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4288 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4304 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4320 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4336 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4352 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4368 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4384 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4400 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4416 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4432 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4448 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4464 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4480 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4496 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4512 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4528 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4544 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4560 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4576 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4592 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4608 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4624 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4640 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4656 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4672 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4688 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4704 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4720 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4736 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4752 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4768 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Frame { - msec: 4784 - hash: "6cea5b700e402072a9953c81b605ef22" - } - Key { - type: 6 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 4800 - image: "evaluateJavaScript.4.png" - } - Frame { - msec: 4816 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4832 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4848 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4864 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4880 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4896 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4912 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4928 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Key { - type: 7 - key: 65 - modifiers: 0 - text: "61" - autorep: false - count: 1 - } - Frame { - msec: 4944 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4960 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4976 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 4992 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5008 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5024 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5040 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5056 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5072 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5088 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5104 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5120 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5136 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5152 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5168 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5184 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5200 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5216 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5232 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5248 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5264 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5280 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5296 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5312 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5328 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5344 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5360 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5376 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5392 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5408 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5424 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5440 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5456 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5472 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5488 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5504 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5520 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5536 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5552 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5568 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5584 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5600 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5616 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5632 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5648 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5664 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5680 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5696 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5712 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5728 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5744 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5760 - image: "evaluateJavaScript.5.png" - } - Frame { - msec: 5776 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5792 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5808 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 5824 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 54; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5840 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 56; y: 206 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 204 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 65; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5856 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 71; y: 202 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 79; y: 200 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5872 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 200 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 90; y: 196 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5888 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 192 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 102; y: 188 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5904 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 108; y: 182 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 112; y: 176 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5920 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 116; y: 168 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 120; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5936 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 124; y: 148 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 128; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5952 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 130; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 134; y: 112 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5968 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 138; y: 100 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 142; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 144; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 150; y: 68 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 154; y: 62 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 158; y: 56 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 162; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 166; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 168; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 172; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 174; y: 26 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 176; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 177; y: 18 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 178; y: 16 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 178; y: 14 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 178; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 178; y: 11 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 178; y: 10 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 179; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 180; y: 7 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 181; y: 5 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 181; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 182; y: 2 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 183; y: 1 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6208 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6224 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6240 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6256 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6272 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6288 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6304 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6320 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6336 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6352 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6368 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6384 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6400 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6416 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6432 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6448 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6464 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6480 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6496 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6512 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6528 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6544 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6560 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6576 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6592 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6608 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6624 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6640 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6656 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6672 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6688 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6704 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6720 - image: "evaluateJavaScript.6.png" - } - Frame { - msec: 6736 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6752 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6768 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6784 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6800 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6816 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6832 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6848 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6864 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 176; y: 1 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 174; y: 15 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 172; y: 31 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6880 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 166; y: 47 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 162; y: 63 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6896 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 156; y: 81 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 150; y: 95 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6912 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 144; y: 107 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 138; y: 119 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6928 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 132; y: 127 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 126; y: 133 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6944 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 122; y: 137 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 120; y: 138 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6960 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 120; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6976 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 6992 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7008 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7024 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7040 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7056 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7072 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 119; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7088 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7104 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7120 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 117; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7136 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 116; y: 139 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 115; y: 141 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7152 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 113; y: 149 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 109; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7168 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 107; y: 165 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 103; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7184 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 99; y: 179 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 98; y: 181 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7200 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 187 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 95; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7216 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 95; y: 190 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7232 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7248 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7264 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7280 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 188 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7296 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 187 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 186 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7312 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 185 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 97; y: 184 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7328 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 97; y: 183 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 97; y: 182 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7344 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 98; y: 180 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7360 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 98; y: 178 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7376 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 99; y: 177 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 99; y: 176 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 99; y: 174 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7392 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7408 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 100; y: 172 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 100; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7424 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 100; y: 170 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7440 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 100; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7456 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 101; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7488 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7504 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 101; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "04e2e16813a9cafc37077a675e279f5f" - } - Frame { - msec: 7536 - hash: "04e2e16813a9cafc37077a675e279f5f" - } - Frame { - msec: 7552 - hash: "04e2e16813a9cafc37077a675e279f5f" - } - Frame { - msec: 7568 - hash: "04e2e16813a9cafc37077a675e279f5f" - } - Frame { - msec: 7584 - hash: "04e2e16813a9cafc37077a675e279f5f" - } - Frame { - msec: 7600 - hash: "04e2e16813a9cafc37077a675e279f5f" - } - Frame { - msec: 7616 - hash: "04e2e16813a9cafc37077a675e279f5f" - } - Frame { - msec: 7632 - hash: "04e2e16813a9cafc37077a675e279f5f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 166 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 101; y: 166 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7648 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7664 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7680 - image: "evaluateJavaScript.7.png" - } - Frame { - msec: 7696 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7712 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7728 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7744 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7760 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7776 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7792 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7808 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7824 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 103; y: 166 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7840 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 7856 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 166 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7872 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 106; y: 165 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 107; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7888 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 108; y: 164 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 109; y: 163 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7904 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 111; y: 163 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 112; y: 162 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7920 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 116; y: 158 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7936 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 118; y: 157 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 122; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7952 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 128; y: 147 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 134; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7968 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 140; y: 133 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 146; y: 125 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 150; y: 117 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7984 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 156; y: 109 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 160; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8000 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 164; y: 89 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 166; y: 77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8016 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 170; y: 67 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 172; y: 55 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8032 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 176; y: 45 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8048 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 178; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 178; y: 27 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 180; y: 19 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8064 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 180; y: 11 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 182; y: 5 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8080 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8096 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8112 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8128 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8144 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8160 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8176 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8192 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8208 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8224 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8240 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8256 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8272 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8288 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8304 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8320 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8336 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8352 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8368 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8384 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8400 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8416 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8432 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8448 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8464 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8480 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8496 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8512 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8528 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8544 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8560 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8576 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8592 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8608 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8624 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8640 - image: "evaluateJavaScript.8.png" - } - Frame { - msec: 8656 - hash: "792140067e09d04b31e78be1fc9a40a2" - } - Frame { - msec: 8672 - hash: "792140067e09d04b31e78be1fc9a40a2" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml b/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml deleted file mode 100644 index 07aa13d..0000000 --- a/tests/auto/declarative/qmlvisual/webview/javascript/data/windowObjects.qml +++ /dev/null @@ -1,2643 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 32 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 48 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 64 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 80 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 96 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 112 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 128 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 144 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 160 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 176 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 192 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 208 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 224 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 240 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 256 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 272 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 288 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 304 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 320 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 336 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 352 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 368 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 384 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 400 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 416 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 432 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 448 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 464 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 480 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 496 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 512 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 528 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 544 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 560 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 576 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 592 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 608 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 624 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 640 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 656 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 672 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 688 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 704 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 720 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 736 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 752 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 768 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 784 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 800 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 816 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 832 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 848 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 864 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 880 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 896 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 912 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 928 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 944 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 960 - image: "windowObjects.0.png" - } - Frame { - msec: 976 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 992 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1008 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1024 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1040 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 155; y: 9 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 145; y: 23 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1056 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 137; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 127; y: 53 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 119; y: 67 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 111; y: 77 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1088 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 103; y: 87 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1104 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 97; y: 93 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 101 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 87; y: 109 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1120 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 117 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 81; y: 125 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1136 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 81; y: 133 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 79; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1152 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 79; y: 142 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 79; y: 145 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1168 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 78; y: 146 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 78; y: 147 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1184 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1200 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1216 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1232 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1248 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 143 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1264 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1280 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 142 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1296 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 85; y: 138 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1312 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1328 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1344 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 86; y: 137 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 87; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1360 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 88; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1376 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 89; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 89; y: 139 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1392 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 90; y: 141 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 90; y: 142 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1408 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1424 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 146 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 148 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 149 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1440 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 151 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 153 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1456 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 90; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 90; y: 155 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1472 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 89; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1488 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1504 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1520 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1536 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1552 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1568 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1584 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1600 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1616 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1632 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1648 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1664 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1680 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1696 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1712 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1728 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1744 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1760 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1776 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1792 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1808 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1824 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1840 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1856 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1872 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1888 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1904 - hash: "b1a19797afefa71e30f4594064aa4951" - } - Frame { - msec: 1920 - image: "windowObjects.1.png" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 89; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1936 - hash: "fca76207a4fa6f2c4bb01d28aa018f0c" - } - Frame { - msec: 1952 - hash: "fca76207a4fa6f2c4bb01d28aa018f0c" - } - Frame { - msec: 1968 - hash: "fca76207a4fa6f2c4bb01d28aa018f0c" - } - Frame { - msec: 1984 - hash: "fca76207a4fa6f2c4bb01d28aa018f0c" - } - Frame { - msec: 2000 - hash: "fca76207a4fa6f2c4bb01d28aa018f0c" - } - Frame { - msec: 2016 - hash: "fca76207a4fa6f2c4bb01d28aa018f0c" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 89; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2032 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2048 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2064 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2080 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2096 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2112 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2128 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2144 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2160 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2176 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2192 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2208 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2224 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2240 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2256 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2272 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2288 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 89; y: 157 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 88; y: 158 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 87; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2304 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 87; y: 161 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 167 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2320 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 169 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 80; y: 175 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2336 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 78; y: 183 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2352 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 72; y: 195 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 68; y: 201 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2368 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 64; y: 207 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2384 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 61; y: 215 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 59; y: 221 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2400 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 58; y: 222 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 224 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2416 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2432 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2448 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2464 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2480 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2496 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2512 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2528 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2544 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2560 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2576 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2592 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2608 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2624 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2640 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2656 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2672 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2688 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2704 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2720 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2736 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 49; y: 225 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 50; y: 224 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2752 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 50; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2768 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 51; y: 222 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2784 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 51; y: 221 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 52; y: 220 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2800 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 52; y: 218 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2816 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 53; y: 217 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2832 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2848 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2864 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 54; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2880 - image: "windowObjects.2.png" - } - Frame { - msec: 2896 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 55; y: 215 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2912 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2928 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 56; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2944 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2960 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 2976 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 214 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 57; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2992 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3008 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3024 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3040 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3056 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3072 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3088 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3104 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 57; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3120 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3136 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3152 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3168 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3184 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3200 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3216 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Frame { - msec: 3232 - hash: "6927f81ca01ef75d204994aa82c60c4d" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3248 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Frame { - msec: 3264 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Frame { - msec: 3280 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Frame { - msec: 3296 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3312 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Frame { - msec: 3328 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Frame { - msec: 3344 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Frame { - msec: 3360 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 212 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3376 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Frame { - msec: 3392 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Frame { - msec: 3408 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 57; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3424 - hash: "2165224e8f66a797ae5c991462fb56d8" - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3440 - hash: "c6ac7e0be8b7b2a80966344389def97a" - } - Frame { - msec: 3456 - hash: "c6ac7e0be8b7b2a80966344389def97a" - } - Frame { - msec: 3472 - hash: "c6ac7e0be8b7b2a80966344389def97a" - } - Frame { - msec: 3488 - hash: "40f333072bb9f1d334d5ae432d9641b9" - } - Frame { - msec: 3504 - hash: "40f333072bb9f1d334d5ae432d9641b9" - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3520 - hash: "40f333072bb9f1d334d5ae432d9641b9" - } - Frame { - msec: 3536 - hash: "40f333072bb9f1d334d5ae432d9641b9" - } - Frame { - msec: 3552 - hash: "40f333072bb9f1d334d5ae432d9641b9" - } - Frame { - msec: 3568 - hash: "40f333072bb9f1d334d5ae432d9641b9" - } - Frame { - msec: 3584 - hash: "40f333072bb9f1d334d5ae432d9641b9" - } - Frame { - msec: 3600 - hash: "40f333072bb9f1d334d5ae432d9641b9" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 58; y: 210 - modifiers: 0 - sendToViewport: true - } - Key { - type: 6 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3616 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 60; y: 209 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 61; y: 207 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3632 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 205 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3648 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 204 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 63; y: 203 - modifiers: 0 - sendToViewport: true - } - Key { - type: 7 - key: 83 - modifiers: 0 - text: "73" - autorep: false - count: 1 - } - Frame { - msec: 3664 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 63; y: 202 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 64; y: 200 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3680 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Frame { - msec: 3696 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 65; y: 198 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 66; y: 197 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 67; y: 195 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3712 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 68; y: 194 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 69; y: 192 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3728 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 190 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 188 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3744 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 186 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 185 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3760 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 71; y: 183 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 71; y: 181 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3776 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 72; y: 179 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 73; y: 178 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3792 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 73; y: 176 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 73; y: 175 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3808 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 174 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 173 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3824 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3840 - image: "windowObjects.3.png" - } - Frame { - msec: 3856 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Frame { - msec: 3872 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Frame { - msec: 3888 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Frame { - msec: 3904 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Frame { - msec: 3920 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 75; y: 171 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 76; y: 171 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3936 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Frame { - msec: 3952 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Frame { - msec: 3968 - hash: "96f727ef0dacfda9ea77fb5651493030" - } - Frame { - msec: 3984 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Frame { - msec: 4000 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Frame { - msec: 4016 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Frame { - msec: 4032 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 76; y: 170 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4048 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 77; y: 169 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 78; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4064 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 79; y: 168 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4080 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 81; y: 167 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 81; y: 166 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4096 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 165 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4112 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 83; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4128 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Frame { - msec: 4144 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Frame { - msec: 4160 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Frame { - msec: 4176 - hash: "ed7b3d93d690df73be5cbee8c41a1931" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 83; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4192 - hash: "5b3505be865f704640e81cea092d35ba" - } - Frame { - msec: 4208 - hash: "5b3505be865f704640e81cea092d35ba" - } - Frame { - msec: 4224 - hash: "5b3505be865f704640e81cea092d35ba" - } - Frame { - msec: 4240 - hash: "5b3505be865f704640e81cea092d35ba" - } - Frame { - msec: 4256 - hash: "5b3505be865f704640e81cea092d35ba" - } - Frame { - msec: 4272 - hash: "5b3505be865f704640e81cea092d35ba" - } - Frame { - msec: 4288 - hash: "5b3505be865f704640e81cea092d35ba" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 83; y: 164 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4304 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4320 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4336 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4352 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4368 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4384 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4400 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4416 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4432 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4448 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4464 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 85; y: 158 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 85; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4480 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 86; y: 154 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 86; y: 152 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4496 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 87; y: 150 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 89; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4512 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 93; y: 138 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 99; y: 134 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4528 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 101; y: 128 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4544 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 109; y: 114 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 113; y: 108 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4560 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 114; y: 106 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 114; y: 105 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4576 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 115; y: 104 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 115; y: 102 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4592 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 115; y: 100 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 116; y: 98 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4608 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 120; y: 92 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 122; y: 86 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4624 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 126; y: 76 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 130; y: 66 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4640 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 132; y: 56 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 134; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4656 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 136; y: 38 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 138; y: 30 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4672 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 140; y: 22 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 141; y: 20 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4688 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 143; y: 14 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 144; y: 12 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4704 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 144; y: 11 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 144; y: 9 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4720 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 144; y: 7 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 144; y: 6 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4736 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 143; y: 4 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 143; y: 2 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4752 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 143; y: 1 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4768 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4784 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4800 - image: "windowObjects.4.png" - } - Frame { - msec: 4816 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4832 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4848 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4864 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4880 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4896 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4912 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4928 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4944 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4960 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4976 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 4992 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5008 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5024 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5040 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5056 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5072 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5088 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5104 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5120 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5136 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5152 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5168 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5184 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5200 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5216 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5232 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5248 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5264 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5280 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5296 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5312 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5328 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5344 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5360 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5376 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5392 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5408 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5424 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5440 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5456 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5472 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5488 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5504 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5520 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5536 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5552 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5568 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } - Frame { - msec: 5584 - hash: "cb5a42e7ab70e05a8bbecabb587f9e5e" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml deleted file mode 100644 index 34d1116..0000000 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/fontFamily.qml +++ /dev/null @@ -1,395 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 32 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 48 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 64 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 80 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 96 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 112 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 128 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 144 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 160 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 176 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 192 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 208 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 224 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 240 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 256 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 272 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 288 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 304 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 320 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 336 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 352 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 368 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 384 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 400 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 416 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 432 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 448 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 464 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 480 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 496 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 512 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 528 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 544 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 560 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 576 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 592 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 608 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 624 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 640 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 656 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 672 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 688 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 196; y: 25 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 194; y: 19 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 190; y: 13 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 704 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 720 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 736 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 752 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 768 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 784 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 800 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 816 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 832 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 848 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 864 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 880 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 896 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 912 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 928 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 944 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 960 - image: "fontFamily.0.png" - } - Frame { - msec: 976 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 992 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1008 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1024 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1040 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1056 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1072 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1088 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1104 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1120 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1136 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1152 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1168 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1184 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1200 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1216 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1232 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1248 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1264 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1280 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1296 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1312 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1328 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1344 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1360 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1376 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1392 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1408 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1424 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1440 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } - Frame { - msec: 1456 - hash: "5d66fdee6a0a96bb24e89244f02eacc9" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml deleted file mode 100644 index efe3875..0000000 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/fontSize.qml +++ /dev/null @@ -1,339 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 32 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 48 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 64 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 80 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 96 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 112 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 128 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 144 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 160 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 176 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 192 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 208 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 224 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 240 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 256 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 272 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 288 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 304 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 320 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 336 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 352 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 368 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 384 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 400 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 416 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 432 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 448 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 464 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 480 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 496 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 512 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 528 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 544 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 560 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 576 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 592 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 608 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 624 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 640 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 656 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 672 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 688 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 704 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 720 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 736 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 752 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 768 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 784 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 800 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 816 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 832 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 848 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 864 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 880 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 896 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 912 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 928 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 944 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 960 - image: "fontSize.0.png" - } - Frame { - msec: 976 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 992 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1008 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1024 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1040 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1056 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1072 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1088 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1104 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1120 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1136 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1152 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1168 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1184 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1200 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1216 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1232 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1248 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1264 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1280 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1296 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1312 - hash: "962e77f522956d38f3b1b890df749f0a" - } - Frame { - msec: 1328 - hash: "962e77f522956d38f3b1b890df749f0a" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml deleted file mode 100644 index 624a16b..0000000 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/noAutoLoadImages.qml +++ /dev/null @@ -1,595 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 32 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 48 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 64 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 80 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 96 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 112 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 128 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 144 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 160 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 176 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 192 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 208 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 224 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 240 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 256 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 272 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 288 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 304 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 320 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 336 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 352 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 368 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 384 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 400 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 416 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 432 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 448 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 464 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 480 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 496 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 512 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 528 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 544 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 560 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 576 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 592 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 608 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 624 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 640 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 656 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 672 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 688 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 704 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 720 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 736 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 752 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 768 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 784 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 800 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 816 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 832 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 848 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 864 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 880 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 896 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 912 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 928 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 944 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 960 - image: "noAutoLoadImages.0.png" - } - Frame { - msec: 976 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 992 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1008 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1024 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1040 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1056 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1072 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1088 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1104 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1120 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1136 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1152 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1168 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1184 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1200 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1216 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1232 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1248 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1264 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1280 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1296 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1312 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1328 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1344 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1360 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1376 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1392 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1408 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1424 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1440 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1456 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1472 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1488 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1504 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1520 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1536 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1552 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1568 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1584 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1600 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1616 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1632 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1648 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1664 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1680 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1696 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1712 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1728 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1744 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1760 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1776 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1792 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1808 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1824 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1840 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1856 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1872 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1888 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1904 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1920 - image: "noAutoLoadImages.1.png" - } - Frame { - msec: 1936 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1952 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1968 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 1984 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2000 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2016 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2032 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2048 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2064 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2080 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2096 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2112 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2128 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2144 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2160 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2176 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2192 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2208 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2224 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2240 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2256 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2272 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2288 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2304 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2320 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2336 - hash: "5146cfbeefc51268eca7717d84775750" - } - Frame { - msec: 2352 - hash: "5146cfbeefc51268eca7717d84775750" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml b/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml deleted file mode 100644 index 414d64f..0000000 --- a/tests/auto/declarative/qmlvisual/webview/settings/data/setFontFamily.qml +++ /dev/null @@ -1,351 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 32 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 48 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 64 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 80 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 96 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 112 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 128 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 144 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 160 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 176 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 192 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 208 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 224 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 240 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 256 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 272 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 288 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 304 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 320 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 336 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 352 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 368 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 384 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 400 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 416 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 432 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 448 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 464 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 480 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 496 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 512 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 528 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 544 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 560 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 576 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 592 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 608 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 624 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 640 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 656 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 672 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 688 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 704 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 720 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 736 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 752 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 768 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 784 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 800 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 816 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 832 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 848 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 864 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 880 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 896 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 912 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 928 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 944 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 960 - image: "setFontFamily.0.png" - } - Frame { - msec: 976 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 992 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1008 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1024 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1040 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1056 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1072 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1088 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1104 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1120 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1136 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1152 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1168 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1184 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1200 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1216 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1232 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1248 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1264 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1280 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1296 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1312 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1328 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1344 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1360 - hash: "7ef8bb83c146898bd75de8951a932b58" - } - Frame { - msec: 1376 - hash: "7ef8bb83c146898bd75de8951a932b58" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml deleted file mode 100644 index 2e60b7f..0000000 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/pageWidth.qml +++ /dev/null @@ -1,227 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 32 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 48 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 64 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 80 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 96 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 112 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 128 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 144 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 160 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 176 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 192 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 208 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 224 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 240 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 256 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 272 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 288 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 304 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 320 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 336 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 352 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 368 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 384 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 400 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 416 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 432 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 448 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 464 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 480 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 496 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 512 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 528 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 544 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 560 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 576 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 592 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 608 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 624 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 640 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 656 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 672 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 688 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 704 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 720 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 736 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 752 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 768 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 784 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 800 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 816 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 832 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 848 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 864 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } - Frame { - msec: 880 - hash: "9a2554b1b322ea71115fa91d0100d2ff" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml deleted file mode 100644 index 464e009..0000000 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/renderControl.qml +++ /dev/null @@ -1,415 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "4f999826cd5ebe4f58bfd255e1c22be0" - } - Frame { - msec: 32 - hash: "3aa9bd1bd75219f82578689ac6d81c7e" - } - Frame { - msec: 48 - hash: "19d5f48f1c73d52483be96c887d3fd76" - } - Frame { - msec: 64 - hash: "9b85eef4e0746cc43aaefd442efdd824" - } - Frame { - msec: 80 - hash: "fca0034fb720e40198ede95a0ab0fadb" - } - Frame { - msec: 96 - hash: "9f63ddbd927a4b08242f3410a9ed7283" - } - Frame { - msec: 112 - hash: "4f5804c3c3ee195470a462293307cfd5" - } - Frame { - msec: 128 - hash: "d0434f08a8097b97b76c1194317a38ba" - } - Frame { - msec: 144 - hash: "921880d300e56f9605923a13fcd8b967" - } - Frame { - msec: 160 - hash: "f5dc87abf36332c68fd4450a6236dcb4" - } - Frame { - msec: 176 - hash: "c54f220cd5768afa1c12579007e17eff" - } - Frame { - msec: 192 - hash: "e1c70c3896d5a937296f205b09991b31" - } - Frame { - msec: 208 - hash: "d135f70f761add1358062a0386c62d18" - } - Frame { - msec: 224 - hash: "53cb2ed2b65e77cf0cd70530f32854ad" - } - Frame { - msec: 240 - hash: "2ff4feb61d958a800b38b282c3400293" - } - Frame { - msec: 256 - hash: "59f5585ec472efa29c5eba8b972ab3bd" - } - Frame { - msec: 272 - hash: "3aef5e1ff6da15e0e9f2e620dbabbab2" - } - Frame { - msec: 288 - hash: "2931299f667752efe9fca727534385e1" - } - Frame { - msec: 304 - hash: "2ed90e61c41b994ccea924191b66fc71" - } - Frame { - msec: 320 - hash: "1424c634067c896973c2c10793957933" - } - Frame { - msec: 336 - hash: "c4d30d511053a7caeefdae753236cf5b" - } - Frame { - msec: 352 - hash: "32300e07e34e8f316770c790a5ef9f6d" - } - Frame { - msec: 368 - hash: "95312dc2a4d88a48605fea170712354d" - } - Frame { - msec: 384 - hash: "3d146357d1532640cefb64fbae75bc0d" - } - Frame { - msec: 400 - hash: "5b78740511a456a3647d8392b2008f7f" - } - Frame { - msec: 416 - hash: "dddb065cefa27a862d108429c9984191" - } - Frame { - msec: 432 - hash: "0857067a0ee381e0f462ef8aceb0b696" - } - Frame { - msec: 448 - hash: "1f5e7e064cc62ff2e0585c98875351df" - } - Frame { - msec: 464 - hash: "c7f6bb852bdb2b99cbb5a8ca34f1585a" - } - Frame { - msec: 480 - hash: "f2284dea5812f167cae08c687fc1a3e9" - } - Frame { - msec: 496 - hash: "deec54bc32c46921e5032bce7daa1dad" - } - Frame { - msec: 512 - hash: "1271d3704de17bfe463c76fd73c3132b" - } - Frame { - msec: 528 - hash: "0568b0ecd47cd1c34b9de477e68e5751" - } - Frame { - msec: 544 - hash: "f070dd88e42697a9e43573f9f41b3540" - } - Frame { - msec: 560 - hash: "f5ced2827b06ea514f05866f1e4099f0" - } - Frame { - msec: 576 - hash: "59f5585ec472efa29c5eba8b972ab3bd" - } - Frame { - msec: 592 - hash: "2ff4feb61d958a800b38b282c3400293" - } - Frame { - msec: 608 - hash: "53cb2ed2b65e77cf0cd70530f32854ad" - } - Frame { - msec: 624 - hash: "d135f70f761add1358062a0386c62d18" - } - Frame { - msec: 640 - hash: "e1c70c3896d5a937296f205b09991b31" - } - Frame { - msec: 656 - hash: "c54f220cd5768afa1c12579007e17eff" - } - Frame { - msec: 672 - hash: "f5dc87abf36332c68fd4450a6236dcb4" - } - Frame { - msec: 688 - hash: "921880d300e56f9605923a13fcd8b967" - } - Frame { - msec: 704 - hash: "d0434f08a8097b97b76c1194317a38ba" - } - Frame { - msec: 720 - hash: "4f5804c3c3ee195470a462293307cfd5" - } - Frame { - msec: 736 - hash: "9f63ddbd927a4b08242f3410a9ed7283" - } - Frame { - msec: 752 - hash: "fca0034fb720e40198ede95a0ab0fadb" - } - Frame { - msec: 768 - hash: "9b85eef4e0746cc43aaefd442efdd824" - } - Frame { - msec: 784 - hash: "19d5f48f1c73d52483be96c887d3fd76" - } - Frame { - msec: 800 - hash: "3aa9bd1bd75219f82578689ac6d81c7e" - } - Frame { - msec: 816 - hash: "4f999826cd5ebe4f58bfd255e1c22be0" - } - Frame { - msec: 832 - hash: "3aa9bd1bd75219f82578689ac6d81c7e" - } - Frame { - msec: 848 - hash: "19d5f48f1c73d52483be96c887d3fd76" - } - Frame { - msec: 864 - hash: "9b85eef4e0746cc43aaefd442efdd824" - } - Frame { - msec: 880 - hash: "fca0034fb720e40198ede95a0ab0fadb" - } - Frame { - msec: 896 - hash: "9f63ddbd927a4b08242f3410a9ed7283" - } - Frame { - msec: 912 - hash: "4f5804c3c3ee195470a462293307cfd5" - } - Frame { - msec: 928 - hash: "d0434f08a8097b97b76c1194317a38ba" - } - Frame { - msec: 944 - hash: "921880d300e56f9605923a13fcd8b967" - } - Frame { - msec: 960 - image: "renderControl.0.png" - } - Frame { - msec: 976 - hash: "c54f220cd5768afa1c12579007e17eff" - } - Frame { - msec: 992 - hash: "e1c70c3896d5a937296f205b09991b31" - } - Frame { - msec: 1008 - hash: "d135f70f761add1358062a0386c62d18" - } - Frame { - msec: 1024 - hash: "53cb2ed2b65e77cf0cd70530f32854ad" - } - Frame { - msec: 1040 - hash: "2ff4feb61d958a800b38b282c3400293" - } - Frame { - msec: 1056 - hash: "59f5585ec472efa29c5eba8b972ab3bd" - } - Frame { - msec: 1072 - hash: "3aef5e1ff6da15e0e9f2e620dbabbab2" - } - Frame { - msec: 1088 - hash: "2931299f667752efe9fca727534385e1" - } - Frame { - msec: 1104 - hash: "2ed90e61c41b994ccea924191b66fc71" - } - Frame { - msec: 1120 - hash: "1424c634067c896973c2c10793957933" - } - Frame { - msec: 1136 - hash: "c4d30d511053a7caeefdae753236cf5b" - } - Frame { - msec: 1152 - hash: "32300e07e34e8f316770c790a5ef9f6d" - } - Frame { - msec: 1168 - hash: "95312dc2a4d88a48605fea170712354d" - } - Frame { - msec: 1184 - hash: "3d146357d1532640cefb64fbae75bc0d" - } - Frame { - msec: 1200 - hash: "5b78740511a456a3647d8392b2008f7f" - } - Frame { - msec: 1216 - hash: "dddb065cefa27a862d108429c9984191" - } - Frame { - msec: 1232 - hash: "0857067a0ee381e0f462ef8aceb0b696" - } - Frame { - msec: 1248 - hash: "1f5e7e064cc62ff2e0585c98875351df" - } - Frame { - msec: 1264 - hash: "c7f6bb852bdb2b99cbb5a8ca34f1585a" - } - Frame { - msec: 1280 - hash: "f2284dea5812f167cae08c687fc1a3e9" - } - Frame { - msec: 1296 - hash: "deec54bc32c46921e5032bce7daa1dad" - } - Frame { - msec: 1312 - hash: "1271d3704de17bfe463c76fd73c3132b" - } - Frame { - msec: 1328 - hash: "0568b0ecd47cd1c34b9de477e68e5751" - } - Frame { - msec: 1344 - hash: "f070dd88e42697a9e43573f9f41b3540" - } - Frame { - msec: 1360 - hash: "f5ced2827b06ea514f05866f1e4099f0" - } - Frame { - msec: 1376 - hash: "59f5585ec472efa29c5eba8b972ab3bd" - } - Frame { - msec: 1392 - hash: "2ff4feb61d958a800b38b282c3400293" - } - Frame { - msec: 1408 - hash: "53cb2ed2b65e77cf0cd70530f32854ad" - } - Frame { - msec: 1424 - hash: "d135f70f761add1358062a0386c62d18" - } - Frame { - msec: 1440 - hash: "e1c70c3896d5a937296f205b09991b31" - } - Frame { - msec: 1456 - hash: "c54f220cd5768afa1c12579007e17eff" - } - Frame { - msec: 1472 - hash: "f5dc87abf36332c68fd4450a6236dcb4" - } - Frame { - msec: 1488 - hash: "921880d300e56f9605923a13fcd8b967" - } - Frame { - msec: 1504 - hash: "d0434f08a8097b97b76c1194317a38ba" - } - Frame { - msec: 1520 - hash: "4f5804c3c3ee195470a462293307cfd5" - } - Frame { - msec: 1536 - hash: "9f63ddbd927a4b08242f3410a9ed7283" - } - Frame { - msec: 1552 - hash: "fca0034fb720e40198ede95a0ab0fadb" - } - Frame { - msec: 1568 - hash: "9b85eef4e0746cc43aaefd442efdd824" - } - Frame { - msec: 1584 - hash: "19d5f48f1c73d52483be96c887d3fd76" - } - Frame { - msec: 1600 - hash: "3aa9bd1bd75219f82578689ac6d81c7e" - } - Frame { - msec: 1616 - hash: "4f999826cd5ebe4f58bfd255e1c22be0" - } - Frame { - msec: 1632 - hash: "3aa9bd1bd75219f82578689ac6d81c7e" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml deleted file mode 100644 index edf8040..0000000 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/resolution.qml +++ /dev/null @@ -1,1319 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "ac1d9c1cc13813b5e94c692a209a4e36" - } - Frame { - msec: 32 - hash: "1f189a436cf74ae83a03c3bb63c24ec2" - } - Frame { - msec: 48 - hash: "369f761053d5910e00672aa866f698ba" - } - Frame { - msec: 64 - hash: "30a191ae899121ae22d10acee6593415" - } - Frame { - msec: 80 - hash: "7af041898748bb5950643b057ca59eea" - } - Frame { - msec: 96 - hash: "e0a2ed91e78ff9a994deb9649a8afc16" - } - Frame { - msec: 112 - hash: "649ad1a3fb57fb088e4e5cfd749bf2e5" - } - Frame { - msec: 128 - hash: "9053a92e343ebb79bd2831f5ab94a1b5" - } - Frame { - msec: 144 - hash: "dc78b09e27bbc0a2cfec83436eef4446" - } - Frame { - msec: 160 - hash: "2aaa3749f93734dd203e1fea91a9f24a" - } - Frame { - msec: 176 - hash: "8df8dd33eada434231332b81e03430ce" - } - Frame { - msec: 192 - hash: "b5b1beb4dd4720eaa8b888fbef1ba875" - } - Frame { - msec: 208 - hash: "e531d33ef14b58ad843a6be6d7cb0961" - } - Frame { - msec: 224 - hash: "011c0bcca7717b08bc53738718203f7e" - } - Frame { - msec: 240 - hash: "412a630348aa44d56f36f04982035e36" - } - Frame { - msec: 256 - hash: "45528cdc62622b6d01e44466cd85bd38" - } - Frame { - msec: 272 - hash: "0901c99f959d6c10a0b6ea46a282d8fd" - } - Frame { - msec: 288 - hash: "3f200fca4815d555f22912d9fcdc20ee" - } - Frame { - msec: 304 - hash: "5e3c58e2f3a57f4ea48f4315d37ed813" - } - Frame { - msec: 320 - hash: "e8d98ec2d13ef4324feba11be95d0735" - } - Frame { - msec: 336 - hash: "4f3b79b341b63499a20f1e1e2cd979f9" - } - Frame { - msec: 352 - hash: "5ddbc3bc10292bec41531e83c0921c59" - } - Frame { - msec: 368 - hash: "9bc9801e83267689cd2750226f2b08ce" - } - Frame { - msec: 384 - hash: "f87195f2393914a0bbed9a454de01ff5" - } - Frame { - msec: 400 - hash: "4e0fd7f45e53a8d44c416eb9235ec877" - } - Frame { - msec: 416 - hash: "a579d6324fb4bf9ac5ceaba2aa708764" - } - Frame { - msec: 432 - hash: "b9f3f08168fb55ba01e56e670db565de" - } - Frame { - msec: 448 - hash: "cbd63ec868578e295a83170f42b23678" - } - Frame { - msec: 464 - hash: "2ed9d0e09b61dee8b2703e580007d7a5" - } - Frame { - msec: 480 - hash: "92fa2d9ef05140eb9d0fcf78b55f202e" - } - Frame { - msec: 496 - hash: "9a3f9dc04a900020f0e488309d7b4757" - } - Frame { - msec: 512 - hash: "93b4876c3e185ff4875a7447b0bf4f0f" - } - Frame { - msec: 528 - hash: "41b40e36f77d04e62f72ad34aa50709a" - } - Frame { - msec: 544 - hash: "2ea69aeb32fee61b61aa9c4efb2834bf" - } - Frame { - msec: 560 - hash: "0971ac1e05ea2ba387c78d4d103f5ea1" - } - Frame { - msec: 576 - hash: "98e46dff678f293fd6a4e9313ab3aec7" - } - Frame { - msec: 592 - hash: "82b94393071d6c32dd8028e1ee69e7fb" - } - Frame { - msec: 608 - hash: "240df67aa72a24546eb6e043e0d3d205" - } - Frame { - msec: 624 - hash: "56c4113cc341c254ccab66f3bc313154" - } - Frame { - msec: 640 - hash: "20d758c1537ed1a9aff657414b50926c" - } - Frame { - msec: 656 - hash: "ae252d835a05e01c2a12ae820335049a" - } - Frame { - msec: 672 - hash: "4d53256fbb012e738ba3868e2482250d" - } - Frame { - msec: 688 - hash: "261a341cab38986fb2f53b8e430f04a3" - } - Frame { - msec: 704 - hash: "1030f795d310f742ba491a2a90ff52d8" - } - Frame { - msec: 720 - hash: "59d24ebfedd2a87bdbd755d06c4361d2" - } - Frame { - msec: 736 - hash: "a6eaa480b3f93d33ae23bb36b7691b92" - } - Frame { - msec: 752 - hash: "cb6cf1e6e89da3fcbad323f744aef18d" - } - Frame { - msec: 768 - hash: "33a4f07cf7f5d16f006541c61ae2e4ee" - } - Frame { - msec: 784 - hash: "6e857b106486ea0aaa5321d4a7a07eae" - } - Frame { - msec: 800 - hash: "0f80edaf3eecf7a8c015d3fcecc0a494" - } - Frame { - msec: 816 - hash: "24b45d00d70904694c30ebd422c739ce" - } - Frame { - msec: 832 - hash: "c0ca66fefb19294852b9be0c4ba36481" - } - Frame { - msec: 848 - hash: "047846d243e7613193a8ddd526c4268e" - } - Frame { - msec: 864 - hash: "ca85f90e450ccda6b76e6a29a3187a63" - } - Frame { - msec: 880 - hash: "fcd803f5640d054190c2ddc9a6406bb9" - } - Frame { - msec: 896 - hash: "f81152b8a464bfa8343f52efcb0c8b8c" - } - Frame { - msec: 912 - hash: "e86be73d83699584dca986dfdb030b36" - } - Frame { - msec: 928 - hash: "d9798e4ebaf72c35b19a56b336d2ea93" - } - Frame { - msec: 944 - hash: "460f13d8e05b529c0e4fba39b1449ff1" - } - Frame { - msec: 960 - image: "resolution.0.png" - } - Frame { - msec: 976 - hash: "8b2f13580c6de9ec231809330d2d0362" - } - Frame { - msec: 992 - hash: "94a2cc520340573557e6a310f2ea125e" - } - Frame { - msec: 1008 - hash: "a8df78ab2e800349ec887ea6b1f5dcb8" - } - Frame { - msec: 1024 - hash: "0f3a56dbe26d453847ed4847c0e81d1a" - } - Frame { - msec: 1040 - hash: "96c89325862a982235b4b75922ec4669" - } - Frame { - msec: 1056 - hash: "ead6352a4ca47da59422e8d6a5844aa4" - } - Frame { - msec: 1072 - hash: "b50a6b14f15882e2c1ae6e3babeecdf8" - } - Frame { - msec: 1088 - hash: "2f32245c3388b86194e8183a290e99b8" - } - Frame { - msec: 1104 - hash: "2b54d49d30ccbf11ccb5ba8d62ba7d83" - } - Frame { - msec: 1120 - hash: "495b25d87cb6d1d4bdea4d5ec62c698e" - } - Frame { - msec: 1136 - hash: "3d45b061939783b6359fa4cdb908ecc0" - } - Frame { - msec: 1152 - hash: "e9e601c2a65a09b6354fff2c162106d6" - } - Frame { - msec: 1168 - hash: "8cfba8a724e85403b573caf7bbac9d83" - } - Frame { - msec: 1184 - hash: "5910765354645b724e14681cbdea227e" - } - Frame { - msec: 1200 - hash: "4358af7f2ccfc0919614351bfd5a7405" - } - Frame { - msec: 1216 - hash: "032e064336b458a6de03fdc98684cc34" - } - Frame { - msec: 1232 - hash: "c81d87bf83ee7e834a4b15dd103f7082" - } - Frame { - msec: 1248 - hash: "9d4416b55ed3b9e45a2314e9be5a5f2d" - } - Frame { - msec: 1264 - hash: "5b96da1a52a0413f9e8edbc9291a2502" - } - Frame { - msec: 1280 - hash: "aaa4008281ebc60b15616c818816e195" - } - Frame { - msec: 1296 - hash: "81ebf882aeb89648300dfc2e8e2cf11b" - } - Frame { - msec: 1312 - hash: "4e686e6cee12902f92e0ece915386fb3" - } - Frame { - msec: 1328 - hash: "6ff8d9bd6ec4dce414cdc7330646156e" - } - Frame { - msec: 1344 - hash: "dac6334e8b221527ef74b4f93eeef7c3" - } - Frame { - msec: 1360 - hash: "e58dbf419d1831e001e802600803aaa5" - } - Frame { - msec: 1376 - hash: "e8685f9b12c9ccb9d0e471946f1f6f9c" - } - Frame { - msec: 1392 - hash: "0936715ff8d38c2c813ebef0683a3246" - } - Frame { - msec: 1408 - hash: "37ad0a5532af8b083a7d4c4b044075ca" - } - Frame { - msec: 1424 - hash: "52ae25414d353d994cba36918644949a" - } - Frame { - msec: 1440 - hash: "07719485f9a7d0012eb0f3f211f0f21b" - } - Frame { - msec: 1456 - hash: "2d1a4f2c8d4a8d6316a31a81a2d20c61" - } - Frame { - msec: 1472 - hash: "3b279fb9e7b3efe05becc1651ba59493" - } - Frame { - msec: 1488 - hash: "4b9c126dcdf499f9de4e09d4f6ab86bf" - } - Frame { - msec: 1504 - hash: "6a1b8d8ea46949cb65e8f4155ab94819" - } - Frame { - msec: 1520 - hash: "6dbd2106b91ffbbb8a845e6cddbd47d7" - } - Frame { - msec: 1536 - hash: "8244eda92302f2b5cff01f05d438bf20" - } - Frame { - msec: 1552 - hash: "f939bd80ae865e365e554a532ade38f5" - } - Frame { - msec: 1568 - hash: "92d135616eee6737333b3d86d0aa5956" - } - Frame { - msec: 1584 - hash: "ca75854d6e5a77c8e609d65971b5671a" - } - Frame { - msec: 1600 - hash: "b0a113800cd05768b57bac6b9a338b1d" - } - Frame { - msec: 1616 - hash: "7af1a2aa6a201e36c3a969be4330af04" - } - Frame { - msec: 1632 - hash: "e54e8a2cfb0e6678b2a7cc64b8ae08bc" - } - Frame { - msec: 1648 - hash: "5d212c7efd9cf7d3eb5219b0bbe766d7" - } - Frame { - msec: 1664 - hash: "f4f2c95380c0f76c9e89820cdbeb5b31" - } - Frame { - msec: 1680 - hash: "b8eefbf5ade1a6b9eef9608f66a46474" - } - Frame { - msec: 1696 - hash: "d699ace9babbb152aad2fa852114c099" - } - Frame { - msec: 1712 - hash: "ceb3dea0d2b93cc5882a2b38ab3d1b95" - } - Frame { - msec: 1728 - hash: "08175810bfb80e1c5816b0d0aebbac4a" - } - Frame { - msec: 1744 - hash: "86abce93f50e7e7ebbd90690cfb20dd2" - } - Frame { - msec: 1760 - hash: "2918979f2682bd32beb5eaf7ecb3e463" - } - Frame { - msec: 1776 - hash: "b165ab96b0d51d41578bf99cbf7f6d02" - } - Frame { - msec: 1792 - hash: "d56cfdb2c65372cb36aeb13fd9c73deb" - } - Frame { - msec: 1808 - hash: "c53f0e4dc8204e5892ed4f367a6bade3" - } - Frame { - msec: 1824 - hash: "b3ae62e13149160f3695ed5c116411aa" - } - Frame { - msec: 1840 - hash: "057e4a0428ea2ff9893becd40e6d2977" - } - Frame { - msec: 1856 - hash: "10c050131093cc0d3f4b80c44eb1218b" - } - Frame { - msec: 1872 - hash: "17ce5a6dace37f4eb316f37ea26a8a2c" - } - Frame { - msec: 1888 - hash: "6e00c7e74bfaed5cf06aba54c8b73e57" - } - Frame { - msec: 1904 - hash: "5a03b1b698ca28d2afd9c67aef3bc2e9" - } - Frame { - msec: 1920 - image: "resolution.1.png" - } - Frame { - msec: 1936 - hash: "0fab102a33521e8893afdb6a11a3c5c9" - } - Frame { - msec: 1952 - hash: "232e8f1b060ef55e37a372bec4435d11" - } - Frame { - msec: 1968 - hash: "2107724eac0d1b8735060876f80d303a" - } - Frame { - msec: 1984 - hash: "cf5d12d2707975ad364750d5ba787944" - } - Frame { - msec: 2000 - hash: "2457c88828c2cb39feb1d34556077139" - } - Frame { - msec: 2016 - hash: "5f08d6dab8199b3f0f57d32cf2da4d67" - } - Frame { - msec: 2032 - hash: "2457c88828c2cb39feb1d34556077139" - } - Frame { - msec: 2048 - hash: "cf5d12d2707975ad364750d5ba787944" - } - Frame { - msec: 2064 - hash: "2107724eac0d1b8735060876f80d303a" - } - Frame { - msec: 2080 - hash: "232e8f1b060ef55e37a372bec4435d11" - } - Frame { - msec: 2096 - hash: "0a93c515cd328978ebd8103539a2fd63" - } - Frame { - msec: 2112 - hash: "63d6c7beac12e3bd83f9ef58c233c7d2" - } - Frame { - msec: 2128 - hash: "5a03b1b698ca28d2afd9c67aef3bc2e9" - } - Frame { - msec: 2144 - hash: "6e00c7e74bfaed5cf06aba54c8b73e57" - } - Frame { - msec: 2160 - hash: "17ce5a6dace37f4eb316f37ea26a8a2c" - } - Frame { - msec: 2176 - hash: "10c050131093cc0d3f4b80c44eb1218b" - } - Frame { - msec: 2192 - hash: "057e4a0428ea2ff9893becd40e6d2977" - } - Frame { - msec: 2208 - hash: "b3ae62e13149160f3695ed5c116411aa" - } - Frame { - msec: 2224 - hash: "c53f0e4dc8204e5892ed4f367a6bade3" - } - Frame { - msec: 2240 - hash: "d56cfdb2c65372cb36aeb13fd9c73deb" - } - Frame { - msec: 2256 - hash: "b165ab96b0d51d41578bf99cbf7f6d02" - } - Frame { - msec: 2272 - hash: "2918979f2682bd32beb5eaf7ecb3e463" - } - Frame { - msec: 2288 - hash: "86abce93f50e7e7ebbd90690cfb20dd2" - } - Frame { - msec: 2304 - hash: "08175810bfb80e1c5816b0d0aebbac4a" - } - Frame { - msec: 2320 - hash: "ceb3dea0d2b93cc5882a2b38ab3d1b95" - } - Frame { - msec: 2336 - hash: "d699ace9babbb152aad2fa852114c099" - } - Frame { - msec: 2352 - hash: "b8eefbf5ade1a6b9eef9608f66a46474" - } - Frame { - msec: 2368 - hash: "f4f2c95380c0f76c9e89820cdbeb5b31" - } - Frame { - msec: 2384 - hash: "5d212c7efd9cf7d3eb5219b0bbe766d7" - } - Frame { - msec: 2400 - hash: "e54e8a2cfb0e6678b2a7cc64b8ae08bc" - } - Frame { - msec: 2416 - hash: "d9408487f747ffb8eff5e1da92207285" - } - Frame { - msec: 2432 - hash: "e6b3fa1829535ac90d1548f45aadb9be" - } - Frame { - msec: 2448 - hash: "ca75854d6e5a77c8e609d65971b5671a" - } - Frame { - msec: 2464 - hash: "92d135616eee6737333b3d86d0aa5956" - } - Frame { - msec: 2480 - hash: "f939bd80ae865e365e554a532ade38f5" - } - Frame { - msec: 2496 - hash: "8244eda92302f2b5cff01f05d438bf20" - } - Frame { - msec: 2512 - hash: "6dbd2106b91ffbbb8a845e6cddbd47d7" - } - Frame { - msec: 2528 - hash: "6a1b8d8ea46949cb65e8f4155ab94819" - } - Frame { - msec: 2544 - hash: "4b9c126dcdf499f9de4e09d4f6ab86bf" - } - Frame { - msec: 2560 - hash: "3b279fb9e7b3efe05becc1651ba59493" - } - Frame { - msec: 2576 - hash: "bb40b884b56defb61ad86757fd51b9e6" - } - Frame { - msec: 2592 - hash: "07719485f9a7d0012eb0f3f211f0f21b" - } - Frame { - msec: 2608 - hash: "52ae25414d353d994cba36918644949a" - } - Frame { - msec: 2624 - hash: "37ad0a5532af8b083a7d4c4b044075ca" - } - Frame { - msec: 2640 - hash: "0936715ff8d38c2c813ebef0683a3246" - } - Frame { - msec: 2656 - hash: "e8685f9b12c9ccb9d0e471946f1f6f9c" - } - Frame { - msec: 2672 - hash: "e58dbf419d1831e001e802600803aaa5" - } - Frame { - msec: 2688 - hash: "dac6334e8b221527ef74b4f93eeef7c3" - } - Frame { - msec: 2704 - hash: "6ff8d9bd6ec4dce414cdc7330646156e" - } - Frame { - msec: 2720 - hash: "4e686e6cee12902f92e0ece915386fb3" - } - Frame { - msec: 2736 - hash: "81ebf882aeb89648300dfc2e8e2cf11b" - } - Frame { - msec: 2752 - hash: "aaa4008281ebc60b15616c818816e195" - } - Frame { - msec: 2768 - hash: "5b96da1a52a0413f9e8edbc9291a2502" - } - Frame { - msec: 2784 - hash: "9d4416b55ed3b9e45a2314e9be5a5f2d" - } - Frame { - msec: 2800 - hash: "c81d87bf83ee7e834a4b15dd103f7082" - } - Frame { - msec: 2816 - hash: "9fdf30d57c49a6644377ba40140b1969" - } - Frame { - msec: 2832 - hash: "4358af7f2ccfc0919614351bfd5a7405" - } - Frame { - msec: 2848 - hash: "5910765354645b724e14681cbdea227e" - } - Frame { - msec: 2864 - hash: "8cfba8a724e85403b573caf7bbac9d83" - } - Frame { - msec: 2880 - image: "resolution.2.png" - } - Frame { - msec: 2896 - hash: "3d45b061939783b6359fa4cdb908ecc0" - } - Frame { - msec: 2912 - hash: "495b25d87cb6d1d4bdea4d5ec62c698e" - } - Frame { - msec: 2928 - hash: "2b54d49d30ccbf11ccb5ba8d62ba7d83" - } - Frame { - msec: 2944 - hash: "2f32245c3388b86194e8183a290e99b8" - } - Frame { - msec: 2960 - hash: "b50a6b14f15882e2c1ae6e3babeecdf8" - } - Frame { - msec: 2976 - hash: "ead6352a4ca47da59422e8d6a5844aa4" - } - Frame { - msec: 2992 - hash: "96c89325862a982235b4b75922ec4669" - } - Frame { - msec: 3008 - hash: "0f3a56dbe26d453847ed4847c0e81d1a" - } - Frame { - msec: 3024 - hash: "a8df78ab2e800349ec887ea6b1f5dcb8" - } - Frame { - msec: 3040 - hash: "94a2cc520340573557e6a310f2ea125e" - } - Frame { - msec: 3056 - hash: "8b2f13580c6de9ec231809330d2d0362" - } - Frame { - msec: 3072 - hash: "5f76ef4f6b8e703fd0822859cd9a1353" - } - Frame { - msec: 3088 - hash: "460f13d8e05b529c0e4fba39b1449ff1" - } - Frame { - msec: 3104 - hash: "d9798e4ebaf72c35b19a56b336d2ea93" - } - Frame { - msec: 3120 - hash: "e86be73d83699584dca986dfdb030b36" - } - Frame { - msec: 3136 - hash: "f81152b8a464bfa8343f52efcb0c8b8c" - } - Frame { - msec: 3152 - hash: "fcd803f5640d054190c2ddc9a6406bb9" - } - Frame { - msec: 3168 - hash: "ca85f90e450ccda6b76e6a29a3187a63" - } - Frame { - msec: 3184 - hash: "047846d243e7613193a8ddd526c4268e" - } - Frame { - msec: 3200 - hash: "c0ca66fefb19294852b9be0c4ba36481" - } - Frame { - msec: 3216 - hash: "d4a075656790c4f2c50addcd2cc660b5" - } - Frame { - msec: 3232 - hash: "0f80edaf3eecf7a8c015d3fcecc0a494" - } - Frame { - msec: 3248 - hash: "6e857b106486ea0aaa5321d4a7a07eae" - } - Frame { - msec: 3264 - hash: "33a4f07cf7f5d16f006541c61ae2e4ee" - } - Frame { - msec: 3280 - hash: "cb6cf1e6e89da3fcbad323f744aef18d" - } - Frame { - msec: 3296 - hash: "a6eaa480b3f93d33ae23bb36b7691b92" - } - Frame { - msec: 3312 - hash: "59d24ebfedd2a87bdbd755d06c4361d2" - } - Frame { - msec: 3328 - hash: "1030f795d310f742ba491a2a90ff52d8" - } - Frame { - msec: 3344 - hash: "261a341cab38986fb2f53b8e430f04a3" - } - Frame { - msec: 3360 - hash: "4d53256fbb012e738ba3868e2482250d" - } - Frame { - msec: 3376 - hash: "ae252d835a05e01c2a12ae820335049a" - } - Frame { - msec: 3392 - hash: "20d758c1537ed1a9aff657414b50926c" - } - Frame { - msec: 3408 - hash: "56c4113cc341c254ccab66f3bc313154" - } - Frame { - msec: 3424 - hash: "240df67aa72a24546eb6e043e0d3d205" - } - Frame { - msec: 3440 - hash: "82b94393071d6c32dd8028e1ee69e7fb" - } - Frame { - msec: 3456 - hash: "98e46dff678f293fd6a4e9313ab3aec7" - } - Frame { - msec: 3472 - hash: "0971ac1e05ea2ba387c78d4d103f5ea1" - } - Frame { - msec: 3488 - hash: "2ea69aeb32fee61b61aa9c4efb2834bf" - } - Frame { - msec: 3504 - hash: "41b40e36f77d04e62f72ad34aa50709a" - } - Frame { - msec: 3520 - hash: "93b4876c3e185ff4875a7447b0bf4f0f" - } - Frame { - msec: 3536 - hash: "9a3f9dc04a900020f0e488309d7b4757" - } - Frame { - msec: 3552 - hash: "92fa2d9ef05140eb9d0fcf78b55f202e" - } - Frame { - msec: 3568 - hash: "2ed9d0e09b61dee8b2703e580007d7a5" - } - Frame { - msec: 3584 - hash: "cbd63ec868578e295a83170f42b23678" - } - Frame { - msec: 3600 - hash: "b9f3f08168fb55ba01e56e670db565de" - } - Frame { - msec: 3616 - hash: "a579d6324fb4bf9ac5ceaba2aa708764" - } - Frame { - msec: 3632 - hash: "4e0fd7f45e53a8d44c416eb9235ec877" - } - Frame { - msec: 3648 - hash: "f87195f2393914a0bbed9a454de01ff5" - } - Frame { - msec: 3664 - hash: "9bc9801e83267689cd2750226f2b08ce" - } - Frame { - msec: 3680 - hash: "5ddbc3bc10292bec41531e83c0921c59" - } - Frame { - msec: 3696 - hash: "4f3b79b341b63499a20f1e1e2cd979f9" - } - Frame { - msec: 3712 - hash: "e8d98ec2d13ef4324feba11be95d0735" - } - Frame { - msec: 3728 - hash: "5e3c58e2f3a57f4ea48f4315d37ed813" - } - Frame { - msec: 3744 - hash: "3f200fca4815d555f22912d9fcdc20ee" - } - Frame { - msec: 3760 - hash: "0901c99f959d6c10a0b6ea46a282d8fd" - } - Frame { - msec: 3776 - hash: "a186b8e984c999e8609472a7a5fa0610" - } - Frame { - msec: 3792 - hash: "412a630348aa44d56f36f04982035e36" - } - Frame { - msec: 3808 - hash: "011c0bcca7717b08bc53738718203f7e" - } - Frame { - msec: 3824 - hash: "e531d33ef14b58ad843a6be6d7cb0961" - } - Frame { - msec: 3840 - image: "resolution.3.png" - } - Frame { - msec: 3856 - hash: "8df8dd33eada434231332b81e03430ce" - } - Frame { - msec: 3872 - hash: "2aaa3749f93734dd203e1fea91a9f24a" - } - Frame { - msec: 3888 - hash: "dc78b09e27bbc0a2cfec83436eef4446" - } - Frame { - msec: 3904 - hash: "9053a92e343ebb79bd2831f5ab94a1b5" - } - Frame { - msec: 3920 - hash: "649ad1a3fb57fb088e4e5cfd749bf2e5" - } - Frame { - msec: 3936 - hash: "3579849956c1101000ef09949aa4c0f9" - } - Frame { - msec: 3952 - hash: "7af041898748bb5950643b057ca59eea" - } - Frame { - msec: 3968 - hash: "30a191ae899121ae22d10acee6593415" - } - Frame { - msec: 3984 - hash: "369f761053d5910e00672aa866f698ba" - } - Frame { - msec: 4000 - hash: "1f189a436cf74ae83a03c3bb63c24ec2" - } - Frame { - msec: 4016 - hash: "ac1d9c1cc13813b5e94c692a209a4e36" - } - Frame { - msec: 4032 - hash: "f0e0b5c041bcf38d8d9144d466ad74a9" - } - Frame { - msec: 4048 - hash: "38a35c94ebcf33f6720fea33821a54e1" - } - Frame { - msec: 4064 - hash: "061d139f43a3dd63daf887b82721f42f" - } - Frame { - msec: 4080 - hash: "623747b5fe99e5ffaa62f4daa3f840ef" - } - Frame { - msec: 4096 - hash: "4dd5081a387ffda296811b64b9235d7d" - } - Frame { - msec: 4112 - hash: "1598cf2fe996f99ab4c15f84d89cd7bd" - } - Frame { - msec: 4128 - hash: "30cac85bf1a622d438a64b6ccb59a8ca" - } - Frame { - msec: 4144 - hash: "114e54ae3e1493750a022f1c019e7f77" - } - Frame { - msec: 4160 - hash: "a585efc3aae3a426e6af5f4a8cc23b10" - } - Frame { - msec: 4176 - hash: "c0f315549baad93dd885d58b185e7ed7" - } - Frame { - msec: 4192 - hash: "3a00f5f034bef58ca341bf9e1056f46f" - } - Frame { - msec: 4208 - hash: "b3022d07dee989499a35aea21e07e4c1" - } - Frame { - msec: 4224 - hash: "e722464809e94fb7d8c752506f0d3ac2" - } - Frame { - msec: 4240 - hash: "82ea3d06367ce9dc582dbdbc186cc70a" - } - Frame { - msec: 4256 - hash: "359040facbe531c7f6b805b8bfc5b17a" - } - Frame { - msec: 4272 - hash: "264c7b65bae7e3945d87c17edfda6889" - } - Frame { - msec: 4288 - hash: "d941ec8e363942af02f36d4672521801" - } - Frame { - msec: 4304 - hash: "e46e145b4d07d1697c1d9efce80c80de" - } - Frame { - msec: 4320 - hash: "d8bed5c42bc5725d811db4dacdab1581" - } - Frame { - msec: 4336 - hash: "aa221160b4a11b30cb73eaa8ccaa9dfd" - } - Frame { - msec: 4352 - hash: "f411483477906d83f872b306cd021406" - } - Frame { - msec: 4368 - hash: "d9c52e4f99416fa1043a9c34a1c29f5a" - } - Frame { - msec: 4384 - hash: "ec2890446f34b8a5d47ae97ba2853d0f" - } - Frame { - msec: 4400 - hash: "6a3e6ef7d832fa7ec813b38171cb3602" - } - Frame { - msec: 4416 - hash: "6dfd75b6cb780f7d80466f3450d0b255" - } - Frame { - msec: 4432 - hash: "170774843dc6f28f51f07c445e046bd8" - } - Frame { - msec: 4448 - hash: "eab348bef656739d9723d3bd659c43ff" - } - Frame { - msec: 4464 - hash: "f06e546bb710002cdf1cefd51ffa47c4" - } - Frame { - msec: 4480 - hash: "52f7ff1348d9aa7cdf43cd81f0a71625" - } - Frame { - msec: 4496 - hash: "55a5b1befa3b7a4674a62d492b5527ea" - } - Frame { - msec: 4512 - hash: "699c093fddc6b9293a011d8d6eccd36d" - } - Frame { - msec: 4528 - hash: "b988e1ad7dc7d26ffeea8f71a69a9abf" - } - Frame { - msec: 4544 - hash: "8dea2b47492f83f961a47536a10aad0c" - } - Frame { - msec: 4560 - hash: "925ea8105779ffd801a3c62129d64bed" - } - Frame { - msec: 4576 - hash: "aa5d957c4f452b1f1c70ea672ce4a0b9" - } - Frame { - msec: 4592 - hash: "85d3ea97a1fb152ae8ad65a17693a16d" - } - Frame { - msec: 4608 - hash: "069b2bc8b86f822c5e7ceca3664e78a6" - } - Frame { - msec: 4624 - hash: "209071b7f72d8c25b9ce27c05397fe56" - } - Frame { - msec: 4640 - hash: "068dea708612620d34bd57c6affb44b1" - } - Frame { - msec: 4656 - hash: "36b53a0845220645059fed803a6ffcbc" - } - Frame { - msec: 4672 - hash: "2c84e15006a39a554eb2047bae9d4f6f" - } - Frame { - msec: 4688 - hash: "1bdab31534f4b5a7e9d27ede3e9acb57" - } - Frame { - msec: 4704 - hash: "688689eeb584b0c74f0322af35857dd5" - } - Frame { - msec: 4720 - hash: "024939fea5b6c6f9d3e26a0abf42ae3c" - } - Frame { - msec: 4736 - hash: "2efb2f47c6f0be3743f0f4dc7a66b08e" - } - Frame { - msec: 4752 - hash: "4631f3756af880693d3654c16cbe47bb" - } - Frame { - msec: 4768 - hash: "2fd77649c1e1ade97534ef530ad05612" - } - Frame { - msec: 4784 - hash: "5d13517bac111c8af49c444d41a42ea1" - } - Frame { - msec: 4800 - image: "resolution.4.png" - } - Frame { - msec: 4816 - hash: "8bd8efe405a42730304dcc120a6e718c" - } - Frame { - msec: 4832 - hash: "a83c543977e3f1dd4c020375eb3273fd" - } - Frame { - msec: 4848 - hash: "c52f38469fec77afc7f0a44b992e3d0d" - } - Frame { - msec: 4864 - hash: "af645449d6ec3f42449ffc59193aaaa4" - } - Frame { - msec: 4880 - hash: "2eb982cf754c77c109158076957775ae" - } - Frame { - msec: 4896 - hash: "9bf2fd4a4e45f302b34b7f038937d3d7" - } - Frame { - msec: 4912 - hash: "5520e309d68c8eedf76a9392714a6150" - } - Frame { - msec: 4928 - hash: "9dcd043a25e33b788729c0a0531301e7" - } - Frame { - msec: 4944 - hash: "1475b9bcfe08c66135673f4284c9bbcd" - } - Frame { - msec: 4960 - hash: "9af1f355bcf4d5f05b42040ebba75e09" - } - Frame { - msec: 4976 - hash: "8b6e04980ea60ca2ff06053d35c06881" - } - Frame { - msec: 4992 - hash: "def466e377a44afc4b2a9a9ebb258f86" - } - Frame { - msec: 5008 - hash: "18f6d6f5a3fdaee0037580df0f4f9ef0" - } - Frame { - msec: 5024 - hash: "ae2579498558f6f93489999c7c82cbcd" - } - Frame { - msec: 5040 - hash: "623d8e756c2c131150554272df231bf9" - } - Frame { - msec: 5056 - hash: "c13146576229848b8a1e1b382fbf749d" - } - Frame { - msec: 5072 - hash: "f963a399aeea1d34ec3bd30a5b991035" - } - Frame { - msec: 5088 - hash: "45a4db021ba0a53ad783c14a3b66aa38" - } - Frame { - msec: 5104 - hash: "2031618470e3bb3a3435fe0e270a15d4" - } - Frame { - msec: 5120 - hash: "f7cc01c301f29110db8364fecc8751f1" - } - Frame { - msec: 5136 - hash: "2d366fa500257ec0a12863f3637d0c47" - } - Frame { - msec: 5152 - hash: "4ba700e7f9ffba4889ca26d903a63029" - } - Frame { - msec: 5168 - hash: "329bec5e3d6a131b4bd9a056659bdb3e" - } - Frame { - msec: 5184 - hash: "48f7356707cdbcb401c135207ee38821" - } - Frame { - msec: 5200 - hash: "5314e448affe60d193d07a784035ecce" - } - Frame { - msec: 5216 - hash: "c87e98becdf99c214ad4987985b4af07" - } - Frame { - msec: 5232 - hash: "ea81d2a967b619980d7e42937ec74668" - } - Frame { - msec: 5248 - hash: "845319d4e0f6ee97697e59c606220e7a" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml deleted file mode 100644 index 4aab708..0000000 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/zoomTextOnly.qml +++ /dev/null @@ -1,655 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "4e401b5ebff6e442fa108e94a5dba668" - } - Frame { - msec: 32 - hash: "c2f8551d0442d0736b71c54fc965562b" - } - Frame { - msec: 48 - hash: "4fc1ef611b24ec5737310859b12c83d3" - } - Frame { - msec: 64 - hash: "7df07aea83bc5c3213e7871854661820" - } - Frame { - msec: 80 - hash: "0ae4ee18cc675749f008b897fe35cc40" - } - Frame { - msec: 96 - hash: "0ae4ee18cc675749f008b897fe35cc40" - } - Frame { - msec: 112 - hash: "f5c917c7ca26bb916dd4df84eafc8e94" - } - Frame { - msec: 128 - hash: "0696257de0441666bd264f8db6383d15" - } - Frame { - msec: 144 - hash: "0b43fdee23346c30c60b822a20131cc3" - } - Frame { - msec: 160 - hash: "98dbd004cf4809dbc90bfa9272378644" - } - Frame { - msec: 176 - hash: "32d0e9005ebb9dfd410d348e336bcd93" - } - Frame { - msec: 192 - hash: "8a64b18006ad0bd2c373a2a9395ce52e" - } - Frame { - msec: 208 - hash: "7dc26fd658f626b8fe18545cf93dc4ec" - } - Frame { - msec: 224 - hash: "6712be93cf1ed2b7b202367418b6d2d7" - } - Frame { - msec: 240 - hash: "524840a3453af4e97ac82b559308cce3" - } - Frame { - msec: 256 - hash: "11436091b24c02af94dfa75a5fd1a001" - } - Frame { - msec: 272 - hash: "d3689b53474b4b26630d70ba01c057b4" - } - Frame { - msec: 288 - hash: "16e2b66f28ed80d80d9b5264d89624d5" - } - Frame { - msec: 304 - hash: "87636076959de7e5a0a8bd8b31354ed4" - } - Frame { - msec: 320 - hash: "a6916da6bfac27aa87d75da2bbb73f31" - } - Frame { - msec: 336 - hash: "58cfba3aae4bf54a5b445e0e34571d2d" - } - Frame { - msec: 352 - hash: "1475ae722afd169cc0c8e1fde39eb6b7" - } - Frame { - msec: 368 - hash: "14d08c2ca430631af8ede1013f4f4da0" - } - Frame { - msec: 384 - hash: "ace9db9112d147569dc0cf1a1b680d6c" - } - Frame { - msec: 400 - hash: "08bc6815601417f3731eaae398d0861d" - } - Frame { - msec: 416 - hash: "809870dfd9b05ce07170edd945348ddf" - } - Frame { - msec: 432 - hash: "5784deb0f3270cf7a0d0964cd9d31458" - } - Frame { - msec: 448 - hash: "2f06ee407e5175d4b954e31c39c9522c" - } - Frame { - msec: 464 - hash: "48a7dbed293fbbd5ea202190837a411f" - } - Frame { - msec: 480 - hash: "abf3d90803cfa12d35d2752be7ea02d8" - } - Frame { - msec: 496 - hash: "a60edcf8d792f93a839e6ddbafbf993f" - } - Frame { - msec: 512 - hash: "7e8dfe86ea0849022355b12578d4cb1a" - } - Frame { - msec: 528 - hash: "3c84122b0933ee870f178d39469e51e2" - } - Frame { - msec: 544 - hash: "25f463e91febf5b6d8819fd5010bc1c2" - } - Frame { - msec: 560 - hash: "d423a9bc912237d0f20b924849ba0cb1" - } - Frame { - msec: 576 - hash: "5bd3cc309a5fce6183654975543250b2" - } - Frame { - msec: 592 - hash: "4e401b5ebff6e442fa108e94a5dba668" - } - Frame { - msec: 608 - hash: "9a4bf1400da038f2088dd4c49403d852" - } - Frame { - msec: 624 - hash: "a37024356613bd5d678e0b2f7b8f5959" - } - Frame { - msec: 640 - hash: "4f37d72c10e51f68a2359086094da249" - } - Frame { - msec: 656 - hash: "6093bcb7673f8e58fe5a7b0143638822" - } - Frame { - msec: 672 - hash: "c272aeea2b9c450fbd732305ccc01b93" - } - Frame { - msec: 688 - hash: "6a4e2ee45b26037421e2a5f2d6ee517e" - } - Frame { - msec: 704 - hash: "d912afcbce6c9d879a07ffc3c51b36d1" - } - Frame { - msec: 720 - hash: "2578335ac6f21c8aec2c87515562c321" - } - Frame { - msec: 736 - hash: "5b77af55f0a723ba762d283f41e91c98" - } - Frame { - msec: 752 - hash: "b420fc71b22fa608a9c0cdbbbc61c447" - } - Frame { - msec: 768 - hash: "3f7a9cecf2a590e8728137fabfd3f5f3" - } - Frame { - msec: 784 - hash: "c51f12a2f438f137785c70e3af4922fd" - } - Frame { - msec: 800 - hash: "5d97175fc4d986e5b21758d4ac785025" - } - Frame { - msec: 816 - hash: "94f922f3460ad76cd05cb5b321977a94" - } - Frame { - msec: 832 - hash: "5747adbc4f0b22ed359793d72d3e7d1f" - } - Frame { - msec: 848 - hash: "255d1d45d3343972f156dfab7d13ce41" - } - Frame { - msec: 864 - hash: "e5b54132ffb83acad30622e969405bc0" - } - Frame { - msec: 880 - hash: "2c05cf00e3417883e789f58c2728dc97" - } - Frame { - msec: 896 - hash: "9d66290b1aae1de3025d24d3efc4ca1c" - } - Frame { - msec: 912 - hash: "5e9b0783b1b4221145a4febbae56b30f" - } - Frame { - msec: 928 - hash: "21eea497c26600b03d868661232b3ebe" - } - Frame { - msec: 944 - hash: "2383c415170ac6444f1c193ed698f682" - } - Frame { - msec: 960 - image: "zoomTextOnly.0.png" - } - Frame { - msec: 976 - hash: "4ed0f85dec4eb0bb740ac3780b6872c0" - } - Frame { - msec: 992 - hash: "0a18bccca4efeadfced8e5cb1715a1f3" - } - Frame { - msec: 1008 - hash: "823e65df9075eb0e9a3aad6b15ec3342" - } - Frame { - msec: 1024 - hash: "823e65df9075eb0e9a3aad6b15ec3342" - } - Frame { - msec: 1040 - hash: "0a18bccca4efeadfced8e5cb1715a1f3" - } - Frame { - msec: 1056 - hash: "4ed0f85dec4eb0bb740ac3780b6872c0" - } - Frame { - msec: 1072 - hash: "fae77663566351fa3bb506b459496a9d" - } - Frame { - msec: 1088 - hash: "2383c415170ac6444f1c193ed698f682" - } - Frame { - msec: 1104 - hash: "2e05365256bebbdf3229f99b94263b6c" - } - Frame { - msec: 1120 - hash: "5e9b0783b1b4221145a4febbae56b30f" - } - Frame { - msec: 1136 - hash: "9d66290b1aae1de3025d24d3efc4ca1c" - } - Frame { - msec: 1152 - hash: "2c05cf00e3417883e789f58c2728dc97" - } - Frame { - msec: 1168 - hash: "e5b54132ffb83acad30622e969405bc0" - } - Frame { - msec: 1184 - hash: "255d1d45d3343972f156dfab7d13ce41" - } - Frame { - msec: 1200 - hash: "5747adbc4f0b22ed359793d72d3e7d1f" - } - Frame { - msec: 1216 - hash: "94f922f3460ad76cd05cb5b321977a94" - } - Frame { - msec: 1232 - hash: "5d97175fc4d986e5b21758d4ac785025" - } - Frame { - msec: 1248 - hash: "c51f12a2f438f137785c70e3af4922fd" - } - Frame { - msec: 1264 - hash: "3f7a9cecf2a590e8728137fabfd3f5f3" - } - Frame { - msec: 1280 - hash: "b420fc71b22fa608a9c0cdbbbc61c447" - } - Frame { - msec: 1296 - hash: "5b77af55f0a723ba762d283f41e91c98" - } - Frame { - msec: 1312 - hash: "2578335ac6f21c8aec2c87515562c321" - } - Frame { - msec: 1328 - hash: "a9b5438bd48dbafd307d571877416003" - } - Frame { - msec: 1344 - hash: "6a4e2ee45b26037421e2a5f2d6ee517e" - } - Frame { - msec: 1360 - hash: "c272aeea2b9c450fbd732305ccc01b93" - } - Frame { - msec: 1376 - hash: "37c7e50c270e8feb4dd9018580284a85" - } - Frame { - msec: 1392 - hash: "4f37d72c10e51f68a2359086094da249" - } - Frame { - msec: 1408 - hash: "a37024356613bd5d678e0b2f7b8f5959" - } - Frame { - msec: 1424 - hash: "9a4bf1400da038f2088dd4c49403d852" - } - Frame { - msec: 1440 - hash: "4e401b5ebff6e442fa108e94a5dba668" - } - Frame { - msec: 1456 - hash: "5bd3cc309a5fce6183654975543250b2" - } - Frame { - msec: 1472 - hash: "d423a9bc912237d0f20b924849ba0cb1" - } - Frame { - msec: 1488 - hash: "25f463e91febf5b6d8819fd5010bc1c2" - } - Frame { - msec: 1504 - hash: "3c84122b0933ee870f178d39469e51e2" - } - Frame { - msec: 1520 - hash: "7e8dfe86ea0849022355b12578d4cb1a" - } - Frame { - msec: 1536 - hash: "a60edcf8d792f93a839e6ddbafbf993f" - } - Frame { - msec: 1552 - hash: "abf3d90803cfa12d35d2752be7ea02d8" - } - Frame { - msec: 1568 - hash: "48a7dbed293fbbd5ea202190837a411f" - } - Frame { - msec: 1584 - hash: "2f06ee407e5175d4b954e31c39c9522c" - } - Frame { - msec: 1600 - hash: "5784deb0f3270cf7a0d0964cd9d31458" - } - Frame { - msec: 1616 - hash: "809870dfd9b05ce07170edd945348ddf" - } - Frame { - msec: 1632 - hash: "08bc6815601417f3731eaae398d0861d" - } - Frame { - msec: 1648 - hash: "ace9db9112d147569dc0cf1a1b680d6c" - } - Frame { - msec: 1664 - hash: "14d08c2ca430631af8ede1013f4f4da0" - } - Frame { - msec: 1680 - hash: "1475ae722afd169cc0c8e1fde39eb6b7" - } - Frame { - msec: 1696 - hash: "58cfba3aae4bf54a5b445e0e34571d2d" - } - Frame { - msec: 1712 - hash: "a6916da6bfac27aa87d75da2bbb73f31" - } - Frame { - msec: 1728 - hash: "87636076959de7e5a0a8bd8b31354ed4" - } - Frame { - msec: 1744 - hash: "16e2b66f28ed80d80d9b5264d89624d5" - } - Frame { - msec: 1760 - hash: "d3689b53474b4b26630d70ba01c057b4" - } - Frame { - msec: 1776 - hash: "11436091b24c02af94dfa75a5fd1a001" - } - Frame { - msec: 1792 - hash: "524840a3453af4e97ac82b559308cce3" - } - Frame { - msec: 1808 - hash: "6712be93cf1ed2b7b202367418b6d2d7" - } - Frame { - msec: 1824 - hash: "7dc26fd658f626b8fe18545cf93dc4ec" - } - Frame { - msec: 1840 - hash: "8a64b18006ad0bd2c373a2a9395ce52e" - } - Frame { - msec: 1856 - hash: "32d0e9005ebb9dfd410d348e336bcd93" - } - Frame { - msec: 1872 - hash: "98dbd004cf4809dbc90bfa9272378644" - } - Frame { - msec: 1888 - hash: "0b43fdee23346c30c60b822a20131cc3" - } - Frame { - msec: 1904 - hash: "0696257de0441666bd264f8db6383d15" - } - Frame { - msec: 1920 - image: "zoomTextOnly.1.png" - } - Frame { - msec: 1936 - hash: "0ae4ee18cc675749f008b897fe35cc40" - } - Frame { - msec: 1952 - hash: "0ae4ee18cc675749f008b897fe35cc40" - } - Frame { - msec: 1968 - hash: "7df07aea83bc5c3213e7871854661820" - } - Frame { - msec: 1984 - hash: "4fc1ef611b24ec5737310859b12c83d3" - } - Frame { - msec: 2000 - hash: "c2f8551d0442d0736b71c54fc965562b" - } - Frame { - msec: 2016 - hash: "4ec29787e437f9619ce0f0a0f4889d0f" - } - Frame { - msec: 2032 - hash: "c2f8551d0442d0736b71c54fc965562b" - } - Frame { - msec: 2048 - hash: "4fc1ef611b24ec5737310859b12c83d3" - } - Frame { - msec: 2064 - hash: "7df07aea83bc5c3213e7871854661820" - } - Frame { - msec: 2080 - hash: "0ae4ee18cc675749f008b897fe35cc40" - } - Frame { - msec: 2096 - hash: "0ae4ee18cc675749f008b897fe35cc40" - } - Frame { - msec: 2112 - hash: "f5c917c7ca26bb916dd4df84eafc8e94" - } - Frame { - msec: 2128 - hash: "0696257de0441666bd264f8db6383d15" - } - Frame { - msec: 2144 - hash: "0b43fdee23346c30c60b822a20131cc3" - } - Frame { - msec: 2160 - hash: "98dbd004cf4809dbc90bfa9272378644" - } - Frame { - msec: 2176 - hash: "32d0e9005ebb9dfd410d348e336bcd93" - } - Frame { - msec: 2192 - hash: "8a64b18006ad0bd2c373a2a9395ce52e" - } - Frame { - msec: 2208 - hash: "7dc26fd658f626b8fe18545cf93dc4ec" - } - Frame { - msec: 2224 - hash: "6712be93cf1ed2b7b202367418b6d2d7" - } - Frame { - msec: 2240 - hash: "524840a3453af4e97ac82b559308cce3" - } - Frame { - msec: 2256 - hash: "11436091b24c02af94dfa75a5fd1a001" - } - Frame { - msec: 2272 - hash: "d3689b53474b4b26630d70ba01c057b4" - } - Frame { - msec: 2288 - hash: "16e2b66f28ed80d80d9b5264d89624d5" - } - Frame { - msec: 2304 - hash: "87636076959de7e5a0a8bd8b31354ed4" - } - Frame { - msec: 2320 - hash: "a6916da6bfac27aa87d75da2bbb73f31" - } - Frame { - msec: 2336 - hash: "58cfba3aae4bf54a5b445e0e34571d2d" - } - Frame { - msec: 2352 - hash: "1475ae722afd169cc0c8e1fde39eb6b7" - } - Frame { - msec: 2368 - hash: "14d08c2ca430631af8ede1013f4f4da0" - } - Frame { - msec: 2384 - hash: "ace9db9112d147569dc0cf1a1b680d6c" - } - Frame { - msec: 2400 - hash: "08bc6815601417f3731eaae398d0861d" - } - Frame { - msec: 2416 - hash: "809870dfd9b05ce07170edd945348ddf" - } - Frame { - msec: 2432 - hash: "5784deb0f3270cf7a0d0964cd9d31458" - } - Frame { - msec: 2448 - hash: "2f06ee407e5175d4b954e31c39c9522c" - } - Frame { - msec: 2464 - hash: "48a7dbed293fbbd5ea202190837a411f" - } - Frame { - msec: 2480 - hash: "abf3d90803cfa12d35d2752be7ea02d8" - } - Frame { - msec: 2496 - hash: "a60edcf8d792f93a839e6ddbafbf993f" - } - Frame { - msec: 2512 - hash: "7e8dfe86ea0849022355b12578d4cb1a" - } - Frame { - msec: 2528 - hash: "3c84122b0933ee870f178d39469e51e2" - } - Frame { - msec: 2544 - hash: "25f463e91febf5b6d8819fd5010bc1c2" - } - Frame { - msec: 2560 - hash: "d423a9bc912237d0f20b924849ba0cb1" - } - Frame { - msec: 2576 - hash: "5bd3cc309a5fce6183654975543250b2" - } - Frame { - msec: 2592 - hash: "4e401b5ebff6e442fa108e94a5dba668" - } -} diff --git a/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml b/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml deleted file mode 100644 index 080d4d0..0000000 --- a/tests/auto/declarative/qmlvisual/webview/zooming/data/zooming.qml +++ /dev/null @@ -1,2115 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 32 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 48 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 64 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 80 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 96 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 112 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 128 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 144 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 160 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 176 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 192 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 208 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 224 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 240 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 256 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 272 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 288 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 304 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 320 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 336 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 352 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 197; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 185; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 368 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 169; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 384 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 161; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 400 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 155; y: 44 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 147; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 416 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 141; y: 48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 138; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 432 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 130; y: 48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 127; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 448 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 125; y: 48 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 123; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 464 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 480 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 121; y: 49 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 496 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 512 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 117; y: 53 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 116; y: 53 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 528 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 115; y: 54 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 544 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 113; y: 54 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 560 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 111; y: 53 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 111; y: 52 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 576 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 110; y: 50 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 592 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 109; y: 48 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 608 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 108; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 624 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 108; y: 45 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 107; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 640 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 106; y: 43 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 656 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 42 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 672 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 41 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 688 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 704 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 720 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 736 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 40 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 752 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 39 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 768 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 37 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 784 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 35 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 34 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 800 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 816 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 106; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 832 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 848 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 864 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 880 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 896 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 106; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 912 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 928 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 944 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 960 - image: "zooming.0.png" - } - Frame { - msec: 976 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 106; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 992 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1008 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1024 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1040 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1056 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 106; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1072 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1088 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1104 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1120 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 106; y: 33 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1136 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1152 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1168 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1184 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 106; y: 34 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 106; y: 36 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1200 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 105; y: 38 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1216 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 103; y: 44 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1232 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 102; y: 46 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 98; y: 50 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1248 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 94; y: 56 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 90; y: 62 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1264 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 88; y: 70 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 78 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1280 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 86 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 94 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1296 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 104 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 86; y: 114 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1312 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 88; y: 124 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 92; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1328 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 94; y: 146 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1344 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 164 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 172 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1360 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 180 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 188 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1376 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 190 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 96; y: 193 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1392 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 95; y: 195 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 95; y: 197 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1408 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 95; y: 198 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 95; y: 200 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1424 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 94; y: 201 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 94; y: 202 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1440 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 94; y: 204 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1456 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 93; y: 205 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1472 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 92; y: 206 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1488 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 92; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1504 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 92; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1520 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 92; y: 211 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 212 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1536 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1552 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1568 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1584 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1600 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1616 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1632 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1648 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1664 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1680 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1696 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1712 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 214 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 91; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1728 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1744 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1760 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1776 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 91; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1792 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1808 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1824 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1840 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 91; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1856 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1872 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1888 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1904 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1920 - image: "zooming.1.png" - } - Frame { - msec: 1936 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 91; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 1952 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1968 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 1984 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2000 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2016 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2032 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2048 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2064 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2080 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2096 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2112 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2128 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 91; y: 212 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2144 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2160 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2176 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2192 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 89; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2208 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 88; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2224 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2240 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 86; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2256 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 85; y: 211 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2272 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 82; y: 211 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 80; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2288 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 77; y: 211 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 75; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2304 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 69; y: 213 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 66; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2320 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 64; y: 213 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2336 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 60; y: 213 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 58; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2352 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 56; y: 213 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 55; y: 212 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2368 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2384 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2400 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2416 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2432 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2448 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2464 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2480 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 56; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2496 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 58; y: 214 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 59; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2512 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 61; y: 215 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2528 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 63; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2544 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2560 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2576 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2592 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 64; y: 216 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 64; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2608 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2624 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2640 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2656 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2672 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 63; y: 216 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 63; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2688 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2704 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2720 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2736 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2752 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 4 - button: 1 - buttons: 1 - x: 62; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2768 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2784 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2800 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2816 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 62; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2832 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2848 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 2864 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 215 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2880 - image: "zooming.2.png" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 214 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2896 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 213 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2912 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 62; y: 212 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 63; y: 211 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2928 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 63; y: 209 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 64; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2944 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 66; y: 202 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 70; y: 198 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2960 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 72; y: 192 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 74; y: 186 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2976 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 76; y: 180 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 80; y: 170 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2992 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 84; y: 162 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 88; y: 152 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3008 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 94; y: 142 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 98; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3024 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 102; y: 118 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 108; y: 108 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3040 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 112; y: 98 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 114; y: 90 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3056 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 120; y: 80 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 122; y: 72 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3072 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 126; y: 66 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 128; y: 58 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3088 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 132; y: 52 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 134; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3104 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 136; y: 40 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 140; y: 32 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3120 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 144; y: 24 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 150; y: 18 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3136 - hash: "c98df558c41f1837398eead42392b780" - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 154; y: 10 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 0 - x: 160; y: 4 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 3152 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3168 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3184 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3200 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3216 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3232 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3248 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3264 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3280 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3296 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3312 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3328 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3344 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3360 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3376 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3392 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3408 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3424 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3440 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3456 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3472 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3488 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3504 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3520 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3536 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3552 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3568 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3584 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3600 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3616 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3632 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3648 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3664 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3680 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3696 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3712 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3728 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3744 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3760 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3776 - hash: "c98df558c41f1837398eead42392b780" - } - Frame { - msec: 3792 - hash: "c98df558c41f1837398eead42392b780" - } -} -- cgit v0.12 From 03fa1fb439456428da883133d26038409462aca6 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 14:32:58 +1000 Subject: Almost all visual tests pass on linux Still looking into text/fonts/plaintext which just developed an issue. Task-number: QTBUG-14792 --- .../qmlvisual/ListView/data/listview.qml | 3079 -------------------- .../declarative/qmlvisual/ListView/listview.qml | 1 + tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp | 2 +- .../webview/autosize/data-X11/autosize.qml | 115 - 4 files changed, 2 insertions(+), 3195 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.qml delete mode 100644 tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data/listview.qml deleted file mode 100644 index bf64029..0000000 --- a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml +++ /dev/null @@ -1,3079 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 32 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 48 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 64 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 80 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 96 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 112 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 128 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 144 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 160 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 176 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 192 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 208 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 224 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 240 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 256 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 272 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 288 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 304 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 320 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 336 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 352 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 368 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 384 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 400 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 416 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 432 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 448 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 464 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 480 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 496 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 512 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 528 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 544 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 560 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 576 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 592 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 608 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 624 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 640 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 656 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 672 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 688 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 704 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 720 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 736 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 752 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 768 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 784 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 800 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 816 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 832 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 848 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 864 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 880 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 896 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 912 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 928 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 944 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 960 - image: "listview.0.png" - } - Frame { - msec: 976 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 992 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1008 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1024 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1040 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1056 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1072 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1088 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1104 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1120 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1136 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1152 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1168 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1184 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1200 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1216 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1232 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1248 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1264 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1280 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1296 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1312 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1328 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1344 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1360 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1376 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1392 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1408 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1424 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1440 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1456 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1472 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1488 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1504 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1520 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1536 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1552 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1568 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1584 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1600 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1616 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1632 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1648 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1664 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1680 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1696 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1712 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1728 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1744 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1760 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1776 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1792 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1808 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1824 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1840 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1856 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1872 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1888 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1904 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1920 - image: "listview.1.png" - } - Frame { - msec: 1936 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1952 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1968 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 1984 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2000 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2016 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2032 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2048 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2064 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2080 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2096 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2112 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2128 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2144 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2160 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2176 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2192 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2208 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2224 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2240 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2256 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2272 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2288 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2304 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2320 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2336 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2352 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2368 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2384 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2400 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2416 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2432 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2448 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2464 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2480 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2496 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2512 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2528 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2544 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2560 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2576 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2592 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 553; y: 267 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2608 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 2624 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 554; y: 267 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 555; y: 266 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2640 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 556; y: 265 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 558; y: 260 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2656 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 560; y: 256 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2672 - hash: "c315e184c4dcb11d7e9fd4509a8b6a1f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 562; y: 250 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 566; y: 234 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2688 - hash: "aeef1cacca9518408519b670443e396f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 568; y: 216 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2704 - hash: "621626927f83bf7b36b78f5ca7ed4ed0" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 572; y: 192 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 572; y: 192 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 2720 - hash: "b2aca965b745e98365195c52b9dd9a2c" - } - Frame { - msec: 2736 - hash: "b80cc493e604c42aca2367e26bc9e844" - } - Frame { - msec: 2752 - hash: "39165ad87fc687e0f165f8a2675173b5" - } - Frame { - msec: 2768 - hash: "edd1da7c34c3eb7f1f16b782dfa41a13" - } - Frame { - msec: 2784 - hash: "d31a7915cdb2a7f392e6edc3047a6606" - } - Frame { - msec: 2800 - hash: "3038dbb3fe3c255adcbecfc106bacb99" - } - Frame { - msec: 2816 - hash: "454137c508d76f2c38b8007247420b81" - } - Frame { - msec: 2832 - hash: "16eb385d3ce3b186745974500f855a97" - } - Frame { - msec: 2848 - hash: "8871fded1fbbdcb0fdfdaa2e6eecc3d1" - } - Frame { - msec: 2864 - hash: "f49955dab8341e7ca472c3f547cbeaab" - } - Frame { - msec: 2880 - image: "listview.2.png" - } - Frame { - msec: 2896 - hash: "c0ef41c682fa9802c9eb74fd249cfd40" - } - Frame { - msec: 2912 - hash: "6174fea6ef04fbcefd32d6a0b35a3514" - } - Frame { - msec: 2928 - hash: "7b2288a8be7b3c465e725aeb5788e91f" - } - Frame { - msec: 2944 - hash: "b39d8cb650ee00c245b556235843490b" - } - Frame { - msec: 2960 - hash: "9478ea0bf640924931d627cd8b607eba" - } - Frame { - msec: 2976 - hash: "39743788f56c6f5c29fa9549e586d1ae" - } - Frame { - msec: 2992 - hash: "ec8ab3547e10d18e9493b8fae5125591" - } - Frame { - msec: 3008 - hash: "169b115d03db8c901db4f4c2909a18d3" - } - Frame { - msec: 3024 - hash: "bf438b17a1e8df6d6bb05474cacd12a7" - } - Frame { - msec: 3040 - hash: "2aad06334128659e143c4c6c8415a30b" - } - Frame { - msec: 3056 - hash: "ea0e8d7387b9b54a47bb99c058093462" - } - Frame { - msec: 3072 - hash: "e483e585399a47490599ca265cf73000" - } - Frame { - msec: 3088 - hash: "43bed4aac1a2a9b66eafefc117424500" - } - Frame { - msec: 3104 - hash: "ba5c36add368938f8134a0a88e599c00" - } - Frame { - msec: 3120 - hash: "c905be5276a871bd1ac392580231c9e4" - } - Frame { - msec: 3136 - hash: "0c96d9b0119513c1f327f9e6651e89cd" - } - Frame { - msec: 3152 - hash: "c4ba0836dbb900600f8f4aed42eb1ea1" - } - Frame { - msec: 3168 - hash: "253d014f89a616032664f29f268cfd85" - } - Frame { - msec: 3184 - hash: "a5185192d7db7c4a4c8bec6cb5a2a73a" - } - Frame { - msec: 3200 - hash: "d453cc5b89d3fa00586cc41d5a9a8092" - } - Frame { - msec: 3216 - hash: "b3c39c0c06643612681b098101458d32" - } - Frame { - msec: 3232 - hash: "09beec410a0ca7c47fe08991341aea0c" - } - Frame { - msec: 3248 - hash: "c13c269b384029d04a05fd0170e5909e" - } - Frame { - msec: 3264 - hash: "cafe360c512ab92804dc1fddae9b8fb6" - } - Frame { - msec: 3280 - hash: "26dfe538a7edc8f43af1d78e678f3dfa" - } - Frame { - msec: 3296 - hash: "11e03f6901a4bdbc1eabe72b1ddbee4b" - } - Frame { - msec: 3312 - hash: "0ea8886b1256649665a1597f62cc633b" - } - Frame { - msec: 3328 - hash: "013c34be077fb689333df9b04a931b3a" - } - Frame { - msec: 3344 - hash: "d0e9f1d147e0767c12a89f33b5f2b5b3" - } - Frame { - msec: 3360 - hash: "9888bf29cd868bad6b2593842413b283" - } - Frame { - msec: 3376 - hash: "d8ec307a85cecaacaa908ceb34d5db5b" - } - Frame { - msec: 3392 - hash: "4afe1df3e802b41d1b89b5fab4e35190" - } - Frame { - msec: 3408 - hash: "e8f484ed8d2a6745ee87ac9544281d55" - } - Frame { - msec: 3424 - hash: "48eaa0644a27cb3e53c75bd0ce08bf47" - } - Frame { - msec: 3440 - hash: "f1523d82dfc5c136fbe8746449bb5013" - } - Frame { - msec: 3456 - hash: "d664786f1a79f851e72aa48ee6736374" - } - Frame { - msec: 3472 - hash: "e43bb6d0374c8bab67b5fafcaeb2a205" - } - Frame { - msec: 3488 - hash: "77ef61827c993b16691a023e99cc7f7e" - } - Frame { - msec: 3504 - hash: "6198e0d242db79e81fb81f621c78a3c9" - } - Frame { - msec: 3520 - hash: "a66b4773ef05ca78aa12e2c8a151c53a" - } - Frame { - msec: 3536 - hash: "52fa0b693c3de208e5943521eef5587c" - } - Frame { - msec: 3552 - hash: "0e237f706f9c2c4c616271f9b9d014e5" - } - Frame { - msec: 3568 - hash: "14edd1dc2371a9aadaa3c079d325fab6" - } - Frame { - msec: 3584 - hash: "1fe873b07ee24edaea224939e10830f1" - } - Frame { - msec: 3600 - hash: "30804b5eb2a6d99116475cbdc1a9c043" - } - Frame { - msec: 3616 - hash: "c892c17ec947a910b74f5b8704405e9f" - } - Frame { - msec: 3632 - hash: "696029b77512943001c9eba64191e633" - } - Frame { - msec: 3648 - hash: "4c26bb0ca28d74a2bb79d0bfc8127361" - } - Frame { - msec: 3664 - hash: "2d1539db88647d73b9c53cde7c424dd7" - } - Frame { - msec: 3680 - hash: "fd20e4259b44357c93f22f35c698fe1b" - } - Frame { - msec: 3696 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3712 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3728 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3744 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3760 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3776 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3792 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3808 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3824 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3840 - image: "listview.3.png" - } - Frame { - msec: 3856 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3872 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3888 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3904 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3920 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3936 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3952 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3968 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 3984 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4000 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4016 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4032 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4048 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4064 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4080 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4096 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4112 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4128 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Frame { - msec: 4144 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 521; y: 24 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4160 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 25 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4176 - hash: "5d49efe1383065f0b88f1bfdbbe5e165" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 32 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 37 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4192 - hash: "a5df688148c264de1d376c9b87ddfa6b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 46 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4208 - hash: "a4e2c1878b0afce0ee1eebd63e9c951a" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 66 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 88 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4224 - hash: "2f9a79278d492790ef86a09c77e95ff4" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 531; y: 136 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 531; y: 136 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 4240 - hash: "5b5ce7206b26528157c426f4e1e3e0a8" - } - Frame { - msec: 4256 - hash: "65a1e5f81ab89b163aed46b984cca45e" - } - Frame { - msec: 4272 - hash: "e28253ad5a2415251b68bcda1d7d4bd0" - } - Frame { - msec: 4288 - hash: "71aae5abb4a9e9077053ea21dd3ec315" - } - Frame { - msec: 4304 - hash: "33fcea38fc3b328b3294f9ac2a26aa1a" - } - Frame { - msec: 4320 - hash: "6299eb1d87f371966307668b92de6a0b" - } - Frame { - msec: 4336 - hash: "4f66d8c7cb6971d0fc24089d123c547b" - } - Frame { - msec: 4352 - hash: "d9906d61b31fabf968290ebcd6688f34" - } - Frame { - msec: 4368 - hash: "5a1945993ff8096ba6b933d45586044a" - } - Frame { - msec: 4384 - hash: "331535e54da9bbdbc2fbf2b244ad0199" - } - Frame { - msec: 4400 - hash: "4dc39de0c54f6e0b77f94f6ae6c345ec" - } - Frame { - msec: 4416 - hash: "ec309a298ce246c13eb666488eb75016" - } - Frame { - msec: 4432 - hash: "a133819f8adc6265eb0e438261c869e3" - } - Frame { - msec: 4448 - hash: "da4d64fd6b3ae7d49ee5c5c8d0117a37" - } - Frame { - msec: 4464 - hash: "620dd1c3fc41ce657eac9d1a5b765fd4" - } - Frame { - msec: 4480 - hash: "ff1c370bd1bf75a98ae7125e7dd5a9db" - } - Frame { - msec: 4496 - hash: "59c6e4297109b5cc7c197749867dddae" - } - Frame { - msec: 4512 - hash: "91b1719e86529d0c35a53a2d0a095dd6" - } - Frame { - msec: 4528 - hash: "2994663d35c9eb453a27c1a1fa9aeeb8" - } - Frame { - msec: 4544 - hash: "ae4ec37b9f6a00b3c9139e5cfe13d32e" - } - Frame { - msec: 4560 - hash: "a98340236d1b65f47e88684168c1429d" - } - Frame { - msec: 4576 - hash: "34848b483ea6a2bd412e29d26beb3ab0" - } - Frame { - msec: 4592 - hash: "dd9bae0e2fca84b265d8cb59686ff88d" - } - Frame { - msec: 4608 - hash: "18b6ef6f5913b0612b76e7b2e25073dd" - } - Frame { - msec: 4624 - hash: "9398aab9478279aed1bc40c9378f8da4" - } - Frame { - msec: 4640 - hash: "a297a304c12102f23bd1e0f0207e0df9" - } - Frame { - msec: 4656 - hash: "091db9138cd6ae801ad857105a83c8f9" - } - Frame { - msec: 4672 - hash: "253938ca4a4f13433ddd502eb94cb7cd" - } - Frame { - msec: 4688 - hash: "6002df1793d290e4e31ee0c91c37bbe6" - } - Frame { - msec: 4704 - hash: "212476fa1c3a52fb8eba03ec3aecdcd8" - } - Frame { - msec: 4720 - hash: "80d4d8434d4e96a2bc23f5ed060d6ddc" - } - Frame { - msec: 4736 - hash: "2d4add725f31a04558635ce4b73a758a" - } - Frame { - msec: 4752 - hash: "57c06022ec1e502c4f49f43063c433e7" - } - Frame { - msec: 4768 - hash: "8393e97990993f9d5f68ea65f8e4a2db" - } - Frame { - msec: 4784 - hash: "9a1fcd96dffaf5c79ecc7f9427e02499" - } - Frame { - msec: 4800 - image: "listview.4.png" - } - Frame { - msec: 4816 - hash: "5ae722cf541e3453e73bbee57dc379e9" - } - Frame { - msec: 4832 - hash: "fc7326c2e2e56d9c3036e8dfc2ea77a8" - } - Frame { - msec: 4848 - hash: "f22a2a68cea158f333b0457025d75490" - } - Frame { - msec: 4864 - hash: "d684c8aa9b835779080f170cafead40f" - } - Frame { - msec: 4880 - hash: "dd451e5e421f929d015981bc7aeb8c66" - } - Frame { - msec: 4896 - hash: "d066f228295db7f46520495167d3e946" - } - Frame { - msec: 4912 - hash: "ebf640a457e3498bade3220aafa70331" - } - Frame { - msec: 4928 - hash: "190f5b1f3ce9d200790c34c50bcc62c5" - } - Frame { - msec: 4944 - hash: "9d4ad865246eb008afa40740b5c9a208" - } - Frame { - msec: 4960 - hash: "81c8b2c0b4f9e74f24d328a1d9b40a9f" - } - Frame { - msec: 4976 - hash: "24acc300307e71bee79bce8de76f56cb" - } - Frame { - msec: 4992 - hash: "1f9d31f94cfce6f868bfcc8a104d2465" - } - Frame { - msec: 5008 - hash: "7a3cab008dcb7a893ae30797b33df6f2" - } - Frame { - msec: 5024 - hash: "38d561a2950434e59513439c7f1120ea" - } - Frame { - msec: 5040 - hash: "8d34131faa15bc126bd4d9ef3be39ef5" - } - Frame { - msec: 5056 - hash: "85d57ef15791b56deb537795dd87911e" - } - Frame { - msec: 5072 - hash: "71e932169915a6c8c2cef0b22febf316" - } - Frame { - msec: 5088 - hash: "8b3452981963aeebadc9ac2013150263" - } - Frame { - msec: 5104 - hash: "a3fb8abecfeb48ba1cd1fd8f40896fa0" - } - Frame { - msec: 5120 - hash: "f53ab533f6a58ae45139f3da4bf8ab4e" - } - Frame { - msec: 5136 - hash: "9ec7012404f3c1c7795810dcee5acc3b" - } - Frame { - msec: 5152 - hash: "99ca43bab532dd5d7566e596c65053ce" - } - Frame { - msec: 5168 - hash: "0af83ad2416821cc230cd2856d1a3e39" - } - Frame { - msec: 5184 - hash: "86fa23ddf2005bbf35238ae04ae554ac" - } - Frame { - msec: 5200 - hash: "bb52a748f1d85dde410cfa4f24e3ed20" - } - Frame { - msec: 5216 - hash: "898b96bc5ee9a3ac61764e5cd9af8cfb" - } - Frame { - msec: 5232 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5248 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5264 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5280 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5296 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5312 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5328 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5344 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5360 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5376 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5392 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5408 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5424 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5440 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5456 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5472 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5488 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5504 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5520 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5536 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5552 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5568 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5584 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5600 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5616 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5632 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5648 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5664 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5680 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5696 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5712 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5728 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5744 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5760 - image: "listview.5.png" - } - Frame { - msec: 5776 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5792 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5808 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5824 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5840 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5856 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5872 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5888 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5904 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5920 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5936 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5952 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Frame { - msec: 5968 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 111; y: 230 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 227 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 5984 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 223 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6000 - hash: "3b88645092be28037fca4a6034f5b2f7" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 216 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 210 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6016 - hash: "0076b55d3da4ca365688b6a2c984103f" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 205 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6032 - hash: "db846ad8e3200ca1fce36a38dc7beab8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 112; y: 192 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6048 - hash: "3cb6b25725b4285f9c096d595224c5ca" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 111; y: 180 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6064 - hash: "1832e12fdf3b464b02b296e727b33694" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 110; y: 173 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6080 - hash: "6d18d2b5f65cbba4915d0725d24b40f3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 109; y: 158 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 107; y: 140 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6096 - hash: "79bc7afc6b1aa5f8904b3e6d5d4a9389" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 124 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6112 - hash: "4436f2d15304c839aacec486c1fd6d96" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6128 - hash: "c3bffc7c95893cf9bbd8596208b7f657" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 105 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 100 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6144 - hash: "04231c2fdc02729aa34ed4e403dd373b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 96 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6160 - hash: "392d75c4b372825e78366eb63a618170" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 101; y: 87 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 83 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6176 - hash: "7f91f7bdb0cb62d600ac4aa573681fe3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 102; y: 79 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6192 - hash: "69207181a382650c5e33145555f0d9ba" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 76 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 103; y: 72 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6208 - hash: "65a184b5c49b02e08114e437483f928d" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 104; y: 68 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 64 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6224 - hash: "c22da9ce54d04f51fb55da755753a509" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 105; y: 61 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6240 - hash: "59dbd5216847a62f60a1d0701a15bb62" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 57 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 53 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6256 - hash: "bbfc902db6e6ca253afb1c90306b2a63" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 106; y: 47 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 106; y: 47 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 6272 - hash: "5c41f194afec5f7e3db9d98673d03d5c" - } - Frame { - msec: 6288 - hash: "5c41f194afec5f7e3db9d98673d03d5c" - } - Frame { - msec: 6304 - hash: "deb06d0f915d5f6ec39b1820d57b6af6" - } - Frame { - msec: 6320 - hash: "deb06d0f915d5f6ec39b1820d57b6af6" - } - Frame { - msec: 6336 - hash: "2a1a1f9239a6ccb308e51796f9b0bb89" - } - Frame { - msec: 6352 - hash: "3c1b44201616b8271023bf05a3f3f0f7" - } - Frame { - msec: 6368 - hash: "87afcef49db8b2b547e85e834f8ec304" - } - Frame { - msec: 6384 - hash: "290081b4b1272ef09ec9964c128e61b5" - } - Frame { - msec: 6400 - hash: "19bb3b23ee4b14a5f0a313106ef7c8c1" - } - Frame { - msec: 6416 - hash: "65a184b5c49b02e08114e437483f928d" - } - Frame { - msec: 6432 - hash: "832d2aefbcaf776f35039be527d367c5" - } - Frame { - msec: 6448 - hash: "69207181a382650c5e33145555f0d9ba" - } - Frame { - msec: 6464 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6480 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6496 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6512 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6528 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6544 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6560 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6576 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6592 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6608 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6624 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6640 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6656 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6672 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6688 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6704 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6720 - image: "listview.6.png" - } - Frame { - msec: 6736 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6752 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6768 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6784 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6800 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6816 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6832 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6848 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6864 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6880 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6896 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6912 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6928 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6944 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6960 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6976 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 6992 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7008 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7024 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7040 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7056 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7072 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7088 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7104 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7120 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7136 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7152 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7168 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7184 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7200 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7216 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7232 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7248 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7264 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7280 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Frame { - msec: 7296 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 2 - button: 1 - buttons: 1 - x: 519; y: 276 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7312 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 519; y: 275 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7328 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 519; y: 274 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7344 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 273 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 272 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7360 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 271 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7376 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 268 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7392 - hash: "89fe95733476bd000457e36ee4ecfc73" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 266 - modifiers: 0 - sendToViewport: true - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 265 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7408 - hash: "9047f597b9e59ca652c172338bed6ef9" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 262 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7424 - hash: "87476f78daecd6bb49e8d6e673d28100" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 260 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7440 - hash: "6bfd895c6b7d97e4102eb26608cdfeca" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 254 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7456 - hash: "e4c2b75beaee54a5781a5acbeb37ea64" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 249 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7472 - hash: "d5e816768e9c3db0631416bd86b1b461" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 243 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7488 - hash: "22cb512b302afc6c3c9dec1d47b3bf03" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 237 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7504 - hash: "a7e458e007954bd908cf27a1841d36ea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 231 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7520 - hash: "0f9fa53b247f72e9a8ff6201b188b410" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 225 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7536 - hash: "c986ea3853dd33f7f2b5629f67429423" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 517; y: 219 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7552 - hash: "114ffaa5cf38e4884a1d477884541b44" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 518; y: 215 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7568 - hash: "7cdf1bb327484618909ded5411aca4ec" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 519; y: 208 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7584 - hash: "d4c005194ed510f5d54a811176943dc2" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 520; y: 202 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7600 - hash: "3103351bc83675c877fb6dcd1a6ddbbc" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 196 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7616 - hash: "2c13ddda8d89501c9487b83f8b115570" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 189 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7632 - hash: "476834b6d88077f9983ed358c06bd0c3" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 185 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7648 - hash: "cc2148c6a7ba0bbe6ceea848b7e48621" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 177 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7664 - hash: "5b8824848dd1de3632b26e04e95b5899" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 169 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7680 - image: "listview.7.png" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 160 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7696 - hash: "d0a4a8b631e3494043f261fb8da67938" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 156 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7712 - hash: "985111215c3959a45b293879af701318" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 147 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7728 - hash: "ed5917a3fe95777f2efdaa154af0c489" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 144 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7744 - hash: "6fa9de2983f0e30cb96c035c28757b93" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 137 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7760 - hash: "fd568c7d27618a71b0f0882ca57b685b" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 130 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7776 - hash: "f5b941f5741a9a78122605576809c395" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 124 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7792 - hash: "ffc96a85d7dbbed257b69a0c735e21b8" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 122 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7808 - hash: "cfb6335c5449554e631d6e3106ea8a00" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 116 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7824 - hash: "ff9786e85ee8af6177ac8e5cc1307462" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 111 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7840 - hash: "3140b49dfee8e690b5c778044385e107" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 106 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7856 - hash: "0d899af24685a9998a6b961023286fde" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 104 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7872 - hash: "99ee1e8803c05e546a721b0c9ee39499" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 101 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7888 - hash: "96e7da2f895500a786ed36cb295e9003" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 99 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7904 - hash: "cd369fc5dc31814208e56cf7cd0decea" - } - Mouse { - type: 5 - button: 0 - buttons: 1 - x: 521; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 7920 - hash: "5fee72994b65a45b4900a3073f86a3e1" - } - Frame { - msec: 7936 - hash: "9a2f8a65d842b8f92998e6411f7cd53c" - } - Frame { - msec: 7952 - hash: "2848d69017ce71ae101ccdfa7c67f933" - } - Frame { - msec: 7968 - hash: "6568aa88e81f988f65da435df7166167" - } - Frame { - msec: 7984 - hash: "d5f15ee08a2d7667786757a378a7a7f4" - } - Frame { - msec: 8000 - hash: "9b566bd02a561b32d1a4c1ec99c2e2c3" - } - Frame { - msec: 8016 - hash: "580419e1c9e91046547d913f6b8790a4" - } - Frame { - msec: 8032 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Frame { - msec: 8048 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Frame { - msec: 8064 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Mouse { - type: 3 - button: 1 - buttons: 0 - x: 521; y: 97 - modifiers: 0 - sendToViewport: true - } - Frame { - msec: 8080 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Frame { - msec: 8096 - hash: "a5a3cd610ec0b35af1295ee6c41e09e3" - } - Frame { - msec: 8112 - hash: "83b91a371d682a501bc3a3fceabe4f8c" - } - Frame { - msec: 8128 - hash: "798b1dbfa0cce362213f426e2c60ac0e" - } - Frame { - msec: 8144 - hash: "d71b6a693c430a618c23413cb65bb320" - } - Frame { - msec: 8160 - hash: "2baae394390da39447a67151bc503d65" - } - Frame { - msec: 8176 - hash: "06688b05c61a7b862d39534207a8adab" - } - Frame { - msec: 8192 - hash: "a1d3042e16709817906dcdc673ee52c7" - } - Frame { - msec: 8208 - hash: "236dd41feac1b1a8a4bd7911bb184da2" - } - Frame { - msec: 8224 - hash: "f3ec821bba1d32e90bdab0e85c07d7d8" - } - Frame { - msec: 8240 - hash: "e328c35adf7ffc3d7e3af97e798ec8a5" - } - Frame { - msec: 8256 - hash: "651101db68fd3ed1dc5f441c126dc31b" - } - Frame { - msec: 8272 - hash: "651101db68fd3ed1dc5f441c126dc31b" - } - Frame { - msec: 8288 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8304 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8320 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8336 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8352 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8368 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8384 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8400 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8416 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8432 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8448 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8464 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8480 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8496 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8512 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8528 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8544 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8560 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8576 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8592 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8608 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8624 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8640 - image: "listview.8.png" - } - Frame { - msec: 8656 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8672 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8688 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8704 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8720 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8736 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8752 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8768 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8784 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8800 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8816 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8832 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8848 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8864 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8880 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8896 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8912 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8928 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8944 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8960 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8976 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 8992 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9008 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9024 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9040 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9056 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9072 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9088 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9104 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9120 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9136 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9152 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9168 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9184 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9200 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9216 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9232 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9248 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9264 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9280 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9296 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9312 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9328 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9344 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9360 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9376 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9392 - hash: "1171be123a361d72859c25434573482c" - } - Frame { - msec: 9408 - hash: "1171be123a361d72859c25434573482c" - } -} diff --git a/tests/auto/declarative/qmlvisual/ListView/listview.qml b/tests/auto/declarative/qmlvisual/ListView/listview.qml index 7e7af59..35ec982 100644 --- a/tests/auto/declarative/qmlvisual/ListView/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/listview.qml @@ -1,5 +1,6 @@ import QtQuick 1.0 +// Broken - QTBUG-14794 Rectangle { width: 600; height: 300; color: "white" diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp index a2d3273..21c5aa0 100644 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp @@ -143,7 +143,7 @@ void tst_qmlvisual::visual_data() foreach (const QString &file, files) { QString testdata = toTestScript(file); - if (testdata.isEmpty()) + if (testdata.isEmpty() || !QFile::exists(testdata+".qml")) continue; QTest::newRow(file.toLatin1().constData()) << file << testdata; diff --git a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml b/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml deleted file mode 100644 index 6122138..0000000 --- a/tests/auto/declarative/qmlvisual/webview/autosize/data-X11/autosize.qml +++ /dev/null @@ -1,115 +0,0 @@ -import Qt.VisualTest 4.7 - -VisualTest { - Frame { - msec: 0 - } - Frame { - msec: 16 - hash: "b2d863e57dee2a297d038e18acc70f92" - } - Frame { - msec: 32 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 48 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 64 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 80 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 96 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 112 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 128 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 144 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 160 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 176 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 192 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 208 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 224 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 240 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 256 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 272 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 288 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 304 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 320 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 336 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 352 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 368 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 384 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 400 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 416 - hash: "903a4c7e619abba5342c8c827f26a722" - } - Frame { - msec: 432 - hash: "903a4c7e619abba5342c8c827f26a722" - } -} -- cgit v0.12 From 8e3a0c2df1cff2ca960555ad16654ff77f7efcc8 Mon Sep 17 00:00:00 2001 From: Alan Alpert <alan.alpert@nokia.com> Date: Fri, 29 Oct 2010 14:58:58 +1000 Subject: Add 'skip' property that QML visual tests can use This property can be set with a reason to skip the test (i.e. known bug) and the failure will not count for blocking purposes. This change also alters one of the failing tests to use the new property Task-number: QTBUG-14792 Reviewed-by: Michael Brasser --- .../qmlvisual/ListView/data/listview.0.png | Bin 1510 -> 1580 bytes .../qmlvisual/ListView/data/listview.1.png | Bin 1510 -> 1580 bytes .../qmlvisual/ListView/data/listview.10.png | Bin 1588 -> 0 bytes .../qmlvisual/ListView/data/listview.11.png | Bin 1575 -> 0 bytes .../qmlvisual/ListView/data/listview.12.png | Bin 1502 -> 0 bytes .../qmlvisual/ListView/data/listview.13.png | Bin 1583 -> 0 bytes .../qmlvisual/ListView/data/listview.14.png | Bin 1681 -> 0 bytes .../qmlvisual/ListView/data/listview.15.png | Bin 1524 -> 0 bytes .../qmlvisual/ListView/data/listview.16.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data/listview.17.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data/listview.18.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data/listview.19.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data/listview.2.png | Bin 1656 -> 1661 bytes .../qmlvisual/ListView/data/listview.3.png | Bin 1524 -> 1649 bytes .../qmlvisual/ListView/data/listview.4.png | Bin 1678 -> 1669 bytes .../qmlvisual/ListView/data/listview.5.png | Bin 1510 -> 1651 bytes .../qmlvisual/ListView/data/listview.6.png | Bin 1573 -> 1611 bytes .../qmlvisual/ListView/data/listview.7.png | Bin 1669 -> 1579 bytes .../qmlvisual/ListView/data/listview.8.png | Bin 1658 -> 1579 bytes .../qmlvisual/ListView/data/listview.9.png | Bin 1510 -> 0 bytes .../qmlvisual/ListView/data/listview.qml | 2227 ++++++++++++++++++++ .../declarative/qmlvisual/ListView/listview.qml | 2 +- tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp | 4 +- tools/qml/main.cpp | 3 + tools/qml/qdeclarativetester.cpp | 32 +- tools/qml/qdeclarativetester.h | 1 + tools/qml/qmlruntime.h | 3 +- 27 files changed, 2263 insertions(+), 9 deletions(-) delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.10.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.11.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.12.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.13.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.14.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.15.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.16.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.17.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.18.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.19.png delete mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.9.png create mode 100644 tests/auto/declarative/qmlvisual/ListView/data/listview.qml diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png index 581e824..78c1c27 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.0.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png index 581e824..ecd1e01 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.1.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.10.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.10.png deleted file mode 100644 index dcfca3f..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.10.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.11.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.11.png deleted file mode 100644 index 7cc4047..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.11.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.12.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.12.png deleted file mode 100644 index a97f4ad..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.12.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.13.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.13.png deleted file mode 100644 index 7a8c6bd..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.13.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.14.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.14.png deleted file mode 100644 index ae47356..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.14.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.15.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.15.png deleted file mode 100644 index b3a7260..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.15.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.16.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.16.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.16.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.17.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.17.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.17.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.18.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.18.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.18.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.19.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.19.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.19.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png index 579c68c..ba1733f 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.2.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png index b3a7260..7a393d1 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.3.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png index 19758b0..cb73ca9 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.4.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png index 581e824..cbbe6d7 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.5.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png index 82cac48..38ed525 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.6.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png index 9277a82..9e7bd6e 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.7.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png index 8c36da7..9e7bd6e 100644 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png and b/tests/auto/declarative/qmlvisual/ListView/data/listview.8.png differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.9.png b/tests/auto/declarative/qmlvisual/ListView/data/listview.9.png deleted file mode 100644 index 581e824..0000000 Binary files a/tests/auto/declarative/qmlvisual/ListView/data/listview.9.png and /dev/null differ diff --git a/tests/auto/declarative/qmlvisual/ListView/data/listview.qml b/tests/auto/declarative/qmlvisual/ListView/data/listview.qml new file mode 100644 index 0000000..1db722f --- /dev/null +++ b/tests/auto/declarative/qmlvisual/ListView/data/listview.qml @@ -0,0 +1,2227 @@ +import Qt.VisualTest 4.7 + +VisualTest { + Frame { + msec: 0 + } + Frame { + msec: 16 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 32 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 48 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 64 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 80 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 96 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 112 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 128 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 144 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 160 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 176 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 192 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 208 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 224 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 240 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 256 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 272 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 288 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 304 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 320 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 336 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 352 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 368 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 384 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 400 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Frame { + msec: 416 + hash: "95c48087b681f0bcb09b2d7aad1a0299" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 432 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 448 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 464 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 480 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 496 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 512 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 528 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 544 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 560 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 576 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 592 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 608 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 624 + hash: "3b88645092be28037fca4a6034f5b2f7" + } + Frame { + msec: 640 + hash: "435ac0668ad4d0e196eb040d385053cb" + } + Frame { + msec: 656 + hash: "e9532fe1acc1c27a2119e6dde3e01637" + } + Frame { + msec: 672 + hash: "9c757feaf5a8d1e88c659fca97e3b7b2" + } + Frame { + msec: 688 + hash: "ccc7785a45a41615db01580835a4638e" + } + Frame { + msec: 704 + hash: "11ad92022bcd5d3fbd28ffb9f51c69eb" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 720 + hash: "a8a94e1f95216864c368b8c3d0ae682b" + } + Frame { + msec: 736 + hash: "d83e213d35e7fcff2580b4e197547f24" + } + Frame { + msec: 752 + hash: "9e5a57fabdc443e395cacbaf6e0c9bef" + } + Frame { + msec: 768 + hash: "9e5a57fabdc443e395cacbaf6e0c9bef" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 784 + hash: "0e9c577fa86d9b3734da0d50040624e0" + } + Frame { + msec: 800 + hash: "834cf83f0f8d613191cac775b5737664" + } + Frame { + msec: 816 + hash: "495ea7650b2ae45f9afd7f9f6ecdd793" + } + Frame { + msec: 832 + hash: "55c761ccee6543bb3b9564bb813df58e" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 848 + hash: "e29e5f86cb3b1fb5ec77fde696024812" + } + Frame { + msec: 864 + hash: "f24b7d5a8f5ab03460505d6203269d1b" + } + Frame { + msec: 880 + hash: "893473965efe9e0540b197cbaa3f765d" + } + Frame { + msec: 896 + hash: "a541b7be2f370f948048b2101b037ab7" + } + Frame { + msec: 912 + hash: "a541b7be2f370f948048b2101b037ab7" + } + Frame { + msec: 928 + hash: "a541b7be2f370f948048b2101b037ab7" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 944 + hash: "a541b7be2f370f948048b2101b037ab7" + } + Frame { + msec: 960 + image: "listview.0.png" + } + Frame { + msec: 976 + hash: "e97f78604c0c6d468c8dd225642e2ebd" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 992 + hash: "7b9d4b14eedfa4ff10dd7e3747c4a7f5" + } + Frame { + msec: 1008 + hash: "6d55ba6287c720614854d36bb681a9f3" + } + Frame { + msec: 1024 + hash: "3e7a44811f59bfb81de2f4f884a7af17" + } + Frame { + msec: 1040 + hash: "101113a7723b9d09275f66152b82142f" + } + Frame { + msec: 1056 + hash: "0044e068522f912630868476f8bf49f8" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1072 + hash: "4a50079d15b51758bf39b6d3fc51f337" + } + Frame { + msec: 1088 + hash: "df659ebf6a5926943de92d6838127b9c" + } + Frame { + msec: 1104 + hash: "0aa422c4af139023817465090f42f264" + } + Frame { + msec: 1120 + hash: "fb598a01e5cd9e3655f86a47ff7bda0d" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1136 + hash: "83a63dfcdbb27035d3e5208b066a2e1e" + } + Frame { + msec: 1152 + hash: "c8250f4cf69642e78523412b7b75501c" + } + Frame { + msec: 1168 + hash: "c57e421c803e8bfa1a85409cbb858829" + } + Frame { + msec: 1184 + hash: "f7611692216c0519b9188924e8a6b92e" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1200 + hash: "0f9495c9f9f91c409f868959854824ed" + } + Frame { + msec: 1216 + hash: "d4a752aa1c4112a3b60f40468932945d" + } + Frame { + msec: 1232 + hash: "fbe2d7c160132f312911aabe4cad8bf5" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1248 + hash: "2d3c7dc0d0efac613a32860968d166ac" + } + Frame { + msec: 1264 + hash: "fa0891d8c22dd26c1cb27d86864a8225" + } + Frame { + msec: 1280 + hash: "5d26f27061b319c391961dc30d985593" + } + Frame { + msec: 1296 + hash: "e038ae877e8dddd3d99bf97475f59b3d" + } + Frame { + msec: 1312 + hash: "f44adc5e46d320c62095e1285ca8848b" + } + Frame { + msec: 1328 + hash: "f44adc5e46d320c62095e1285ca8848b" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1344 + hash: "17f6b13e0556ac07dc527a9013a307a1" + } + Frame { + msec: 1360 + hash: "70a1cc3b6dd3be4e30bb6763344fb980" + } + Frame { + msec: 1376 + hash: "097c37d2243a27b8e800b5d4ec94b2e3" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1392 + hash: "15839227c002b1c71eb516f6653a7531" + } + Frame { + msec: 1408 + hash: "f4a8103ef9010c651368d325fe9eee98" + } + Frame { + msec: 1424 + hash: "d158ec1c83719c58c1d0a2e4cc90998f" + } + Frame { + msec: 1440 + hash: "6f66a44f5dc3fe150db2291b8cbc7327" + } + Frame { + msec: 1456 + hash: "8a016eac5befb215a157f7fe5bc743de" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1472 + hash: "807129a4c578b1a5f0d3d84686eb0553" + } + Frame { + msec: 1488 + hash: "f9f2da990518048f0b050cc193567a20" + } + Frame { + msec: 1504 + hash: "762de7b1f4e56df6d7a245a23446884b" + } + Frame { + msec: 1520 + hash: "84ba7354badc3dca92974933c3610010" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1536 + hash: "36c3018870d74cff638d00acd03a0cf0" + } + Frame { + msec: 1552 + hash: "82b756a14eb0e802cd3e2d2d2a07f28e" + } + Frame { + msec: 1568 + hash: "74af1c12613130dc53533fe1178d5534" + } + Frame { + msec: 1584 + hash: "c32818b0ba24f11295580d1ccffffdc0" + } + Frame { + msec: 1600 + hash: "c32818b0ba24f11295580d1ccffffdc0" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1616 + hash: "b858be109fac6852234bf1db161e515b" + } + Frame { + msec: 1632 + hash: "9b3f8cffd3e79241d8a3b1f7d80790db" + } + Frame { + msec: 1648 + hash: "840dc72aabc4a9b28bae641354676324" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1664 + hash: "c60bfd5cc8b26a841035db29baba5dab" + } + Frame { + msec: 1680 + hash: "88d80dc8b0d968aa718ff464e507f53b" + } + Frame { + msec: 1696 + hash: "f7ffc82d3448c415b4997401fb61b96b" + } + Frame { + msec: 1712 + hash: "df8e9a09752fe2b2eff9184ba8e88ef1" + } + Frame { + msec: 1728 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Frame { + msec: 1744 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Key { + type: 6 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1760 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Frame { + msec: 1776 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Key { + type: 7 + key: 16777237 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1792 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Frame { + msec: 1808 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Frame { + msec: 1824 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Frame { + msec: 1840 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Frame { + msec: 1856 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Frame { + msec: 1872 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Key { + type: 6 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1888 + hash: "97330e949a609f5f33832dd17e0c3716" + } + Frame { + msec: 1904 + hash: "15e45e1f64438d7c31e79a9602e1db7a" + } + Frame { + msec: 1920 + image: "listview.1.png" + } + Frame { + msec: 1936 + hash: "fae571933c4eafb33bb764bd1cddfc30" + } + Key { + type: 7 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 1952 + hash: "33091359f9e6f21a14bf415d32d4d3b1" + } + Frame { + msec: 1968 + hash: "0fdcffa304f3eadde5cd7866d0a74e72" + } + Frame { + msec: 1984 + hash: "024539dbf8e66f1ba7d5d8c91bd278f0" + } + Frame { + msec: 2000 + hash: "4900babcc0a7bbd622a72590dcb0eea4" + } + Frame { + msec: 2016 + hash: "d6f68d576fe46bb832accf5e9e590f7e" + } + Key { + type: 6 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2032 + hash: "5a54bcb9a59268d70a2bb99bd32395be" + } + Frame { + msec: 2048 + hash: "72fbb18da8c5ef3e98390796dad31390" + } + Frame { + msec: 2064 + hash: "ac073b398e3d50ef10c92d8e6b4b3fa0" + } + Frame { + msec: 2080 + hash: "41e38d866d65bf1d42448b07a133cd93" + } + Key { + type: 7 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2096 + hash: "c45310b94cd2ff276e97be1706e1d432" + } + Frame { + msec: 2112 + hash: "aefc6994644d266d4be0310f01c28be7" + } + Frame { + msec: 2128 + hash: "f07bcb1d8ad693e1ddd79bf651126554" + } + Frame { + msec: 2144 + hash: "62ff227caab71d2d98daf0da302ec796" + } + Key { + type: 6 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2160 + hash: "72350eeeaefd043354c82ca2039cff59" + } + Frame { + msec: 2176 + hash: "d89f288f0b231b4ec4a634b3856ecf8e" + } + Frame { + msec: 2192 + hash: "bc7d7e2253651cb3ea1cdebf9f188ae0" + } + Frame { + msec: 2208 + hash: "7c89cdb693489708fe2db327ae66d083" + } + Frame { + msec: 2224 + hash: "8ca778c1812ede19545c3c70020faa67" + } + Key { + type: 7 + key: 16777235 + modifiers: 0 + text: "" + autorep: false + count: 1 + } + Frame { + msec: 2240 + hash: "bd50cd99f177eb3f70b2ffad9f7a49e1" + } + Frame { + msec: 2256 + hash: "b439c3576cad17689e7b6b134bb04e14" + } + Frame { + msec: 2272 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2288 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2304 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2320 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2336 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2352 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2368 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2384 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2400 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2416 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 488; y: 56 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2432 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Frame { + msec: 2448 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 489; y: 56 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2464 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 490; y: 59 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 491; y: 64 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2480 + hash: "9489c0e1e8cc5675bbc42b78e567eab6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 494; y: 74 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 90 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2496 + hash: "6502b3a17af7ebca92d4794f0c2a62ac" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 499; y: 108 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 501; y: 126 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2512 + hash: "8a7ac12d59126b2784fd0af8d6b762a5" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 505; y: 170 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2528 + hash: "12fa9c4e2d6681f3a0643d8243d83e23" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 509; y: 214 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2544 + hash: "ccf18952f7c9686bd12fa196af9919e6" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 516; y: 289 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2560 + hash: "70d654eecaf2163971596a503d2925a0" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 518; y: 316 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 518; y: 316 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 2576 + hash: "01ef888104f290f25612970a91e64620" + } + Frame { + msec: 2592 + hash: "25b730c7c126875078c64cce118f6277" + } + Frame { + msec: 2608 + hash: "85c0127315a489cfcf14ec7e16e43f4c" + } + Frame { + msec: 2624 + hash: "65f1be6c38fa9e024671bfe612c585b4" + } + Frame { + msec: 2640 + hash: "74b7b60a048d37c38f179d071e9d9730" + } + Frame { + msec: 2656 + hash: "13c96d066af31d75647b0be21f1ae68d" + } + Frame { + msec: 2672 + hash: "a1f880a95596f6c82385e51a4853327e" + } + Frame { + msec: 2688 + hash: "8596123a6b0f234d90869d823448ff8e" + } + Frame { + msec: 2704 + hash: "1ca65b63eea4034e3889f53c86ac95b7" + } + Frame { + msec: 2720 + hash: "b847b515d89ad0394ef0fd4954158940" + } + Frame { + msec: 2736 + hash: "f73f7747115fdda2f0a13734a0dc9446" + } + Frame { + msec: 2752 + hash: "5b31a1aca62cf654428e4d7fc25208b6" + } + Frame { + msec: 2768 + hash: "f797d3c0364515138059967e17e185ed" + } + Frame { + msec: 2784 + hash: "dff0266adf50e30bc2a7674b001d19dc" + } + Frame { + msec: 2800 + hash: "610c72005c1aa83306fecc9ca34bf5a4" + } + Frame { + msec: 2816 + hash: "542587ab3dff0cfb3f724096871e925a" + } + Frame { + msec: 2832 + hash: "fd79c9159a77b1be25d9cfde2e6cecb6" + } + Frame { + msec: 2848 + hash: "e3d4bb451d6210e6006c54178d406068" + } + Frame { + msec: 2864 + hash: "3dd3c57049bddb206c0204d7fbf673b0" + } + Frame { + msec: 2880 + image: "listview.2.png" + } + Frame { + msec: 2896 + hash: "44008e30de01ecb1893a0fe4b06ec63a" + } + Frame { + msec: 2912 + hash: "c593c7e7edab1a034b96f778259b5b91" + } + Frame { + msec: 2928 + hash: "9ac483cb720fef5783abd4e0072cf71e" + } + Frame { + msec: 2944 + hash: "bed738f1883a76c5169dd2726456b9ea" + } + Frame { + msec: 2960 + hash: "c80c45be3189269d8edc5be22db7227d" + } + Frame { + msec: 2976 + hash: "3dcb08dd8ac8f083ad6aacbafaae05f4" + } + Frame { + msec: 2992 + hash: "38850ecc15cdcd55b758f94e8ac7fe55" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 517; y: 241 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3008 + hash: "033c44c51b8ab8f1555e153e20a80699" + } + Frame { + msec: 3024 + hash: "b6dc510369c679a028bb059e74796f6c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 518; y: 240 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 519; y: 239 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3040 + hash: "f3606887493ee9c0db86b1c6cc6fef6d" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 524; y: 229 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3056 + hash: "79975f978ebf4556381d08b500dcab72" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 530; y: 204 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3072 + hash: "1345974969c1a56c4c14c74301985289" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 532; y: 167 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3088 + hash: "fd623f2bf161f326da6dec8b5d8bf16f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 530; y: 117 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 530; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3104 + hash: "f1dfb47c5d4449e6cf7e2e6a2e86b1c5" + } + Frame { + msec: 3120 + hash: "26b31d08a1d50614771bec0458a2776b" + } + Frame { + msec: 3136 + hash: "dd017925e34f942c279ceb18b5e222da" + } + Frame { + msec: 3152 + hash: "be400b4ad1d9a1ccca56b8ff6b809272" + } + Frame { + msec: 3168 + hash: "4a4faa75155bb2c260f3a35675bd113e" + } + Frame { + msec: 3184 + hash: "3884c5d0d4c127876ba92a7b3a416339" + } + Frame { + msec: 3200 + hash: "b3d15196484410e24084b0f0d8fd683f" + } + Frame { + msec: 3216 + hash: "ed636ae433d185338ddbf7bffae731e1" + } + Frame { + msec: 3232 + hash: "45bacd56ecaeefd9c80c7bd77e79cff0" + } + Frame { + msec: 3248 + hash: "ad5239583e3924c98358e0ec7d12fd39" + } + Frame { + msec: 3264 + hash: "8e0fbae41165c553af4a49ed5691dfbb" + } + Frame { + msec: 3280 + hash: "c697930f45e23628c83a248de44472fb" + } + Frame { + msec: 3296 + hash: "840e1f8ba5fe6e42d6dc41c1e42dc3dc" + } + Frame { + msec: 3312 + hash: "e071cd254b69da678997eeb7ac0a13f8" + } + Frame { + msec: 3328 + hash: "27954d55c9772aa0ba237e7bdff75517" + } + Frame { + msec: 3344 + hash: "5879feff61f02a9322b8620c84be4462" + } + Frame { + msec: 3360 + hash: "feba016bdcdc3f59b70000375a5b4242" + } + Frame { + msec: 3376 + hash: "e57ae7048209884fb024481318c88080" + } + Frame { + msec: 3392 + hash: "93707dc8ec5e02adb691d0c6f3ff7772" + } + Frame { + msec: 3408 + hash: "ab2d8b822a4e2cd7c6a9cfa2e81d2113" + } + Frame { + msec: 3424 + hash: "a9d0e39b30b16eafec85e08a75e2b50f" + } + Frame { + msec: 3440 + hash: "8c94d16c8cde9b3d0ac8ccfb1374387d" + } + Frame { + msec: 3456 + hash: "7f4873f6c773b3d2d814bb1ea5c5dec6" + } + Frame { + msec: 3472 + hash: "77f91f90744a23bbe172629f311d1a4e" + } + Frame { + msec: 3488 + hash: "3963753a90d6cbf74bc21c9d06f4227b" + } + Frame { + msec: 3504 + hash: "042adc29907ca50187d4aad772a7500d" + } + Frame { + msec: 3520 + hash: "90accd1b4f5bbe5cc59f3a73d697ea18" + } + Frame { + msec: 3536 + hash: "3ce26e9c0b2ee1b4cb3dc19bbac92736" + } + Frame { + msec: 3552 + hash: "ca976ad1590e156e155cdba452dbc0ce" + } + Frame { + msec: 3568 + hash: "b342477cedfb2a3839aa145703f33cb4" + } + Frame { + msec: 3584 + hash: "8fccdb3fbf637426b8b3df088a5a24a5" + } + Frame { + msec: 3600 + hash: "973c8d2d2496c5cc871aecc0b6be0bbb" + } + Frame { + msec: 3616 + hash: "6af9574467c7b565450dc6533dddb0f2" + } + Frame { + msec: 3632 + hash: "ced3d8a93bf564c0ebec837f1655c202" + } + Frame { + msec: 3648 + hash: "0a38fe8ac9024b4a30b8efbcf155bbd8" + } + Frame { + msec: 3664 + hash: "2421dc73fe95e8abb246ae894ac255b2" + } + Frame { + msec: 3680 + hash: "98789298fcc85a0b3307036c800d80af" + } + Frame { + msec: 3696 + hash: "6361b512cfd9aa5f97529089ad7d902c" + } + Frame { + msec: 3712 + hash: "5f26400f45140d634ac49ae5ce6bc2cf" + } + Frame { + msec: 3728 + hash: "49586dcf6a4c7a80563e9cc67b16a520" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 487; y: 34 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3744 + hash: "fa8827f2a5eefaa9f740e36e4eb05083" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 488; y: 40 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3760 + hash: "5f2e33f8b436686840a124ba71f7d203" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 489; y: 49 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3776 + hash: "b0093a1f538381e79f43c91192437be5" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 490; y: 55 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3792 + hash: "9a8e645817c214a0353beadc0bc2e3f8" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 490; y: 60 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3808 + hash: "3f059fefcb7908e6f89a4b245bd0c948" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 491; y: 64 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3824 + hash: "48ccbb037ebe01dc9c73fafa54aa6175" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 491; y: 72 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3840 + image: "listview.3.png" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 493; y: 93 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3856 + hash: "3398c59636fc02358fc0b22d7bc2afd3" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 493; y: 123 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3872 + hash: "86ebc9911fc2da29a1960ae3999e4329" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 494; y: 141 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 494; y: 141 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 3888 + hash: "7e910c843f531af6d08a0c7ea890c823" + } + Frame { + msec: 3904 + hash: "7e92be7beeba33541e16305d5cb7b3b6" + } + Frame { + msec: 3920 + hash: "1e7caa1bb4627bea028cdd2ef2260d9f" + } + Frame { + msec: 3936 + hash: "a7d77ec36935d8d8c8a6120d373d714c" + } + Frame { + msec: 3952 + hash: "770e16a5c7bf17522445bdae41d170df" + } + Frame { + msec: 3968 + hash: "d5c93bb61aeef777bb91dd504e91ecf6" + } + Frame { + msec: 3984 + hash: "2247494cb67e7f0cade508b6ef46cb3e" + } + Frame { + msec: 4000 + hash: "61a480c3a29f37b4383b430b02eb5dc1" + } + Frame { + msec: 4016 + hash: "f741ede20b0ad51f81c7aba44705a08e" + } + Frame { + msec: 4032 + hash: "73bb52725e3906ac3074371936e9f3f3" + } + Frame { + msec: 4048 + hash: "a915081e3c6ca9397567cb3df2aed517" + } + Frame { + msec: 4064 + hash: "79b514577bcc36db6de4db2e8b284a4c" + } + Frame { + msec: 4080 + hash: "5412571baa69b8e0c3b4daf52796482a" + } + Frame { + msec: 4096 + hash: "7f739333fdc9c3457461e7fcf49bf650" + } + Frame { + msec: 4112 + hash: "ed9a9fdd4bea6e9f7f7078934337b4a6" + } + Frame { + msec: 4128 + hash: "4fbc687f1a5b4364a90441134162c817" + } + Frame { + msec: 4144 + hash: "7c91ad050f31e30b7f16b99dd1ed19df" + } + Frame { + msec: 4160 + hash: "44777e9a08d5f112b922272227b22558" + } + Frame { + msec: 4176 + hash: "c4f7523d0a214e188c95d7cbd4455a9d" + } + Frame { + msec: 4192 + hash: "7703b85f0bda71fa8ff84a557b015458" + } + Mouse { + type: 2 + button: 1 + buttons: 1 + x: 491; y: 193 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4208 + hash: "0bd445389e69d1d758a9b17eee69d584" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 491; y: 189 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4224 + hash: "13bfb19a05b5aef65f7f70b2c0b01424" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 493; y: 187 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4240 + hash: "9d6a81d6f7df8aa93c9421fa3cdc3a7d" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 494; y: 182 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 495; y: 180 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4256 + hash: "4d88acb157fdeb0c608b6c9d75e999e8" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 496; y: 174 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4272 + hash: "fe506e31923e1feb2d2b3c105444f61f" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 496; y: 168 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4288 + hash: "72c0ccbbf296742f67139bd9a4abcf6b" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 159 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 156 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4304 + hash: "75b083e391afb3cdb8e4bcd885f17966" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 147 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4320 + hash: "2babcf0e4d434120e0a7eb7d8716baa7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 139 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4336 + hash: "676e6a7587781146f58f82ca1ceac2b3" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 128 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4352 + hash: "58ecd6234c3c0f7ceec942098e3ae0fc" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 120 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4368 + hash: "25a8af71ba1cf4581682cbec3b9baf8a" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4384 + hash: "11c305643f2ed535a6dc0a7a54caf17c" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 498; y: 114 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4400 + hash: "29b33349f90286b2c078ae8d5896a338" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 498; y: 112 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4416 + hash: "af917864d02b49bef4190ee1fca607dc" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 498; y: 110 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4432 + hash: "7b1af6cddd2f78615354f747dfd016b9" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 498; y: 109 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 498; y: 108 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4448 + hash: "84f1757af8c26b4f00298090e09f7f68" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 498; y: 106 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4464 + hash: "fd214ddbd1f60dc733994ba7a2048951" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 499; y: 105 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4480 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4496 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4512 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4528 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4544 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4560 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4576 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4592 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4608 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4624 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4640 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4656 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4672 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4688 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4704 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4720 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4736 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4752 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4768 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4784 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4800 + image: "listview.4.png" + } + Frame { + msec: 4816 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4832 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Frame { + msec: 4848 + hash: "01f209a3b5e9adaa32ad55c7d1f1d4c7" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 499; y: 106 + modifiers: 0 + sendToViewport: true + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 498; y: 107 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4864 + hash: "1dc57bc129f3a6d5287ec0fa2a99d62e" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 497; y: 110 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4880 + hash: "7b1af6cddd2f78615354f747dfd016b9" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 496; y: 113 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4896 + hash: "a890208c702b9fde41584a33b3038940" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 495; y: 115 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4912 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Mouse { + type: 5 + button: 0 + buttons: 1 + x: 494; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 4928 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 4944 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 4960 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 4976 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 4992 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5008 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5024 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5040 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5056 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Mouse { + type: 3 + button: 1 + buttons: 0 + x: 494; y: 117 + modifiers: 0 + sendToViewport: true + } + Frame { + msec: 5072 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5088 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5104 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5120 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5136 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5152 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5168 + hash: "cdc2d0868771429226c74e77676f55f1" + } + Frame { + msec: 5184 + hash: "768d6d504470ce841e51022dd514edc5" + } + Frame { + msec: 5200 + hash: "768d6d504470ce841e51022dd514edc5" + } + Frame { + msec: 5216 + hash: "768d6d504470ce841e51022dd514edc5" + } + Frame { + msec: 5232 + hash: "768d6d504470ce841e51022dd514edc5" + } + Frame { + msec: 5248 + hash: "768d6d504470ce841e51022dd514edc5" + } + Frame { + msec: 5264 + hash: "768d6d504470ce841e51022dd514edc5" + } + Frame { + msec: 5280 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5296 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5312 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5328 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5344 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5360 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5376 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5392 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5408 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5424 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5440 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5456 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5472 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5488 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5504 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5520 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5536 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5552 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5568 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5584 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5600 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5616 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5632 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5648 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5664 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5680 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5696 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5712 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5728 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5744 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5760 + image: "listview.5.png" + } + Frame { + msec: 5776 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5792 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5808 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5824 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5840 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5856 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5872 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5888 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5904 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5920 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5936 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5952 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5968 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 5984 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6000 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6016 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6032 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6048 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6064 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6080 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6096 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6112 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } + Frame { + msec: 6128 + hash: "6df3f8000a0d390b89d41c6ece6ea221" + } +} diff --git a/tests/auto/declarative/qmlvisual/ListView/listview.qml b/tests/auto/declarative/qmlvisual/ListView/listview.qml index 35ec982..43c86a0 100644 --- a/tests/auto/declarative/qmlvisual/ListView/listview.qml +++ b/tests/auto/declarative/qmlvisual/ListView/listview.qml @@ -1,7 +1,7 @@ import QtQuick 1.0 -// Broken - QTBUG-14794 Rectangle { + property string skip: "Incorrect start: QTBUG-14794" width: 600; height: 300; color: "white" ListModel { diff --git a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp index 21c5aa0..7cd96e2 100644 --- a/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp +++ b/tests/auto/declarative/qmlvisual/tst_qmlvisual.cpp @@ -157,7 +157,7 @@ void tst_qmlvisual::visual() QStringList arguments; arguments << "-script" << testdata - << "-scriptopts" << "play,testimages,testerror,exitoncomplete,exitonfailure" + << "-scriptopts" << "play,testimages,testerror,testskip,exitoncomplete,exitonfailure" << file; #ifdef Q_WS_QWS arguments << "-qws"; @@ -278,7 +278,7 @@ void action(Mode mode, const QString &file) break; case Play: arguments << "-script" << testdata - << "-scriptopts" << "play,testimages,testerror,exitoncomplete" + << "-scriptopts" << "play,testimages,testerror,testskip,exitoncomplete" << file; break; case TestVisuals: diff --git a/tools/qml/main.cpp b/tools/qml/main.cpp index 00d43c1..579f1ab 100644 --- a/tools/qml/main.cpp +++ b/tools/qml/main.cpp @@ -172,6 +172,7 @@ void scriptOptsUsage() qWarning(" play ..................................... playback an existing script"); qWarning(" testimages ............................... record images or compare images on playback"); qWarning(" testerror ................................ test 'error' property of root item on playback"); + qWarning(" testskip ................................ test 'skip' property of root item on playback"); qWarning(" snapshot ................................. file being recorded is static,"); qWarning(" only one frame will be recorded or tested"); qWarning(" exitoncomplete ........................... cleanly exit the viewer on script completion"); @@ -305,6 +306,8 @@ static void parseScriptOptions() scriptOptions |= QDeclarativeViewer::TestImages; } else if (option == QLatin1String("testerror")) { scriptOptions |= QDeclarativeViewer::TestErrorProperty; + } else if (option == QLatin1String("testskip")) { + scriptOptions |= QDeclarativeViewer::TestSkipProperty; } else if (option == QLatin1String("exitoncomplete")) { scriptOptions |= QDeclarativeViewer::ExitOnComplete; } else if (option == QLatin1String("exitonfailure")) { diff --git a/tools/qml/qdeclarativetester.cpp b/tools/qml/qdeclarativetester.cpp index 9864df6..a0ef4a1 100644 --- a/tools/qml/qdeclarativetester.cpp +++ b/tools/qml/qdeclarativetester.cpp @@ -128,16 +128,35 @@ void QDeclarativeTester::executefailure() { hasFailed = true; - if (options & QDeclarativeViewer::ExitOnFailure) - exit(-1); + if (options & QDeclarativeViewer::ExitOnFailure){ + testSkip(); + exit(hasFailed?-1:0); + } } void QDeclarativeTester::imagefailure() { hasFailed = true; - if (options & QDeclarativeViewer::ExitOnFailure) - exit(-1); + if (options & QDeclarativeViewer::ExitOnFailure){ + testSkip(); + exit(hasFailed?-1:0); + } +} + +void QDeclarativeTester::testSkip() +{ + if (options & QDeclarativeViewer::TestSkipProperty){ + QString e = m_view->rootObject()->property("skip").toString(); + if (!e.isEmpty()) { + if(hasFailed){ + qWarning() << "Test failed, but skipping it: " << e; + }else{ + qWarning() << "Test skipped: " << e; + } + hasFailed = 0; + } + } } void QDeclarativeTester::complete() @@ -149,7 +168,10 @@ void QDeclarativeTester::complete() hasFailed = true; } } - if (options & QDeclarativeViewer::ExitOnComplete) + + + testSkip(); + if (options & QDeclarativeViewer::ExitOnComplete) QApplication::exit(hasFailed?-1:0); if (hasCompleted) diff --git a/tools/qml/qdeclarativetester.h b/tools/qml/qdeclarativetester.h index 021869d..0cf508a 100644 --- a/tools/qml/qdeclarativetester.h +++ b/tools/qml/qdeclarativetester.h @@ -228,6 +228,7 @@ private: void imagefailure(); void complete(); + void testSkip(); enum Destination { View, ViewPort }; void addKeyEvent(Destination, QKeyEvent *); diff --git a/tools/qml/qmlruntime.h b/tools/qml/qmlruntime.h index d1ec26d..b43aa54 100644 --- a/tools/qml/qmlruntime.h +++ b/tools/qml/qmlruntime.h @@ -83,7 +83,8 @@ public: SaveOnExit = 0x00000010, ExitOnComplete = 0x00000020, ExitOnFailure = 0x00000040, - Snapshot = 0x00000080 + Snapshot = 0x00000080, + TestSkipProperty = 0x00000100 }; Q_DECLARE_FLAGS(ScriptOptions, ScriptOption) void setScript(const QString &s) { m_script = s; } -- cgit v0.12 From 95ef9a3d7eb851d47dabe3248672ea03e5faa0ce Mon Sep 17 00:00:00 2001 From: Yann Bodson <yann.bodson@nokia.com> Date: Fri, 29 Oct 2010 15:26:50 +1000 Subject: Regression: horizontal alignment bug with single line text Task-number: QTBUG-14841 --- src/declarative/graphicsitems/qdeclarativetext.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/declarative/graphicsitems/qdeclarativetext.cpp b/src/declarative/graphicsitems/qdeclarativetext.cpp index 865af2d..03c9765 100644 --- a/src/declarative/graphicsitems/qdeclarativetext.cpp +++ b/src/declarative/graphicsitems/qdeclarativetext.cpp @@ -292,12 +292,12 @@ QSize QDeclarativeTextPrivate::setupTextLayout() qreal lineWidth = 0; //set manual width - if ((wrapMode != QDeclarativeText::NoWrap || elideMode != QDeclarativeText::ElideNone) && q->widthValid()) + if (q->widthValid()) lineWidth = q->width(); QTextOption textOption = layout.textOption(); textOption.setWrapMode(QTextOption::WrapMode(wrapMode)); - textOption.setAlignment((Qt::Alignment)hAlign); + textOption.setAlignment(Qt::Alignment(hAlign)); layout.setTextOption(textOption); layout.beginLayout(); @@ -306,7 +306,7 @@ QSize QDeclarativeTextPrivate::setupTextLayout() if (!line.isValid()) break; - if ((wrapMode != QDeclarativeText::NoWrap || elideMode != QDeclarativeText::ElideNone) && q->widthValid()) { + if (q->widthValid()) { line.setLineWidth(lineWidth); line.setPosition(QPointF(0, height)); height += line.height(); -- cgit v0.12 From 60948c48adc376cefa774bd101de34c60db52dea Mon Sep 17 00:00:00 2001 From: Markus Goetz <Markus.Goetz@nokia.com> Date: Fri, 29 Oct 2010 10:23:07 +0200 Subject: QNAM: Fix doc rendering of QNetworkRequest Reviewed-by: Morten Engvoldsen --- src/network/access/qnetworkrequest.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/network/access/qnetworkrequest.cpp b/src/network/access/qnetworkrequest.cpp index d3084cf..b761af5 100644 --- a/src/network/access/qnetworkrequest.cpp +++ b/src/network/access/qnetworkrequest.cpp @@ -194,16 +194,12 @@ QT_BEGIN_NAMESPACE \value CookieLoadControlAttribute Requests only, type: QVariant::Int (default: QNetworkRequest::Automatic) Indicates whether to send 'Cookie' headers in the request. - This attribute is set to false by QtWebKit when creating a cross-origin XMLHttpRequest where withCredentials has not been set explicitly to true by the Javascript that created the request. - See \l{http://www.w3.org/TR/XMLHttpRequest2/#credentials-flag}{here} for more information. - (This value was introduced in 4.7.) - \value CookieSaveControlAttribute Requests only, type: QVariant::Int (default: QNetworkRequest::Automatic) Indicates whether to save 'Cookie' headers received from the server in reply @@ -211,9 +207,7 @@ QT_BEGIN_NAMESPACE This attribute is set to false by QtWebKit when creating a cross-origin XMLHttpRequest where withCredentials has not been set explicitly to true by the Javascript that created the request. - See \l{http://www.w3.org/TR/XMLHttpRequest2/#credentials-flag} {here} for more information. - (This value was introduced in 4.7.) \value AuthenticationReuseAttribute @@ -225,16 +219,12 @@ QT_BEGIN_NAMESPACE This attribute is set to QNetworkRequest::Manual by QtWebKit when creating a cross-origin XMLHttpRequest where withCredentials has not been set explicitly to true by the Javascript that created the request. - See \l{http://www.w3.org/TR/XMLHttpRequest2/#credentials-flag} {here} for more information. - (This value was introduced in 4.7.) \omitvalue MaximumDownloadBufferSizeAttribute - (This value was introduced in 4.7.) \omitvalue DownloadBufferAttribute - (This value was introduced in 4.7.) \value User Special type. Additional information can be passed in -- cgit v0.12