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

Selector:Manipulation: Fix DOM manip within template contents #5159

Merged
merged 2 commits into from
Nov 16, 2022

Conversation

mgol
Copy link
Member

@mgol mgol commented Nov 15, 2022

Summary

The <template/> element contents property is a document fragment that may have a null documentElement. In Safari 16 this happens in more cases due to recent spec changes - in particular, even if that document fragment is explicitly adopted into an outer document. We're testing both of those cases now.

The crash used to happen in jQuery.contains which is an alias for Sizzle.contains in jQuery 3.x.

The Sizzle fix is at jquery/sizzle#490. This PR pulls the new Sizzle version into jQuery's 3.x-stable branch and backports one test from gh-5158.

Fixes gh-5147
Ref jquery/sizzle/pull/490
Ref gh-5158

Checklist

@mgol mgol added Manipulation Selector Needs review Discuss in Meeting Reserved for Issues and PRs that anyone would like to discuss in the weekly meeting. labels Nov 15, 2022
@mgol mgol added this to the 3.6.2 milestone Nov 15, 2022
@mgol mgol self-assigned this Nov 15, 2022
@mgol mgol removed Needs review Discuss in Meeting Reserved for Issues and PRs that anyone would like to discuss in the weekly meeting. labels Nov 16, 2022
mgol added a commit to mgol/jquery that referenced this pull request Nov 16, 2022
The `<template/>` element `contents` property is a document fragment that may
have a `null` `documentElement`. In Safari 16 this happens in more cases due
to recent spec changes - in particular, even if that document fragment is
explicitly adopted into an outer document. We're testing both of those cases
now.

The crash used to happen in `jQuery.contains` which is an alias for
`Sizzle.contains` in jQuery 3.x.

The Sizzle fix is at jquery/sizzle#490. This PR pulls the new Sizzle
version into jQuery's `3.x-stable` branch and backports one test from
jquerygh-5158.

Fixes jquerygh-5147
Closes jquerygh-5159
Ref jquery/sizzle#490
Ref jquerygh-5158
@mgol mgol force-pushed the 3.x-template-manip-fixes branch from 1f6c175 to ffdd09b Compare November 16, 2022 15:58
mgol added a commit to mgol/jquery that referenced this pull request Nov 16, 2022
The `<template/>` element `contents` property is a document fragment that may
have a `null` `documentElement`. In Safari 16 this happens in more cases due
to recent spec changes - in particular, even if that document fragment is
explicitly adopted into an outer document. We're testing both of those cases
now.

The crash used to happen in `jQuery.contains` which is an alias for
`Sizzle.contains` in jQuery 3.x.

The Sizzle fix is at jquery/sizzle#490, released in Sizzle `2.3.8`. This
version of Sizzle is included in the parent commit.

Fixes jquerygh-5147
Closes jquerygh-5159
Ref jquery/sizzle#490
Ref jquerygh-5158
@mgol mgol force-pushed the 3.x-template-manip-fixes branch from ffdd09b to 5e40c14 Compare November 16, 2022 15:59
The `<template/>` element `contents` property is a document fragment that may
have a `null` `documentElement`. In Safari 16 this happens in more cases due
to recent spec changes - in particular, even if that document fragment is
explicitly adopted into an outer document. We're testing both of those cases
now.

The crash used to happen in `jQuery.contains` which is an alias for
`Sizzle.contains` in jQuery 3.x.

The Sizzle fix is at jquery/sizzle#490, released in Sizzle `2.3.8`. This
version of Sizzle is included in the parent commit.

A fix similar to the one from jquerygh-5158 has also been applied here to the
`selector-native` version.

Fixes jquerygh-5147
Closes jquerygh-5159
Ref jquery/sizzle#490
Ref jquerygh-5158
@mgol mgol force-pushed the 3.x-template-manip-fixes branch from 5e40c14 to bc23c1c Compare November 16, 2022 16:06
@mgol
Copy link
Member Author

mgol commented Nov 16, 2022

@timmywil I also had to apply a fix to selector-native to pass this new test. I opted to skip documentElement there, similarly to the fix on jQuery master since documentElement only mattered in IE <9.

@mgol mgol merged commit 5318e31 into jquery:3.x-stable Nov 16, 2022
@mgol mgol deleted the 3.x-template-manip-fixes branch November 16, 2022 22:58
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.

2 participants