chromium/third_party/blink/renderer/core/html/forms/html_button_element.cc

/*
 * Copyright (C) 1999 Lars Knoll ([email protected])
 *           (C) 1999 Antti Koivisto ([email protected])
 *           (C) 2001 Dirk Mueller ([email protected])
 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reserved.
 *           (C) 2006 Alexey Proskuryakov ([email protected])
 * Copyright (C) 2007 Samuel Weinig ([email protected])
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 */

#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 {}

}  // namespace blink