mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-09 04:58:16 +03:00
fixed bug #310333 with a patch close to the provided patch for HTML UTF-8
* HTMLtree.c: fixed bug #310333 with a patch close to the provided patch for HTML UTF-8 serialization * result/HTML/script2.html: this changed the output of that test Daniel
This commit is contained in:
parent
10752284e3
commit
b8c8016044
@ -1,3 +1,9 @@
|
||||
Mon Aug 8 15:44:54 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* HTMLtree.c: fixed bug #310333 with a patch close to the provided
|
||||
patch for HTML UTF-8 serialization
|
||||
* result/HTML/script2.html: this changed the output of that test
|
||||
|
||||
Mon Aug 8 15:01:51 CEST 2005 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xmlregexp.c: fixed bug #310264, basically it's about reentrancy
|
||||
|
@ -552,6 +552,8 @@ htmlDocDumpMemory(xmlDocPtr cur, xmlChar**mem, int *size) {
|
||||
*size = 0;
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
handler = xmlFindCharEncodingHandler(encoding);
|
||||
}
|
||||
}
|
||||
|
||||
@ -1026,6 +1028,8 @@ htmlDocDump(FILE *f, xmlDocPtr cur) {
|
||||
handler = xmlFindCharEncodingHandler(encoding);
|
||||
if (handler == NULL)
|
||||
return(-1);
|
||||
} else {
|
||||
handler = xmlFindCharEncodingHandler(encoding);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -6,9 +6,9 @@
|
||||
</head>
|
||||
<body><div id="portal">
|
||||
<script type="text/javascript">
|
||||
documen.write("Příliš žluťoučký kůň úpěl ďábelksé ódy");
|
||||
documen.write("Příliš žluťoučký kůň úpěl ďábelksé ódy");
|
||||
</script><p>
|
||||
Příliš žluťoučký kůň úpěl ďábelksé ódy;
|
||||
Příliš žluťoučký kůň úpěl ďábelksé ódy;
|
||||
</p>
|
||||
</div></body>
|
||||
</html>
|
||||
|
Loading…
x
Reference in New Issue
Block a user