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

Address several IDNA issues #309

Merged
merged 3 commits into from
Jun 1, 2017
Merged
Changes from 1 commit
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
Prev Previous commit
Add the flags in the missing place
  • Loading branch information
domenic committed Jun 1, 2017
commit b5bb3d01d94b40a320ebc4fbd91bf3704676f9fc
5 changes: 4 additions & 1 deletion url.bs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,10 @@ U+005C (\), or U+005D (]).
<li><p>If <var>result</var> is failure, then return failure.

<li><p>Set <var>result</var> to the result of running
<a abstract-op lt=ToUnicode>Unicode ToUnicode</a> with
<a abstract-op lt=ToUnicode>Unicode ToUnicode</a> with <i>domain_name</i> set to <var>result</var>,
<i>CheckHyphens</i> set to false, <i>CheckBidi</i> set to true, <i>CheckJoiners</i> set to true,
and <i>UseSTD3ASCIIRules</i> set to true.

<i>domain_name</i> set to <var>result</var>,
<i>UseSTD3ASCIIRules</i> set to true.

Expand Down