X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fselector%2FselectorTest.js;h=ac07bf32dc1a7a01a2de34e75fef8af4dd94d3db;hb=660490e6f487332aaf10c19fd9bbb325bc9946af;hp=9e646ce910ae3b721df89a48938a738ca96fca1d;hpb=80a149b82831defa1a9f724801daefda0a8c5685;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 9e646ce..ac07bf3 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -1,7 +1,7 @@ module("selector"); test("element", function() { - expect(9); + expect(8); ok( $("*").size() >= 30, "Select all" ); t( "Element Selector", "p", ["firstp","ap","sndp","en","sap","first"] ); t( "Element Selector", "body", ["body"] ); @@ -11,10 +11,19 @@ test("element", function() { ok( $("#length").length, '<input name="length"> cannot be found under IE, see #945' ); ok( $("#lengthtest input").length, '<input name="length"> cannot be found under IE, see #945' ); - - t( "Element Selector with underscore", "foo_bar", ["foobar"] ); }); +if ( location.protocol != "file:" ) { + test("Element Selector with underscore", function() { + expect(1); + stop(); + $.get("data/with_fries.xml", function(xml) { + ok( $("foo_bar", xml).length == 1, "Element Selector with underscore" ); + start(); + }); + }); +} + test("broken", function() { expect(7); t( "Broken Selector", "[", [] );