Title: [271864] trunk/Tools
Revision
271864
Author
achristen...@apple.com
Date
2021-01-25 14:59:06 -0800 (Mon, 25 Jan 2021)

Log Message

ASSERTION FAILED: This HTTPServer does not know how to respond to a request for /Ahem.svg
https://bugs.webkit.org/show_bug.cgi?id=220949

* TestWebKitAPI/Tests/WebKitCocoa/Navigation.mm:
(TEST):
A path in the test I added in r271770 was missing a / at the beginning of a path.
It passes before and after this change, but it doesn't assert after it.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (271863 => 271864)


--- trunk/Tools/ChangeLog	2021-01-25 22:57:08 UTC (rev 271863)
+++ trunk/Tools/ChangeLog	2021-01-25 22:59:06 UTC (rev 271864)
@@ -1,3 +1,13 @@
+2021-01-25  Alex Christensen  <achristen...@webkit.org>
+
+        ASSERTION FAILED: This HTTPServer does not know how to respond to a request for /Ahem.svg
+        https://bugs.webkit.org/show_bug.cgi?id=220949
+
+        * TestWebKitAPI/Tests/WebKitCocoa/Navigation.mm:
+        (TEST):
+        A path in the test I added in r271770 was missing a / at the beginning of a path.
+        It passes before and after this change, but it doesn't assert after it.
+
 2021-01-25  Aakash Jain  <aakash_j...@apple.com>
 
         [ews] Commit Queue should retry the build when update-working-directory step fails

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Navigation.mm (271863 => 271864)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Navigation.mm	2021-01-25 22:57:08 UTC (rev 271863)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Navigation.mm	2021-01-25 22:59:06 UTC (rev 271864)
@@ -799,7 +799,7 @@
     using namespace TestWebKitAPI;
     HTTPServer server({
         { "/", { mainHTML } },
-        { "Ahem.svg", { svg } },
+        { "/Ahem.svg", { svg } },
         { "/scriptsrc.js", { "/* js content */" } },
         { "/iframesrc.html", { "frame content" } },
     });
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to