summaryrefslogtreecommitdiffstats
path: root/tests/auto/pdfquick/pdfpageimage/data/pdfPageImage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/pdfquick/pdfpageimage/data/pdfPageImage.qml')
-rw-r--r--tests/auto/pdfquick/pdfpageimage/data/pdfPageImage.qml16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/auto/pdfquick/pdfpageimage/data/pdfPageImage.qml b/tests/auto/pdfquick/pdfpageimage/data/pdfPageImage.qml
new file mode 100644
index 000000000..a268bf14b
--- /dev/null
+++ b/tests/auto/pdfquick/pdfpageimage/data/pdfPageImage.qml
@@ -0,0 +1,16 @@
+import QtQuick
+import QtQuick.Pdf
+
+Item {
+ width: 320
+ height: 320
+
+ PdfDocument {
+ id: doc
+ source: "bookmarksAndLinks.pdf"
+ }
+
+ PdfPageImage {
+ anchors.centerIn: parent
+ }
+}