Changeset 80246 in webkit


Ignore:
Timestamp:
Mar 3, 2011 9:03:31 AM (13 years ago)
Author:
Martin Robinson
Message:

2011-03-03 Martin Robinson <mrobinson@igalia.com>

XHTMLMP build broken after r78342
https://bugs.webkit.org/show_bug.cgi?id=55286

Fix XHTMLMP build now that the DocumentWriter is a member of DocumentLoader
instead of FrameLoader.

No new tests. This is a build fix.

  • dom/Document.cpp: (WebCore::Document::isXHTMLMPDocument):
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r80242 r80246  
     12011-03-03  Martin Robinson  <mrobinson@igalia.com>
     2
     3        XHTMLMP build broken after r78342
     4        https://bugs.webkit.org/show_bug.cgi?id=55286
     5
     6        Fix XHTMLMP build now that the DocumentWriter is a member of DocumentLoader
     7        instead of FrameLoader.
     8
     9        No new tests. This is a build fix.
     10
     11        * dom/Document.cpp:
     12        (WebCore::Document::isXHTMLMPDocument):
     13
    1142011-03-03  Dimitri Glazkov  <dglazkov@chromium.org>
    215
  • trunk/Source/WebCore/dom/Document.cpp

    r80150 r80246  
    48324832    // and SHOULD accept it identified as "application/xhtml+xml" , "application/xhtml+xml" is a
    48334833    // general MIME type for all XHTML documents, not only for XHTMLMP
    4834     return frame()->loader()->writer()->mimeType() == "application/vnd.wap.xhtml+xml";
     4834    return loader()->writer()->mimeType() == "application/vnd.wap.xhtml+xml";
    48354835}
    48364836#endif
Note: See TracChangeset for help on using the changeset viewer.