25
I Use This!
Activity Not Available

Commits : Listings

Analyzed about 1 year ago. based on code collected about 1 year ago.
Nov 15, 2022 — Nov 15, 2023
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Resolved the conflict. More... about 16 years ago
Resolved the conflict. More... about 16 years ago
Fixed it so that selectors only match the correct fragments, not portions inside other selectors (e.g. :not(#id) and [name=:some.value]). More... about 16 years ago
Add failing test for attribute selector with a "." (e.g. a[href='http://www.google.com/']). More... about 16 years ago
Add failing test for attribute selector with a "." (e.g. a[href='http://www.google.com/']). More... about 16 years ago
Don't consider selector expressions with a comma (",") in them as "simple". This fixes a bug where Sizzle is incorrectly passed a "not()" non-simple selector such as "not:(#mark, code)". More... about 16 years ago
Don't consider selector expressions with a comma (",") in them as "simple". This fixes a bug where Sizzle is incorrectly passed a "not()" non-simple selector such as "not:(#mark, code)". More... about 16 years ago
Run core.js unit tests too, and add a failing test for not('ID, tag selector'). More... about 16 years ago
Run core.js unit tests too, and add a failing test for not('ID, tag selector'). More... about 16 years ago
Fix test broken by addition of form#name-tests in a previous commit. More... about 16 years ago
Fix test broken by addition of form#name-tests in a previous commit. More... about 16 years ago
Fix selector for grouped name attributes (e.g. "input[name='types[]']") not being recognized as a valid selector expression. More... about 16 years ago
Fix selector for grouped name attributes (e.g. "input[name='types[]']") not being recognized as a valid selector expression. More... about 16 years ago
Add missing semi-colons. More... about 16 years ago
Add missing semi-colons. More... about 16 years ago
Call getElementsByName conditionally in NAME selector function so that we don't incorrectly call it on a context that doesn't support the getElementsByName method (at this time, only the DOM Document object supports getElementsByName). More... about 16 years ago
Call getElementsByName conditionally in NAME selector function so that we don't incorrectly call it on a context that doesn't support the getElementsByName method (at this time, only the DOM Document object supports getElementsByName). More... about 16 years ago
Allow name selectors with quotes (e.g. "input[name='foo']" vs "input[name=foo]") to use the NAME selector strategy (rather than falling back to the TAG strategy) and add a test suite for name selectors. More... about 16 years ago
Allow name selectors with quotes (e.g. "input[name='foo']" vs "input[name=foo]") to use the NAME selector strategy (rather than falling back to the TAG strategy) and add a test suite for name selectors. More... about 16 years ago
Add a note about how to run tests for jQuery with Sizzle. More... about 16 years ago
Add a note about how to run tests for jQuery with Sizzle. More... about 16 years ago
Updated the README to have a more-comprehensive feature list. More... about 16 years ago
Removing the caching code for Firefox and Opera - caused a severe negative performance impact for those browsers. More... about 16 years ago
Positional selectors were being placed into the checkSet rather than the normal set - and a filter was also queueing up more results than need be. More... about 16 years ago
Removed the function declaration in favor of assigning to a variable (since it's in an if block). Thanks kangax for the suggestion. More... about 16 years ago
Sizzle was being exposed, accidentally, when qSA was around. More... about 16 years ago
IE8 freaks out when you access out-of-bounds properties on the NodeSet, provided a workaround. More... about 16 years ago
Removed an unnecessary line which was causing problems with class filters. More... about 16 years ago
Fixed an issue with how the IE comment handling was working. More... about 16 years ago
Merge branch 'master' of [email protected]:jeresig/sizzle More... about 16 years ago