From: Jörn Zaefferer Date: Sun, 25 Mar 2007 11:52:53 +0000 (+0000) Subject: Added test for #945 X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=4e7c9b08a0fb6142755e39cfaae2f8330831008c Added test for #945 --- diff --git a/build/test/index.html b/build/test/index.html index 85a7fa4..b798a09 100644 --- a/build/test/index.html +++ b/build/test/index.html @@ -85,7 +85,10 @@ Float test. - + +
+ +
diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 59af2ff..d3004f0 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -200,3 +200,9 @@ test("basic xpath", function() { isSet( $("/p", this).get(), q("sndp", "en", "sap"), "Check XPath context" ); }); }); + +test('<input name="length"> cannot be found under IE, see #945', function() { + expect(2); + ok( $("#length").length ); + ok( $("#lengthtest input").length ); +});