Fetch Keepalive wpt - keepalive.any.js, timeouts instead of failure
Categories
(Core :: DOM: Networking, defect, P2)
Tracking
()
People
(Reporter: smayya, Assigned: smayya)
References
Details
(Whiteboard: [necko-triaged])
The test has been disabled until the keepalive test is completed.
While testing it locally on central leads to test timeout.
Ideally, I would expect a test failure without fetch keepalive support.
However, timeout suggests there might be something more than just lack of keepalive support.
This bug is for investigating and fixing the possible root-cause for the timeout.
On initial investigation on central builds, we found that the test timeouts as it is not able to receive the message posted on the iframe here.
Interestingly the following patch results in test failure (expected with lack of keepalive support) instead of a timeout,
- iframe.src = getKeepAliveIframeUrl(token1, method, {sendOn: evt});
+ iframe.src = getKeepAliveIframeUrl(token1, method, {sendOn: evt, frameOrigin: ''});
Assignee | ||
Updated•8 months ago
|
Assignee | ||
Updated•8 months ago
|
Assignee | ||
Comment 1•5 months ago
|
||
This bug has been addressed already in the patch https://phabricator.services.mozilla.com/D211812.
The root-cause was that the message no sent to the parent document.
Description
•