blob: 0e3486d4f7106cc57167cafa67480d97217f8951 [file] [log] [blame]
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* (C) 2001 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2004-2020 Apple Inc. All rights reserved.
* (C) 2006 Alexey Proskuryakov (ap@nypop.com)
*
* 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 "HTMLTextFormControlElement.h"
#include "AXObjectCache.h"
#include "CSSPrimitiveValueMappings.h"
#include "ChromeClient.h"
#include "DocumentInlines.h"
#include "Editing.h"
#include "ElementAncestorIterator.h"
#include "Event.h"
#include "EventNames.h"
#include "Frame.h"
#include "FrameSelection.h"
#include "HTMLBRElement.h"
#include "HTMLFormElement.h"
#include "HTMLInputElement.h"
#include "HTMLNames.h"
#include "HTMLParserIdioms.h"
#include "InlineIteratorBox.h"
#include "InlineIteratorLine.h"
#include "LayoutDisallowedScope.h"
#include "Logging.h"
#include "NodeTraversal.h"
#include "Page.h"
#include "RenderLineBreak.h"
#include "RenderTextControlSingleLine.h"
#include "RenderTheme.h"
#include "ScriptDisallowedScope.h"
#include "ShadowRoot.h"
#include "Text.h"
#include "TextControlInnerElements.h"
#include <wtf/IsoMallocInlines.h>
#include <wtf/text/StringBuilder.h>
namespace WebCore {
WTF_MAKE_ISO_ALLOCATED_IMPL(HTMLTextFormControlElement);
using namespace HTMLNames;
static Position positionForIndex(TextControlInnerTextElement*, unsigned);
HTMLTextFormControlElement::HTMLTextFormControlElement(const QualifiedName& tagName, Document& document, HTMLFormElement* form)
: HTMLFormControlElementWithState(tagName, document, form)
, m_cachedSelectionDirection(SelectionHasNoDirection)
, m_lastChangeWasUserEdit(false)
, m_isPlaceholderVisible(false)
, m_canShowPlaceholder(true)
, m_cachedSelectionStart(-1)
, m_cachedSelectionEnd(-1)
{
}
HTMLTextFormControlElement::~HTMLTextFormControlElement() = default;
bool HTMLTextFormControlElement::childShouldCreateRenderer(const Node& child) const
{
// FIXME: We shouldn't force the pseudo elements down into the shadow, but
// this perserves the current behavior of WebKit.
if (child.isPseudoElement())
return HTMLFormControlElementWithState::childShouldCreateRenderer(child);
return hasShadowRootParent(child) && HTMLFormControlElementWithState::childShouldCreateRenderer(child);
}
Node::InsertedIntoAncestorResult HTMLTextFormControlElement::insertedIntoAncestor(InsertionType insertionType, ContainerNode& parentOfInsertedTree)
{
InsertedIntoAncestorResult InsertedIntoAncestorResult = HTMLFormControlElementWithState::insertedIntoAncestor(insertionType, parentOfInsertedTree);
if (insertionType.connectedToDocument) {
String initialValue = value();
setTextAsOfLastFormControlChangeEvent(initialValue.isNull() ? emptyString() : initialValue);
}
return InsertedIntoAncestorResult;
}
void HTMLTextFormControlElement::dispatchFocusEvent(RefPtr<Element>&& oldFocusedElement, FocusDirection direction)
{
if (supportsPlaceholder())
updatePlaceholderVisibility();
handleFocusEvent(oldFocusedElement.get(), direction);
HTMLFormControlElementWithState::dispatchFocusEvent(WTFMove(oldFocusedElement), direction);
}
void HTMLTextFormControlElement::dispatchBlurEvent(RefPtr<Element>&& newFocusedElement)
{
if (supportsPlaceholder())
updatePlaceholderVisibility();
// Match the order in Document::setFocusedElement.
handleBlurEvent();
HTMLFormControlElementWithState::dispatchBlurEvent(WTFMove(newFocusedElement));
}
void HTMLTextFormControlElement::didEditInnerTextValue()
{
if (!renderer() || !isTextField())
return;
LOG(Editing, "HTMLTextFormControlElement %p didEditInnerTextValue", this);
m_lastChangeWasUserEdit = true;
subtreeHasChanged();
}
void HTMLTextFormControlElement::forwardEvent(Event& event)
{
if (event.type() == eventNames().blurEvent || event.type() == eventNames().focusEvent)
return;
innerTextElement()->defaultEventHandler(event);
}
String HTMLTextFormControlElement::strippedPlaceholder() const
{
// According to the HTML5 specification, we need to remove CR and LF from
// the attribute value.
const AtomString& attributeValue = attributeWithoutSynchronization(placeholderAttr);
if (!attributeValue.contains(newlineCharacter) && !attributeValue.contains(carriageReturn))
return attributeValue;
StringBuilder stripped;
unsigned length = attributeValue.length();
stripped.reserveCapacity(length);
for (unsigned i = 0; i < length; ++i) {
UChar character = attributeValue[i];
if (character == newlineCharacter || character == carriageReturn)
continue;
stripped.append(character);
}
return stripped.toString();
}
static bool isNotLineBreak(UChar ch) { return ch != newlineCharacter && ch != carriageReturn; }
bool HTMLTextFormControlElement::isPlaceholderEmpty() const
{
const AtomString& attributeValue = attributeWithoutSynchronization(placeholderAttr);
return attributeValue.string().find(isNotLineBreak) == notFound;
}
bool HTMLTextFormControlElement::placeholderShouldBeVisible() const
{
// This function is used by the style resolver to match the :placeholder-shown pseudo class.
// Since it is used for styling, it must not use any value depending on the style.
return supportsPlaceholder() && isEmptyValue() && !isPlaceholderEmpty() && m_canShowPlaceholder;
}
void HTMLTextFormControlElement::updatePlaceholderVisibility()
{
bool placeHolderWasVisible = m_isPlaceholderVisible;
m_isPlaceholderVisible = placeholderShouldBeVisible();
if (placeHolderWasVisible == m_isPlaceholderVisible)
return;
invalidateStyleForSubtree();
}
void HTMLTextFormControlElement::setCanShowPlaceholder(bool canShowPlaceholder)
{
m_canShowPlaceholder = canShowPlaceholder;
updatePlaceholderVisibility();
}
void HTMLTextFormControlElement::setSelectionStart(int start)
{
setSelectionRange(start, std::max(start, selectionEnd()), selectionDirection());
}
void HTMLTextFormControlElement::setSelectionEnd(int end)
{
setSelectionRange(std::min(end, selectionStart()), end, selectionDirection());
}
void HTMLTextFormControlElement::setSelectionDirection(const String& direction)
{
setSelectionRange(selectionStart(), selectionEnd(), direction);
}
void HTMLTextFormControlElement::select(SelectionRevealMode revealMode, const AXTextStateChangeIntent& intent)
{
setSelectionRange(0, std::numeric_limits<int>::max(), SelectionHasNoDirection, revealMode, intent);
}
String HTMLTextFormControlElement::selectedText() const
{
if (!isTextField())
return String();
return value().substring(selectionStart(), selectionEnd() - selectionStart());
}
void HTMLTextFormControlElement::dispatchFormControlChangeEvent()
{
if (m_textAsOfLastFormControlChangeEvent != value()) {
dispatchChangeEvent();
setTextAsOfLastFormControlChangeEvent(value());
}
setChangedSinceLastFormControlChangeEvent(false);
}
ExceptionOr<void> HTMLTextFormControlElement::setRangeText(const String& replacement)
{
return setRangeText(replacement, selectionStart(), selectionEnd(), String());
}
ExceptionOr<void> HTMLTextFormControlElement::setRangeText(const String& replacement, unsigned start, unsigned end, const String& selectionMode)
{
if (start > end)
return Exception { IndexSizeError };
String text = innerTextValue();
unsigned textLength = text.length();
unsigned replacementLength = replacement.length();
unsigned newSelectionStart = selectionStart();
unsigned newSelectionEnd = selectionEnd();
start = std::min(start, textLength);
end = std::min(end, textLength);
if (start < end)
text.replace(start, end - start, replacement);
else
text.insert(replacement, start);
setInnerTextValue(text);
// FIXME: This shouldn't need synchronous style update, or renderer at all.
if (!renderer())
document().updateStyleIfNeeded();
if (!renderer())
return { };
subtreeHasChanged();
if (equalLettersIgnoringASCIICase(selectionMode, "select")) {
newSelectionStart = start;
newSelectionEnd = start + replacementLength;
} else if (equalLettersIgnoringASCIICase(selectionMode, "start"))
newSelectionStart = newSelectionEnd = start;
else if (equalLettersIgnoringASCIICase(selectionMode, "end"))
newSelectionStart = newSelectionEnd = start + replacementLength;
else {
// Default is "preserve".
long delta = replacementLength - (end - start);
if (newSelectionStart > end)
newSelectionStart += delta;
else if (newSelectionStart > start)
newSelectionStart = start;
if (newSelectionEnd > end)
newSelectionEnd += delta;
else if (newSelectionEnd > start)
newSelectionEnd = start + replacementLength;
}
setSelectionRange(newSelectionStart, newSelectionEnd, SelectionHasNoDirection);
return { };
}
void HTMLTextFormControlElement::setSelectionRange(int start, int end, const String& directionString, const AXTextStateChangeIntent& intent)
{
TextFieldSelectionDirection direction = SelectionHasNoDirection;
if (directionString == "forward")
direction = SelectionHasForwardDirection;
else if (directionString == "backward")
direction = SelectionHasBackwardDirection;
return setSelectionRange(start, end, direction, SelectionRevealMode::DoNotReveal, intent);
}
void HTMLTextFormControlElement::setSelectionRange(int start, int end, TextFieldSelectionDirection direction, SelectionRevealMode revealMode, const AXTextStateChangeIntent& intent)
{
if (!isTextField())
return;
end = std::max(end, 0);
start = std::min(std::max(start, 0), end);
auto innerText = innerTextElement();
bool hasFocus = document().focusedElement() == this;
if (!hasFocus && innerText) {
if (!isConnected()) {
cacheSelection(start, end, direction);
return;
}
// FIXME: Removing this synchronous layout requires fixing setSelectionWithoutUpdatingAppearance not needing up-to-date style.
document().updateLayoutIgnorePendingStylesheets();
if (!isTextField())
return;
// Double-check our connected state after the layout update.
if (!isConnected()) {
cacheSelection(start, end, direction);
return;
}
// Double-check the state of innerTextElement after the layout.
innerText = innerTextElement();
auto* rendererTextControl = renderer();
if (innerText && rendererTextControl) {
if (rendererTextControl->style().visibility() == Visibility::Hidden || !innerText->renderBox() || !innerText->renderBox()->height()) {
cacheSelection(start, end, direction);
return;
}
}
}
Position startPosition = positionForIndex(innerText.get(), start);
Position endPosition;
if (start == end)
endPosition = startPosition;
else {
if (direction == SelectionHasBackwardDirection) {
endPosition = startPosition;
startPosition = positionForIndex(innerText.get(), end);
} else
endPosition = positionForIndex(innerText.get(), end);
}
if (RefPtr<Frame> frame = document().frame())
frame->selection().moveWithoutValidationTo(startPosition, endPosition, direction != SelectionHasNoDirection, !hasFocus, revealMode, intent);
}
int HTMLTextFormControlElement::indexForVisiblePosition(const VisiblePosition& position) const
{
auto innerText = innerTextElement();
if (!innerText || !innerText->contains(position.deepEquivalent().anchorNode()))
return 0;
unsigned index = indexForPosition(position.deepEquivalent());
ASSERT(VisiblePosition(positionForIndex(innerTextElement().get(), index)) == position);
return index;
}
VisiblePosition HTMLTextFormControlElement::visiblePositionForIndex(int index) const
{
VisiblePosition position = positionForIndex(innerTextElement().get(), index);
ASSERT(indexForVisiblePosition(position) == index);
return position;
}
int HTMLTextFormControlElement::selectionStart() const
{
if (!isTextField())
return 0;
if (document().focusedElement() != this && hasCachedSelection())
return m_cachedSelectionStart;
return computeSelectionStart();
}
int HTMLTextFormControlElement::computeSelectionStart() const
{
ASSERT(isTextField());
RefPtr<Frame> frame = document().frame();
if (!frame)
return 0;
return indexForPosition(frame->selection().selection().start());
}
int HTMLTextFormControlElement::selectionEnd() const
{
if (!isTextField())
return 0;
if (document().focusedElement() != this && hasCachedSelection())
return m_cachedSelectionEnd;
return computeSelectionEnd();
}
int HTMLTextFormControlElement::computeSelectionEnd() const
{
ASSERT(isTextField());
RefPtr<Frame> frame = document().frame();
if (!frame)
return 0;
return indexForPosition(frame->selection().selection().end());
}
static const AtomString& directionString(TextFieldSelectionDirection direction)
{
static MainThreadNeverDestroyed<const AtomString> none("none", AtomString::ConstructFromLiteral);
static MainThreadNeverDestroyed<const AtomString> forward("forward", AtomString::ConstructFromLiteral);
static MainThreadNeverDestroyed<const AtomString> backward("backward", AtomString::ConstructFromLiteral);
switch (direction) {
case SelectionHasNoDirection:
return none;
case SelectionHasForwardDirection:
return forward;
case SelectionHasBackwardDirection:
return backward;
}
ASSERT_NOT_REACHED();
return none;
}
const AtomString& HTMLTextFormControlElement::selectionDirection() const
{
if (!isTextField())
return directionString(SelectionHasNoDirection);
if (document().focusedElement() != this && hasCachedSelection())
return directionString(cachedSelectionDirection());
return directionString(computeSelectionDirection());
}
TextFieldSelectionDirection HTMLTextFormControlElement::computeSelectionDirection() const
{
ASSERT(isTextField());
RefPtr<Frame> frame = document().frame();
if (!frame)
return SelectionHasNoDirection;
const VisibleSelection& selection = frame->selection().selection();
return selection.isDirectional() ? (selection.isBaseFirst() ? SelectionHasForwardDirection : SelectionHasBackwardDirection) : SelectionHasNoDirection;
}
static void setContainerAndOffsetForRange(Node* node, unsigned offset, Node*& containerNode, unsigned& offsetInContainer)
{
if (node->isTextNode()) {
containerNode = node;
offsetInContainer = offset;
} else {
containerNode = node->parentNode();
offsetInContainer = node->computeNodeIndex() + offset;
}
}
std::optional<SimpleRange> HTMLTextFormControlElement::selection() const
{
if (!renderer() || !isTextField() || !hasCachedSelection())
return std::nullopt;
unsigned start = m_cachedSelectionStart;
unsigned end = m_cachedSelectionEnd;
ASSERT(start <= end);
auto innerText = innerTextElement();
if (!innerText)
return std::nullopt;
if (!innerText->firstChild())
return SimpleRange { { *innerText, 0 }, { *innerText, 0 } };
unsigned offset = 0;
Node* startNode = nullptr;
Node* endNode = nullptr;
for (RefPtr<Node> node = innerText->firstChild(); node; node = NodeTraversal::next(*node, innerText.get())) {
ASSERT(!node->firstChild());
ASSERT(node->isTextNode() || node->hasTagName(brTag));
unsigned length = is<Text>(*node) ? downcast<Text>(*node).length() : 1;
if (offset <= start && start <= offset + length)
setContainerAndOffsetForRange(node.get(), start - offset, startNode, start);
if (offset <= end && end <= offset + length) {
setContainerAndOffsetForRange(node.get(), end - offset, endNode, end);
break;
}
offset += length;
}
if (!startNode || !endNode)
return std::nullopt;
return SimpleRange { { *startNode, start }, { *endNode, end } };
}
void HTMLTextFormControlElement::restoreCachedSelection(SelectionRevealMode revealMode, const AXTextStateChangeIntent& intent)
{
setSelectionRange(m_cachedSelectionStart, m_cachedSelectionEnd, cachedSelectionDirection(), revealMode, intent);
}
void HTMLTextFormControlElement::selectionChanged(bool shouldFireSelectEvent)
{
if (!isTextField())
return;
// FIXME: Don't re-compute selection start and end if this function was called inside setSelectionRange.
// selectionStart() or selectionEnd() will return cached selection when this node doesn't have focus
cacheSelection(computeSelectionStart(), computeSelectionEnd(), computeSelectionDirection());
if (shouldFireSelectEvent && m_cachedSelectionStart != m_cachedSelectionEnd)
dispatchEvent(Event::create(eventNames().selectEvent, Event::CanBubble::Yes, Event::IsCancelable::No));
}
void HTMLTextFormControlElement::parseAttribute(const QualifiedName& name, const AtomString& value)
{
if (name == placeholderAttr) {
updatePlaceholderText();
updatePlaceholderVisibility();
} else
HTMLFormControlElementWithState::parseAttribute(name, value);
}
void HTMLTextFormControlElement::disabledStateChanged()
{
HTMLFormControlElementWithState::disabledStateChanged();
updateInnerTextElementEditability();
}
void HTMLTextFormControlElement::readOnlyStateChanged()
{
HTMLFormControlElementWithState::readOnlyStateChanged();
updateInnerTextElementEditability();
}
bool HTMLTextFormControlElement::isInnerTextElementEditable() const
{
return !isDisabledOrReadOnly();
}
void HTMLTextFormControlElement::updateInnerTextElementEditability()
{
if (auto innerText = innerTextElement())
innerText->updateInnerTextElementEditability(isInnerTextElementEditable());
}
bool HTMLTextFormControlElement::lastChangeWasUserEdit() const
{
if (!isTextField())
return false;
return m_lastChangeWasUserEdit;
}
static void stripTrailingNewline(StringBuilder& result)
{
// Remove one trailing newline; there's always one that's collapsed out by rendering.
size_t size = result.length();
if (size && result[size - 1] == newlineCharacter)
result.shrink(size - 1);
}
static String innerTextValueFrom(TextControlInnerTextElement& innerText)
{
StringBuilder result;
for (RefPtr<Node> node = innerText.firstChild(); node; node = NodeTraversal::next(*node, &innerText)) {
if (is<HTMLBRElement>(*node))
result.append(newlineCharacter);
else if (is<Text>(*node))
result.append(downcast<Text>(*node).data());
}
stripTrailingNewline(result);
return result.toString();
}
void HTMLTextFormControlElement::setInnerTextValue(const String& value)
{
LayoutDisallowedScope layoutDisallowedScope(LayoutDisallowedScope::Reason::PerformanceOptimization);
auto innerText = innerTextElement();
if (!innerText)
return;
ASSERT(isTextField());
String previousValue = innerTextValueFrom(*innerText);
bool textIsChanged = value != previousValue;
if (textIsChanged || !innerText->hasChildNodes()) {
#if ENABLE(ACCESSIBILITY) && !PLATFORM(COCOA)
if (textIsChanged && renderer()) {
if (AXObjectCache* cache = document().existingAXObjectCache())
cache->postNotification(this, AXObjectCache::AXValueChanged, PostTarget::ObservableParent);
}
#endif
{
// Events dispatched on the inner text element cannot execute arbitrary author scripts.
ScriptDisallowedScope::EventAllowedScope allowedScope(*userAgentShadowRoot());
innerText->setInnerText(value);
if (value.endsWith('\n') || value.endsWith('\r'))
innerText->appendChild(HTMLBRElement::create(document()));
}
#if ENABLE(ACCESSIBILITY) && PLATFORM(COCOA)
if (textIsChanged && renderer()) {
if (AXObjectCache* cache = document().existingAXObjectCache())
cache->deferTextReplacementNotificationForTextControl(*this, previousValue);
}
#endif
}
setFormControlValueMatchesRenderer(true);
}
String HTMLTextFormControlElement::innerTextValue() const
{
auto innerText = innerTextElement();
return innerText ? innerTextValueFrom(*innerText) : emptyString();
}
static Position positionForIndex(TextControlInnerTextElement* innerText, unsigned index)
{
unsigned remainingCharactersToMoveForward = index;
RefPtr<Node> lastBrOrText = innerText;
for (RefPtr<Node> node = innerText; node; node = NodeTraversal::next(*node, innerText)) {
if (node->hasTagName(brTag)) {
if (!remainingCharactersToMoveForward)
return positionBeforeNode(node.get());
remainingCharactersToMoveForward--;
lastBrOrText = node;
} else if (is<Text>(*node)) {
Text& text = downcast<Text>(*node);
if (remainingCharactersToMoveForward < text.length())
return Position(&text, remainingCharactersToMoveForward);
remainingCharactersToMoveForward -= text.length();
lastBrOrText = node;
}
}
return lastPositionInOrAfterNode(lastBrOrText.get());
}
unsigned HTMLTextFormControlElement::indexForPosition(const Position& passedPosition) const
{
auto innerText = innerTextElement();
if (!innerText || !innerText->contains(passedPosition.anchorNode()) || passedPosition.isNull())
return 0;
if (positionBeforeNode(innerText.get()) == passedPosition)
return 0;
unsigned index = 0;
RefPtr<Node> startNode = passedPosition.computeNodeBeforePosition();
if (!startNode)
startNode = passedPosition.containerNode();
ASSERT(startNode);
ASSERT(innerText->contains(startNode.get()));
for (RefPtr<Node> node = startNode; node; node = NodeTraversal::previous(*node, innerText.get())) {
if (is<Text>(*node)) {
unsigned length = downcast<Text>(*node).length();
if (node == passedPosition.containerNode())
index += std::min<unsigned>(length, passedPosition.offsetInContainerNode());
else
index += length;
} else if (is<HTMLBRElement>(*node))
++index;
}
unsigned length = innerTextValue().length();
index = std::min(index, length); // FIXME: We shouldn't have to call innerTextValue() just to ignore the last LF. See finishText.
#if 0
// FIXME: This assertion code was never built, has bit rotted, and needs to be fixed before it can be enabled:
// https://bugs.webkit.org/show_bug.cgi?id=205706.
#if ASSERT_ENABLED
VisiblePosition visiblePosition = passedPosition;
unsigned indexComputedByVisiblePosition = 0;
if (visiblePosition.isNotNull())
indexComputedByVisiblePosition = WebCore::indexForVisiblePosition(innerText, visiblePosition, false /* forSelectionPreservation */);
ASSERT(index == indexComputedByVisiblePosition);
#endif
#endif
return index;
}
String HTMLTextFormControlElement::valueWithHardLineBreaks() const
{
// FIXME: It's not acceptable to ignore the HardWrap setting when there is no renderer.
// While we have no evidence this has ever been a practical problem, it would be best to fix it some day.
if (!isTextField())
return value();
auto innerText = innerTextElement();
if (!innerText)
return value();
RenderTextControlInnerBlock* renderer = innerText->renderer();
if (!renderer)
return value();
Node* softLineBreakNode = nullptr;
unsigned softLineBreakOffset = 0;
auto currentLine = InlineIterator::firstLineFor(*renderer);
if (!currentLine)
return value();
auto skipToNextSoftLineBreakPosition = [&] {
for (; currentLine; currentLine.traverseNext()) {
auto lastRun = currentLine->lastRun();
ASSERT(lastRun);
auto& renderer = lastRun->renderer();
auto lineEndsWithBR = is<RenderLineBreak>(renderer) && !downcast<RenderLineBreak>(renderer).isWBR();
if (!lineEndsWithBR) {
softLineBreakNode = renderer.node();
softLineBreakOffset = lastRun->maximumCaretOffset();
currentLine.traverseNext();
return;
}
}
softLineBreakNode = nullptr;
softLineBreakOffset = 0;
};
skipToNextSoftLineBreakPosition();
StringBuilder result;
for (RefPtr<Node> node = innerText->firstChild(); node; node = NodeTraversal::next(*node, innerText.get())) {
if (is<HTMLBRElement>(*node))
result.append(newlineCharacter);
else if (is<Text>(*node)) {
String data = downcast<Text>(*node).data();
unsigned length = data.length();
unsigned position = 0;
while (softLineBreakNode == node && softLineBreakOffset <= length) {
if (softLineBreakOffset > position) {
result.appendSubstring(data, position, softLineBreakOffset - position);
position = softLineBreakOffset;
result.append(newlineCharacter);
}
skipToNextSoftLineBreakPosition();
}
result.appendSubstring(data, position, length - position);
}
while (softLineBreakNode == node)
skipToNextSoftLineBreakPosition();
}
stripTrailingNewline(result);
return result.toString();
}
HTMLTextFormControlElement* enclosingTextFormControl(const Position& position)
{
ASSERT(position.isNull() || position.anchorType() == Position::PositionIsOffsetInAnchor
|| position.containerNode() || !position.anchorNode()->shadowHost()
|| hasShadowRootParent(*position.anchorNode()));
RefPtr<Node> container = position.containerNode();
if (!container)
return nullptr;
RefPtr<Element> ancestor = container->shadowHost();
return ancestor && ancestor->isTextField() ? downcast<HTMLTextFormControlElement>(ancestor.get()) : nullptr;
}
String HTMLTextFormControlElement::directionForFormData() const
{
auto direction = [this] {
for (auto& element : lineageOfType<HTMLElement>(*this)) {
auto& value = element.attributeWithoutSynchronization(dirAttr);
if (equalLettersIgnoringASCIICase(value, "rtl"))
return TextDirection::RTL;
if (equalLettersIgnoringASCIICase(value, "ltr"))
return TextDirection::LTR;
if (equalLettersIgnoringASCIICase(value, "auto")) {
bool isAuto;
return element.directionalityIfhasDirAutoAttribute(isAuto);
}
}
return TextDirection::LTR;
}();
return direction == TextDirection::LTR ? "ltr"_s : "rtl"_s;
}
ExceptionOr<void> HTMLTextFormControlElement::setMaxLength(int maxLength)
{
if (maxLength < 0 || (m_minLength >= 0 && maxLength < m_minLength))
return Exception { IndexSizeError };
setIntegralAttribute(maxlengthAttr, maxLength);
return { };
}
ExceptionOr<void> HTMLTextFormControlElement::setMinLength(int minLength)
{
if (minLength < 0 || (m_maxLength >= 0 && minLength > m_maxLength))
return Exception { IndexSizeError };
setIntegralAttribute(minlengthAttr, minLength);
return { };
}
void HTMLTextFormControlElement::adjustInnerTextStyle(const RenderStyle& parentStyle, RenderStyle& textBlockStyle) const
{
// The inner block, if present, always has its direction set to LTR,
// so we need to inherit the direction and unicode-bidi style from the element.
textBlockStyle.setDirection(parentStyle.direction());
textBlockStyle.setUnicodeBidi(parentStyle.unicodeBidi());
if (auto innerText = innerTextElement()) {
if (const StyleProperties* properties = innerText->presentationalHintStyle()) {
RefPtr<CSSValue> value = properties->getPropertyCSSValue(CSSPropertyWebkitUserModify);
if (is<CSSPrimitiveValue>(value))
textBlockStyle.setUserModify(downcast<CSSPrimitiveValue>(*value));
}
}
if (isDisabledFormControl())
textBlockStyle.setColor(RenderTheme::singleton().disabledTextColor(textBlockStyle.visitedDependentColorWithColorFilter(CSSPropertyColor), parentStyle.visitedDependentColorWithColorFilter(CSSPropertyBackgroundColor)));
#if PLATFORM(IOS_FAMILY)
if (textBlockStyle.textSecurity() != TextSecurity::None && !textBlockStyle.isLeftToRightDirection()) {
// Preserve the alignment but force the direction to LTR so that the last-typed, unmasked character
// (which cannot have RTL directionality) will appear to the right of the masked characters. See <rdar://problem/7024375>.
switch (textBlockStyle.textAlign()) {
case TextAlignMode::Start:
case TextAlignMode::Justify:
textBlockStyle.setTextAlign(TextAlignMode::Right);
break;
case TextAlignMode::End:
textBlockStyle.setTextAlign(TextAlignMode::Left);
break;
case TextAlignMode::Left:
case TextAlignMode::Right:
case TextAlignMode::Center:
case TextAlignMode::WebKitLeft:
case TextAlignMode::WebKitRight:
case TextAlignMode::WebKitCenter:
break;
}
textBlockStyle.setDirection(TextDirection::LTR);
}
#endif
}
} // namespace Webcore