summaryrefslogtreecommitdiffstats
path: root/WebKit/mac/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/mac/ChangeLog')
-rw-r--r--WebKit/mac/ChangeLog105
1 files changed, 0 insertions, 105 deletions
diff --git a/WebKit/mac/ChangeLog b/WebKit/mac/ChangeLog
index 76428a4..5b9ab92 100644
--- a/WebKit/mac/ChangeLog
+++ b/WebKit/mac/ChangeLog
@@ -1,108 +1,3 @@
-2010-12-01 Jia Pu <jpu@apple.com>
-
- Reviewed by Darin Adler.
-
- Support multiple correction candidates panel for misspelled word on Mac OS X.
- https://bugs.webkit.org/show_bug.cgi?id=50137
- <rdar://problem/8568059>
-
- This patch is for supporting multiple correction suggestion panel on Mac OS X.
- The behavior and implementation is similar to that of reversion candiate panel.
-
- * WebCoreSupport/WebEditorClient.h: Adopted new signatures defined in base class.
-
- * WebCoreSupport/WebEditorClient.mm: Adopted new signatures defined in base class.
- Added code to handle new multiple suggestion canidate panel type.
- (WebEditorClient::showCorrectionPanel):
- (WebEditorClient::getGuessesForWord):
-
-2010-12-01 David Hyatt <hyatt@apple.com>
-
- Reviewed by Darin Adler.
-
- https://bugs.webkit.org/show_bug.cgi?id=46645
-
- Part 1 of making scrolling work with vertical text. This patch generalizes the scrollOriginX concept
- recently added for horizontal RTL documents and applies it to writing modes as well. Now the
- scrollOrigin is a point, since you can start off locked to the bottom or locked to the right.
-
- This patch also fixes numerous bugs with the scrollOrigin code using native Mac NSScrollViews and
- makes them behave the same as the cross-platform code (allowing for cross-platform results to be
- landed).
-
- * WebView/WebDynamicScrollBarsView.mm:
- (-[WebDynamicScrollBarsView adjustForScrollOriginChange]):
- (-[WebDynamicScrollBarsView updateScrollers]):
- (-[WebDynamicScrollBarsView reflectScrolledClipView:]):
- (-[WebDynamicScrollBarsView setScrollOrigin:updatePosition:]):
- (-[WebDynamicScrollBarsView scrollOrigin]):
- * WebView/WebFrameView.mm:
- (-[WebFrameView _scrollToBeginningOfDocument]):
- (-[WebFrameView _scrollToEndOfDocument]):
-
-2010-11-29 Dan Bernstein <mitz@apple.com>
-
- Reviewed by Darin Adler.
-
- WebKit Mac part of <rdar://problem/8650085> adding word-prefix search options to the text search API.
- https://bugs.webkit.org/show_bug.cgi?id=50038
- Based on a patch from Darin Adler.
-
- * WebView/WebDocumentInternal.h: Removed -markAllMatchesForText:caseSensitive:limit: and
- replaced -countMatchesForText:caseSensitive:limit:markMatches: with a WebFindOptions-based
- method. Declared a WebDocumentOptionsSearching protocol with a new -findString:options:
- method. Made WebHTMLView conform to the new protocol.
- * WebView/WebHTMLView.mm:
- (coreOptions): Added. Converts WebFindOptions to WebCore FindOptions.
- (-[WebHTMLView searchFor:direction:caseSensitive:wrap:startInSelection:]): Changed to use
- -findString:options:.
- (-[WebHTMLView countMatchesForText:options:limit:markMatches:]): Changed to use WebFindOptions.
- (-[WebHTMLView findString:options:]): Added. Calls through to WebCore::Editor::findString().
- * WebView/WebPDFView.mm:
- (-[WebPDFView countMatchesForText:options:limit:markMatches:]): Changed to use WebFindOptions.
- * WebView/WebView.mm:
- (-[WebView markAllMatchesForText:caseSensitive:highlight:limit:]): Now calls through to
- -countMatchesForText:options:highlight:limit:markMatches.
- (-[WebView countMatchesForText:caseSensitive:highlight:limit:markMatches:]): Ditto.
- (-[WebView searchFor:direction:caseSensitive:wrap:startInSelection:]): Now calls through to
- -findString:options:.
- (incrementFrame): Changed to use WebFindOptions.
- (findString): Added this helper method that performs the search using the best supported
- method for the document view.
- (-[WebView findString:options:]): Changed -searchFor::::: into this.
- (-[WebView canMarkAllTextMatches]):
- (-[WebView countMatchesForText:options:highlight:limit:markMatches:]): Updated to use
- WebFindOptions.
- (-[WebView unmarkAllTextMatches]): Updated for change to incrementFrame.
- (-[WebView rectsForTextMatches]): Ditto.
- * WebView/WebViewPrivate.h: Added WebFindOptions, -findString:options:, and WebFindOptions version
- of countMatchesForText:.
-
-2010-11-29 Jeremy Moskovich <jeremy@chromium.org>
-
- Reviewed by David Hyatt.
-
- Right-to-left pages should be scrollable to reveal left overflow.
- https://bugs.webkit.org/show_bug.cgi?id=23556
-
- Set and get the original x-axis scroll position and reset scroll position on HOME/END key press.
- Modify WebFrameView to support setting the initial horizontal scroller's thumb position to the right for
- pages with a left overflow.
-
- * WebView/WebDynamicScrollBarsView.h:
- * WebView/WebDynamicScrollBarsView.mm:
- (-[WebDynamicScrollBarsView inProgramaticScroll]):
- (-[WebDynamicScrollBarsView refreshInitialScrollbarPosition]):
- (-[WebDynamicScrollBarsView updateScrollers]):
- (-[WebDynamicScrollBarsView reflectScrolledClipView:]):
- (-[WebDynamicScrollBarsView setScrollOriginX:]):
- (-[WebDynamicScrollBarsView scrollOriginX]):
- * WebView/WebFrameView.mm:
- (-[WebFrameView _scrollToBeginningOfDocument]):
- (-[WebFrameView _scrollToEndOfDocument]):
- * WebView/WebHTMLView.mm:
- (-[WebHTMLView _frameOrBoundsChanged]):
-
2010-11-22 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Tony Chang.