| Summary: | http/tests/security/basic-auth-subresource.html and some other http auth tests are flaky | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Chris Dumez <cdumez> | ||||||||
| Component: | WebKit2 | Assignee: | Chris Dumez <cdumez> | ||||||||
| Status: | RESOLVED FIXED | ||||||||||
| Severity: | Normal | CC: | achristensen, bfulgham, darin, ggaren, kkinnunen, sam, webkit-bug-importer | ||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||
| Version: | WebKit Nightly Build | ||||||||||
| Hardware: | Unspecified | ||||||||||
| OS: | Unspecified | ||||||||||
| See Also: |
https://bugs.webkit.org/show_bug.cgi?id=234368 https://bugs.webkit.org/show_bug.cgi?id=234455 https://bugs.webkit.org/show_bug.cgi?id=232809 |
||||||||||
| Attachments: |
|
||||||||||
|
Description
Chris Dumez
2021-12-14 14:02:49 PST
Created attachment 447160 [details]
Patch
Created attachment 447163 [details]
Patch
Impacted tests: http/tests/misc/authentication-redirect-1/authentication-sent-to-redirect-cross-origin.html http/tests/misc/authentication-redirect-2/authentication-sent-to-redirect-same-origin.html http/tests/misc/authentication-redirect-3/authentication-sent-to-redirect-same-origin-with-location-credentials.html http/tests/misc/authentication-redirect-4/authentication-sent-to-redirect-same-origin-url.html http/tests/security/basic-auth-subresource.html http/tests/security/credentials-from-different-domains.html http/tests/security/credentials-main-resource.html http/tests/security/sync-xhr-partition.html Comment on attachment 447163 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=447163&action=review > Source/WebCore/platform/network/ProtectionSpaceHash.h:43 > + WTF::add(hasher, protectionSpace.host()); > + WTF::add(hasher, protectionSpace.port()); > + WTF::add(hasher, protectionSpace.serverType()); > + WTF::add(hasher, protectionSpace.authenticationScheme()); > + if (!protectionSpace.isProxy()) > + WTF::add(hasher, protectionSpace.realm()); Should not need the WTF:: prefixes. Created attachment 447232 [details]
Patch for landing
Committed r287077 (245272@main): <https://commits.webkit.org/245272@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 447232 [details]. Follow-up build fix: <https://commits.webkit.org/r287107>. |