Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make navigate() use UTF-8 in the URL parser #9756

Merged
merged 2 commits into from
Jul 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -90838,11 +90838,13 @@ interface <dfn interface>NavigationHistoryEntry</dfn> : <span>EventTarget</span>
<div w-nodev>

<p>The <dfn method for="Navigation"><code
data-x="dom-Navigation-navigate">navigate(<var>options</var>)</code></dfn> method steps are:</p>
data-x="dom-Navigation-navigate">navigate(<var>url</var>, <var>options</var>)</code></dfn> method
annevk marked this conversation as resolved.
Show resolved Hide resolved
steps are:</p>

<ol>
<li><p>Let <var>urlRecord</var> be the result of <span>encoding-parsing a URL</span> given
<var>url</var>, relative to <span>this</span>'s <span>relevant settings object</span>.</p></li>
<li><p>Let <var>urlRecord</var> be the result of <span data-x="parse a URL">parsing a URL</span>
given <var>url</var>, relative to <span>this</span>'s <span>relevant settings
object</span>.</p></li>

<li><p>If <var>urlRecord</var> is failure, then return an <span
data-x="navigation-api-early-error-result">early error result</span> for a
Expand Down