Added test for #945
This commit is contained in:
parent
707f23f83a
commit
4e7c9b08a0
|
@ -85,7 +85,10 @@
|
|||
<span id="utf8class2" class="台北"></span>
|
||||
</form>
|
||||
<b id="floatTest">Float test.</b>
|
||||
<iframe id="iframe" name="iframe"></iframe>
|
||||
<iframe id="iframe" name="iframe"></iframe>
|
||||
<form id="lengthtest">
|
||||
<input type="text" id="length" name="test">
|
||||
</form>
|
||||
</div>
|
||||
</dl>
|
||||
|
||||
|
|
|
@ -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 );
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue