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:
Mike Dalessio 2020-08-04 14:53:19 -04:00 committed by Nick Wellnhofer
parent 9086988ffa
commit e28d9347bc
8 changed files with 136 additions and 0 deletions

15
result/HTML/comments.html Normal file
View 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>

View File

View 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()

View 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>

View File

@ -0,0 +1,4 @@
./test/HTML/comments2.html:15: HTML parser error : Comment not terminated
<!--incorrectly closed comment--!><span id=under-test>
^

View 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
View 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
View 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>