Skip to content

Commit 8e102f3

Browse files
mgolgibson042
andauthored
Selector: Update src/selector-native.js header comment
Co-authored-by: Richard Gibson <richard.gibson@gmail.com>
1 parent f20953d commit 8e102f3

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

src/selector-native.js

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@
44
* Note that this DOES NOT SUPPORT many documented jQuery
55
* features in exchange for its smaller size:
66
*
7-
* Attribute not equal selector
8-
* Positional selectors (:first; :eq(n); :odd; etc.)
9-
* Type selectors (:input; :checkbox; :button; etc.)
10-
* State-based selectors (:animated; :visible; :hidden; etc.)
11-
* :has(selector)
12-
* :not(complex selector)
13-
* custom selectors via jQuery extensions
14-
* Leading combinators (e.g., $collection.find("> *"))
15-
* Reliable functionality on XML fragments
16-
* Requiring all parts of a selector to match elements under context
17-
* (e.g., $div.find("div > *") now matches children of $div)
18-
* Matching against non-elements
19-
* Reliable sorting of disconnected nodes
20-
* querySelectorAll bug fixes (e.g., unreliable :focus on WebKit)
7+
* * Attribute not equal selector (!=)
8+
* * Positional selectors (:first; :eq(n); :odd; etc.)
9+
* * Type selectors (:input; :checkbox; :button; etc.)
10+
* * State-based selectors (:animated; :visible; :hidden; etc.)
11+
* * :has(selector)
12+
* * :not(complex selector)
13+
* * custom selectors via jQuery extensions
14+
* * Leading combinators (e.g., $collection.find("> *"))
15+
* * Reliable functionality on XML fragments
16+
* * Requiring all parts of a selector to match elements under context
17+
* (e.g., $div.find("div > *") now matches children of $div)
18+
* * Matching against non-elements
19+
* * Reliable sorting of disconnected nodes
20+
* * querySelectorAll bug fixes (e.g., unreliable :focus on WebKit)
2121
*
2222
* If any of these are unacceptable tradeoffs, either use the full
2323
* selector engine or customize this stub for the project's specific

0 commit comments

Comments
 (0)