diff options
author | John Resig <jeresig@gmail.com> | 2007-08-19 23:37:26 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2007-08-19 23:37:26 +0000 |
commit | 2ef4093cf7f52383dd43bd361864edcda27e5c3c (patch) | |
tree | 13ff931a06c6d508829377cb809e497ffaa8ab19 /build/runtest/test.js | |
parent | 24db022ba06523f92e94ac5fa791fc4865b55ba7 (diff) | |
download | jquery-2ef4093cf7f52383dd43bd361864edcda27e5c3c.tar.gz jquery-2ef4093cf7f52383dd43bd361864edcda27e5c3c.zip |
Complete overhaul of the Ajax test suite, it's now passing in all browsers. In order to achieve this I had to fix a numbe
r of bugs in the suite itself, along with other random bugs that popped up. The following bugs were resolved along the wa
y: #1236 (.extend() keeps processing when it hits nulls), #1028 (.extend() now works recursively), #1080 ($.get no longer
overwrites the data parameter), #1210 (Creating script and link tags now work), and #1463 (jQuery.global has been re-too
led to no longer leak memory and slow things down).
Diffstat (limited to 'build/runtest/test.js')
-rw-r--r-- | build/runtest/test.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/runtest/test.js b/build/runtest/test.js index 00b85e419..5599b8d16 100644 --- a/build/runtest/test.js +++ b/build/runtest/test.js @@ -11,11 +11,11 @@ window.onload = function(){ load( "src/jquery/coreTest.js", "src/selector/selectorTest.js", - "src/event/eventTest.js", - "src/fx/fxTest.js" + "src/event/eventTest.js" + //"src/fx/fxTest.js", //"src/ajax/ajaxTest.js" ); // Display the results results(); -};
\ No newline at end of file +}; |