Changeset 215535 in webkit
- Timestamp:
- Apr 19, 2017, 3:27:04 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r215532 r215535 1 2017-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 1 12 2017-04-19 Chris Fleizach <cfleizach@apple.com> 2 13 -
trunk/Source/WebCore/ChangeLog
r215532 r215535 1 2017-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 1 16 2017-04-19 Chris Fleizach <cfleizach@apple.com> 2 17 -
trunk/Source/WebCore/xml/parser/XMLDocumentParserLibxml2.cpp
r211591 r215535 512 512 513 513 // Substitute entities. 514 xmlCtxtUseOptions(parser, XML_PARSE_NOENT );514 xmlCtxtUseOptions(parser, XML_PARSE_NOENT | XML_PARSE_HUGE); 515 515 516 516 switchToUTF16(parser); … … 541 541 // Substitute entities. 542 542 // 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); 544 544 545 545 // Internal initialization
Note:
See TracChangeset
for help on using the changeset viewer.