diff --git a/build/test/index.html b/build/test/index.html index 85a7fa4e..b798a09b 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 59af2ff0..d3004f05 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 ); +});