commit | 9d0d4614b369e1438dea0950230fda79dd3e2e40 | [log] [tgz] |
---|---|---|
author | darin@apple.com <darin@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc> | Thu Jul 30 16:17:17 2020 +0000 |
committer | darin@apple.com <darin@apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc> | Thu Jul 30 16:17:17 2020 +0000 |
tree | f2a9ff0431f62eed319d0e48d2f384c5ca4eb74d | |
parent | adca5391bbf80495f5595cc9ce55b8e062c9d59c [diff] |
Further reduction in the use of live ranges, particularly in headers https://bugs.webkit.org/show_bug.cgi?id=214793 Reviewed by Sam Weinig. Source/WebCore: * accessibility/AccessibilityObject.cpp: (WebCore::AccessibilityObject::performTextOperation): Do not call createLiveRange. (WebCore::AccessibilityObject::replaceTextInRange): Ditto. * dom/SimpleRange.cpp: Moved makeSimpleRange functions to the header. * dom/SimpleRange.h: Reworked the makeSimpleRange implementation to avoid a mistake which made template expansion infinitely recurse while compiling and crash the compiler. Ended up moving all the code to the header. Should be a good thing; I expect it will optimize well inlined. * editing/CompositeEditCommand.cpp: (WebCore::CompositeEditCommand::moveParagraphs): Use makeSimpleRange. * editing/Editor.cpp: (WebCore::Editor::replaceSelectionWithText): Do not call createLiveRange. (WebCore::Editor::setComposition): Use SimpleRange. (WebCore::Editor::stringForCandidateRequest const): Do not call createLiveRange. (WebCore::Editor::handleAcceptedCandidate): Use auto intead of RefPtr<Range>. * editing/EditorCommand.cpp: (WebCore::expandSelectionToGranularity): Do not call createLiveRange. (WebCore::executeDeleteToMark): Ditto. (WebCore::executeSelectToMark): Ditto. (WebCore::valueFormatBlock): Ditto. * editing/FormatBlockCommand.cpp: (WebCore::FormatBlockCommand::formatRange): Use makeSimpleRange. (WebCore::FormatBlockCommand::elementForFormatBlockCommand): Take a SimpleRange. * editing/FormatBlockCommand.h: Updated for above. * editing/FrameSelection.cpp: (WebCore::FrameSelection::moveTo): Deleted overload taking a live range. (WebCore::FrameSelection::setSelectedRange): Take a SimpleRange. * editing/FrameSelection.h: Updated for above. * editing/ReplaceSelectionCommand.cpp: (WebCore::ReplacementFragment::ReplacementFragment): Do not call createLiveRange. * editing/VisibleUnits.cpp: (WebCore::enclosingTextUnitOfGranularity): Return SimpleRange. (WebCore::wordRangeFromPosition): Ditto. (WebCore::closestWordBoundaryForPosition): Use SimpleRange. (WebCore::rangeExpandedByCharactersInDirectionAtWordBoundary): Return a SimpleRange. (WebCore::rangeExpandedAroundPositionByCharacters): Ditto. (WebCore::wordBoundaryForPositionWithoutCrossingLine): Use SimpleRange. * editing/VisibleUnits.h: Updated for above. * editing/cocoa/DataDetection.mm: (WebCore::DataDetection::detectItemAroundHitTestResult): Use SimpleRange. * editing/cocoa/DictionaryLookup.mm: (WebCore::DictionaryLookup::rangeForSelection): Use SimpleRange. (WebCore::DictionaryLookup::rangeAtHitTestResult): Ditto. * editing/cocoa/EditorCocoa.mm: (WebCore::Editor::getPasteboardTypesAndDataForAttachment): Do not call createLiveRange. * editing/cocoa/WebContentReaderCocoa.mm: (WebCore::WebContentReader::readPlainText): Ditto. * editing/gtk/WebContentReaderGtk.cpp: (WebCore::WebContentReader::readPlainText): Ditto. * editing/libwpe/EditorLibWPE.cpp: (WebCore::createFragmentFromPasteboardData): Ditto. * editing/mac/DictionaryLookupLegacy.mm: (WebCore::DictionaryLookup::rangeAtHitTestResult): Use SimpleRange. * editing/markup.cpp: (WebCore::serializePreservingVisualAppearance): Take SimpleRange. (WebCore::contextPreservesNewline): Ditto. (WebCore::createFragmentFromText): Ditto. * editing/markup.h: Updated for above. * loader/archive/cf/LegacyWebArchive.cpp: (WebCore::LegacyWebArchive::create): Take SimpleRange. * loader/archive/cf/LegacyWebArchive.h: Updated for above. * page/DragController.cpp: (WebCore::DragController::performDragOperation): Use SimpleRange. (WebCore::DragController::concludeEditDrag): Do not call createLiveRange. (WebCore::selectElement): Use SimpleRange. (WebCore::DragController::removeAllDroppedImagePlaceholders): Ditto. (WebCore::DragController::insertDroppedImagePlaceholdersAtCaret): Ditto. * page/DragController.h: Use SimpleRange. * page/Page.cpp: (WebCore::Page::findTextMatches): Return vector of SimpleRange, in structure so we have one return value instead of two out arguments. Also renamed from findStringMatchingRanges. (WebCore::Page::rangeOfString): Return SimpleRange. (WebCore::replaceRanges): Do not call createLiveRange. (WebCore::Page::replaceRangesWithText): Take SimpleRange. * page/Page.h: Updated for above. * page/ios/FrameIOS.mm: (WebCore::Frame::wordsInCurrentParagraph const): Use SimpleRange. * rendering/HitTestResult.cpp: (WebCore::HitTestResult::isOverTextInsideFormControlElement const): Use SimpleRange, and also use hasAnyPlainText instead of computing the plain text string and checking if it's empty. Source/WebKit: * Shared/API/c/mac/WKWebArchiveRef.cpp: (WKWebArchiveCreateFromRange): Use makeSimpleRange. * Shared/APIWebArchive.h: Use SimpleRange. * Shared/APIWebArchive.mm: (API::WebArchive::create): Take SimpleRange. * Shared/EditingRange.cpp: (WebKit::EditingRange::toRange): Don't call createLiveRange. (WebKit::EditingRange::fromRange): Take SimpleRange. * Shared/EditingRange.h: Updated for above. * WebProcess/InjectedBundle/API/APIInjectedBundleEditorClient.h: Take SimpleRange, String, StyleProperties instead of Range, StringImpl, CSSStyleDeclaration. * WebProcess/InjectedBundle/API/glib/WebKitWebEditor.cpp: String instead of StringImpl. * WebProcess/InjectedBundle/API/mac/WKDOMDocument.mm: (-[WKDOMDocument createDocumentFragmentWithText:]): Use SimpleRange. * WebProcess/InjectedBundle/API/mac/WKDOMRange.mm: (-[WKDOMRange rangeByExpandingToWordBoundaryByCharacters:inDirection:]): Use SimpleRange and createLiveRange. * WebProcess/InjectedBundle/API/mac/WKWebProcessPlugInBrowserContextController.mm: (-[WKWebProcessPlugInBrowserContextController _setEditingDelegate:]): Updated for changes to bundle editor client. * WebProcess/InjectedBundle/DOM/InjectedBundleRangeHandle.cpp: (WebKit::InjectedBundleRangeHandle::create): Deleted. Moved the code into InjectedBundleRangeHandle::getOrCreate. (WebKit::createHandle): Added. Makes a handle for a SimpleRange. * WebProcess/InjectedBundle/DOM/InjectedBundleRangeHandle.h: Updated for above. * WebProcess/InjectedBundle/InjectedBundlePageEditorClient.cpp: (WebKit::createHandle): Added. Makes a handle for a CSSStyleDeclaration. (WebKit::InjectedBundlePageEditorClient::shouldBeginEditing): Updated for changes to bundle editor client. (WebKit::InjectedBundlePageEditorClient::shouldEndEditing): Ditto. (WebKit::InjectedBundlePageEditorClient::shouldInsertNode): Ditto. (WebKit::InjectedBundlePageEditorClient::shouldInsertText): Ditto. (WebKit::InjectedBundlePageEditorClient::shouldDeleteRange): Ditto. (WebKit::InjectedBundlePageEditorClient::shouldChangeSelectedRange): Ditto. (WebKit::InjectedBundlePageEditorClient::shouldApplyStyle): Ditto. (WebKit::InjectedBundlePageEditorClient::didBeginEditing): Ditto. (WebKit::InjectedBundlePageEditorClient::didEndEditing): Ditto. (WebKit::InjectedBundlePageEditorClient::didChange): Ditto. (WebKit::InjectedBundlePageEditorClient::didChangeSelection): Ditto. (WebKit::InjectedBundlePageEditorClient::willWriteToPasteboard): Ditto. (WebKit::InjectedBundlePageEditorClient::getPasteboardDataForRange): Ditto. (WebKit::InjectedBundlePageEditorClient::performTwoStepDrop): Ditto. * WebProcess/InjectedBundle/InjectedBundlePageEditorClient.h: Updated for above. * WebProcess/WebCoreSupport/WebEditorClient.cpp: (WebKit::WebEditorClient::shouldDeleteRange): Updated to call new revised bundle editor client. (WebKit::WebEditorClient::shouldBeginEditing): Ditto. (WebKit::WebEditorClient::shouldEndEditing): Ditto. (WebKit::WebEditorClient::shouldInsertNode): Ditto. (WebKit::WebEditorClient::shouldInsertText): Ditto. (WebKit::WebEditorClient::shouldChangeSelectedRange): Ditto. (WebKit::WebEditorClient::shouldApplyStyle): Ditto. (WebKit::WebEditorClient::willWriteSelectionToPasteboard): Ditto. (WebKit::WebEditorClient::getClientPasteboardData): Ditto. (WebKit::WebEditorClient::performTwoStepDrop): Ditto. (WebKit::insertionPointFromCurrentSelection): Use SimpleRange. * WebProcess/WebPage/FindController.cpp: (WebKit::FindController::replaceMatches): Use SimpleRange. (WebKit::FindController::findString): Updated for change to Page::findTextMatches function. (WebKit::FindController::findStringMatches): Ditto. (WebKit::FindController::getImageForFindMatch): Use SimpleRange. (WebKit::FindController::selectFindMatch): Ditto. * WebProcess/WebPage/FindController.h: Updated for above. * WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::getMarkedRangeAsync): Do not call createLiveRange. (WebKit::WebPage::getSelectedRangeAsync): Ditto. (WebKit::WebPage::characterIndexForPointAsync): Call makeSimpleRange. * WebProcess/WebPage/ios/WebPageIOS.mm: (WebKit::plainTextForContext): Changed overloads a bit to work better with Optional<SimpleRange> and removed the ones that explicitly take a Range, updating callers to compensate. (WebKit::plainTextForDisplay): Ditto. (WebKit::WebPage::getPlatformEditorState const): Use SimpleRange. (WebKit::WebPage::getSelectionContext): Ditto. (WebKit::WebPage::didConcludeEditDrag): Ditto. (WebKit::WebPage::handleStylusSingleTapAtPoint): Ditto. (WebKit::WebPage::selectWithGesture): Ditto. (WebKit::rangeForPointInRootViewCoordinates): Return SimpleRange. (WebKit::rangeAtWordBoundaryForPosition): Ditto. (WebKit::WebPage::updateSelectionWithTouches): Use SimpleRange. (WebKit::WebPage::selectWithTwoTouches): Ditto. (WebKit::WebPage::extendSelection): Ditto. (WebKit::WebPage::selectWordBackward): Ditto. (WebKit::WebPage::moveSelectionByOffset): Ditto. (WebKit::WebPage::getRectsForGranularityWithSelectionOffset): Ditto. (WebKit::WebPage::selectPositionAtPoint): Ditto. (WebKit::WebPage::selectPositionAtBoundaryWithDirection): Ditto. (WebKit::WebPage::moveSelectionAtBoundaryWithDirection): Ditto. (WebKit::WebPage::rangeForGranularityAtPoint): Ditto. (WebKit::WebPage::selectTextWithGranularityAtPoint): Ditto. (WebKit::WebPage::updateSelectionWithExtentPointAndBoundary): Ditto. (WebKit::WebPage::updateSelectionWithExtentPoint): Ditto. (WebKit::WebPage::replaceSelectedText): Ditto. (WebKit::WebPage::replaceDictatedText): Ditto. (WebKit::WebPage::requestAutocorrectionData): Ditto. (WebKit::WebPage::applyAutocorrectionInternal): Ditto. (WebKit::WebPage::autocorrectionContext): Ditto. (WebKit::dataDetectorLinkPositionInformation): Ditto. (WebKit::WebPage::updateSelectionWithDelta): Ditto. (WebKit::WebPage::focusTextInputContextAndPlaceCaret): Ditto. Source/WebKitLegacy/ios: * WebCoreSupport/WebVisiblePosition.mm: (-[WebVisiblePosition enclosingTextUnitOfGranularity:inDirectionIfAtBoundary:]): Use SimpleRange. Source/WebKitLegacy/mac: * DOM/DOMHTML.mm: (-[DOMHTMLDocument createDocumentFragmentWithText:]): Use SimpleRange. * DOM/DOMUIKitExtensions.mm: (-[DOMRange move:inDirection:]): Ditto. (-[DOMRange extend:inDirection:]): Ditto. * DOM/WebDOMOperations.mm: (-[DOMRange webArchive]): Ditto. * WebView/WebFrame.mm: (-[WebFrame _firstRectForDOMRange:]): Moved a "*" to save a little work. (-[WebFrame setSelectedDOMRange:affinity:closeTyping:userTriggered:]): Use SimpleRange. (-[WebFrame _replaceSelectionWithText:selectReplacement:smartReplace:matchStyle:]): Ditto. (-[WebFrame _replaceSelectionWithText:selectReplacement:smartReplace:]): Ditto. (-[WebFrame _documentFragmentForText:]): Ditto. * WebView/WebView.mm: (-[WebView DOMRangeOfString:relativeTo:options:]): Ditto. (-[WebView setSelectedDOMRange:affinity:]): Ditto. Source/WebKitLegacy/win: * AccessibleTextImpl.cpp: Added an include of Range.h. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@265084 268f45cc-cd09-0410-ab3c-d52691b4dbfc
WebKit is a cross-platform web browser engine. On iOS and macOS, it powers Safari, Mail, iBooks, and many other applications.
Visit WebKit Feature Status page to see which Web API has been implemented, in development, or under consideration.
On macOS, download Safari Technology Preview to test the latest version of WebKit. On Linux, download Epiphany Technology Preview. On Windows, you'll have to build it yourself.
Once your bug is filed, you will receive email when it is updated at each stage in the bug life cycle. After the bug is considered fixed, you may be asked to download the latest nightly and confirm that the fix works for you.
On Windows, follow the instructions on our website.
Run the following command to clone WebKit's Git SVN repository:
git clone git://git.webkit.org/WebKit.git WebKit
or
git clone https://git.webkit.org/git/WebKit.git WebKit
If you want to be able to commit changes to the repository, or just want to check out branches that aren’t contained in WebKit.git, you will need track WebKit's Subversion repository. You can run the following command to configure this and other options of the new Git clone for WebKit development.
Tools/Scripts/webkit-patch setup-git-clone
For information about this, and other aspects of using Git with WebKit, read the wiki page.
If you don‘t want to use Git, run the following command to check out WebKit’s Subversion repository:
svn checkout https://svn.webkit.org/repository/webkit/trunk WebKit
Install Xcode and its command line tools if you haven't done so already:
xcode-select --install
Run the following command to build a debug build with debugging symbols and assertions:
Tools/Scripts/build-webkit --debug
For performance testing, and other purposes, use --release
instead.
You can open WebKit.xcworkspace
to build and debug WebKit within Xcode.
If you don't use a custom build location in Xcode preferences, you have to update the workspace settings to use WebKitBuild
directory. In menu bar, choose File > Workspace Settings, then click the Advanced button, select “Custom”, “Relative to Workspace”, and enter WebKitBuild
for both Products and Intermediates.
The first time after you install a new Xcode, you will need to run the following command to enable Xcode to build command line tools for iOS Simulator:
sudo Tools/Scripts/configure-xcode-for-ios-development
Without this step, you will see the error message: “target specifies product type ‘com.apple.product-type.tool’, but there’s no such product type for the ‘iphonesimulator’ platform.
” when building target JSCLLIntOffsetsExtractor
of project JavaScriptCore
.
Run the following command to build a debug build with debugging symbols and assertions for iOS:
Tools/Scripts/build-webkit --debug --ios-simulator
For production builds:
cmake -DPORT=GTK -DCMAKE_BUILD_TYPE=RelWithDebInfo -GNinja ninja sudo ninja install
For development builds:
Tools/gtk/install-dependencies Tools/Scripts/update-webkitgtk-libs Tools/Scripts/build-webkit --gtk --debug
For more information on building WebKitGTK+, see the wiki page.
For production builds:
cmake -DPORT=WPE -DCMAKE_BUILD_TYPE=RelWithDebInfo -GNinja ninja sudo ninja install
For development builds:
Tools/wpe/install-dependencies Tools/Scripts/update-webkitwpe-libs Tools/Scripts/build-webkit --wpe --debug
For building WebKit on Windows, see the wiki page.
Run the following command to launch Safari with your local build of WebKit:
Tools/Scripts/run-safari --debug
The run-safari
script sets the DYLD_FRAMEWORK_PATH
environment variable to point to your build products, and then launches /Applications/Safari.app
. DYLD_FRAMEWORK_PATH
tells the system loader to prefer your build products over the frameworks installed in /System/Library/Frameworks
.
To run other applications with your local build of WebKit, run the following command:
Tools/Scripts/run-webkit-app <application-path>
Run the following command to launch iOS simulator with your local build of WebKit:
run-safari --debug --ios-simulator
In both cases, if you have built release builds instead, use --release
instead of --debug
.
If you have a development build, you can use the run-minibrowser script, e.g.:
run-minibrowser --debug --wpe
Pass one of --gtk
, --jsc-only
, or --wpe
to indicate the port to use.
Congratulations! You’re up and running. Now you can begin coding in WebKit and contribute your fixes and new features to the project. For details on submitting your code to the project, read Contributing Code.