diff options
author | timmywil <tim.willison@thisismedium.com> | 2011-03-30 23:23:38 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-03-30 23:23:38 -0400 |
commit | 1a167767305202797cf4c839eb64bd7adfb00182 (patch) | |
tree | f2d06a977c3f8c032845ee3606aca335c5d44666 /test/unit/traversing.js | |
parent | 6da3885cc38043fd8d384d1184468b0a2fba9fd9 (diff) | |
download | jquery-1a167767305202797cf4c839eb64bd7adfb00182.tar.gz jquery-1a167767305202797cf4c839eb64bd7adfb00182.zip |
Remove test for bug #7369 to move the fix to a separate branch for a sooner pull
Diffstat (limited to 'test/unit/traversing.js')
-rw-r--r-- | test/unit/traversing.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/unit/traversing.js b/test/unit/traversing.js index 43a9f22a2..117e46000 100644 --- a/test/unit/traversing.js +++ b/test/unit/traversing.js @@ -168,9 +168,6 @@ test("closest()", function() { // Test on disconnected node equals( jQuery("<div><p></p></div>").find("p").closest("table").length, 0, "Make sure disconnected closest work." ); - // Bug #7369 - equals( jQuery('<div foo="bar"></div>').closest('[foo]').length, 1, "Disconnected nodes with attribute selector" ); - equals( jQuery('<div></div>').closest('[lang]').length, 0, "Disconnected nodes with non-existent attribute selector" ); }); test("closest(Array)", function() { |