#include "third_party/blink/renderer/core/html/forms/radio_input_type.h"
#include "third_party/blink/public/mojom/input/focus_type.mojom-blink.h"
#include "third_party/blink/public/strings/grit/blink_strings.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/element_traversal.h"
#include "third_party/blink/renderer/core/dom/focus_params.h"
#include "third_party/blink/renderer/core/events/keyboard_event.h"
#include "third_party/blink/renderer/core/events/mouse_event.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/html/forms/html_form_element.h"
#include "third_party/blink/renderer/core/html/forms/html_input_element.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/input_type_names.h"
#include "third_party/blink/renderer/core/keywords.h"
#include "third_party/blink/renderer/core/page/spatial_navigation.h"
#include "third_party/blink/renderer/platform/text/platform_locale.h"
namespace blink {
FormControlType;
namespace {
HTMLInputElement* NextInputElement(const HTMLInputElement& element,
const HTMLFormElement* stay_within,
bool forward) { … }
}
void RadioInputType::CountUsage() { … }
ControlPart RadioInputType::AutoAppearance() const { … }
bool RadioInputType::ValueMissing(const String&) const { … }
String RadioInputType::ValueMissingText() const { … }
void RadioInputType::HandleClickEvent(MouseEvent& event) { … }
HTMLInputElement* RadioInputType::FindNextFocusableRadioButtonInGroup(
HTMLInputElement* current_element,
bool forward) { … }
void RadioInputType::HandleKeydownEvent(KeyboardEvent& event) { … }
void RadioInputType::HandleKeyupEvent(KeyboardEvent& event) { … }
bool RadioInputType::IsKeyboardFocusable(
Element::UpdateBehavior update_behavior) const { … }
bool RadioInputType::ShouldSendChangeEventAfterCheckedChanged() { … }
ClickHandlingState* RadioInputType::WillDispatchClick() { … }
void RadioInputType::DidDispatchClick(Event& event,
const ClickHandlingState& state) { … }
bool RadioInputType::ShouldAppearIndeterminate() const { … }
HTMLInputElement* RadioInputType::NextRadioButtonInGroup(
HTMLInputElement* current,
bool forward) { … }
HTMLInputElement* RadioInputType::CheckedRadioButtonForGroup() const { … }
void RadioInputType::WillUpdateCheckedness(bool new_checked) { … }
}