WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
REOPENED
60206
Proper handling of HTTP 204 (No Content) status code
https://bugs.webkit.org/show_bug.cgi?id=60206
Summary
Proper handling of HTTP 204 (No Content) status code
Luiz Agostini
Reported
2011-05-04 13:23:28 PDT
from
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.2.5
: 10.2.5 204 No Content The server has fulfilled the request but does not need to return an entity-body, and might want to return updated metainformation. The response MAY include new or updated metainformation in the form of entity-headers, which if present SHOULD be associated with the requested variant. If the client is a user agent, it SHOULD NOT change its document view from that which caused the request to be sent. This response is primarily intended to allow input for actions to take place without causing a change to the user agent's active document view, although any new or updated metainformation SHOULD be applied to the document currently in the user agent's active view. The 204 response MUST NOT include a message-body, and thus is always terminated by the first empty line after the header fields.
Attachments
Patch
(9.32 KB, patch)
2012-12-27 10:29 PST
,
Martin Robinson
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Alexey Proskuryakov
Comment 1
2011-05-04 17:08:21 PDT
Could you please clarify what exactly is the bug to fix here? This report doesn't seem actionable in its current state.
Luiz Agostini
Comment 2
2011-05-05 10:11:52 PDT
(In reply to
comment #1
)
> Could you please clarify what exactly is the bug to fix here? This report doesn't seem actionable in its current state.
Responses containing HTTP code 204 should be ignored by the browser and the view should not be updated. I made it for Qt and added a test for it. The new test is http/tests/navigation/response204.html. Some platforms (Mac, Win and GTK) fail on this new test. But it seems that if this test fail in Mac or Win then hundreds of other tests fail as well. See
https://bugs.webkit.org/show_bug.cgi?id=42529#c21
The test was skipped in those platforms by
r85784
.
Alexey Proskuryakov
Comment 3
2011-05-05 10:25:16 PDT
Here is how I tested: 1. Opened
http://www.apple.com
in Safari 5.0.5 (also tested with ToT). 2. Once that finished loading, changed address in address bar to <
http://127.0.0.1:8000/navigation/resources/response204.pl
>, and hit Enter. Results: The address reverted to
http://www.apple.com
, page content was not affected. This looks like expected behavior. I haven't investigated what's going on in the test, but there are no known issues with 204 responses (we track
bug 4858
here, but it's not really about 204, it's about stopping timers too early on any load).
Luiz Agostini
Comment 4
2011-05-05 11:03:00 PDT
(In reply to
comment #3
)
> Here is how I tested: > 1. Opened
http://www.apple.com
in Safari 5.0.5 (also tested with ToT). > 2. Once that finished loading, changed address in address bar to <
http://127.0.0.1:8000/navigation/resources/response204.pl
>, and hit Enter. > > Results: The address reverted to
http://www.apple.com
, page content was not affected.
Good. I was expecting this test to fail in some platforms but it seems that Mac is ok with this 204 handling.
> > This looks like expected behavior. I haven't investigated what's going on in the test, but there are no known issues with 204 responses (we track
bug 4858
here, but it's not really about 204, it's about stopping timers too early on any load).
Yeah, it may be then that I did not provide the proper test. The response204.is very simple, I will copy it here: <script> if (window.layoutTestController) { layoutTestController.dumpAsText(); layoutTestController.dumpBackForwardList(); layoutTestController.queueLoad("resources/response204.pl"); } </script> And this is the result that I was expecting: ============== Back Forward List ============== curr->
http://127.0.0.1:8000/navigation/response204.html
**nav target** =============================================== Meaning that the response from resources/response204.pl was ignored. But it was not the result for SnowLeopard as you can see here
http://build.webkit.org/results/SnowLeopard%20Intel%20Release%20%28Tests%29/r85783%20%2828972%29/http/tests/navigation/response204-diffs.txt
: --- /Volumes/Data/WebKit-BuildSlave/snowleopard-intel-release-tests/build/layout-test-results/http/tests/navigation/response204-expected.txt 2011-05-04 13:57:57.000000000 -0700 +++ /Volumes/Data/WebKit-BuildSlave/snowleopard-intel-release-tests/build/layout-test-results/http/tests/navigation/response204-actual.txt 2011-05-04 13:57:57.000000000 -0700 @@ -1,5 +1,6 @@ ============== Back Forward List ============== -curr->
http://127.0.0.1:8000/navigation/response204.html
**nav target** +
http://127.0.0.1:8000/navigation/response204.html
**nav target** +curr->
http://127.0.0.1:8000/navigation/resources/response204.pl
**nav target** =============================================== Nor for Leopard as you can see here
http://build.webkit.org/results/Leopard%20Intel%20Release%20%28Tests%29/r85783%20%2831877%29/http/tests/navigation/response204-diffs.txt
: --- /Volumes/Big/WebKit-BuildSlave/leopard-intel-release-tests/build/layout-test-results/http/tests/navigation/response204-expected.txt 2011-05-04 13:47:14.000000000 -0700 +++ /Volumes/Big/WebKit-BuildSlave/leopard-intel-release-tests/build/layout-test-results/http/tests/navigation/response204-actual.txt 2011-05-04 13:47:14.000000000 -0700 @@ -1,5 +1,6 @@ ============== Back Forward List ============== -curr->
http://127.0.0.1:8000/navigation/response204.html
**nav target** +
http://127.0.0.1:8000/navigation/response204.html
**nav target** +curr->
http://127.0.0.1:8000/navigation/resources/response204.pl
**nav target** =============================================== Is that test wrong?
Luiz Agostini
Comment 5
2011-05-05 11:06:36 PDT
BTW, I have tried the test in
bug 4858
and did not reproduce the problem in safari 5.0.5 or in chromium 11.0.696.57 or QtTestBrowser
r85857
. :)
Alexey Proskuryakov
Comment 6
2011-05-05 11:42:29 PDT
I see. Turns out that Safari handles the policy for 204, not WebKit. I think that it should be implemented in WebCore. Seems strange that the test doesn't just use waitUntilDone/window.location="...", but there probably was a reason to use queued load machinery. Thanks for testing
bug 4858
! I'm surprised that it no longer fails, but it's great news.
John Sullivan
Comment 7
2011-05-05 11:49:40 PDT
Safari does currently handle that code directly, but it seems fine to me to handle it in WebKit instead (Darin said the same thing once too).
Luiz Agostini
Comment 8
2011-05-05 12:00:46 PDT
The other question is why so many tests failed after running this test. It seems that if http/tests/navigation/response204.html fails then hundreds of other tests fail as well.
https://bugs.webkit.org/show_bug.cgi?id=42529#c21
http://build.webkit.org/results/SnowLeopard%20Intel%20Release%20%28Tests%29/r85783%20%2828972%29/results.html
http://build.webkit.org/results/Leopard%20Intel%20Release%20%28Tests%29/r85783%20%2831877%29/results.html
Martin Robinson
Comment 9
2012-12-23 09:14:45 PST
*** This bug has been marked as a duplicate of
bug 104865
***
Martin Robinson
Comment 10
2012-12-27 10:27:35 PST
Going to reverse the duplication graph here.
Martin Robinson
Comment 11
2012-12-27 10:27:41 PST
***
Bug 104865
has been marked as a duplicate of this bug. ***
Martin Robinson
Comment 12
2012-12-27 10:29:34 PST
Created
attachment 180810
[details]
Patch
Alexey Proskuryakov
Comment 13
2012-12-27 12:11:29 PST
As mentioned in duplicate, this change looks good to me, but someone who worked on loader code more recently should review.
Anders Carlsson
Comment 14
2014-02-05 11:01:44 PST
Comment on
attachment 180810
[details]
Patch Clearing review flag on patches from before 2014. If this patch is still relevant, please reset the r? flag.
Alexey Proskuryakov
Comment 15
2015-07-21 14:33:44 PDT
rdar://problem/21864977
Gordon Murray
Comment 16
2016-12-09 02:27:28 PST
This issue is still reproducable on iOS 10. The easiest way to reproduce is via the site:
http://httpstat.us/
When you click the link "204 No Content" on a desktop browser it is handled correctly the browser does nothing to view as per HTTP spec. On iOS the view is changed.
Tommy Vogt
Comment 17
2016-12-30 17:45:37 PST
Does this patch work? In iOS 10, this is a huge issue and can easily be reproduced while using an Amazon s3 Form post. In every other browser, Chrome on android and all Desktop browsers, the current page view is kept when a 204 response is recieved. In both Chrome for iOS and Safari iOS, it redirects to a blank page, which it should not. Do we have to wait for Apple to update for this to work?
Gordon Murray
Comment 18
2017-01-01 01:39:36 PST
Have raised separate
Bug 166633
- iOS browsers not correctly handling HTTP 204 response to flag the iOS handling issue.
Alexey Proskuryakov
Comment 19
2017-01-01 13:35:16 PST
***
Bug 166633
has been marked as a duplicate of this bug. ***
Tommy Vogt
Comment 20
2017-01-01 14:13:04 PST
I don't think this is a Webkit bug. Firefox on iOS has the exact same issue and it is Gecko based. This is an Apple bug it seems. I don't know what the browsers get from the OS but it seems to be telling them to actually render a blank page. I've tested this in every iOS browser and the same thing occurs, a blank page gets loaded.
Darin Adler
Comment 21
2017-01-02 00:36:01 PST
Comment on
attachment 180810
[details]
Patch Patch looks good to me too. Someone should apply this and test to see if this change fixes things in Safari on iOS (could also try other WebKit-based iOS browsers such as Chrome and Firefox).
Gordon Murray
Comment 22
2017-01-02 02:48:27 PST
(In reply to
comment #20
)
> I don't think this is a Webkit bug. Firefox on iOS has the exact same issue > and it is Gecko based. This is an Apple bug it seems. I don't know what > the browsers get from the OS but it seems to be telling them to actually > render a blank page. I've tested this in every iOS browser and the same > thing occurs, a blank page gets loaded.
All web browsers on iOS are WebKit based including Firefox which would normally be based on Gecko.
goran.karlic
Comment 23
2020-08-14 23:44:24 PDT
Is this issue going to be resolved? It is an obvious violation of the HTTP standard and inconsistent with all on other platforms, so it should be resolved.
Rob Buis
Comment 24
2024-09-22 04:58:45 PDT
Pull request:
https://github.com/WebKit/WebKit/pull/34059
EWS
Comment 25
2024-10-02 01:42:32 PDT
Committed
284550@main
(61909d6ad7cf): <
https://commits.webkit.org/284550@main
> Reviewed commits have been landed. Closing PR #34059 and removing active labels.
Ahmad Saleem
Comment 26
2024-10-22 18:02:03 PDT
Reverted in
https://commits.webkit.org/285577@main
https://github.com/WebKit/WebKit/commit/4eac02f13b2fbe5ee3ea4851b0e2c2883329206f
Alex Christensen
Comment 27
2024-10-28 14:49:09 PDT
rdar://138793770
now tracks fixing this internally. Can we do it without changing the value of WKNavigationResponse.canShowMIMEType?
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug