Lines Matching full:radio
192 case RADIO:
225 case RADIO:
287 case RADIO:
323 case RADIO:
359 case RADIO:
398 case RADIO:
445 case RADIO:
481 case RADIO:
545 case RADIO:
599 case RADIO:
702 if (inputType() == RADIO) {
704 // Never allow keyboard tabbing to leave you in the same radio group. Always
709 if (focusedInput->inputType() == RADIO && focusedInput->form() == form() &&
786 map->add("radio", HTMLInputElement::RADIO);
899 types[HTMLInputElement::RADIO] = "radio";
948 case RADIO:
986 case RADIO:
1013 case RADIO:
1183 case RADIO:
1311 case RADIO:
1407 case RADIO:
1440 // parsing) and don't send a change event for a radio button that's getting
1444 if (sendChangeEvent && inDocument() && (inputType() != RADIO || nowChecked))
1495 if (value.isNull() && (inputType() == CHECKBOX || inputType() == RADIO))
1521 case RADIO:
1653 case RADIO:
1694 case RADIO:
1739 case RADIO:
1801 case RADIO:
1859 case RADIO:
1917 case RADIO:
1948 if ((inputType() == CHECKBOX || inputType() == RADIO) && evt->isMouseEvent()
1962 // For radio buttons, store the current selected radio object.
1963 // We really want radio groups to end up in sane states, i.e., to have something checked.
1965 // we want some object in the radio group to actually get selected.
1968 // We have a radio button selected that is not us. Cache it in our result field and ref it so
1981 if ((inputType() == CHECKBOX || inputType() == RADIO) && evt->isMouseEvent()
1994 // Restore the original selected radio button if possible.
1995 // Make sure it is still a radio button and only do the restoration if it still
1998 if (input->form() == form() && input->inputType() == RADIO && input->name() == name()) {
1999 // Ok, the old radio button is still in our form and in our group and is still a
2000 // radio button, so it's safe to restore selection to it.
2007 // Left clicks on radio buttons and check boxes already performed default actions in preDispatchEventHandler().
2049 if (inputType() == RADIO
2131 case RADIO:
2132 break; // Don't do anything for enter on a radio button.
2142 case RADIO:
2169 case RADIO:
2179 // allow enter to change state of radio
2180 if (inputType() == RADIO && (key == "Up" || key == "Down" || key == "Left" || key == "Right")) {
2181 // Left and up mean "previous radio button".
2182 // Right and down mean "next radio button".
2183 // Tested in WinIE, and even for RTL, left still means previous radio button (and so moves
2195 // Look for more radio buttons.
2202 if (inputElt->inputType() == RADIO && inputElt->name() == name() && inputElt->isFocusable()) {
2232 case RADIO:
2233 // If an unselected radio is tabbed into (because the entire group has nothing
2494 case RADIO:
2680 case RADIO: