Index: Source/WebKit/chromium/ChangeLog |
=================================================================== |
--- Source/WebKit/chromium/ChangeLog (revision 134336) |
+++ Source/WebKit/chromium/ChangeLog (working copy) |
@@ -1,3 +1,15 @@ |
+2012-11-08 Keishi Hattori <keishi@webkit.org> |
+ |
+ WebPagePopupImpl::handleKeyEvent is called after WebPagePopupImpl::close |
+ https://bugs.webkit.org/show_bug.cgi?id=93800 |
+ |
+ Reviewed by Kent Tamura. |
+ |
+ We need to set m_closing to true in WebPagePopupImpl::close so we won't access m_page in WebPagePopupImpl::handleKeyEvent. |
+ |
+ * src/WebPagePopupImpl.cpp: |
+ (WebKit::WebPagePopupImpl::close): Set m_closing to true. |
+ |
2012-10-31 Keishi Hattori <keishi@webkit.org> |
[Chromium] Page popup shows up at wrong locations when root view is scrolled |