1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/tests/mochitest/ajax/jquery/ChangeLog.txt Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,98 @@ 1.4 +== jQuery ChangeLog == 1.5 + 1.6 +== 1.2.2 == 1.7 + 1.8 +* show is now element aware (uses default display type instead of just forcing block) 1.9 +* New special events api: jQuery.events.special 1.10 +* ready is now a real event and can be bound, unbound and triggered. 1.11 +* mouseenter and mouseleave now work on all supported browsers 1.12 +* The hover helper method now uses the mouseenter and mouseleave events 1.13 +* New offset test suite test/offset.html (requires your pop-up blocker to be disabled) 1.14 +* Refactored the width and height methods (fixes lots of bugs) 1.15 +* Fixed event memory leaks in IE (html, remove, empty also no longer leak memory) 1.16 +* Fixed window/document width/height values 1.17 +* Fixed event.pageX and event.pageY in IE 1.18 + 1.19 +== 1.2 == 1.20 + 1.21 +=== 1.1.3 === 1.22 +* Always create an ActiveXObject when it is available instead of the XMLHttpRequest, even in IE7 1.23 +* Removed XMLHttpRequest shadowing, may break code that relies on existence of that function for browser checking 1.24 +* ... 1.25 + 1.26 +=== 1.1.2 === 1.27 + 1.28 +* Event handlers (like element.onclick) are now removed when no more functions are bound to the event. 1.29 +* Fixed DOM Manipulations for form elements. 1.30 +* Fixed jQuery.isFunction to return false on nodes. 1.31 +* Fixed jQuery.className.has, escaping regex characters in className (for metadata) 1.32 +* Fixed an issue in IE where an event on a cloned element is fired during a .clone() inside of an event handler. 1.33 +* Fixed IE ID selectors selecting by the name attribute. 1.34 +* Change: Events are now internally stored in elem.$events rather than elem.events (due to a nasty bug relating to DOM 0 expandos). 1.35 +* .attr('href') is now consistent in all browsers. 1.36 +* @href is now consistent in all browsers. 1.37 +* Fixed the slideDown flickering bug. 1.38 +* Having a \r endline in $("...") caused a never-ending loop. 1.39 +* Fixed IE6 AJAX memory leak 1.40 +* Fixed bug in pushStack, reporting an element at [0] in a jQuery object with length 0 1.41 + 1.42 +=== 1.1.1 === 1.43 + 1.44 +* Setting the numerical value of a css property failed, for example: .css("opacity",0.5) (also occurred with zIndex, fontWeight) 1.45 +* Calling $(..., jqobj) with a context of a jQuery object failed. 1.46 +* Accessing a property on an element that doesn't exist caused an error, for example: $("#foobar").attr("id") 1.47 +* Calling .load() without a callback caused an error. 1.48 +* You couldn't cancel an event that was triggered using .trigger() or .click() (for example). 1.49 +* .add()ing a single DOM element to a jQuery object was broken. 1.50 +* Passing in undefined values to a $.post() caused weird errors to occur. 1.51 +* Accessing child nodes within an xml document didn't work properly. 1.52 +* jQuery.isFunction() was unable to reliably determine a function, in a cross-browser way. 1.53 +* Triggering a .click() failed in IE. 1.54 +* Triggered click handlers were executed twice in most browsers. 1.55 +* A newline passed into $(...) caused Firefox to go into a never-ending loop. 1.56 +* Calling $.post() without any data caused an error. 1.57 +* Calling a descendant selector after a child selector caused strange results, for example: $("ul > li ul") 1.58 +* Triggered events did not occur if an event handler was not bound for that event. 1.59 + 1.60 +== 1.1 == 1.61 + 1.62 +* Massive speed-ups (4x-10x) in the selector engine. 1.63 +* You can now unbind event handlers from within themselves 1.64 +* Added new .one( "type", fn ) method 1.65 +* text(String) now escapes HTML 1.66 +* Added attr(String,Function) to calculate the value 1.67 +* Performming .click(), .blur(), .focus(), .submit() will actually trigger the browsers default action for those events. 1.68 +* Added global settings for AJAX (in addition to timeout), use $.ajaxSetup() to modify them 1.69 +* Implemented a better error handling for ajax requests. Exceptions caused by dropping connections are now handled, too. 1.70 +* Improved event fixing (Opera provides event.srcElement, must ignore it if target is available; only create pageX if clientX is available) 1.71 +* Fixed nth-child selectors to start on the right number 1.72 +* jQuery is no longer destructive. Doing var a = $("a"); a.find("span"); does not change the original "a" variable. 1.73 +* Fixed synchronous requests 1.74 +* Fixed ID with context selectors (eg. div #id doesn't ignore "div" anymore) 1.75 +* Fixed docs for html(): Now mentions that is not available for XML documents 1.76 +* Improved AJAX docs (eg. more examples for $.ajax) 1.77 +* Documented filter(Function), a very powerful approach for custom filtering 1.78 +* Improved docs for FX module, merging method descriptions and marking optional arguments 1.79 +* Improved docs for append, prepend, before and after, merging the three pairs into one 1.80 +* Improved show/hide animations to show only hidden and hide only visible elements 1.81 +* Removed .oneEvent() and .unEvent() helper methods. 1.82 +* Removed all CSS helper methods. 1.83 +* Removed most attribute helper methods. 1.84 +* Removed the (undocumented) .find( "selector", fn ) for all destructive methods. 1.85 +* $.get, $.getIfModified, $.post, $.getScript and $.getJSON now all pass through the XMLHttpRequest as returned by $.ajax 1.86 + 1.87 +== 1.0.4 == 1.88 + 1.89 +* Tons of bug fixes 1.90 +* Extensions to $.ajax: $.ajax accepts additonal options: beforeSend, async and processData; returns XMLHttpRequest to allow manual aborting of requests, see docs for details 1.91 +* AJAX module: the public $.ajax API is now used internally (for $.get/$.post etc.); loading scripts works now much more reliable on all browers except Safari 1.92 +* New global ajax handler: ajaxSend - called before an ajax request is sent 1.93 +* Extensions to global ajax handlers: ajaxSend, ajaxSuccess, ajaxError and ajaxComplete get XMLHttpRequest and settings passed as arguments 1.94 +* Extensions to event handling: pageX and pageY are available x-browser (IE does not provide native pageX/Y) 1.95 +* Improved docs: $(String) method has now two seperate descriptions, one for selecting elements, one for creating (html on-the-fly) 1.96 +* FX module: Most inline stlyes added by animations are now removed when the animation is complete, eg. height style when animating height (exception: display styles) 1.97 +* Added note to attr(String, Object) about issues with setting the name property on input elements 1.98 +* Seperated internal stuff from get() into set() 1.99 +* Merged the two API examples for each() into one more precise example 1.100 +* Improved docs for $.browser and added docs for $.boxModel 1.101 +* Docs for the jQuery constructor $() were improved: There is now $(String expression[, Object context]) and $(String html)