mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
add test coverage for incorrectly-closed comments
this establishes the baseline behavior so that subsequent commits which modify this behavior are clear about what's being changed.
This commit is contained in:
parent
9086988ffa
commit
e28d9347bc
15
result/HTML/comments.html
Normal file
15
result/HTML/comments.html
Normal file
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
||||
<html>
|
||||
<body>
|
||||
<div>
|
||||
<h3>
|
||||
<a href="https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment">
|
||||
Incorrectly closed comment
|
||||
</a>
|
||||
</h3>
|
||||
<div>
|
||||
<!--incorrectly closed comment--!><span id=under-test>whatwg guidance is that this should be a DOM node</span><!--correctly closed comment-->
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
0
result/HTML/comments.html.err
Normal file
0
result/HTML/comments.html.err
Normal file
42
result/HTML/comments.html.sax
Normal file
42
result/HTML/comments.html.sax
Normal file
@ -0,0 +1,42 @@
|
||||
SAX.setDocumentLocator()
|
||||
SAX.startDocument()
|
||||
SAX.startElement(html)
|
||||
SAX.characters(
|
||||
, 3)
|
||||
SAX.startElement(body)
|
||||
SAX.characters(
|
||||
, 5)
|
||||
SAX.startElement(div)
|
||||
SAX.characters(
|
||||
, 7)
|
||||
SAX.startElement(h3)
|
||||
SAX.characters(
|
||||
, 9)
|
||||
SAX.startElement(a, href='https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment')
|
||||
SAX.characters(
|
||||
Incorrectly closed , 46)
|
||||
SAX.endElement(a)
|
||||
SAX.characters(
|
||||
, 7)
|
||||
SAX.endElement(h3)
|
||||
SAX.characters(
|
||||
, 7)
|
||||
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.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()
|
14
result/HTML/comments2.html
Normal file
14
result/HTML/comments2.html
Normal file
@ -0,0 +1,14 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
||||
<html>
|
||||
<body>
|
||||
<div>
|
||||
<h3>
|
||||
<a href="https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment">
|
||||
Incorrectly closed comment without a correctly closed comment
|
||||
</a>
|
||||
</h3>
|
||||
<div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
4
result/HTML/comments2.html.err
Normal file
4
result/HTML/comments2.html.err
Normal file
@ -0,0 +1,4 @@
|
||||
./test/HTML/comments2.html:15: HTML parser error : Comment not terminated
|
||||
<!--incorrectly closed comment--!><span id=under-test>
|
||||
|
||||
^
|
33
result/HTML/comments2.html.sax
Normal file
33
result/HTML/comments2.html.sax
Normal file
@ -0,0 +1,33 @@
|
||||
SAX.setDocumentLocator()
|
||||
SAX.startDocument()
|
||||
SAX.startElement(html)
|
||||
SAX.characters(
|
||||
, 3)
|
||||
SAX.startElement(body)
|
||||
SAX.characters(
|
||||
, 5)
|
||||
SAX.startElement(div)
|
||||
SAX.characters(
|
||||
, 7)
|
||||
SAX.startElement(h3)
|
||||
SAX.characters(
|
||||
, 9)
|
||||
SAX.startElement(a, href='https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment')
|
||||
SAX.characters(
|
||||
Incorrectly closed , 81)
|
||||
SAX.endElement(a)
|
||||
SAX.characters(
|
||||
, 7)
|
||||
SAX.endElement(h3)
|
||||
SAX.characters(
|
||||
, 7)
|
||||
SAX.startElement(div)
|
||||
SAX.characters(
|
||||
, 9)
|
||||
SAX.error: Comment not terminated
|
||||
<!--incorrectly closed comment--!><span id=under-test>
|
||||
SAX.endElement(div)
|
||||
SAX.endElement(div)
|
||||
SAX.endElement(body)
|
||||
SAX.endElement(html)
|
||||
SAX.endDocument()
|
14
test/HTML/comments.html
Normal file
14
test/HTML/comments.html
Normal file
@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<body>
|
||||
<div>
|
||||
<h3>
|
||||
<a href="https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment">
|
||||
Incorrectly closed comment
|
||||
</a>
|
||||
</h3>
|
||||
<div>
|
||||
<!--incorrectly closed comment--!><span id=under-test>whatwg guidance is that this should be a DOM node</span><!--correctly closed comment-->
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
14
test/HTML/comments2.html
Normal file
14
test/HTML/comments2.html
Normal file
@ -0,0 +1,14 @@
|
||||
<html>
|
||||
<body>
|
||||
<div>
|
||||
<h3>
|
||||
<a href="https://html.spec.whatwg.org/multipage/parsing.html#parse-error-incorrectly-closed-comment">
|
||||
Incorrectly closed comment without a correctly closed comment
|
||||
</a>
|
||||
</h3>
|
||||
<div>
|
||||
<!--incorrectly closed comment--!><span id=under-test>whatwg guidance is that this should be a DOM node</span>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user