[Webkit-unassigned] [Bug 189781] New: Web Inspector: xhr response body error

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Sep 20 03:00:58 PDT 2018


https://bugs.webkit.org/show_bug.cgi?id=189781

            Bug ID: 189781
           Summary: Web Inspector: xhr response body error
           Product: WebKit
           Version: Safari Technology Preview
          Hardware: Macintosh
                OS: macOS 10.13
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Web Inspector
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: me at andrepolischuk.com
                CC: inspector-bugzilla-changes at group.apple.com

Created attachment 350180

  --> https://bugs.webkit.org/attachment.cgi?id=350180&action=review

1 request

If I make multiple xhr requests to the same endpoint, web inspector show response body only for the last request, and show "an error occured trying to load the resource" for others (screenshots were attached).

<!doctype html>
<html prefix="og: http://ogp.me/ns#" lang="en">
  <head>
    <meta charset="utf-8">
  </head>
  <body>
    <script>
      (async () => {
        await fetch('https://api.github.com/users/andrepolischuk')
        await fetch('https://api.github.com/users/andrepolischuk')
        await fetch('https://api.github.com/users/andrepolischuk')
      })()
    </script>
  </body>
</html>


It caught for all methods: get, post...
If I add a random string at the end of endpoint, all responses are displayed.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20180920/712f6347/attachment.html>


More information about the webkit-unassigned mailing list