aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/selector.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix #11115: Normalize boolean attributes/properties. Close gh-1066.Richard Gibson2012-12-151-2/+10
|
* Fix #12600: don't use value property in place of value attribute. Close gh-1063.Richard Gibson2012-12-141-3/+16
|
* Adjust jQuery('html') detection to only match when html starts with '<' (not ↵timmywil2012-12-131-1/+13
| | | | counting space characters). Fixes #11290.
* Fix #13044: execute all QUnit modules in TestSwarm. Close gh-1074.Richard Gibson2012-12-131-1/+1
|
* Test: Update index.html to new QUnit format. Close gh-1061.Timo Tijhof2012-12-101-5/+7
| | | | Depends on jquery/sizzle#177, included with the Sizzle submodule in this commit.
* enforce double quotes via JSHint. Closes gh-975Mike Sherov2012-10-161-13/+13
|
* Update Sizzle: fix a failing test in traversing. Move an attribute selector ↵Timmy Willison2012-09-191-1/+7
| | | | test to jQuery-only.
* Make unit tests friendly to Closure Compiler. Closes gh-845.Chad Killingsworth2012-07-051-3/+4
| | | | | | Conflicts: test/unit/effects.js test/unit/offset.js
* Unit tests are linted and passing.Rick Waldron2012-06-211-2/+2
|
* Fix #11857. Modularize css.js, add dependency management. Closes gh-816.Mike Sherov2012-06-101-20/+22
| | | | See the pull request for more info on the dependency management details.
* Make dimensions modular, adds optional build flag. Fixes #11856Mike Sherov2012-06-051-3/+3
|
* Adjust the return type for the tabindex attribute tests to be a string. ↵timmywil2012-05-301-3/+2
| | | | | | Recomment a tabindex test since FF12's QSA includes video elements that don't have a tabindex attribute. Related: https://bugzilla.mozilla.org/show_bug.cgi?id=618737
* Uncomment an old test for when the tabindex attrhook was deprecatedtimmywil2012-05-301-3/+3
|
* Remove the tabindex attrHook. Fixes #8473timmywil2012-05-301-3/+9
|
* Add quick-start documentation for testing with QUnit and using jQuery's ↵timmywil2012-05-291-3/+4
| | | | helper methods.
* Update Sizzle: Add test for [selected] attribute selections. Addresses a ↵timmywil2012-05-281-3/+3
| | | | small issue in IE8's boolean attribute selections with QSA.
* Move length tests to jQuery's selector tests as it relates to jQuery.merge.timmywil2012-05-281-1/+4
|
* Minor test suite adjustmentstimmywil2012-05-281-1/+2
|
* Update Sizzle and add tests from the Sizzle suite that require jQuery for ↵timmywil2012-05-281-3/+55
| | | | the selection to jquery/test/unit/selector.js
* fixes #10693, generalizes the "test something in an iframe" code when a ↵Mike Sherov2012-02-231-44/+4
| | | | callback isn't needed
* Fix #10931: Make unit tests work without web access.Richard Gibson2012-01-121-2/+2
| | | | | Applies https://github.com/gibson042/jquery/tree/10931 to dd900460ac6f77be71ceb878bc2cd1465397dc60
* Update sizzle; Add sizzle cache collision iframe test. Fixes #8539.timmywil2011-10-131-19/+28
|
* Override Sizzle attribute retrieval with jQuery.attr. Fixes #5637, #7128, ↵timmywil2011-09-191-0/+133
| | | | | | #9261, #9570, #10178. Bug fixed on the side: $(window).is('a') was throwing an exception. Fixes #10178.
* No need to duplicate Sizzle tests, just run them directly from Sizzle.John Resig2011-02-101-517/+0
|
* Pull over tests from Sizzle. "Remove backslashes from tag name filter. Fixes ↵Anton M2011-02-101-2/+3
| | | | #8220."
* Pull over tests from Sizzle. Fixes #3729. Fixes #6428.Anton M2011-01-281-1/+10
|
* Bring back in #main prefix on adjacent selectors.jeresig2011-01-241-5/+5
|
* Backing out disconnected + and ~ tests as they're not something that we ↵jeresig2011-01-241-9/+6
| | | | actively support.
* Fix selector scope on some tests, so they don't fail on testswarm.Anton M2011-01-221-5/+5
|
* Disabled a broken test for now, until WebKit browsers become more current.jeresig2011-01-171-2/+5
|
* Accidentally removed the module teardown code.jeresig2011-01-171-1/+1
|
* Opera was falling back to undefined, which it didn't appreciate.jeresig2011-01-171-1/+1
|
* Merge branch 'master' of github.com:jquery/jqueryjeresig2011-01-171-1/+1
|\
| * Update unit tests with a leak detection mechanism for the various jQuery ↵Colin Snover2011-01-091-1/+1
| | | | | | | | globals and fix all leaks in the tests.
* | Fixed a couple issues with escaping of attribute values in selectors. Fixes ↵jeresig2011-01-171-12/+55
|/ | | | #6093.
* Clean trailing whitespace from all files.Colin Snover2010-12-301-19/+19
|
* Merge branch 'fixAdjacentTests' of https://github.com/jitter/jquery into ↵John Resig2010-11-091-5/+5
|\ | | | | | | jitter-fixAdjacentTests
| * Fix selector tests broken by newer version of Qunit.Anton M2010-11-091-5/+5
| |
* | Ensure that unquoted attribute selectors are quoted (allowing them to go ↵John Resig2010-11-091-3/+11
|/ | | | into qSA/matchesSelector properly). Fixes #7216.
* Only change ID on nodes that don't already have an ID for rooted qSA. Fixes ↵jeresig2010-11-011-1/+6
| | | | #7212.
* Fix broken selector code from last commit.jeresig2010-10-221-27/+38
|
* Make sure that +, >, ~ leading, rooted, selectors go to the old engine. ↵jeresig2010-10-221-38/+27
| | | | Thanks to @rkatic for the catch! Fixes #7220.
* Make sure that we don't use matchesSelector on XML Documents (same as with ↵jeresig2010-10-221-1/+2
| | | | qSA). Fixes #7219.
* Make sure that we aren't reading one of the bad expandos. Fixes #7212.jeresig2010-10-221-1/+7
|
* Adding another test for an issue in Gecko's matchesSelector implementation. ↵jeresig2010-10-211-2/+8
| | | | Fixes #7243.
* Testing *, * was unnecessary - especially in slower browsers.jeresig2010-10-141-2/+1
|
* Make sure that ambiguous val() selection works correctly.John Resig2010-09-281-7/+7
|
* Don't have .val() return selected-but-disabled options, or selected options ↵Dave Methvin2010-09-241-6/+6
| | | | inside a disabled optgroup. Doesn't change the .val() returned for a disabled select. Fixes #3240, adapted from Nathan Hammond's patch there.
* added "#main" ancestor selector to an "Only Child" and "Last Child" test to ↵Karl Swedberg2010-09-071-2/+2
| | | | fix broken tests caused by QUnit commit abfab1713ccb588aa87136b199a9ddc8d1b56c4b (Aug 29, 2010)
* Fix the order of the element test arguments.John Resig2010-09-021-2/+2
|