Bug 135213
Summary: | Failed to load resource: The network connection was lost. | ||
---|---|---|---|
Product: | WebKit | Reporter: | xpech@webkit <x.pechoultres> |
Component: | Page Loading | Assignee: | Nobody <webkit-unassigned> |
Status: | RESOLVED INVALID | ||
Severity: | Blocker | CC: | ap |
Priority: | P2 | Keywords: | InRadar |
Version: | 528+ (Nightly build) | ||
Hardware: | Mac (Intel) | ||
OS: | OS X 10.9 | ||
URL: | http://demo.clariprint.fr |
xpech@webkit
Hi team,
the provided url works fine with all other browser and old Safari. With current release and last webkit, I've got a white page and the error in console:
Failed to load resource: The network connection was lost.
No messages on server side. (Apache).
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Alexey Proskuryakov
*** Bug 135193 has been marked as a duplicate of this bug. ***
Alexey Proskuryakov
<rdar://problem/17815707>
Alexey Proskuryakov
This is an issue in a closed source library below WebKit. Closing as INVALID since it not a WebKit bug, thus we cannot track fixing it here in Bugzilla.
Thank you very much for reporting it! Apple will be tracking it internally as <rdar://problem/17815707>.
This can be worked around server side by correcting HTTP response header. The response claims that encoding is chunked, but also provides Content-Length, which is an invalid combination:
...
Transfer-Encoding: chunked
Content-Length: 2481
...