#include "third_party/blink/renderer/core/html/forms/html_button_element.h"
#include "third_party/blink/renderer/core/dom/attribute.h"
#include "third_party/blink/renderer/core/dom/element.h"
#include "third_party/blink/renderer/core/dom/events/event.h"
#include "third_party/blink/renderer/core/dom/events/simulated_click_options.h"
#include "third_party/blink/renderer/core/dom/flat_tree_traversal.h"
#include "third_party/blink/renderer/core/dom/focus_params.h"
#include "third_party/blink/renderer/core/dom/qualified_name.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/html/forms/form_data.h"
#include "third_party/blink/renderer/core/html/forms/html_form_element.h"
#include "third_party/blink/renderer/core/html/forms/html_listbox_element.h"
#include "third_party/blink/renderer/core/html/forms/html_select_element.h"
#include "third_party/blink/renderer/core/html/forms/html_select_list_element.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/layout/layout_block_flow.h"
#include "third_party/blink/renderer/core/style/computed_style.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"
namespace blink {
FormControlType;
HTMLButtonElement::HTMLButtonElement(Document& document)
: … { … }
void HTMLButtonElement::setType(const AtomicString& type) { … }
LayoutObject* HTMLButtonElement::CreateLayoutObject(
const ComputedStyle& style) { … }
void HTMLButtonElement::AdjustStyle(ComputedStyleBuilder& builder) { … }
FormControlType HTMLButtonElement::FormControlType() const { … }
const AtomicString& HTMLButtonElement::FormControlTypeAsString() const { … }
bool HTMLButtonElement::IsPresentationAttribute(
const QualifiedName& name) const { … }
void HTMLButtonElement::ParseAttribute(
const AttributeModificationParams& params) { … }
void HTMLButtonElement::DefaultEventHandler(Event& event) { … }
bool HTMLButtonElement::HasActivationBehavior() const { … }
bool HTMLButtonElement::WillRespondToMouseClickEvents() { … }
bool HTMLButtonElement::CanBeSuccessfulSubmitButton() const { … }
bool HTMLButtonElement::IsActivatedSubmit() const { … }
void HTMLButtonElement::SetActivatedSubmit(bool flag) { … }
void HTMLButtonElement::AppendToFormData(FormData& form_data) { … }
void HTMLButtonElement::AccessKeyAction(
SimulatedClickCreationScope creation_scope) { … }
bool HTMLButtonElement::IsURLAttribute(const Attribute& attribute) const { … }
const AtomicString& HTMLButtonElement::Value() const { … }
bool HTMLButtonElement::RecalcWillValidate() const { … }
int HTMLButtonElement::DefaultTabIndex() const { … }
bool HTMLButtonElement::IsInteractiveContent() const { … }
bool HTMLButtonElement::MatchesDefaultPseudoClass() const { … }
Node::InsertionNotificationRequest HTMLButtonElement::InsertedInto(
ContainerNode& insertion_point) { … }
void HTMLButtonElement::DispatchBlurEvent(
Element* new_focused_element,
mojom::blink::FocusType type,
InputDeviceCapabilities* source_capabilities) { … }
HTMLSelectListElement* HTMLButtonElement::OwnerSelectList() const { … }
HTMLSelectElement* HTMLButtonElement::OwnerSelect() const { … }
}