mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Added test for #945
This commit is contained in:
parent
707f23f83a
commit
4e7c9b08a0
@ -85,7 +85,10 @@
|
|||||||
<span id="utf8class2" class="台北"></span>
|
<span id="utf8class2" class="台北"></span>
|
||||||
</form>
|
</form>
|
||||||
<b id="floatTest">Float test.</b>
|
<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>
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
@ -200,3 +200,9 @@ test("basic xpath", function() {
|
|||||||
isSet( $("/p", this).get(), q("sndp", "en", "sap"), "Check XPath context" );
|
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 New Issue
Block a user