mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
htmlParseComment: treat --!>
as if it closed the comment
See guidance provided on incorrectly-closed comments here: https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment
This commit is contained in:
parent
e28d9347bc
commit
29f5d20e84
26
HTMLparser.c
26
HTMLparser.c
@ -3297,6 +3297,7 @@ htmlParseComment(htmlParserCtxtPtr ctxt) {
|
||||
int q, ql;
|
||||
int r, rl;
|
||||
int cur, l;
|
||||
int next, nl;
|
||||
xmlParserInputState state;
|
||||
|
||||
/*
|
||||
@ -3329,6 +3330,21 @@ htmlParseComment(htmlParserCtxtPtr ctxt) {
|
||||
while ((cur != 0) &&
|
||||
((cur != '>') ||
|
||||
(r != '-') || (q != '-'))) {
|
||||
NEXTL(l);
|
||||
next = CUR_CHAR(nl);
|
||||
if (next == 0) {
|
||||
SHRINK;
|
||||
GROW;
|
||||
next = CUR_CHAR(nl);
|
||||
}
|
||||
|
||||
if ((q == '-') && (r == '-') && (cur == '!') && (next == '>')) {
|
||||
htmlParseErr(ctxt, XML_ERR_COMMENT_NOT_FINISHED,
|
||||
"Comment incorrectly closed by '--!>'", NULL, NULL);
|
||||
cur = '>';
|
||||
break;
|
||||
}
|
||||
|
||||
if (len + 5 >= size) {
|
||||
xmlChar *tmp;
|
||||
|
||||
@ -3348,17 +3364,13 @@ htmlParseComment(htmlParserCtxtPtr ctxt) {
|
||||
htmlParseErrInt(ctxt, XML_ERR_INVALID_CHAR,
|
||||
"Invalid char in comment 0x%X\n", q);
|
||||
}
|
||||
|
||||
q = r;
|
||||
ql = rl;
|
||||
r = cur;
|
||||
rl = l;
|
||||
NEXTL(l);
|
||||
cur = CUR_CHAR(l);
|
||||
if (cur == 0) {
|
||||
SHRINK;
|
||||
GROW;
|
||||
cur = CUR_CHAR(l);
|
||||
}
|
||||
cur = next;
|
||||
l = nl;
|
||||
}
|
||||
buf[len] = 0;
|
||||
if (cur == '>') {
|
||||
|
@ -8,7 +8,7 @@
|
||||
</a>
|
||||
</h3>
|
||||
<div>
|
||||
<!--incorrectly closed comment--!><span id=under-test>whatwg guidance is that this should be a DOM node</span><!--correctly closed comment-->
|
||||
<!--incorrectly closed comment--><span id="under-test">whatwg guidance is that this should be a DOM node</span><!--correctly closed comment-->
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -0,0 +1,3 @@
|
||||
./test/HTML/comments.html:10: HTML parser error : Comment incorrectly closed by '--!>'
|
||||
<!--incorrectly closed comment--!><span id=under-test>whatwg guidance is
|
||||
^
|
@ -24,7 +24,11 @@ SAX.characters(
|
||||
SAX.startElement(div)
|
||||
SAX.characters(
|
||||
, 9)
|
||||
SAX.comment(incorrectly closed comment--!><span id=under-test>whatwg guidance is that this should be a DOM node</span><!--correctly closed comment)
|
||||
SAX.error: Comment incorrectly closed by '--!>'SAX.comment(incorrectly closed comment)
|
||||
SAX.startElement(span, id='under-test')
|
||||
SAX.characters(whatwg guidance is that this s, 49)
|
||||
SAX.endElement(span)
|
||||
SAX.comment(correctly closed comment)
|
||||
SAX.characters(
|
||||
, 7)
|
||||
SAX.endElement(div)
|
||||
|
@ -8,6 +8,7 @@
|
||||
</a>
|
||||
</h3>
|
||||
<div>
|
||||
<!--incorrectly closed comment--><span id="under-test">whatwg guidance is that this should be a DOM node</span>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -1,4 +1,3 @@
|
||||
./test/HTML/comments2.html:15: HTML parser error : Comment not terminated
|
||||
<!--incorrectly closed comment--!><span id=under-test>
|
||||
|
||||
./test/HTML/comments2.html:10: HTML parser error : Comment incorrectly closed by '--!>'
|
||||
<!--incorrectly closed comment--!><span id=under-test>whatwg guidance is
|
||||
^
|
||||
|
@ -24,10 +24,22 @@ SAX.characters(
|
||||
SAX.startElement(div)
|
||||
SAX.characters(
|
||||
, 9)
|
||||
SAX.error: Comment not terminated
|
||||
<!--incorrectly closed comment--!><span id=under-test>
|
||||
SAX.error: Comment incorrectly closed by '--!>'SAX.comment(incorrectly closed comment)
|
||||
SAX.startElement(span, id='under-test')
|
||||
SAX.characters(whatwg guidance is that this s, 49)
|
||||
SAX.endElement(span)
|
||||
SAX.characters(
|
||||
, 7)
|
||||
SAX.endElement(div)
|
||||
SAX.characters(
|
||||
, 5)
|
||||
SAX.endElement(div)
|
||||
SAX.characters(
|
||||
, 3)
|
||||
SAX.endElement(body)
|
||||
SAX.characters(
|
||||
, 1)
|
||||
SAX.endElement(html)
|
||||
SAX.characters(
|
||||
, 1)
|
||||
SAX.endDocument()
|
||||
|
Loading…
x
Reference in New Issue
Block a user