Index: Source/WebKit/wince/ChangeLog |
=================================================================== |
--- Source/WebKit/wince/ChangeLog (revision 79367) |
+++ Source/WebKit/wince/ChangeLog (working copy) |
@@ -1,3 +1,140 @@ |
+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/FrameLoaderClientWinCE.cpp: |
+ (WebKit::FrameLoaderClientWinCE::shouldStopLoadingForHistoryItem): Added. |
+ * WebCoreSupport/FrameLoaderClientWinCE.h: |
+ |
+2011-02-10 Luiz Agostini <luiz.agostini@openbossa.org> |
+ |
+ Reviewed by Adam Roben. |
+ |
+ HTML5 <details> and <summary>: localized text |
+ https://bugs.webkit.org/show_bug.cgi?id=54260 |
+ |
+ The method defaultDetailsSummaryText was added to LocalizationStrategy class. It is used to |
+ provide the default label to be used by a <details> tag that has no <summary> child. |
+ |
+ * WebCoreSupport/PlatformStrategiesWinCE.cpp: |
+ (PlatformStrategiesWinCE::defaultDetailsSummaryText): |
+ * WebCoreSupport/PlatformStrategiesWinCE.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/EditorClientWinCE.h: |
+ (WebKit::EditorClientWinCE::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/EditorClientWinCE.cpp: |
+ (WebKit::EditorClientWinCE::canCopyCut): Added. |
+ (WebKit::EditorClientWinCE::canPaste): Added. |
+ * WebCoreSupport/EditorClientWinCE.h: |
+ |
+2011-02-10 Nate Chapin <japhet@chromium.org> |
+ |
+ Reviewed by Adam Barth. |
+ |
+ Update calls to DocumentWriter. |
+ https://bugs.webkit.org/show_bug.cgi?id=50489 |
+ |
+ * WebCoreSupport/FrameLoaderClientWinCE.cpp: |
+ (WebKit::FrameLoaderClientWinCE::finishedLoading): |
+ |
+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/ChromeClientWinCE.cpp: |
+ * WebCoreSupport/ChromeClientWinCE.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/DragClientWinCE.cpp: |
+ * WebCoreSupport/DragClientWinCE.h: |
+ |
+2011-02-06 Patrick Gansterer <paroga@webkit.org> |
+ |
+ Reviewed by Martin Robinson. |
+ |
+ [WINCE] FrameLoaderClient calls loadURLInChildFrame on the child's frame loader |
+ https://bugs.webkit.org/show_bug.cgi?id=53896 |
+ |
+ * WebView.cpp: |
+ (WebView::createFrame): Use coreFrame instead of childFrame. |
+ |
+2011-02-03 Adam Langley <agl@chromium.org> |
+ |
+ Reviewed by Adam Barth. |
+ |
+ Plumb mixed script URL to FrameLoaderClient |
+ https://bugs.webkit.org/show_bug.cgi?id=52384 |
+ |
+ Regressions covered by http/tests/security/mixedContent/* |
+ |
+ * WebCoreSupport/FrameLoaderClientWinCE.cpp: |
+ (WebKit::FrameLoaderClientWinCE::didRunInsecureContent): |
+ * WebCoreSupport/FrameLoaderClientWinCE.h: |
+ |
+2011-02-02 Patrick Gansterer <paroga@webkit.org> |
+ |
+ Unreviewed WinCE build fix for r77398. |
+ |
+ * WebView.cpp: |
+ (WebView::paint): |
+ |
+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/ChromeClientWinCE.cpp: |
+ (WebKit::ChromeClientWinCE::selectItemAlignmentFollowsMenuWritingDirection): Added. |
+ * WebCoreSupport/ChromeClientWinCE.h: |
+ |
+2011-01-25 Patrick Gansterer <paroga@webkit.org> |
+ |
+ Reviewed by Adam Roben. |
+ |
+ [WINCE] Ensure layouted frame when painting |
+ https://bugs.webkit.org/show_bug.cgi?id=53108 |
+ |
+ * WebView.cpp: |
+ (WebView::paint): |
+ |
2011-01-04 Patrick Gansterer <paroga@webkit.org> |
Unreviewed WinCE build fix. |