diff options
author | Peter Varga <pvarga@inf.u-szeged.hu> | 2023-01-13 13:20:50 +0100 |
---|---|---|
committer | Peter Varga <pvarga@inf.u-szeged.hu> | 2023-01-16 14:32:36 +0100 |
commit | 86da28c5658230a361cd94a514d500c3ad3a7de9 (patch) | |
tree | 9b730252d799d9c84c4b96bdcf8a3c60981a6791 /tests/auto/quick/qmltests/data/tst_faviconDatabase.qml | |
parent | 01728421d641ffac98a85b408167db478b253458 (diff) | |
download | qtwebengine-86da28c5658230a361cd94a514d500c3ad3a7de9.tar.gz |
Skip favicon database QML tests on High DPI screens
The tests use the middle pixel's value of an image to check if a
certain icon is loaded. The images are scaled on High DPI screens and the
pixel values are changed due to interpolation. It cannot be expected to
have the same pixel values for different device-pixel-ratio settings,
thus rather skip the test than maintaining a list of pixel values for
different scales.
Pick-to: 6.5
Change-Id: I8d142de0106167a5d16c540fa468003b36c95317
Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'tests/auto/quick/qmltests/data/tst_faviconDatabase.qml')
-rw-r--r-- | tests/auto/quick/qmltests/data/tst_faviconDatabase.qml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/auto/quick/qmltests/data/tst_faviconDatabase.qml b/tests/auto/quick/qmltests/data/tst_faviconDatabase.qml index 774708af0..284390619 100644 --- a/tests/auto/quick/qmltests/data/tst_faviconDatabase.qml +++ b/tests/auto/quick/qmltests/data/tst_faviconDatabase.qml @@ -85,6 +85,9 @@ TestWebEngineView { function test_iconDatabase(row) { + if (Screen.devicePixelRatio !== 1.0) + skip("This test is not supported on High DPI screens."); + webEngineView.profile = row.profile; compare(iconChangedSpy.count, 0); @@ -129,6 +132,9 @@ TestWebEngineView { function test_iconDatabaseMultiView() { + if (Screen.devicePixelRatio !== 1.0) + skip("This test is not supported on High DPI screens."); + var pixel; var faviconImage = Qt.createQmlObject(" |