Index: Source/WebKit/haiku/ChangeLog |
=================================================================== |
--- Source/WebKit/haiku/ChangeLog (revision 79367) |
+++ Source/WebKit/haiku/ChangeLog (working copy) |
@@ -1,3 +1,96 @@ |
+2011-02-19 Charlie Reis <creis@chromium.org> |
+ |
+ Reviewed by Mihai Parparita. |
+ |
+ Ensure loading has stopped in HistoryController::goToItem |
+ https://bugs.webkit.org/show_bug.cgi?id=54517 |
+ |
+ Add a FrameLoaderClient callback for whether to stop loading before goToItem. |
+ |
+ Test: http/tests/navigation/forward-to-fragment-fires-onload.html |
+ |
+ * WebCoreSupport/FrameLoaderClientHaiku.cpp: |
+ (WebCore::FrameLoaderClientHaiku::shouldStopLoadingForHistoryItem): Added. |
+ * WebCoreSupport/FrameLoaderClientHaiku.h: |
+ |
+2011-01-26 MORITA Hajime <morrita@google.com> |
+ |
+ Reviewed by Ryosuke Niwa. |
+ |
+ Refactoring: Extract TextCheckerClient from EditorClient |
+ https://bugs.webkit.org/show_bug.cgi?id=53213 |
+ |
+ * WebCoreSupport/EditorClientHaiku.h: |
+ (WebCore::EditorClientHaiku::textChecker): |
+ |
+2011-02-07 Ryosuke Niwa <rniwa@webkit.org> |
+ |
+ Reviewed by Adam Barth. |
+ |
+ Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard |
+ https://bugs.webkit.org/show_bug.cgi?id=52417 |
+ |
+ Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently |
+ not implemented. |
+ |
+ * WebCoreSupport/EditorClientHaiku.cpp: |
+ (WebCore::EditorClientHaiku::canCopyCut): Added. |
+ (WebCore::EditorClientHaiku::canPaste): Added. |
+ * WebCoreSupport/EditorClientHaiku.h: |
+ |
+2011-02-08 Adam Barth <abarth@webkit.org> |
+ |
+ Reviewed by Eric Seidel. |
+ |
+ Remove orphan code from old parser |
+ https://bugs.webkit.org/show_bug.cgi?id=53984 |
+ |
+ * WebCoreSupport/ChromeClientHaiku.cpp: |
+ * WebCoreSupport/ChromeClientHaiku.h: |
+ |
+2011-02-07 Enrica Casucci <enrica@apple.com> |
+ |
+ Reviewed Adam Roben and Darin Adler. |
+ |
+ WebKit2: drag and drop support on Windows. |
+ https://bugs.webkit.org/show_bug.cgi?id=52775 |
+ |
+ Removed createDragImageForLink from DragClient. |
+ |
+ * WebCoreSupport/DragClientHaiku.cpp: |
+ * WebCoreSupport/DragClientHaiku.h: |
+ |
+2011-02-07 Patrick Gansterer <paroga@webkit.org> |
+ |
+ Reviewed by Andreas Kling. |
+ |
+ [Haiku] FrameLoaderClient calls loadURLInChildFrame on the child's frame loader |
+ https://bugs.webkit.org/show_bug.cgi?id=53893 |
+ |
+ * WebCoreSupport/FrameLoaderClientHaiku.cpp: |
+ (WebCore::FrameLoaderClientHaiku::createFrame): Use m_frame instead of childFrame. |
+ |
+2011-01-28 Dan Bernstein <mitz@apple.com> |
+ |
+ Reviewed by Sam Weinig. |
+ |
+ <select> can't display right-to-left (rtl) languages |
+ https://bugs.webkit.org/show_bug.cgi?id=19785 |
+ |
+ * WebCoreSupport/ChromeClientHaiku.cpp: |
+ (WebCore::ChromeClientHaiku::selectItemAlignmentFollowsMenuWritingDirection): Added. |
+ * WebCoreSupport/ChromeClientHaiku.h: |
+ |
+2011-01-27 Nate Chapin <japhet@chromium.org> |
+ |
+ Reviewed by Adam Barth. |
+ |
+ Use Document::url() instead of FrameLoader::url(). |
+ https://bugs.webkit.org/show_bug.cgi?id=41165 |
+ |
+ * WebCoreSupport/FrameLoaderClientHaiku.cpp: |
+ (WebCore::FrameLoaderClientHaiku::dispatchDidFinishDocumentLoad): |
+ |
2010-12-22 Sam Weinig <sam@webkit.org> |
Reviewed by Darin Adler. |