Why does reloading a page by POST with history.state set result in a GET?
When reloading on a page as a response to a POST request, the POST request is resubmitted.
But if we set the state for the same URL on that page(ex: history.replaceState({hoge: "fuga"}, "")), why is a GET request sent when the page is reloaded?