diff options
author | Scott González <scott.gonzalez@gmail.com> | 2015-10-27 14:35:27 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-10-29 11:19:13 -0400 |
commit | e77fbe5388abeeb1d0f8f377161a0fc039897594 (patch) | |
tree | 78df261bb106e143f954588319d1fa4d828dc6dc /tests/unit/checkboxradio/checkboxradio.html | |
parent | 5157c2520b0121019a4003110c342ef1a5dcba74 (diff) | |
download | jquery-ui-e77fbe5388abeeb1d0f8f377161a0fc039897594.tar.gz jquery-ui-e77fbe5388abeeb1d0f8f377161a0fc039897594.zip |
Checkboxradio: Properly find radio groups from the associated form
Fixes #9973
Closes gh-1631
Diffstat (limited to 'tests/unit/checkboxradio/checkboxradio.html')
-rw-r--r-- | tests/unit/checkboxradio/checkboxradio.html | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/unit/checkboxradio/checkboxradio.html b/tests/unit/checkboxradio/checkboxradio.html index 92db788c5..9883e0834 100644 --- a/tests/unit/checkboxradio/checkboxradio.html +++ b/tests/unit/checkboxradio/checkboxradio.html @@ -64,6 +64,13 @@ <label> <input type="checkbox" id="label-with-no-for"/> </label> + +<form id="form3"></form> +<input type="radio" name="crazy-form" id="crazy-form-1" form="form3" checked="checked"> +<label for="crazy-form-1">Choice 1</label> +<input type="radio" name="crazy-form" id="crazy-form-2" form="form3"> +<label for="crazy-form-2">Choice 2</label> + </div> </body> </html> |