1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2001 Dirk Mueller (mueller@kde.org)
* (C) 2006 Alexey Proskuryakov (ap@nypop.com)
* Copyright (C) 2004-2023 Apple Inc. All rights reserved.
* Copyright (C) 2010-2017 Google Inc. All rights reserved.
* Copyright (C) 2011 Motorola Mobility, Inc. All rights reserved.
*
* 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 "config.h"
#include "HTMLOptionElement.h"
#include "AXObjectCache.h"
#include "Document.h"
#include "DocumentInlines.h"
#include "ElementAncestorIteratorInlines.h"
#include "HTMLDataListElement.h"
#include "HTMLNames.h"
#include "HTMLOptGroupElement.h"
#include "HTMLSelectElement.h"
#include "NodeName.h"
#include "NodeRenderStyle.h"
#include "NodeTraversal.h"
#include "PseudoClassChangeInvalidation.h"
#include "RenderMenuList.h"
#include "RenderTheme.h"
#include "ScriptElement.h"
#include "StyleResolver.h"
#include "Text.h"
#include <wtf/Ref.h>
#include <wtf/TZoneMallocInlines.h>
#include <wtf/text/MakeString.h>
namespace WebCore {
WTF_MAKE_TZONE_OR_ISO_ALLOCATED_IMPL(HTMLOptionElement);
using namespace HTMLNames;
HTMLOptionElement::HTMLOptionElement(const QualifiedName& tagName, Document& document)
: HTMLElement(tagName, document, TypeFlag::HasCustomStyleResolveCallbacks)
{
ASSERT(hasTagName(optionTag));
}
Ref<HTMLOptionElement> HTMLOptionElement::create(Document& document)
{
return adoptRef(*new HTMLOptionElement(optionTag, document));
}
Ref<HTMLOptionElement> HTMLOptionElement::create(const QualifiedName& tagName, Document& document)
{
return adoptRef(*new HTMLOptionElement(tagName, document));
}
ExceptionOr<Ref<HTMLOptionElement>> HTMLOptionElement::createForLegacyFactoryFunction(Document& document, String&& text, const AtomString& value, bool defaultSelected, bool selected)
{
auto element = create(document);
if (!text.isEmpty()) {
auto appendResult = element->appendChild(Text::create(document, WTFMove(text)));
if (appendResult.hasException())
return appendResult.releaseException();
}
if (!value.isNull())
element->setValue(value);
if (defaultSelected)
element->setAttributeWithoutSynchronization(selectedAttr, emptyAtom());
element->setSelected(selected);
return element;
}
bool HTMLOptionElement::isFocusable() const
{
RefPtr select = ownerSelectElement();
if (select && select->usesMenuList())
return false;
return HTMLElement::isFocusable();
}
bool HTMLOptionElement::matchesDefaultPseudoClass() const
{
return m_isDefault;
}
String HTMLOptionElement::text() const
{
String text = collectOptionInnerText();
// FIXME: Is displayStringModifiedByEncoding helpful here?
// If it's correct here, then isn't it needed in the value and label functions too?
return document().displayStringModifiedByEncoding(text).trim(isASCIIWhitespace).simplifyWhiteSpace(isASCIIWhitespace);
}
void HTMLOptionElement::setText(String&& text)
{
Ref protectedThis { *this };
// Changing the text causes a recalc of a select's items, which will reset the selected
// index to the first item if the select is single selection with a menu list. We attempt to
// preserve the selected item.
RefPtr select = ownerSelectElement();
bool selectIsMenuList = select && select->usesMenuList();
int oldSelectedIndex = selectIsMenuList ? select->selectedIndex() : -1;
setTextContent(WTFMove(text));
if (selectIsMenuList && select->selectedIndex() != oldSelectedIndex)
select->setSelectedIndex(oldSelectedIndex);
}
bool HTMLOptionElement::accessKeyAction(bool)
{
RefPtr select = ownerSelectElement();
if (select) {
select->accessKeySetSelectedIndex(index());
return true;
}
return false;
}
HTMLFormElement* HTMLOptionElement::form() const
{
if (RefPtr selectElement = ownerSelectElement())
return selectElement->form();
return nullptr;
}
HTMLFormElement* HTMLOptionElement::formForBindings() const
{
// FIXME: The downcast should be unnecessary, but the WPT was written before https://github.com/WICG/webcomponents/issues/1072 was resolved. Update once the WPT has been updated.
return dynamicDowncast<HTMLFormElement>(retargetReferenceTargetForBindings(form())).get();
}
int HTMLOptionElement::index() const
{
// It would be faster to cache the index, but harder to get it right in all cases.
RefPtr selectElement = ownerSelectElement();
if (!selectElement)
return 0;
int optionIndex = 0;
for (auto& item : selectElement->listItems()) {
if (!is<HTMLOptionElement>(*item))
continue;
if (item == this)
return optionIndex;
++optionIndex;
}
return 0;
}
void HTMLOptionElement::attributeChanged(const QualifiedName& name, const AtomString& oldValue, const AtomString& newValue, AttributeModificationReason attributeModificationReason)
{
switch (name.nodeName()) {
case AttributeNames::disabledAttr: {
bool newDisabled = !newValue.isNull();
if (m_disabled != newDisabled) {
Style::PseudoClassChangeInvalidation disabledInvalidation(*this, { { CSSSelector::PseudoClass::Disabled, newDisabled }, { CSSSelector::PseudoClass::Enabled, !newDisabled } });
m_disabled = newDisabled;
if (renderer() && renderer()->style().hasUsedAppearance())
renderer()->repaint();
}
break;
}
case AttributeNames::selectedAttr: {
// FIXME: Use PseudoClassChangeInvalidation in other elements that implement matchesDefaultPseudoClass().
Style::PseudoClassChangeInvalidation defaultInvalidation(*this, CSSSelector::PseudoClass::Default, !newValue.isNull());
m_isDefault = !newValue.isNull();
// FIXME: WebKit still need to implement 'dirtiness'. See: https://bugs.webkit.org/show_bug.cgi?id=258073
// https://html.spec.whatwg.org/multipage/form-elements.html#concept-option-selectedness
if (oldValue.isNull() != newValue.isNull())
setSelected(!newValue.isNull());
break;
}
case AttributeNames::labelAttr: {
if (RefPtr select = ownerSelectElement())
select->optionElementChildrenChanged();
break;
}
case AttributeNames::valueAttr:
for (auto& dataList : ancestorsOfType<HTMLDataListElement>(*this))
dataList.optionElementChildrenChanged();
break;
default:
HTMLElement::attributeChanged(name, oldValue, newValue, attributeModificationReason);
break;
}
}
String HTMLOptionElement::value() const
{
const AtomString& value = attributeWithoutSynchronization(valueAttr);
if (!value.isNull())
return value;
return collectOptionInnerText().trim(isASCIIWhitespace).simplifyWhiteSpace(isASCIIWhitespace);
}
void HTMLOptionElement::setValue(const AtomString& value)
{
setAttributeWithoutSynchronization(valueAttr, value);
}
bool HTMLOptionElement::selected(AllowStyleInvalidation allowStyleInvalidation) const
{
if (RefPtr select = ownerSelectElement())
select->updateListItemSelectedStates(allowStyleInvalidation);
return m_isSelected;
}
void HTMLOptionElement::setSelected(bool selected)
{
if (m_isSelected == selected)
return;
setSelectedState(selected);
if (RefPtr select = ownerSelectElement())
select->optionSelectionStateChanged(*this, selected);
}
void HTMLOptionElement::setSelectedState(bool selected, AllowStyleInvalidation allowStyleInvalidation)
{
if (m_isSelected == selected)
return;
std::optional<Style::PseudoClassChangeInvalidation> checkedInvalidation;
if (allowStyleInvalidation == AllowStyleInvalidation::Yes)
emplace(checkedInvalidation, *this, { { CSSSelector::PseudoClass::Checked, selected } });
m_isSelected = selected;
if (CheckedPtr cache = document().existingAXObjectCache())
cache->onSelectedChanged(*this);
}
void HTMLOptionElement::childrenChanged(const ChildChange& change)
{
Vector<Ref<HTMLDataListElement>> ancestors;
for (auto& dataList : ancestorsOfType<HTMLDataListElement>(*this))
ancestors.append(dataList);
for (auto& dataList : ancestors)
dataList->optionElementChildrenChanged();
if (change.source != ChildChange::Source::Clone) {
if (RefPtr select = ownerSelectElement())
select->optionElementChildrenChanged();
}
HTMLElement::childrenChanged(change);
}
HTMLSelectElement* HTMLOptionElement::ownerSelectElement() const
{
if (auto* parent = parentElement()) {
if (auto* select = dynamicDowncast<HTMLSelectElement>(*parent))
return select;
if (auto* optGroup = dynamicDowncast<HTMLOptGroupElement>(*parent))
return optGroup->ownerSelectElement();
}
return nullptr;
}
String HTMLOptionElement::label() const
{
String label = attributeWithoutSynchronization(labelAttr);
if (!label.isNull())
return label.trim(isASCIIWhitespace);
return collectOptionInnerText().trim(isASCIIWhitespace).simplifyWhiteSpace(isASCIIWhitespace);
}
// Same as label() but ignores the label content attribute in quirks mode for compatibility with other browsers.
String HTMLOptionElement::displayLabel() const
{
if (document().inQuirksMode())
return collectOptionInnerText().trim(isASCIIWhitespace).simplifyWhiteSpace(isASCIIWhitespace);
return label();
}
void HTMLOptionElement::setLabel(const AtomString& label)
{
setAttributeWithoutSynchronization(labelAttr, label);
}
void HTMLOptionElement::willResetComputedStyle()
{
// FIXME: This is nasty, we ask our owner select to repaint even if the new
// style is exactly the same.
if (auto select = ownerSelectElement()) {
if (auto renderer = select->renderer())
renderer->repaint();
}
}
String HTMLOptionElement::textIndentedToRespectGroupLabel() const
{
RefPtr parent = parentNode();
if (is<HTMLOptGroupElement>(parent))
return makeString(" "_s, displayLabel());
return displayLabel();
}
bool HTMLOptionElement::isDisabledFormControl() const
{
if (ownElementDisabled())
return true;
auto* parentOptGroup = dynamicDowncast<HTMLOptGroupElement>(parentNode());
return parentOptGroup && parentOptGroup->isDisabledFormControl();
}
String HTMLOptionElement::collectOptionInnerText() const
{
StringBuilder text;
for (RefPtr node = firstChild(); node; ) {
if (auto* textNode = dynamicDowncast<Text>(*node))
text.append(textNode->data());
// Text nodes inside script elements are not part of the option text.
if (auto* element = dynamicDowncast<Element>(*node); element && isScriptElement(*element))
node = NodeTraversal::nextSkippingChildren(*node, this);
else
node = NodeTraversal::next(*node, this);
}
return text.toString();
}
} // namespace
|