chromium/third_party/blink/renderer/core/html/forms/html_opt_group_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, 2008, 2010 Apple Inc. All rights
 * reserved.
 *           (C) 2006 Alexey Proskuryakov ([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_opt_group_element.h"

#include "third_party/blink/renderer/core/css/css_property_names.h"
#include "third_party/blink/renderer/core/dom/events/simulated_click_options.h"
#include "third_party/blink/renderer/core/dom/text.h"
#include "third_party/blink/renderer/core/editing/editing_utilities.h"
#include "third_party/blink/renderer/core/html/forms/html_option_element.h"
#include "third_party/blink/renderer/core/html/forms/html_select_element.h"
#include "third_party/blink/renderer/core/html/html_div_element.h"
#include "third_party/blink/renderer/core/html/html_slot_element.h"
#include "third_party/blink/renderer/core/html/shadow/shadow_element_names.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"
#include "third_party/blink/renderer/platform/wtf/text/character_names.h"

namespace blink {

namespace {

bool CanAssignToOptGroupSlot(const Node& node) {}

}  // namespace

HTMLOptGroupElement::HTMLOptGroupElement(Document& document)
    :{}

// An explicit empty destructor should be in html_opt_group_element.cc, because
// if an implicit destructor is used or an empty destructor is defined in
// html_opt_group_element.h, when including html_opt_group_element.h,
// msvc tries to expand the destructor and causes
// a compile error because of lack of ComputedStyle definition.
HTMLOptGroupElement::~HTMLOptGroupElement() = default;

bool HTMLOptGroupElement::IsDisabledFormControl() const {}

void HTMLOptGroupElement::ParseAttribute(
    const AttributeModificationParams& params) {}

FocusableState HTMLOptGroupElement::SupportsFocus(
    UpdateBehavior update_behavior) const {}

bool HTMLOptGroupElement::MatchesEnabledPseudoClass() const {}

void HTMLOptGroupElement::ChildrenChanged(const ChildrenChange& change) {}

bool HTMLOptGroupElement::ChildrenChangedAllChildrenRemovedNeedsList() const {}

Node::InsertionNotificationRequest HTMLOptGroupElement::InsertedInto(
    ContainerNode& insertion_point) {}

void HTMLOptGroupElement::RemovedFrom(ContainerNode& insertion_point) {}

String HTMLOptGroupElement::GroupLabelText() const {}

HTMLSelectElement* HTMLOptGroupElement::OwnerSelectElement() const {}

String HTMLOptGroupElement::DefaultToolTip() const {}

void HTMLOptGroupElement::AccessKeyAction(
    SimulatedClickCreationScope creation_scope) {}

void HTMLOptGroupElement::DidAddUserAgentShadowRoot(ShadowRoot& root) {}

void HTMLOptGroupElement::ManuallyAssignSlots() {}

void HTMLOptGroupElement::UpdateGroupLabel() {}

HTMLDivElement& HTMLOptGroupElement::OptGroupLabelElement() const {}

void HTMLOptGroupElement::Trace(Visitor* visitor) const {}

}  // namespace blink