diff --git a/tests/auto/quick/qmltests/BLACKLIST b/tests/auto/quick/qmltests/BLACKLIST
index 19d75dfb7843dd5b7e68bf7557bc8b8ca80ef4b1..b7cd7042ef5f4f96e0a1604be65f86a5ac831842 100644
--- a/tests/auto/quick/qmltests/BLACKLIST
+++ b/tests/auto/quick/qmltests/BLACKLIST
@@ -5,12 +5,6 @@ osx
 [WebViewGeopermission::test_geoPermissionRequest]
 osx
 
-[DesktopWebEngineViewLinkHovered::test_linkHovered]
-linux
-
-[DesktopWebEngineViewLinkHovered::test_linkHoveredDoesntEmitRepeated]
-linux
-
 [WebEngineViewSingleFileUpload::test_acceptDirectory]
 *
 
diff --git a/tests/auto/quick/qmltests/data/test-iframe.html b/tests/auto/quick/qmltests/data/test-iframe.html
new file mode 100644
index 0000000000000000000000000000000000000000..710c4539ac081c8b3ebc25a452a30b8f686f562e
--- /dev/null
+++ b/tests/auto/quick/qmltests/data/test-iframe.html
@@ -0,0 +1,9 @@
+<html>
+<head><title>Test page with huge link area and iframe</title></head>
+<body>
+<a title="A title" href="test1.html"><img width=200 height=200></a>
+<div>
+    <iframe src="test1.html"></iframe>
+</div>
+</body>
+</html>
diff --git a/tests/auto/quick/qmltests/data/test2.html b/tests/auto/quick/qmltests/data/test2.html
index 8e20d7e9e68227ce87bdb52ca1410ba07793dd7f..629c2a063af6ec5fc41f3951b5174c5c8b527770 100644
--- a/tests/auto/quick/qmltests/data/test2.html
+++ b/tests/auto/quick/qmltests/data/test2.html
@@ -2,8 +2,5 @@
 <head><title>Test page with huge link area</title></head>
 <body>
 <a title="A title" href="test1.html"><img width=200 height=200></a>
-<div>
-    <iframe src="test1.html"></iframe>
-</div>
 </body>
 </html>
diff --git a/tests/auto/quick/qmltests/data/tst_linkHovered.qml b/tests/auto/quick/qmltests/data/tst_linkHovered.qml
index 636d14335023687f80377ca30ccbb619deb1a6fe..d632452fe87a1ecaf541e3cc658070e857b012ec 100644
--- a/tests/auto/quick/qmltests/data/tst_linkHovered.qml
+++ b/tests/auto/quick/qmltests/data/tst_linkHovered.qml
@@ -90,11 +90,11 @@ TestWebEngineView {
             loadVisuallyCommittedSpy.wait();
 
             mouseMove(webEngineView, 100, 100)
-            linkHoveredSpy.wait(10000);
+            linkHoveredSpy.wait(12000);
             compare(linkHoveredSpy.count, 2);
             compare(webEngineView.lastUrl, Qt.resolvedUrl("test1.html"))
             mouseMove(webEngineView, 100, 300)
-            linkHoveredSpy.wait(10000);
+            linkHoveredSpy.wait(12000);
             compare(linkHoveredSpy.count, 3);
             compare(webEngineView.lastUrl, "")
         }
@@ -115,14 +115,14 @@ TestWebEngineView {
             for (var i = 0; i < 100; i += 10)
                 mouseMove(webEngineView, 100, 100 + i)
 
-            linkHoveredSpy.wait(10000);
+            linkHoveredSpy.wait(12000);
             compare(linkHoveredSpy.count, 2);
             compare(webEngineView.lastUrl, Qt.resolvedUrl("test1.html"))
 
             for (var i = 0; i < 100; i += 10)
                 mouseMove(webEngineView, 100, 300 + i)
 
-            linkHoveredSpy.wait(10000);
+            linkHoveredSpy.wait(12000);
             compare(linkHoveredSpy.count, 3);
             compare(webEngineView.lastUrl, "")
         }
diff --git a/tests/auto/quick/qmltests/data/tst_navigationRequested.qml b/tests/auto/quick/qmltests/data/tst_navigationRequested.qml
index b1c94e601d8261565657cb2f9735c34a65c69d4a..96128574e5226d11229ff19c6c6d815b2976aa04 100644
--- a/tests/auto/quick/qmltests/data/tst_navigationRequested.qml
+++ b/tests/auto/quick/qmltests/data/tst_navigationRequested.qml
@@ -92,9 +92,9 @@ TestWebEngineView {
         function test_navigationRequested() {
             // Test if we get notified about main frame and iframe loads
             compare(navigationSpy.count, 0)
-            webEngineView.url = Qt.resolvedUrl("test2.html")
+            webEngineView.url = Qt.resolvedUrl("test-iframe.html")
             navigationSpy.wait()
-            compare(attributes.mainUrl, Qt.resolvedUrl("test2.html"))
+            compare(attributes.mainUrl, Qt.resolvedUrl("test-iframe.html"))
             navigationSpy.wait()
             compare(attributes.iframeUrl, Qt.resolvedUrl("test1.html"))
             compare(navigationSpy.count, 2)
@@ -111,7 +111,7 @@ TestWebEngineView {
         function test_ignoreLinkClickedRequest() {
             // Test if we can ignore clicked link requests
             compare(navigationSpy.count, 0)
-            webEngineView.url = Qt.resolvedUrl("test2.html")
+            webEngineView.url = Qt.resolvedUrl("test-iframe.html")
             verify(webEngineView.waitForLoadSucceeded())
 
             shouldIgnoreLinkClicks = true
@@ -129,9 +129,9 @@ TestWebEngineView {
         function test_ignoreSubFrameRequest() {
             // Test if we can ignore sub frame requests
             shouldIgnoreSubFrameRequests = true
-            webEngineView.url = Qt.resolvedUrl("test2.html")
+            webEngineView.url = Qt.resolvedUrl("test-iframe.html")
             tryCompare(navigationSpy, "count", 2)
-            compare(attributes.mainUrl, Qt.resolvedUrl("test2.html"))
+            compare(attributes.mainUrl, Qt.resolvedUrl("test-iframe.html"))
             compare(attributes.iframeUrl, Qt.resolvedUrl("test1.html"))
             // We ignored the sub frame request, so
             // the main frame load should still succeed.
diff --git a/tests/auto/quick/qmltests/qmltests.pro b/tests/auto/quick/qmltests/qmltests.pro
index 60c11addc496ed4d158e1d7db56f2507fff5b642..40fba4512e86845d6bcbc88f9a81895441f0b1cb 100644
--- a/tests/auto/quick/qmltests/qmltests.pro
+++ b/tests/auto/quick/qmltests/qmltests.pro
@@ -38,6 +38,7 @@ OTHER_FILES += \
     $$PWD/data/test2.html \
     $$PWD/data/test3.html \
     $$PWD/data/test4.html \
+    $$PWD/data/test-iframe.html \
     $$PWD/data/keyboardModifierMapping.html \
     $$PWD/data/keyboardEvents.html \
     $$PWD/data/titleupdate.js \