Skip to content

Commit 06fe70b

Browse files
committed
Core: Ensure forms in tests have some actual content
Empty forms have no height, so they're considered hidden in jquery-git as of jquery/jquery@10399dd
1 parent d6d15b4 commit 06fe70b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

tests/unit/core/core.html

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,13 @@
4242
<area shape="rect" coords="1,1,2,2" href="foo.html" id="areaNoImg" alt="">
4343
</map>
4444

45-
<form id="formNoTabindex"></form>
46-
<form id="formTabindex" tabindex="1"></form>
45+
<form id="formNoTabindex">
46+
<input>
47+
</form>
48+
49+
<form id="formTabindex" tabindex="1">
50+
<input>
51+
</form>
4752

4853
<div>
4954
<input id="visibleAncestor-inputTypeNone">

0 commit comments

Comments
 (0)