1
1
/*!
2
- * Sizzle CSS Selector Engine v2.3.3
2
+ * Sizzle CSS Selector Engine v2.3.4
3
3
* https://sizzlejs.com/
4
4
*
5
- * Copyright jQuery Foundation and other contributors
5
+ * Copyright JS Foundation and other contributors
6
6
* Released under the MIT license
7
- * http ://jquery.org/license
7
+ * https ://js.foundation/
8
8
*
9
- * Date: 2016-08 -08
9
+ * Date: 2019-04 -08
10
10
*/
11
11
( function ( window ) {
12
12
40
40
classCache = createCache ( ) ,
41
41
tokenCache = createCache ( ) ,
42
42
compilerCache = createCache ( ) ,
43
+ nonnativeSelectorCache = createCache ( ) ,
43
44
sortOrder = function ( a , b ) {
44
45
if ( a === b ) {
45
46
hasDuplicate = true ;
@@ -101,8 +102,7 @@ var i,
101
102
102
103
rcomma = new RegExp ( "^" + whitespace + "*," + whitespace + "*" ) ,
103
104
rcombinators = new RegExp ( "^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*" ) ,
104
-
105
- rattributeQuotes = new RegExp ( "=" + whitespace + "*([^\\]'\"]*?)" + whitespace + "*\\]" , "g" ) ,
105
+ rdescend = new RegExp ( whitespace + "|>" ) ,
106
106
107
107
rpseudo = new RegExp ( pseudos ) ,
108
108
ridentifier = new RegExp ( "^" + identifier + "$" ) ,
@@ -123,6 +123,7 @@ var i,
123
123
whitespace + "*((?:-\\d)?\\d*)" + whitespace + "*\\)|)(?=[^-]|$)" , "i" )
124
124
} ,
125
125
126
+ rhtml = / H T M L $ / i,
126
127
rinputs = / ^ (?: i n p u t | s e l e c t | t e x t a r e a | b u t t o n ) $ / i,
127
128
rheader = / ^ h \d $ / i,
128
129
@@ -177,9 +178,9 @@ var i,
177
178
setDocument ( ) ;
178
179
} ,
179
180
180
- disabledAncestor = addCombinator (
181
+ inDisabledFieldset = addCombinator (
181
182
function ( elem ) {
182
- return elem . disabled === true && ( "form" in elem || "label" in elem ) ;
183
+ return elem . disabled === true && elem . nodeName . toLowerCase ( ) === "fieldset" ;
183
184
} ,
184
185
{ dir : "parentNode" , next : "legend" }
185
186
) ;
@@ -292,18 +293,22 @@ function Sizzle( selector, context, results, seed ) {
292
293
293
294
// Take advantage of querySelectorAll
294
295
if ( support . qsa &&
295
- ! compilerCache [ selector + " " ] &&
296
- ( ! rbuggyQSA || ! rbuggyQSA . test ( selector ) ) ) {
297
-
298
- if ( nodeType !== 1 ) {
299
- newContext = context ;
300
- newSelector = selector ;
296
+ ! nonnativeSelectorCache [ selector + " " ] &&
297
+ ( ! rbuggyQSA || ! rbuggyQSA . test ( selector ) ) &&
301
298
302
- // qSA looks outside Element context, which is not what we want
303
- // Thanks to Andrew Dupont for this workaround technique
304
- // Support: IE <=8
299
+ // Support: IE 8 only
305
300
// Exclude object elements
306
- } else if ( context . nodeName . toLowerCase ( ) !== "object" ) {
301
+ ( nodeType !== 1 || context . nodeName . toLowerCase ( ) !== "object" ) ) {
302
+
303
+ newSelector = selector ;
304
+ newContext = context ;
305
+
306
+ // qSA considers elements outside a scoping root when evaluating child or
307
+ // descendant combinators, which is not what we want.
308
+ // In such cases, we work around the behavior by prefixing every selector in the
309
+ // list with an ID selector referencing the scope context.
310
+ // Thanks to Andrew Dupont for this technique.
311
+ if ( nodeType === 1 && rdescend . test ( selector ) ) {
307
312
308
313
// Capture the context ID, setting it first if necessary
309
314
if ( ( nid = context . getAttribute ( "id" ) ) ) {
@@ -325,17 +330,16 @@ function Sizzle( selector, context, results, seed ) {
325
330
context ;
326
331
}
327
332
328
- if ( newSelector ) {
329
- try {
330
- push . apply ( results ,
331
- newContext . querySelectorAll ( newSelector )
332
- ) ;
333
- return results ;
334
- } catch ( qsaError ) {
335
- } finally {
336
- if ( nid === expando ) {
337
- context . removeAttribute ( "id" ) ;
338
- }
333
+ try {
334
+ push . apply ( results ,
335
+ newContext . querySelectorAll ( newSelector )
336
+ ) ;
337
+ return results ;
338
+ } catch ( qsaError ) {
339
+ nonnativeSelectorCache ( selector , true ) ;
340
+ } finally {
341
+ if ( nid === expando ) {
342
+ context . removeAttribute ( "id" ) ;
339
343
}
340
344
}
341
345
}
@@ -499,7 +503,7 @@ function createDisabledPseudo( disabled ) {
499
503
// Where there is no isDisabled, check manually
500
504
/* jshint -W018 */
501
505
elem . isDisabled !== ! disabled &&
502
- disabledAncestor ( elem ) === disabled ;
506
+ inDisabledFieldset ( elem ) === disabled ;
503
507
}
504
508
505
509
return elem . disabled === disabled ;
@@ -556,10 +560,13 @@ support = Sizzle.support = {};
556
560
* @returns {Boolean } True iff elem is a non-HTML XML node
557
561
*/
558
562
isXML = Sizzle . isXML = function ( elem ) {
559
- // documentElement is verified for cases where it doesn't yet exist
560
- // (such as loading iframes in IE - #4833)
561
- var documentElement = elem && ( elem . ownerDocument || elem ) . documentElement ;
562
- return documentElement ? documentElement . nodeName !== "HTML" : false ;
563
+ var namespace = elem . namespaceURI ,
564
+ docElem = ( elem . ownerDocument || elem ) . documentElement ;
565
+
566
+ // Support: IE <=8
567
+ // Assume HTML when documentElement doesn't yet exist, such as inside loading iframes
568
+ // https://bugs.jquery.com/ticket/4833
569
+ return ! rhtml . test ( namespace || docElem && docElem . nodeName || "HTML" ) ;
563
570
} ;
564
571
565
572
/**
@@ -981,11 +988,8 @@ Sizzle.matchesSelector = function( elem, expr ) {
981
988
setDocument ( elem ) ;
982
989
}
983
990
984
- // Make sure that attribute selectors are quoted
985
- expr = expr . replace ( rattributeQuotes , "='$1']" ) ;
986
-
987
991
if ( support . matchesSelector && documentIsHTML &&
988
- ! compilerCache [ expr + " " ] &&
992
+ ! nonnativeSelectorCache [ expr + " " ] &&
989
993
( ! rbuggyMatches || ! rbuggyMatches . test ( expr ) ) &&
990
994
( ! rbuggyQSA || ! rbuggyQSA . test ( expr ) ) ) {
991
995
@@ -999,7 +1003,9 @@ Sizzle.matchesSelector = function( elem, expr ) {
999
1003
elem . document && elem . document . nodeType !== 11 ) {
1000
1004
return ret ;
1001
1005
}
1002
- } catch ( e ) { }
1006
+ } catch ( e ) {
1007
+ nonnativeSelectorCache ( expr , true ) ;
1008
+ }
1003
1009
}
1004
1010
1005
1011
return Sizzle ( expr , document , null , [ elem ] ) . length > 0 ;
@@ -1458,7 +1464,7 @@ Expr = Sizzle.selectors = {
1458
1464
"contains" : markFunction ( function ( text ) {
1459
1465
text = text . replace ( runescape , funescape ) ;
1460
1466
return function ( elem ) {
1461
- return ( elem . textContent || elem . innerText || getText ( elem ) ) . indexOf ( text ) > - 1 ;
1467
+ return ( elem . textContent || getText ( elem ) ) . indexOf ( text ) > - 1 ;
1462
1468
} ;
1463
1469
} ) ,
1464
1470
@@ -1597,7 +1603,11 @@ Expr = Sizzle.selectors = {
1597
1603
} ) ,
1598
1604
1599
1605
"lt" : createPositionalPseudo ( function ( matchIndexes , length , argument ) {
1600
- var i = argument < 0 ? argument + length : argument ;
1606
+ var i = argument < 0 ?
1607
+ argument + length :
1608
+ argument > length ?
1609
+ length :
1610
+ argument ;
1601
1611
for ( ; -- i >= 0 ; ) {
1602
1612
matchIndexes . push ( i ) ;
1603
1613
}
0 commit comments