diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-03-25 11:52:53 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-03-25 11:52:53 +0000 |
commit | 4e7c9b08a0fb6142755e39cfaae2f8330831008c (patch) | |
tree | 1ae470bc5a730788a8b11d7a042e1d8abecec8f3 /src | |
parent | 707f23f83a59e692454eb18285a610889ce8102f (diff) | |
download | jquery-4e7c9b08a0fb6142755e39cfaae2f8330831008c.tar.gz jquery-4e7c9b08a0fb6142755e39cfaae2f8330831008c.zip |
Added test for #945
Diffstat (limited to 'src')
-rw-r--r-- | src/selector/selectorTest.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 59af2ff0b..d3004f05b 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 ); +}); |