Title: [265767] trunk/Tools
Revision
265767
Author
[email protected]
Date
2020-08-17 12:29:18 -0700 (Mon, 17 Aug 2020)

Log Message

[WPE] Fix file url in WPEQt api test
https://bugs.webkit.org/show_bug.cgi?id=215577

Reviewed by Philippe Normand.

The test expects the load to fail, so avoid file://foo.html resolving
to file:///.

* TestWebKitAPI/Tests/WPEQt/TestLoadRequest.cpp:
(TestLoadRequest::main):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (265766 => 265767)


--- trunk/Tools/ChangeLog	2020-08-17 19:29:02 UTC (rev 265766)
+++ trunk/Tools/ChangeLog	2020-08-17 19:29:18 UTC (rev 265767)
@@ -1,3 +1,16 @@
+2020-08-17  Lauro Moura  <[email protected]>
+
+        [WPE] Fix file url in WPEQt api test
+        https://bugs.webkit.org/show_bug.cgi?id=215577
+
+        Reviewed by Philippe Normand.
+
+        The test expects the load to fail, so avoid file://foo.html resolving
+        to file:///.
+
+        * TestWebKitAPI/Tests/WPEQt/TestLoadRequest.cpp:
+        (TestLoadRequest::main):
+
 2020-08-17  Jonathan Bedard  <[email protected]>
 
         [webkitcorepy] Autoinstaller is very slow in git-svn checkouts

Modified: trunk/Tools/TestWebKitAPI/Tests/WPEQt/TestLoadRequest.cpp (265766 => 265767)


--- trunk/Tools/TestWebKitAPI/Tests/WPEQt/TestLoadRequest.cpp	2020-08-17 19:29:02 UTC (rev 265766)
+++ trunk/Tools/TestWebKitAPI/Tests/WPEQt/TestLoadRequest.cpp	2020-08-17 19:29:18 UTC (rev 265767)
@@ -56,7 +56,7 @@
 
     {
         QSignalSpy loadChangedSignalSpy(m_view, SIGNAL(loadingChanged(WPEQtViewLoadRequest*)));
-        m_view->setUrl(QUrl("file://IDONTEXIST.html"));
+        m_view->setUrl(QUrl("file:///IDONTEXIST.html"));
         waitForLoadFailed(m_view);
         QCOMPARE(loadChangedSignalSpy.count(), 2);
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to