diff --git a/CHANGELOG b/CHANGELOG index 9e685e8..30c1f5e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ *SVN* +* Add a tab character via innerHTML to the selector whitespace test. [Christophe Porteneuve] + +* Add an attribution to YUI-Ext's DomQuery in selector.js. + * Make Element.extend work on IE for Nodes with the same ID that where discarded. Closes #7497. [Mislav Marohnić, Thomas Fuchs] * Make Selector correctly extend the first element it returns on IE. [Thomas Fuchs] diff --git a/test/unit/selector.html b/test/unit/selector.html index 125870c..7d52a57 100644 --- a/test/unit/selector.html +++ b/test/unit/selector.html @@ -330,6 +330,7 @@ }}, testSelectorWithEmpty: function() {with(this) { + $('level3_1').innerHTML = "\t\n\n\r\n\t "; assertEnumEqual($('level3_1', 'level3_2', 'level_only_child', 'level2_3'), $$('#level1 *:empty')); assertEnumEqual([$('level_only_child')], $$('#level_only_child:empty')); }},