Changeset 28784 in webkit


Ignore:
Timestamp:
Dec 16, 2007 5:26:46 PM (16 years ago)
Author:
mrowe@apple.com
Message:

2007-12-16 Grace Kloba <klobag@gmail.com>

Reviewed by Darin Adler.

Fix http://bugs.webkit.org/show_bug.cgi?id=16433.
Bug 16433: LOW_BANDWIDTH_DISPLAY build is broken

  • dom/Document.cpp: (WebCore::Document::Document):
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::addLowBandwidthDisplayRequest): (WebCore::FrameLoader::switchOutLowBandwidthDisplayIfReady):
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r28781 r28784  
     12007-12-16  Grace Kloba  <klobag@gmail.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        Fix http://bugs.webkit.org/show_bug.cgi?id=16433.
     6        Bug 16433: LOW_BANDWIDTH_DISPLAY build is broken
     7
     8        * dom/Document.cpp:
     9        (WebCore::Document::Document):
     10        * loader/FrameLoader.cpp:
     11        (WebCore::FrameLoader::addLowBandwidthDisplayRequest):
     12        (WebCore::FrameLoader::switchOutLowBandwidthDisplayIfReady):
     13
    1142007-12-16  Sam Weinig  <sam@webkit.org>
    215
  • trunk/WebCore/dom/Document.cpp

    r28722 r28784  
    281281    , m_isAllowedToLoadLocalResources(false)
    282282    , m_useSecureKeyboardEntryWhenActive(false)
     283    , m_isXHTML(isXHTML)
     284    , m_numNodeLists(0)
    283285#if USE(LOW_BANDWIDTH_DISPLAY)
    284286    , m_inLowBandwidthDisplay(false)
    285287#endif
    286     , m_isXHTML(isXHTML)
    287     , m_numNodeLists(0)
    288288{
    289289    m_document.resetSkippingRef(this);
  • trunk/WebCore/loader/FrameLoader.cpp

    r28723 r28784  
    47244724            return true;
    47254725        case CachedResource::ImageResource:
     4726        case CachedResource::FontResource:
    47264727#if ENABLE(XSLT)
    47274728        case CachedResource::XSLStyleSheet:
     
    47814782            // similar to begin(), should be refactored to share more code
    47824783            RefPtr<Document> newDoc = DOMImplementation::instance()->
    4783                 createDocument(m_responseMIMEType, m_frame->view(), m_frame->inViewSourceMode());
     4784                createDocument(m_responseMIMEType, m_frame, m_frame->inViewSourceMode());
    47844785            m_frame->setDocument(newDoc);
    47854786            newDoc->setURL(m_URL.url());
     
    47884789                newDoc->setDecoder(m_decoder.get());
    47894790            restoreDocumentState();
    4790             partClearedInBegin();         
     4791            dispatchWindowObjectAvailable();         
    47914792            newDoc->implicitOpen();
    47924793
Note: See TracChangeset for help on using the changeset viewer.