Changeset 271864 in webkit


Ignore:
Timestamp:
Jan 25, 2021 2:59:06 PM (3 years ago)
Author:
achristensen@apple.com
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r271812 r271864  
     12021-01-25  Alex Christensen  <achristensen@webkit.org>
     2
     3        ASSERTION FAILED: This HTTPServer does not know how to respond to a request for /Ahem.svg
     4        https://bugs.webkit.org/show_bug.cgi?id=220949
     5
     6        * TestWebKitAPI/Tests/WebKitCocoa/Navigation.mm:
     7        (TEST):
     8        A path in the test I added in r271770 was missing a / at the beginning of a path.
     9        It passes before and after this change, but it doesn't assert after it.
     10
    1112021-01-25  Aakash Jain  <aakash_jain@apple.com>
    212
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Navigation.mm

    r271770 r271864  
    800800    HTTPServer server({
    801801        { "/", { mainHTML } },
    802         { "Ahem.svg", { svg } },
     802        { "/Ahem.svg", { svg } },
    803803        { "/scriptsrc.js", { "/* js content */" } },
    804804        { "/iframesrc.html", { "frame content" } },
Note: See TracChangeset for help on using the changeset viewer.