[Webkit-unassigned] [Bug 145687] New: Ignore radio buttons with different associated forms on keydown when the form element is descendants of main form.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Jun 4 23:42:19 PDT 2015
https://bugs.webkit.org/show_bug.cgi?id=145687
Bug ID: 145687
Summary: Ignore radio buttons with different associated forms
on keydown when the form element is descendants of
main form.
Classification: Unclassified
Product: WebKit
Version: 528+ (Nightly build)
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: HTML Events
Assignee: webkit-unassigned at lists.webkit.org
Reporter: kumar.rohit at samsung.com
Currently if a new form is encountered on key down in a radio group, the pressing keydown does not jump to another next radio button in the group. We should just ignore radio buttons with different associated forms. The associated form element of a control may have a form element as one of its descendants. It can happen in case of mixing buttons from different form control groups and other elements.
Webkit should handleccomplicated cases Like, mixing buttons from different groups and other elements.
<input type=radio name=foo>
<input type=radio name=bar>
<div><input type=radio name=foo></div>
And attaching form elements to form elements
<form name=alpha>
<input type=radio name=foo>
<input type=radio name=foo>
</form>
<form name=beta>
<input type=radio name=foo>
</form>
<script>
document.alpha.appendChild(document.beta);
</script>
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20150605/792c02c9/attachment.html>
More information about the webkit-unassigned
mailing list