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

Tabs: Properly handle decoded/encoded anchor hashes & panel IDs, support URL-based credentials #2345

Merged
merged 2 commits into from
Mar 31, 2025

Conversation

mgol
Copy link
Member

@mgol mgol commented Mar 26, 2025

1. Tabs: Support URL-based credentials

When credentials are provided directly in the URL, e.g.:

https://username:[email protected]/

location.href strips out the auth part, but anchor links contain them, making
our isLocal computation broken. This fixes it by only looking at origin,
pathname & search.

Fixes gh-2213

2. Tabs: Properly handle decoded/encoded anchor hashes & panel IDs

Prior to jQuery UI 1.14.1, hashes in anchor hrefs were used directly. In
gh-2307, that was changed - by decoding - to support more complex IDs, e.g.
containing emojis which are automatically encoded in anchor.hash.
Unfortunately, that broke cases where the panel ID is decoded as well.

It turns out the spec mandates checking both. In the "scrolling to a fragment"
section of the HTML spec1. That uses a concept of document's indicated
part2. Slightly below there's an algorithm to compute the indicated part3.
The interesting parts are steps 4 to 9:
4. Let potentialIndicatedElement be the result of finding a potential
indicated element given document and fragment.
5. If potentialIndicatedElement is not null, then return
potentialIndicatedElement.
6. Let fragmentBytes be the result of percent-decoding fragment.
7. Let decodedFragment be the result of running UTF-8 decode without BOM on
fragmentBytes.
8. Set potentialIndicatedElement to the result of finding a potential indicated
element given document and decodedFragment.
9. If potentialIndicatedElement is not null, then return
potentialIndicatedElement.

First, in steps 4-5, the algorithm tries the hash as-is, without decoding. Then,
if one is not found, the same is attempted with a decoded hash.

This change replicates this logic by first trying the hash as-is and then
decoding it.

Fixes gh-2344
Ref gh-2307

Footnotes

  1. https://html.spec.whatwg.org/#scrolling-to-a-fragment

  2. https://html.spec.whatwg.org/#the-indicated-part-of-the-document

  3. https://html.spec.whatwg.org/#select-the-indicated-part

@mgol mgol added this to the 1.14.2 milestone Mar 26, 2025
@mgol mgol requested a review from fnagel March 26, 2025 13:39
@mgol mgol self-assigned this Mar 26, 2025
@mgol mgol changed the title Tabs: Support URL-based credentials Tabs: Properly handle decoded/encoded anchor hashes & panel IDs, support URL-based credentials Mar 26, 2025
@mgol mgol force-pushed the tabs-url-handling branch 4 times, most recently from cc0038d to 2a4e6b4 Compare March 26, 2025 13:53
@mgol mgol force-pushed the tabs-url-handling branch from 2a4e6b4 to 34e76fe Compare March 26, 2025 13:59
tagliala added a commit to activeadmin/activeadmin that referenced this pull request Mar 29, 2025
Copy link
Member

@fnagel fnagel left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1 by reading

Looks good to me, especially with the new tests and the manual testing in the original bug report (#2344).

@mgol mgol removed the Needs review label Mar 31, 2025
mgol added 2 commits March 31, 2025 18:46
When credentials are provided directly in the URL, e.g.:

    https://username:password@www.example.com/

`location.href` strips out the auth part, but anchor links contain them, making
our `isLocal` computation broken. This fixes it by only looking at `origin`,
`pathname` & `search`.

Fixes jquerygh-2213
Closes jquerygh-2345
Prior to jQuery UI 1.14.1, hashes in anchor hrefs were used directly. In
jquerygh-2307, that was changed - by decoding - to support more complex IDs, e.g.
containing emojis which are automatically encoded in `anchor.hash`.
Unfortunately, that broke cases where the panel ID is decoded as well.

It turns out the spec mandates checking both. In the "scrolling to a fragment"
section of the HTML spec[^1]. That uses a concept of document's indicated
part[^2]. Slightly below there's an algorithm to compute the indicated part[^3].
The interesting parts are steps 4 to 9:
4. Let potentialIndicatedElement be the result of finding a potential
   indicated element given document and fragment.
5. If potentialIndicatedElement is not null, then return
   potentialIndicatedElement.
6. Let fragmentBytes be the result of percent-decoding fragment.
7. Let decodedFragment be the result of running UTF-8 decode without BOM on
   fragmentBytes.
8. Set potentialIndicatedElement to the result of finding a potential indicated
   element given document and decodedFragment.
9. If potentialIndicatedElement is not null, then return
   potentialIndicatedElement.

First, in steps 4-5, the algorithm tries the hash as-is, without decoding. Then,
if one is not found, the same is attempted with a decoded hash.

This change replicates this logic by first trying the hash as-is and then
decoding it.

Fixes jquerygh-2344
Closes jquerygh-2345
Ref jquerygh-2307

[^1]: https://html.spec.whatwg.org/#scrolling-to-a-fragment
[^2]: https://html.spec.whatwg.org/#the-indicated-part-of-the-document
[^3]: https://html.spec.whatwg.org/#select-the-indicated-part
@mgol mgol force-pushed the tabs-url-handling branch from 34e76fe to 8864e40 Compare March 31, 2025 16:46
@mgol mgol merged commit 89b0eca into jquery:main Mar 31, 2025
11 checks passed
mgol added a commit that referenced this pull request Mar 31, 2025
When credentials are provided directly in the URL, e.g.:

    https://username:password@www.example.com/

`location.href` strips out the auth part, but anchor links contain them, making
our `isLocal` computation broken. This fixes it by only looking at `origin`,
`pathname` & `search`.

Fixes gh-2213
Closes gh-2345
@mgol mgol deleted the tabs-url-handling branch March 31, 2025 16:51
@mgol
Copy link
Member Author

mgol commented Mar 31, 2025

Landed in 53129e9 & 89b0eca.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

v1.14.1: regression in tabs with non-standard IDs ui.tabs _isLocal fails if url contains username:password@
2 participants