Interestingly I am getting a real CORB warning when the request is text (I'm assuming this could be discarded as beacon is never readable): ``` Cross-Origin Read Blocking (CORB) blocked cross-origin response https://www.test.com/ with MIME type text/html. See https://www.chromestatus.com/feature/5629709824032768 for more details. ``` With: window.addEventListener("beforeunload", () => { navigator.sendBeacon("https://test.com", "test"); });
Bug 1557386 Comment 6 Edit History
Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.
Interestingly I am getting a real CORB warning when the request is text (I'm assuming this could be discarded as beacon is never readable): ``` Cross-Origin Read Blocking (CORB) blocked cross-origin response https://www.test.com/ with MIME type text/html. See https://www.chromestatus.com/feature/5629709824032768 for more details. ``` With: ``` window.addEventListener("beforeunload", () => { navigator.sendBeacon("https://test.com", "test"); }); ```