Changeset 12250 in webkit


Ignore:
Timestamp:
Jan 19, 2006 5:22:30 PM (18 years ago)
Author:
eseidel
Message:

2006-01-19 Eric Seidel <eseidel@apple.com>

Reviewed by darin.

<embed> and <object> tags show up blank when going back/forward.
http://bugzilla.opendarwin.org/show_bug.cgi?id=6679

No test currently possible.

  • page/Frame.cpp: (Frame::canCachePage):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r12243 r12250  
     12006-01-19  Eric Seidel  <eseidel@apple.com>
     2
     3        Reviewed by darin.
     4
     5        <embed> and <object> tags show up blank when going back/forward.
     6        http://bugzilla.opendarwin.org/show_bug.cgi?id=6679
     7
     8        No test currently possible.
     9
     10        * page/Frame.cpp:
     11        (Frame::canCachePage):
     12
    1132006-01-19  Eric Seidel  <eseidel@apple.com>
    214
  • trunk/WebCore/page/Frame.cpp

    r12243 r12250  
    33323332    // 4.  The URL for the page is not https.
    33333333    // 5.  The page has no applets.
    3334     if (d->m_frames.count() ||
     3334    if (d->m_frames.count() || d->m_objects.count() ||
    33353335        parentFrame() ||
    33363336        m_url.protocol().startsWith("https") ||
Note: See TracChangeset for help on using the changeset viewer.