Modified: trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapperMac.mm (261499 => 261500)
--- trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapperMac.mm 2020-05-11 22:42:18 UTC (rev 261499)
+++ trunk/Source/WebCore/accessibility/mac/WebAccessibilityObjectWrapperMac.mm 2020-05-11 22:44:28 UTC (rev 261500)
@@ -1078,7 +1078,7 @@
if (unifiedTextCheckerEnabled(node->document().frame())) {
// Check the spelling directly since document->markersForNode() does not store the misspelled marking when the cursor is in a word.
- TextCheckerClient* checker = node->document().frame()->editor().textChecker();
+ TextCheckerClient* checker = node->document().editor().textChecker();
// checkTextOfParagraph is the only spelling/grammar checker implemented in WK1 and WK2
Vector<TextCheckingResult> results;
@@ -1098,7 +1098,7 @@
for (unsigned currentPosition = 0; currentPosition < text.length(); ) {
int misspellingLocation = -1;
int misspellingLength = 0;
- node->document().frame()->editor().textChecker()->checkSpellingOfString(text.substring(currentPosition), &misspellingLocation, &misspellingLength);
+ node->document().editor().textChecker()->checkSpellingOfString(text.substring(currentPosition), &misspellingLocation, &misspellingLength);
if (misspellingLocation == -1 || !misspellingLength)
break;
Modified: trunk/Source/WebCore/dom/Document.cpp (261499 => 261500)
--- trunk/Source/WebCore/dom/Document.cpp 2020-05-11 22:42:18 UTC (rev 261499)
+++ trunk/Source/WebCore/dom/Document.cpp 2020-05-11 22:44:28 UTC (rev 261500)
@@ -4347,7 +4347,7 @@
}
if (oldFocusedElement->isRootEditableElement())
- frame()->editor().didEndEditing();
+ editor().didEndEditing();
if (view()) {
if (Widget* oldWidget = widgetForElement(oldFocusedElement.get()))
@@ -4412,7 +4412,7 @@
}
if (m_focusedElement->isRootEditableElement())
- frame()->editor().didBeginEditing();
+ editor().didBeginEditing();
// eww, I suck. set the qt focus correctly
// ### find a better place in the code for this
@@ -8150,8 +8150,9 @@
void Document::registerAttachmentIdentifier(const String& identifier)
{
- if (auto* frame = this->frame())
- frame->editor().registerAttachmentIdentifier(identifier);
+ // FIXME: Can this null check for Frame be removed?
+ if (frame())
+ editor().registerAttachmentIdentifier(identifier);
}
void Document::didInsertAttachmentElement(HTMLAttachmentElement& attachment)
@@ -8167,10 +8168,11 @@
m_attachmentIdentifierToElementMap.set(identifier, attachment);
- if (auto* frame = this->frame()) {
+ // FIXME: Can this null check for Frame be removed?
+ if (frame()) {
if (previousIdentifierIsNotUnique)
- frame->editor().cloneAttachmentData(previousIdentifier, identifier);
- frame->editor().didInsertAttachmentElement(attachment);
+ editor().cloneAttachmentData(previousIdentifier, identifier);
+ editor().didInsertAttachmentElement(attachment);
}
}
@@ -8182,8 +8184,9 @@
m_attachmentIdentifierToElementMap.remove(identifier);
+ // FIXME: Can this null check for Frame be removed?
if (frame())
- frame()->editor().didRemoveAttachmentElement(attachment);
+ editor().didRemoveAttachmentElement(attachment);
}
RefPtr<HTMLAttachmentElement> Document::attachmentForIdentifier(const String& identifier) const
Modified: trunk/Source/WebCore/testing/Internals.cpp (261499 => 261500)
--- trunk/Source/WebCore/testing/Internals.cpp 2020-05-11 22:42:18 UTC (rev 261499)
+++ trunk/Source/WebCore/testing/Internals.cpp 2020-05-11 22:44:28 UTC (rev 261500)
@@ -1711,7 +1711,7 @@
if (!markerTypesFrom(markerType, markerTypes))
return Exception { SyntaxError };
- node.document().frame()->editor().updateEditorUINowIfScheduled();
+ node.document().editor().updateEditorUINowIfScheduled();
return node.document().markers().markersFor(node, markerTypes).size();
}
@@ -1723,7 +1723,7 @@
if (!markerTypesFrom(markerType, markerTypes))
return Exception { SyntaxError };
- node.document().frame()->editor().updateEditorUINowIfScheduled();
+ node.document().editor().updateEditorUINowIfScheduled();
Vector<RenderedDocumentMarker*> markers = node.document().markers().markersFor(node, markerTypes);
if (markers.size() <= index)
@@ -1775,7 +1775,7 @@
Document* document = contextDocument();
if (!document || !document->frame())
return Exception { InvalidAccessError };
- document->frame()->editor().setMarkedTextMatchesAreHighlighted(flag);
+ document->editor().setMarkedTextMatchesAreHighlighted(flag);
return { };
}
@@ -2115,7 +2115,7 @@
if (!document || !document->frame())
return Exception { InvalidAccessError };
- return document->frame()->editor().spellChecker().lastRequestIdentifier().toUInt64();
+ return document->editor().spellChecker().lastRequestIdentifier().toUInt64();
}
ExceptionOr<uint64_t> Internals::lastSpellCheckProcessedSequence()
@@ -2124,7 +2124,7 @@
if (!document || !document->frame())
return Exception { InvalidAccessError };
- return document->frame()->editor().spellChecker().lastProcessedIdentifier().toUInt64();
+ return document->editor().spellChecker().lastProcessedIdentifier().toUInt64();
}
Vector<String> Internals::userPreferredLanguages() const
@@ -2331,7 +2331,7 @@
updateEditorUINowIfScheduled();
- return document->frame()->editor().selectionStartHasMarkerFor(DocumentMarker::Spelling, from, length);
+ return document->editor().selectionStartHasMarkerFor(DocumentMarker::Spelling, from, length);
}
bool Internals::hasAutocorrectedMarker(int from, int length)
@@ -2342,7 +2342,7 @@
updateEditorUINowIfScheduled();
- return document->frame()->editor().selectionStartHasMarkerFor(DocumentMarker::Autocorrected, from, length);
+ return document->editor().selectionStartHasMarkerFor(DocumentMarker::Autocorrected, from, length);
}
void Internals::setContinuousSpellCheckingEnabled(bool enabled)
@@ -2350,8 +2350,8 @@
if (!contextDocument() || !contextDocument()->frame())
return;
- if (enabled != contextDocument()->frame()->editor().isContinuousSpellCheckingEnabled())
- contextDocument()->frame()->editor().toggleContinuousSpellChecking();
+ if (enabled != contextDocument()->editor().isContinuousSpellCheckingEnabled())
+ contextDocument()->editor().toggleContinuousSpellChecking();
}
void Internals::setAutomaticQuoteSubstitutionEnabled(bool enabled)
@@ -2360,8 +2360,8 @@
return;
#if USE(AUTOMATIC_TEXT_REPLACEMENT)
- if (enabled != contextDocument()->frame()->editor().isAutomaticQuoteSubstitutionEnabled())
- contextDocument()->frame()->editor().toggleAutomaticQuoteSubstitution();
+ if (enabled != contextDocument()->editor().isAutomaticQuoteSubstitutionEnabled())
+ contextDocument()->editor().toggleAutomaticQuoteSubstitution();
#else
UNUSED_PARAM(enabled);
#endif
@@ -2373,8 +2373,8 @@
return;
#if USE(AUTOMATIC_TEXT_REPLACEMENT)
- if (enabled != contextDocument()->frame()->editor().isAutomaticLinkDetectionEnabled())
- contextDocument()->frame()->editor().toggleAutomaticLinkDetection();
+ if (enabled != contextDocument()->editor().isAutomaticLinkDetectionEnabled())
+ contextDocument()->editor().toggleAutomaticLinkDetection();
#else
UNUSED_PARAM(enabled);
#endif
@@ -2393,8 +2393,8 @@
return;
#if USE(AUTOMATIC_TEXT_REPLACEMENT)
- if (enabled != contextDocument()->frame()->editor().isAutomaticDashSubstitutionEnabled())
- contextDocument()->frame()->editor().toggleAutomaticDashSubstitution();
+ if (enabled != contextDocument()->editor().isAutomaticDashSubstitutionEnabled())
+ contextDocument()->editor().toggleAutomaticDashSubstitution();
#else
UNUSED_PARAM(enabled);
#endif
@@ -2406,8 +2406,8 @@
return;
#if USE(AUTOMATIC_TEXT_REPLACEMENT)
- if (enabled != contextDocument()->frame()->editor().isAutomaticTextReplacementEnabled())
- contextDocument()->frame()->editor().toggleAutomaticTextReplacement();
+ if (enabled != contextDocument()->editor().isAutomaticTextReplacementEnabled())
+ contextDocument()->editor().toggleAutomaticTextReplacement();
#else
UNUSED_PARAM(enabled);
#endif
@@ -2419,8 +2419,8 @@
return;
#if USE(AUTOMATIC_TEXT_REPLACEMENT)
- if (enabled != contextDocument()->frame()->editor().isAutomaticSpellingCorrectionEnabled())
- contextDocument()->frame()->editor().toggleAutomaticSpellingCorrection();
+ if (enabled != contextDocument()->editor().isAutomaticSpellingCorrectionEnabled())
+ contextDocument()->editor().toggleAutomaticSpellingCorrection();
#else
UNUSED_PARAM(enabled);
#endif
@@ -2435,7 +2435,7 @@
result.type = TextCheckingType::None;
result.range = { location, length };
result.replacement = candidate;
- contextDocument()->frame()->editor().handleAcceptedCandidate(result);
+ contextDocument()->editor().handleAcceptedCandidate(result);
}
void Internals::changeSelectionListType()
@@ -2450,7 +2450,7 @@
if (!document || !document->frame())
return false;
- return document->frame()->editor().isOverwriteModeEnabled();
+ return document->editor().isOverwriteModeEnabled();
}
void Internals::toggleOverwriteModeEnabled()
@@ -2459,7 +2459,7 @@
if (!document || !document->frame())
return;
- document->frame()->editor().toggleOverwriteModeEnabled();
+ document->editor().toggleOverwriteModeEnabled();
}
static ExceptionOr<FindOptions> parseFindOptions(const Vector<String>& optionList)
@@ -2504,7 +2504,7 @@
if (parsedOptions.hasException())
return parsedOptions.releaseException();
- return document->frame()->editor().rangeOfString(text, referenceRange.get(), parsedOptions.releaseReturnValue());
+ return document->editor().rangeOfString(text, referenceRange.get(), parsedOptions.releaseReturnValue());
}
ExceptionOr<unsigned> Internals::countMatchesForText(const String& text, const Vector<String>& findOptions, const String& markMatches)
@@ -2518,7 +2518,7 @@
return parsedOptions.releaseException();
bool mark = markMatches == "mark";
- return document->frame()->editor().countMatchesForText(text, nullptr, parsedOptions.releaseReturnValue(), 1000, mark, nullptr);
+ return document->editor().countMatchesForText(text, nullptr, parsedOptions.releaseReturnValue(), 1000, mark, nullptr);
}
ExceptionOr<unsigned> Internals::countFindMatches(const String& text, const Vector<String>& findOptions)
@@ -2651,7 +2651,7 @@
if (!document || !document->frame())
return false;
- return document->frame()->editor().selectionStartHasMarkerFor(DocumentMarker::Grammar, from, length);
+ return document->editor().selectionStartHasMarkerFor(DocumentMarker::Grammar, from, length);
}
unsigned Internals::numberOfScrollableAreas()
Modified: trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm (261499 => 261500)
--- trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm 2020-05-11 22:42:18 UTC (rev 261499)
+++ trunk/Source/WebKit/WebProcess/WebPage/ios/WebPageIOS.mm 2020-05-11 22:44:28 UTC (rev 261500)
@@ -2975,9 +2975,9 @@
title = linkElement->textContent();
title = stripLeadingAndTrailingHTMLSpaces(title);
}
- m_interactionNode->document().frame()->editor().writeImageToPasteboard(*Pasteboard::createForCopyAndPaste(), element, url, title);
+ m_interactionNode->document().editor().writeImageToPasteboard(*Pasteboard::createForCopyAndPaste(), element, url, title);
} else if (element.isLink()) {
- m_interactionNode->document().frame()->editor().copyURL(element.document().completeURL(stripLeadingAndTrailingHTMLSpaces(element.attributeWithoutSynchronization(HTMLNames::hrefAttr))), element.textContent());
+ m_interactionNode->document().editor().copyURL(element.document().completeURL(stripLeadingAndTrailingHTMLSpaces(element.attributeWithoutSynchronization(HTMLNames::hrefAttr))), element.textContent());
}
} else if (static_cast<SheetAction>(action) == SheetAction::SaveImage) {
if (!is<RenderImage>(*element.renderer()))