File tree 4 files changed +14
-7
lines changed
4 files changed +14
-7
lines changed Original file line number Diff line number Diff line change 1
1
/*!
2
- * Sizzle CSS Selector Engine v2.3.7
2
+ * Sizzle CSS Selector Engine v2.3.8
3
3
* https://sizzlejs.com/
4
4
*
5
5
* Copyright JS Foundation and other contributors
6
6
* Released under the MIT license
7
7
* https://js.foundation/
8
8
*
9
- * Date: 2022-10-03
9
+ * Date: 2022-11-16
10
10
*/
11
11
( function ( window ) {
12
12
var i ,
@@ -987,7 +987,14 @@ setDocument = Sizzle.setDocument = function( node ) {
987
987
// As in, an element does not contain itself
988
988
contains = hasCompare || rnative . test ( docElem . contains ) ?
989
989
function ( a , b ) {
990
- var adown = a . nodeType === 9 ? a . documentElement : a ,
990
+
991
+ // Support: IE <9 only
992
+ // IE doesn't have `contains` on `document` so we need to check for
993
+ // `documentElement` presence.
994
+ // We need to fall back to `a` when `documentElement` is missing
995
+ // as `ownerDocument` of elements within `<template/>` may have
996
+ // a null one - a default behavior of all modern browsers.
997
+ var adown = a . nodeType === 9 && a . documentElement || a ,
991
998
bup = b && b . parentNode ;
992
999
return a === bup || ! ! ( bup && bup . nodeType === 1 && (
993
1000
adown . contains ?
You can’t perform that action at this time.
0 commit comments