fixing HTML entities in attributes parsing bug #362552 added to the

* HTMLparser.c: fixing HTML entities in attributes parsing bug #362552
* result/HTML/entities2.html* test/HTML/entities2.html: added to
  the regression suite
Daniel
This commit is contained in:
Daniel Veillard 2006-10-17 15:56:35 +00:00
parent dab39b568a
commit 48519092e5
6 changed files with 43 additions and 1 deletions

View File

@ -1,3 +1,9 @@
Tue Oct 17 17:56:31 CEST 2006 Daniel Veillard <daniel@veillard.com>
* HTMLparser.c: fixing HTML entities in attributes parsing bug #362552
* result/HTML/entities2.html* test/HTML/entities2.html: added to
the regression suite
Tue Oct 17 01:21:37 CEST 2006 Daniel Veillard <daniel@veillard.com>
* xmllint.c: started to switch xmllint to use xmlSaveDoc to test

View File

@ -2377,7 +2377,7 @@ htmlParseHTMLAttribute(htmlParserCtxtPtr ctxt, const xmlChar stop) {
growBuffer(buffer);
out = &buffer[indx];
}
c = (xmlChar)ent->value;
c = ent->value;
if (c < 0x80)
{ *out++ = c; bits= -6; }
else if (c < 0x800)

View File

@ -0,0 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body>
<form>
<input type="text" name="test" value="&scaron;">
</form>
</body></html>

View File

View File

@ -0,0 +1,23 @@
SAX.setDocumentLocator()
SAX.startDocument()
SAX.startElement(html)
SAX.ignorableWhitespace(
, 1)
SAX.startElement(body)
SAX.characters(
, 1)
SAX.startElement(form)
SAX.characters(
, 3)
SAX.startElement(input, type='text', name='test', value='&scaron;')
SAX.endElement(input)
SAX.characters(
, 1)
SAX.endElement(form)
SAX.characters(
, 1)
SAX.endElement(body)
SAX.ignorableWhitespace(
, 1)
SAX.endElement(html)
SAX.endDocument()

7
test/HTML/entities2.html Normal file
View File

@ -0,0 +1,7 @@
<html>
<body>
<form>
<input type="text" name="test" value="&scaron;">
</form>
</body>
</html>