X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fselector%2FselectorTest.js;h=d3004f05be264b088e49830fa33bdbf3351934fa;hb=4e7c9b08a0fb6142755e39cfaae2f8330831008c;hp=59af2ff0b57c7097f4daa960e785c0e47d6bafd7;hpb=25b424134f9927a5bf0bab5cba836a0aa6c3cfc1;p=jquery.git 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 ); +});