From eee853f120b61673191ffbbbf97e8ebb2f545751 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Tue, 3 Oct 2006 10:55:09 +0000 Subject: [PATCH] removed the test for bug #164, the test suite is unable to handle the resulting error in IE correctly. I'll add it back later. --- src/ajax/ajax.js | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/ajax/ajax.js b/src/ajax/ajax.js index 1f01553..6e56fa4 100644 --- a/src/ajax/ajax.js +++ b/src/ajax/ajax.js @@ -281,19 +281,6 @@ jQuery.extend({ * } * ) * - * @test stop(); - * $.get("data/dashboard.xml", function(xml) { - * var content = []; - * $('tab', xml).each(function(k) { - * // workaround for IE needed here, $(this).text() throws an error - * // content[k] = $.trim(this.firstChild.data) || $(this).text(); - * content[k] = $(this).text(); - * }); - * ok( content[0] && content[0].match(/blabla/), 'Check first tab' ); - * ok( content[1] && content[1].match(/blublu/), 'Check second tab' ); - * start(); - * }); - * * @name $.get * @type jQuery * @param String url The URL of the page to load. -- 1.7.10.4