diff options
author | Scott González <scott.gonzalez@gmail.com> | 2014-07-30 10:16:29 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2014-07-30 10:16:29 -0400 |
commit | 06fe70b10af3e75837545c019d23029fe331f433 (patch) | |
tree | 3f54ea24a5407520689654c2d61fb46572b9d9ca /tests/unit/core | |
parent | d6d15b455839aa3a75cbcc5df2d7fa41299b59a9 (diff) | |
download | jquery-ui-06fe70b10af3e75837545c019d23029fe331f433.tar.gz jquery-ui-06fe70b10af3e75837545c019d23029fe331f433.zip |
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@10399ddcf8a239acc27bdec9231b996b178224d3
Diffstat (limited to 'tests/unit/core')
-rw-r--r-- | tests/unit/core/core.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/unit/core/core.html b/tests/unit/core/core.html index 006abb50d..6490a4ae8 100644 --- a/tests/unit/core/core.html +++ b/tests/unit/core/core.html @@ -42,8 +42,13 @@ <area shape="rect" coords="1,1,2,2" href="foo.html" id="areaNoImg" alt=""> </map> -<form id="formNoTabindex"></form> -<form id="formTabindex" tabindex="1"></form> +<form id="formNoTabindex"> + <input> +</form> + +<form id="formTabindex" tabindex="1"> + <input> +</form> <div> <input id="visibleAncestor-inputTypeNone"> |