From cb1ad0e2cdddb76144d80fe438137f786cfc1171 Mon Sep 17 00:00:00 2001 From: Sam Stephenson Date: Mon, 12 Mar 2007 21:26:21 +0000 Subject: [PATCH] prototype: Add a tab character via innerHTML to the selector whitespace test. --- CHANGELOG | 4 ++++ test/unit/selector.html | 1 + 2 files changed, 5 insertions(+) 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')); }},