mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
dab39b568a
commit
48519092e5
@ -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
|
||||
|
@ -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)
|
||||
|
6
result/HTML/entities2.html
Normal file
6
result/HTML/entities2.html
Normal 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="š">
|
||||
</form>
|
||||
</body></html>
|
0
result/HTML/entities2.html.err
Normal file
0
result/HTML/entities2.html.err
Normal file
23
result/HTML/entities2.html.sax
Normal file
23
result/HTML/entities2.html.sax
Normal 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='š')
|
||||
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
7
test/HTML/entities2.html
Normal file
@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<body>
|
||||
<form>
|
||||
<input type="text" name="test" value="š">
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user