Changeset 99508 in webkit
- Timestamp:
- Nov 7, 2011, 5:16:35 PM (14 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r99507 r99508 1 2011-11-07 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/10405215> REGRESSION (r98178): World of Warcraft Launcher crashes in FrameView::isOnActivePage() 4 https://bugs.webkit.org/show_bug.cgi?id=71743 5 6 Reviewed by Beth Dakin. 7 8 * page/FrameView.cpp: 9 (WebCore::FrameView::isOnActivePage): Added a check for a null m_frame. 10 1 11 2011-11-07 Dmitry Lomov <dslomov@google.com> 2 12 -
trunk/Source/WebCore/page/FrameView.cpp
r99040 r99508 2430 2430 bool FrameView::isOnActivePage() const 2431 2431 { 2432 if (!m_frame) 2433 return false; 2432 2434 if (m_frame->view() != this) 2433 2435 return false;
Note:
See TracChangeset
for help on using the changeset viewer.