Changeset 215535 in webkit


Ignore:
Timestamp:
Apr 19, 2017, 3:27:04 PM (8 years ago)
Author:
achristensen@apple.com
Message:

Parsing large XML strings fails
https://bugs.webkit.org/show_bug.cgi?id=170999
<rdar://problem/17336267>

Reviewed by Brady Eidson.

Source/WebCore:

Test: fast/dom/xml-large.html

  • xml/parser/XMLDocumentParserLibxml2.cpp:

(WebCore::XMLParserContext::createStringParser):
(WebCore::XMLParserContext::createMemoryParser):
Allow huge XML strings. They work fine in Chrome and Firefox.

LayoutTests:

  • fast/dom/xml-large-expected.txt: Added.
  • fast/dom/xml-large.html: Added.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r215532 r215535  
     12017-04-19  Alex Christensen  <achristensen@webkit.org>
     2
     3        Parsing large XML strings fails
     4        https://bugs.webkit.org/show_bug.cgi?id=170999
     5        <rdar://problem/17336267>
     6
     7        Reviewed by Brady Eidson.
     8
     9        * fast/dom/xml-large-expected.txt: Added.
     10        * fast/dom/xml-large.html: Added.
     11
    1122017-04-19  Chris Fleizach  <cfleizach@apple.com>
    213
  • trunk/Source/WebCore/ChangeLog

    r215532 r215535  
     12017-04-19  Alex Christensen  <achristensen@webkit.org>
     2
     3        Parsing large XML strings fails
     4        https://bugs.webkit.org/show_bug.cgi?id=170999
     5        <rdar://problem/17336267>
     6
     7        Reviewed by Brady Eidson.
     8
     9        Test: fast/dom/xml-large.html
     10
     11        * xml/parser/XMLDocumentParserLibxml2.cpp:
     12        (WebCore::XMLParserContext::createStringParser):
     13        (WebCore::XMLParserContext::createMemoryParser):
     14        Allow huge XML strings. They work fine in Chrome and Firefox.
     15
    1162017-04-19  Chris Fleizach  <cfleizach@apple.com>
    217
  • trunk/Source/WebCore/xml/parser/XMLDocumentParserLibxml2.cpp

    r211591 r215535  
    512512
    513513    // Substitute entities.
    514     xmlCtxtUseOptions(parser, XML_PARSE_NOENT);
     514    xmlCtxtUseOptions(parser, XML_PARSE_NOENT | XML_PARSE_HUGE);
    515515
    516516    switchToUTF16(parser);
     
    541541    // Substitute entities.
    542542    // FIXME: Why is XML_PARSE_NODICT needed? This is different from what createStringParser does.
    543     xmlCtxtUseOptions(parser, XML_PARSE_NODICT | XML_PARSE_NOENT);
     543    xmlCtxtUseOptions(parser, XML_PARSE_NODICT | XML_PARSE_NOENT | XML_PARSE_HUGE);
    544544
    545545    // Internal initialization
Note: See TracChangeset for help on using the changeset viewer.