]> source.dussan.org Git - jquery.git/log
jquery.git
11 years agoImplement expectation test instead of using _removeData. Close gh-997.
Timo Tijhof [Wed, 17 Oct 2012 08:33:47 +0000 (04:33 -0400)]
Implement expectation test instead of using _removeData. Close gh-997.

* Removed inline usage of QUnit.reset() because it is messing with the
  expectation model as reset does .empty() which does a recursive cleanData
  on everything in #qunit-fixture, so any expectJqData above .reset() would
  fail negatively.

  Instead of calling reset inline, either updated the following assertions to
  take previous assertions' state into account, or broke the test() up into
  2 tests at the point where it would call QUnit.reset.

* After introducing the new memory leak discovery a whole bunch of tests were
  failing as they didn't clean up everything. However I didn't (yet) add
  QUnit.expectJqData calls all over the place because in most if not all of
  these cases it is valid data storage. For example in test "data()", there
  will be an internal data key for "parsedAttrs". This particular test isn't
  intending to test for memory leaks, so therefor I made the new discovery
  system only push failures when the test contains at least 1 call to
  QUnit.expectJqData.

  When not, we'll assume that whatever data is being stored is acceptable
  because the relevant elements still exist in the DOM anyway (QUnit.reset
  will remove the elements and clean up the data automatically).

  I did add a "Always check jQuery.data" mode in the test suite that will
  trigger it everywhere. Maybe one day we'll include a call to everywhere,
  but for now I'm keeping the status quo: Only consider data left in storage
  to be a problem if the test says so ("opt-in").

* Had to move #fx-tests inside the fixture because ".remove()" test would
  otherwise remove stuff permanently and cause random other tests to fail
  as "#hide div" would yield an empty collection.
  (Why wasn't this in the fixture in the first place?)

  As a result moving fx-tests into the fixture a whole bunch of tests failed
  that relied on arbitrary stuff about the document-wide or fixture-wide
  state (e.g. number of divs etc.). So I had to adjust various tests to
  limit their sample data to not be so variable and unlimited...

* Moved out tests for expando cleanup into a separate test.

* Fixed implied global variable 'pass' in effects.js that was causing
  "TypeError: boolean is not a function" in *UNRELATED* dimensions.js that
  uses a global variable "pass = function () {};" ...

* Removed spurious calls to _removeData. The new test exposed various failures
  e.g. where div[0] isn't being assigned any data anyway.
  (queue.js and attributes.js toggleClass).

* Removed spurious clean up at the bottom of test() functions that are
  already covered by the teardown (calling QUnit.reset or removeClass to
  supposedly undo any changes).

* Documented the parentheses-less magic line in toggleClass. It appeared that
  it would always keep the current class name if there was any (since the
  assignment started with "this.className || ...".

  Adding parentheses + spacing is 8 bytes (though only 1 in gzip apparently).
  Only added the comment for now, though I prefer clarity with logical
  operators, I'd rather not face the yayMinPD[1] in this test-related commit.

* Updated QUnit urlConfig to the new format (raw string is deprecated).

* Clean up odd htmlentities in test titles, QUnit escapes this.
  (^\s+test\(.*)(&gt\;) → $1>
  (^\s+test\(.*)(&lt\;) → $1<

[1] jQuery MinJsGz Release Police Department (do the same, download less)

11 years agoFixes #12139, make sure absolutely positioned elements have HTML as offsetParent...
David Fox [Fri, 26 Oct 2012 16:38:05 +0000 (12:38 -0400)]
Fixes #12139, make sure absolutely positioned elements have HTML as offsetParent, closes gh-1010

11 years agoElements created from html strings have a parentnode. Fixes #12392
Oleg [Fri, 26 Oct 2012 00:41:47 +0000 (20:41 -0400)]
Elements created from html strings have a parentnode. Fixes #12392

11 years agoSimplify tests for #12786, reduce to only those required to support the fix
Rick Waldron [Thu, 25 Oct 2012 14:50:57 +0000 (10:50 -0400)]
Simplify tests for #12786, reduce to only those required to support the fix

11 years agoLess deep and more strict.
Rick Waldron [Thu, 25 Oct 2012 12:46:53 +0000 (08:46 -0400)]
Less deep and more strict.

11 years agoFix #11542. document.body should not be special in .offset() and document.documentEle...
Daniel Gálvez [Sun, 19 Aug 2012 19:53:09 +0000 (21:53 +0200)]
Fix #11542. document.body should not be special in .offset() and document.documentElement is the default element.offsetParent. Close gh-899.

11 years agoFix #9469. Remove semi-functional .selector property. Close gh-1006.
Dave Methvin [Wed, 24 Oct 2012 00:22:34 +0000 (20:22 -0400)]
Fix #9469. Remove semi-functional .selector property. Close gh-1006.

Saved 65 bytes.

11 years agoAdd new authors and sort in commit order.
Dave Methvin [Thu, 25 Oct 2012 02:25:08 +0000 (22:25 -0400)]
Add new authors and sort in commit order.

11 years agoRemove .hyphen property from tests (left behind in refactoring)
Rick Waldron [Wed, 24 Oct 2012 20:47:40 +0000 (16:47 -0400)]
Remove .hyphen property from tests (left behind in refactoring)

11 years agoBrute force property removal when removeData([a,b,c]). Fixes #12786
Rick Waldron [Wed, 24 Oct 2012 18:12:28 +0000 (14:12 -0400)]
Brute force property removal when removeData([a,b,c]). Fixes #12786

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
11 years agoSizzle: remove unneeded vars and POS regex (-22 bytes)
Timmy Willison [Wed, 24 Oct 2012 14:31:22 +0000 (10:31 -0400)]
Sizzle: remove unneeded vars and POS regex (-22 bytes)

11 years agoUpdate authors.
Dave Methvin [Wed, 24 Oct 2012 00:38:42 +0000 (20:38 -0400)]
Update authors.

11 years agoAdd More New Contributors to AUTHORS.txt
Mike Sherov [Tue, 23 Oct 2012 23:21:49 +0000 (19:21 -0400)]
Add More New Contributors to AUTHORS.txt

11 years agonew JSHINT mixed spaces/tabs is smart enough to not warn on multiline comments, rende...
Mike Sherov [Mon, 22 Oct 2012 17:28:51 +0000 (13:28 -0400)]
new JSHINT mixed spaces/tabs is smart enough to not warn on multiline comments, rendering smarttabs useless

11 years agoFix #12411, .removeClass(undefined) is a chaining no-op. Close gh-913.
Matthias Jäggli [Tue, 28 Aug 2012 13:26:06 +0000 (16:26 +0300)]
Fix #12411, .removeClass(undefined) is a chaining no-op. Close gh-913.

.removeClass() //removes all classes, as documented
.removeClass(window.nonExistentVariable) // removes nothing

11 years agoupdated AUTHORS
Mike Sherov [Mon, 22 Oct 2012 00:55:26 +0000 (20:55 -0400)]
updated AUTHORS

11 years agoMissing semicolon.
Dave Methvin [Mon, 22 Oct 2012 00:19:51 +0000 (20:19 -0400)]
Missing semicolon.

11 years agoFix failing tests for beforeunload in Safari 5.0. Close gh-1002.
Oleg [Sun, 21 Oct 2012 18:17:46 +0000 (22:17 +0400)]
Fix failing tests for beforeunload in Safari 5.0. Close gh-1002.

11 years agoRemove references to the Makefile from the README
Mike Sherov [Sun, 21 Oct 2012 12:31:37 +0000 (09:31 -0300)]
Remove references to the Makefile from the README

11 years agoFix #12061. Avoid window.onbeforeunload to permit multiple handlers. Close gh-894.
Oleg [Tue, 14 Aug 2012 20:10:10 +0000 (00:10 +0400)]
Fix #12061. Avoid window.onbeforeunload to permit multiple handlers. Close gh-894.

11 years agoRemove deprecated $.uuid and dunseled $.deletedIds.
Dave Methvin [Sun, 21 Oct 2012 02:18:29 +0000 (22:18 -0400)]
Remove deprecated $.uuid and dunseled $.deletedIds.

11 years agoFix #12107. Let .proxy() curry args without overwriting context. Close gh-866.
Marcel Greter [Thu, 19 Jul 2012 15:54:14 +0000 (17:54 +0200)]
Fix #12107. Let .proxy() curry args without overwriting context. Close gh-866.

11 years agoAlternate fix for #11426; check responseText. Close gh-843.
Oleg Gaidarenko [Sun, 21 Oct 2012 01:24:07 +0000 (21:24 -0400)]
Alternate fix for #11426; check responseText. Close gh-843.

11 years agoDon't expose jQuery.deletedIds. Close gh-889.
Rick Waldron [Sun, 21 Oct 2012 01:02:01 +0000 (21:02 -0400)]
Don't expose jQuery.deletedIds. Close gh-889.

11 years agoFix #12048. Set attributes for XML fragments. Close gh-965.
Sai Wong [Mon, 15 Oct 2012 18:20:36 +0000 (14:20 -0400)]
Fix #12048. Set attributes for XML fragments. Close gh-965.

11 years agoFix attribute names in aliased form property test. Close gh-951.
Jonathan Sampson [Thu, 11 Oct 2012 18:30:51 +0000 (15:30 -0300)]
Fix attribute names in aliased form property test. Close gh-951.

Test expects input elements having name='id', name='name', and name='target'. Additionally, these should have id='id', id='name', and id='target' respectively. No element was provided with id='id' or name='id', but rather one element had two name attributes (illegal) with the values 'id' and 'name' respectively.

11 years agoFixes #12518, removes an offsetWidth on focus/blur events for an <IE9 bug that caused...
Merrifield, Jay [Mon, 15 Oct 2012 15:54:32 +0000 (11:54 -0400)]
Fixes #12518, removes an offsetWidth on focus/blur events for an <IE9 bug that caused a performance hit. Closes gh-958

11 years agoadding awesome new contributors to AUTHORS.txt
Mike Sherov [Sat, 20 Oct 2012 17:46:11 +0000 (13:46 -0400)]
adding awesome new contributors to AUTHORS.txt

12 years agoFix #12610, remove unneeded window.event. Close gh-968.
Sai Wong [Sat, 20 Oct 2012 14:01:31 +0000 (10:01 -0400)]
Fix #12610, remove unneeded window.event. Close gh-968.

12 years agoFix #4262: faster .eq(), closes gh-1000.
Richard Gibson [Fri, 19 Oct 2012 21:08:50 +0000 (17:08 -0400)]
Fix #4262: faster .eq(), closes gh-1000.

12 years agoCombine parseJSON tests and fix style.
Dave Methvin [Sat, 20 Oct 2012 01:59:33 +0000 (21:59 -0400)]
Combine parseJSON tests and fix style.

We only care about the result of parseJSON so there's no reason to feature detect the entire test.

12 years agoFollowup for #12751, only test on browsers with JSON.parse
Dave Methvin [Fri, 19 Oct 2012 21:18:33 +0000 (17:18 -0400)]
Followup for #12751, only test on browsers with JSON.parse

12 years agoFix #12739. Keep namespace when triggering with an Event. Close gh-972.
Allen J Schmidt Jr [Tue, 16 Oct 2012 00:22:19 +0000 (20:22 -0400)]
Fix #12739. Keep namespace when triggering with an Event. Close gh-972.

12 years agoMerge pull request #998 from jquery/strict
Julian Aubourg [Fri, 19 Oct 2012 08:13:41 +0000 (01:13 -0700)]
Merge pull request #998 from jquery/strict

12 years ago@mikesherov says `strict` is redundant when `node` is already there 998/head
jaubourg [Fri, 19 Oct 2012 08:09:52 +0000 (10:09 +0200)]
@mikesherov says `strict` is redundant when `node` is already there

12 years agoadds strict rule to jshint options (except for test files). "use strict" is added...
jaubourg [Thu, 18 Oct 2012 04:50:01 +0000 (00:50 -0400)]
adds strict rule to jshint options (except for test files). "use strict" is added to the main jQuery closure and some "could-be-unsafe" `this` trickery in effects is silenced.

12 years agoFix #12751. Ensure parseJson throws in the same situations as JSON.parse. Close gh...
James Huston [Tue, 16 Oct 2012 18:51:54 +0000 (14:51 -0400)]
Fix #12751. Ensure parseJson throws in the same situations as JSON.parse. Close gh-993.

12 years agono ticket: fix jQuery suite failure on Android
Richard Gibson [Wed, 17 Oct 2012 19:20:15 +0000 (15:20 -0400)]
no ticket: fix jQuery suite failure on Android

12 years agoFixes #12569. Improve Feature Detect For oldIE bubbling. closes gh-967
Merrifield, Jay [Mon, 15 Oct 2012 19:16:11 +0000 (15:16 -0400)]
Fixes #12569. Improve Feature Detect For oldIE bubbling. closes gh-967

12 years agofix failing offset tests
Mike Sherov [Wed, 17 Oct 2012 18:51:58 +0000 (14:51 -0400)]
fix failing offset tests

12 years agoUpdate grunt-compare-size to 0.2.0
Rick Waldron [Wed, 17 Oct 2012 17:47:47 +0000 (13:47 -0400)]
Update grunt-compare-size to 0.2.0

12 years agoFixes #12749, correctly detect position() for position:fixed elements, closes gh-991
Merrifield, Jay [Wed, 17 Oct 2012 17:40:52 +0000 (13:40 -0400)]
Fixes #12749, correctly detect position() for position:fixed elements, closes gh-991

12 years agoFixes #12752: Added OS-switch for grunt task "custom", to make use of grunt.cmd on...
Roland Eckl [Wed, 17 Oct 2012 07:29:21 +0000 (09:29 +0200)]
Fixes #12752: Added OS-switch for grunt task "custom", to make use of grunt.cmd on Windows operating systems. closes gh-996

12 years agono ticket: remove and enforce unused vars in jshint
Mike Sherov [Wed, 17 Oct 2012 16:50:12 +0000 (12:50 -0400)]
no ticket: remove and enforce unused vars in jshint

12 years agoDon't be so picky about path separators
Rick Waldron [Wed, 17 Oct 2012 16:50:10 +0000 (12:50 -0400)]
Don't be so picky about path separators

12 years agoUpdate Sizzle: fixes failing tests in traversing (FF, Opera, Safari)
Timmy Willison [Tue, 16 Oct 2012 21:28:57 +0000 (17:28 -0400)]
Update Sizzle: fixes failing tests in traversing (FF, Opera, Safari)

12 years agoStyle nit in test/unit/callbacks.js. Closes gh-992
Erick Ruiz de Chavez [Tue, 16 Oct 2012 21:25:20 +0000 (17:25 -0400)]
Style nit in test/unit/callbacks.js. Closes gh-992

12 years agoUpdate README.md - grunt *update_*submodules
Tom Fuertes [Tue, 16 Oct 2012 21:19:36 +0000 (17:19 -0400)]
Update README.md - grunt *update_*submodules

12 years agoRefactored before/after/replaceWith to not pushStack. Fixes #12664, closes gh-987
Sai Wong [Tue, 16 Oct 2012 20:50:30 +0000 (16:50 -0400)]
Refactored before/after/replaceWith to not pushStack. Fixes #12664, closes gh-987

12 years agoUpdate package.json for update submodules
Timmy Willison [Tue, 16 Oct 2012 20:45:50 +0000 (16:45 -0400)]
Update package.json for update submodules

12 years agoEnforce style in test/unit/callbacks.js. https://github.com/jquery/2012-dev-summit...
Erick Ruiz de Chavez [Tue, 16 Oct 2012 20:43:30 +0000 (16:43 -0400)]
Enforce style in test/unit/callbacks.js. https://github.com/jquery/2012-dev-summit/issues/56

12 years agoSizzzzzzllllleeeee
Timmy Willison [Tue, 16 Oct 2012 20:42:06 +0000 (16:42 -0400)]
Sizzzzzzllllleeeee

12 years agoUses an additive approach to generating anti-cache parameters rather than a timestamp...
jaubourg [Tue, 16 Oct 2012 20:08:13 +0000 (16:08 -0400)]
Uses an additive approach to generating anti-cache parameters rather than a timestamp. Fixes #12550

12 years agoUpdate Sizzle: <3 reverts
Timmy Willison [Tue, 16 Oct 2012 19:23:03 +0000 (15:23 -0400)]
Update Sizzle: <3 reverts

12 years agoMerge branch 'master' of github.com:jquery/jquery
Dave Methvin [Tue, 16 Oct 2012 19:15:00 +0000 (15:15 -0400)]
Merge branch 'master' of github.com:jquery/jquery

12 years agoFix #11280. IE6-8 need name attribute to parse param. Close gh-914.
Daniel Galvez [Tue, 16 Oct 2012 18:59:36 +0000 (14:59 -0400)]
Fix #11280. IE6-8 need name attribute to parse param. Close gh-914.

12 years agoFixes busted indents. Sorry folks
Rick Waldron [Tue, 16 Oct 2012 19:06:51 +0000 (15:06 -0400)]
Fixes busted indents. Sorry folks

12 years agoupdate sizzle for test failures
Richard Gibson [Tue, 16 Oct 2012 19:02:26 +0000 (15:02 -0400)]
update sizzle for test failures

12 years agoReplace unknown, mysterious html arg to replaceWith(fn...), with just the current...
Rick Waldron [Tue, 16 Oct 2012 19:01:59 +0000 (15:01 -0400)]
Replace unknown, mysterious html arg to replaceWith(fn...), with just the current node.

12 years agoFixes #12736. Move hover event hack to deprecated.js for removal in 1.9. Closes gh...
Greg Lavallee [Tue, 16 Oct 2012 18:36:47 +0000 (14:36 -0400)]
Fixes #12736. Move hover event hack to deprecated.js for removal in 1.9. Closes gh-982.

Signed-off-by: Timmy Willison <timmywillisn@gmail.com>
12 years agoConvert all jQuery.removeData(foo, bar, true) calls to jQuery._remove(foo, bar)
Rick Waldron [Tue, 16 Oct 2012 18:14:09 +0000 (14:14 -0400)]
Convert all jQuery.removeData(foo, bar, true) calls to jQuery._remove(foo, bar)

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
12 years agoSizzle was accidentally reverted
Timmy Willison [Tue, 16 Oct 2012 17:28:57 +0000 (13:28 -0400)]
Sizzle was accidentally reverted

12 years agoFixes #11635, Explicit overflow:auto is overridden by inline overflow:hidden during...
Mike Petrovich [Tue, 16 Oct 2012 16:22:31 +0000 (12:22 -0400)]
Fixes #11635, Explicit overflow:auto is overridden by inline overflow:hidden during animation, closes gh-981

12 years agoEnforce style guide in test/unit/attributes.js. Closes gh-985
Erick Ruiz de Chavez [Tue, 16 Oct 2012 16:29:21 +0000 (12:29 -0400)]
Enforce style guide in test/unit/attributes.js. Closes gh-985

12 years agoCode cleanup in grunt.js. Closes gh-984
Ish [Tue, 16 Oct 2012 16:21:17 +0000 (12:21 -0400)]
Code cleanup in grunt.js. Closes gh-984

12 years agoUpdate Sizzle: allows disconnected sorting. Change add to always sort with added...
Timmy Willison [Tue, 16 Oct 2012 15:52:48 +0000 (11:52 -0400)]
Update Sizzle: allows disconnected sorting. Change add to always sort with added nodes, even when disconnected.

12 years agoHandle a falsy URL in the settings object for jQuery.ajax. Fixes #10093, Closes gh-979
Ben Truyman [Tue, 16 Oct 2012 15:37:15 +0000 (11:37 -0400)]
Handle a falsy URL in the settings object for jQuery.ajax. Fixes #10093, Closes gh-979

12 years agoClean up jshintrc configs. Close gh-983.
Mike Sherov [Tue, 16 Oct 2012 15:26:14 +0000 (11:26 -0400)]
Clean up jshintrc configs. Close gh-983.

12 years agoCreate private methods for processing data/removeData requests. Fixes #12519, Closes...
carldanley [Tue, 16 Oct 2012 15:15:41 +0000 (11:15 -0400)]
Create private methods for processing data/removeData requests. Fixes #12519, Closes gh-976

12 years agoRemove unused child_process init and assignment from grunt.js. Closes gh-978
Ish [Tue, 16 Oct 2012 14:58:38 +0000 (10:58 -0400)]
Remove unused child_process init and assignment from grunt.js. Closes gh-978

12 years agoReturn correct index for no-arg index() calls. Fixes #10977. Closes gh-971
MORGAN [Tue, 16 Oct 2012 14:25:08 +0000 (10:25 -0400)]
Return correct index for no-arg index() calls. Fixes #10977. Closes gh-971

12 years agoenforce double quotes via JSHint. Closes gh-975
Mike Sherov [Tue, 16 Oct 2012 14:17:14 +0000 (10:17 -0400)]
enforce double quotes via JSHint. Closes gh-975

12 years agoput "use strict" where it belongs so that this works for jshint 0.5.x up to 0.9.x
jaubourg [Tue, 16 Oct 2012 14:10:17 +0000 (10:10 -0400)]
put "use strict" where it belongs so that this works for jshint 0.5.x up to 0.9.x

12 years agofixes problematic JSONP test (gotta learn to count)
jaubourg [Tue, 16 Oct 2012 14:02:44 +0000 (10:02 -0400)]
fixes problematic JSONP test (gotta learn to count)

12 years agoRemove use strict from grunt
Dave Methvin [Tue, 16 Oct 2012 13:55:34 +0000 (09:55 -0400)]
Remove use strict from grunt

12 years agoMoved attrFN to deprecated. Close gh-977.
Akintayo Akinwunmi [Tue, 16 Oct 2012 13:51:01 +0000 (09:51 -0400)]
Moved attrFN to deprecated. Close gh-977.

12 years agoMerge branch 'master' of github.com:jquery/jquery
jaubourg [Tue, 16 Oct 2012 13:41:15 +0000 (09:41 -0400)]
Merge branch 'master' of github.com:jquery/jquery

12 years agobetter, more maintainable version of the prefilters execution and transport selection
jaubourg [Tue, 16 Oct 2012 13:40:42 +0000 (09:40 -0400)]
better, more maintainable version of the prefilters execution and transport selection

12 years agocomments out some problematic JSONP test until we figure out what the problem is
jaubourg [Tue, 16 Oct 2012 13:39:33 +0000 (09:39 -0400)]
comments out some problematic JSONP test until we figure out what the problem is

12 years agoFixing style for deferred.js unit tests. Close gh-973.
Erick Ruiz de Chavez [Tue, 16 Oct 2012 12:16:53 +0000 (08:16 -0400)]
Fixing style for deferred.js unit tests. Close gh-973.

Close jquery/2012-dev-summit/#56

12 years agolatest jshint requires "use strict"; declaration when enforcing strict mode
jaubourg [Tue, 16 Oct 2012 11:32:53 +0000 (07:32 -0400)]
latest jshint requires "use strict"; declaration when enforcing strict mode

12 years agofix effects tests failure
Mike Sherov [Tue, 16 Oct 2012 04:15:22 +0000 (00:15 -0400)]
fix effects tests failure

12 years agoLatest JSHint gets cranky with the _ vars in catch() {}
Rick Waldron [Mon, 15 Oct 2012 22:05:36 +0000 (18:05 -0400)]
Latest JSHint gets cranky with the _ vars in catch() {}

12 years agoFix style nit: indent inside if statement
Rick Waldron [Mon, 15 Oct 2012 21:21:18 +0000 (17:21 -0400)]
Fix style nit: indent inside if statement

12 years agoDeprecate fn toggle Closes gh-970 https://github.com/jquery/2012-dev-summit/issues/24
David Bonner [Mon, 15 Oct 2012 21:20:33 +0000 (17:20 -0400)]
Deprecate fn toggle Closes gh-970 https://github.com/jquery/2012-dev-summit/issues/24

12 years agoBreakout JSONP domain-related tests
Rick Waldron [Mon, 15 Oct 2012 21:11:21 +0000 (17:11 -0400)]
Breakout JSONP domain-related tests

12 years agoMove deprecated.js to the bottom of the build to ensure nothing depends on a deprecat...
Timmy Willison [Mon, 15 Oct 2012 20:51:03 +0000 (16:51 -0400)]
Move deprecated.js to the bottom of the build to ensure nothing depends on a deprecated feature

12 years agoUpdate Sizzle: focus test was failing if browser window was not in focus
Timmy Willison [Mon, 15 Oct 2012 20:09:50 +0000 (16:09 -0400)]
Update Sizzle: focus test was failing if browser window was not in focus

12 years agoDon't try to be dynamic, just get the damn job done. Expects = 30.
Rick Waldron [Mon, 15 Oct 2012 20:04:02 +0000 (16:04 -0400)]
Don't try to be dynamic, just get the damn job done. Expects = 30.

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
12 years agoSplit failing cross domain tests into two separate test bodies.
Rick Waldron [Mon, 15 Oct 2012 20:00:50 +0000 (16:00 -0400)]
Split failing cross domain tests into two separate test bodies.

Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
12 years agoFixing style for test unit ajax.js. https://github.com/jquery/2012-dev-summit/issues/56
Erick Ruiz [Mon, 15 Oct 2012 19:53:39 +0000 (15:53 -0400)]
Fixing style for test unit ajax.js. https://github.com/jquery/2012-dev-summit/issues/56

12 years agoAdds missing expect() call in test/unit/support.js, fixes failing IE tests
Rick Waldron [Mon, 15 Oct 2012 18:09:03 +0000 (14:09 -0400)]
Adds missing expect() call in test/unit/support.js, fixes failing IE tests

12 years agoAdds missing expect() call, fixes failing IE tests
Rick Waldron [Mon, 15 Oct 2012 18:04:58 +0000 (14:04 -0400)]
Adds missing expect() call, fixes failing IE tests

12 years agoEnforce expects in ajax.js (https://github.com/jquery/2012-dev-summit/issues/53)...
James Huston [Mon, 15 Oct 2012 16:37:02 +0000 (12:37 -0400)]
Enforce expects in ajax.js (https://github.com/jquery/2012-dev-summit/issues/53) Closes gh-964

12 years agoRemove duplicate expect. Add QUnit.config.requireExpects to testrunner.js QUnit confi...
Rick Waldron [Mon, 15 Oct 2012 16:31:27 +0000 (12:31 -0400)]
Remove duplicate expect. Add QUnit.config.requireExpects to testrunner.js QUnit configurations.

12 years agoEnforce expects in manipulation.js (https://github.com/jquery/2012-dev-summit/issues...
James Huston [Mon, 15 Oct 2012 16:19:20 +0000 (12:19 -0400)]
Enforce expects in manipulation.js (https://github.com/jquery/2012-dev-summit/issues/53) Closes gh-963

12 years agoEnforce expects in events.js (https://github.com/jquery/2012-dev-summit/issues/53...
James Huston [Mon, 15 Oct 2012 16:18:14 +0000 (12:18 -0400)]
Enforce expects in events.js (https://github.com/jquery/2012-dev-summit/issues/53) Closes gh-962

12 years agoEnforce expects in events.js (https://github.com/jquery/2012-dev-summit/issues/53...
James Huston [Mon, 15 Oct 2012 16:16:49 +0000 (12:16 -0400)]
Enforce expects in events.js (https://github.com/jquery/2012-dev-summit/issues/53) Closes gh-961

12 years agoEnforce expects in effects.js (https://github.com/jquery/2012-dev-summit/issues/53...
James Huston [Mon, 15 Oct 2012 16:14:54 +0000 (12:14 -0400)]
Enforce expects in effects.js (https://github.com/jquery/2012-dev-summit/issues/53) Closes gh-960

12 years agoEnforce expects in css.js (https://github.com/jquery/2012-dev-summit/issues/53)
James Huston [Mon, 15 Oct 2012 16:11:20 +0000 (12:11 -0400)]
Enforce expects in css.js (https://github.com/jquery/2012-dev-summit/issues/53)