summaryrefslogtreecommitdiffstats
path: root/tests/auto/pdfquick/multipageview/data/jumpOnDocumentReady.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/pdfquick/multipageview/data/jumpOnDocumentReady.qml')
-rw-r--r--tests/auto/pdfquick/multipageview/data/jumpOnDocumentReady.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/auto/pdfquick/multipageview/data/jumpOnDocumentReady.qml b/tests/auto/pdfquick/multipageview/data/jumpOnDocumentReady.qml
new file mode 100644
index 000000000..ce74f5ed8
--- /dev/null
+++ b/tests/auto/pdfquick/multipageview/data/jumpOnDocumentReady.qml
@@ -0,0 +1,18 @@
+import QtQuick
+import QtQuick.Pdf
+
+PdfMultiPageView {
+ id: view
+ width: 480
+ height: 480
+
+ document: PdfDocument {
+ id: document
+ onStatusChanged: {
+ if(status === PdfDocument.Ready)
+ view.goToPage(2)
+ }
+ }
+
+ Component.onCompleted: document.source = "bookmarksAndLinks.pdf"
+}