зеркало из https://github.com/mozilla/pjs.git
Dont allow arrow key event processing in radiogroup unless focus is on radio button. b=149517, r=brade, sr=hewitt
This commit is contained in:
Родитель
a80768613a
Коммит
6e73800af3
|
@ -114,6 +114,10 @@
|
|||
<body>
|
||||
<![CDATA[
|
||||
var currentElement = this.focusedItem;
|
||||
// If focused item isn't a radio button, do nothing!
|
||||
// (This allows textbox to work inside a radiogroup)
|
||||
if (!currentElement)
|
||||
return;
|
||||
var index, i;
|
||||
var children = this._getRadioChildren();
|
||||
for (i = 0; i < children.length; ++i ) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче