summaryrefslogtreecommitdiffstats
path: root/WebKit/win/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/win/ChangeLog')
-rw-r--r--WebKit/win/ChangeLog44
1 files changed, 44 insertions, 0 deletions
diff --git a/WebKit/win/ChangeLog b/WebKit/win/ChangeLog
index cd0f234..9a20e51 100644
--- a/WebKit/win/ChangeLog
+++ b/WebKit/win/ChangeLog
@@ -1,3 +1,47 @@
+2010-08-24 Ada Chan <adachan@apple.com>
+
+ Reviewed by Steve Falkenburg.
+
+ <rdar://problem/8185379> Possible null dereference in WebView::canShowMIMEType.
+ https://bugs.webkit.org/show_bug.cgi?id=44564
+
+ * WebView.cpp:
+ (WebView::canShowMIMEType): Null check m_page->pluginData() since that can return NULL
+ if plugins are disabled.
+
+2010-08-22 Daniel Bates <dbates@rim.com>
+
+ Reviewed by Eric Seidel.
+
+ Encapsulate document marker management into DocumentMarkerController
+ https://bugs.webkit.org/show_bug.cgi?id=44383
+
+ Modify call sites in the Apple Windows port to use DocumentMarkerController.
+
+ No functionality was changed, so no new tests.
+
+ * WebFrame.cpp:
+ (WebFrame::unmarkAllMisspellings):
+ (WebFrame::unmarkAllBadGrammar):
+ * WebView.cpp:
+ (WebView::rectsForTextMatches):
+
+2010-08-18 Jessie Berlin <jberlin@apple.com>
+
+ Reviewed by Adam Roben.
+
+ Bug 44180 - WebView::paint fails to paint a child WebView of a Layered Window.
+ https://bugs.webkit.org/show_bug.cgi?id=44180
+
+ Decide to end painting if the m_backingStoreBitmap is null after the call to
+ ensureBackingStore() instead of when the rcPaint rect filled by BeginPaint is empty.
+ The rcPaint rect filled by BeginPaint is always empty for a child WebView of a Layered
+ Window, even if GetUpdateRect and GetUpdateRgn report a non-empty region that needs
+ painting.
+
+ * WebView.cpp:
+ (WebView::paint):
+
2010-08-17 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org>
Reviewed by Darin Adler.