1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2026-01-07 21:58:22 +03:00

added the example for bug #112904 in the regression tests, the bug fix is

* tests/docs/Makefile.am tests/docs/bug-121.*
  tests/general/Makefile.am tests/general/bug-121*: added the
  example for bug #112904 in the regression tests, the bug fix is
  actually in libxml2
Daniel
This commit is contained in:
Daniel Veillard
2003-05-16 18:23:07 +00:00
parent ada71b3bb5
commit b487aba889
6 changed files with 21 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
Fri May 16 13:22:31 EDT 2003 Daniel Veillard <daniel@veillard.com>
* tests/docs/Makefile.am tests/docs/bug-121.*
tests/general/Makefile.am tests/general/bug-121*: added the
example for bug #112904 in the regression tests, the bug fix is
actually in libxml2
Thu May 15 16:26:34 EDT 2003 Daniel Veillard <daniel@veillard.com>
* xsltproc/xsltproc.c: fixing portability bug #113002 on HP-UX

View File

@@ -119,6 +119,8 @@ EXTRA_DIST = \
bug-117.xml \
bug-118.xml \
bug-119.xml \
bug-120.xml \
bug-121.xml \
character.xml \
array.xml \
items.xml

1
tests/docs/bug-121.xml Normal file
View File

@@ -0,0 +1 @@
<doc/>

View File

@@ -124,6 +124,8 @@ EXTRA_DIST = \
bug-117.out bug-117.xsl \
bug-118.out bug-118.xsl \
bug-119.out bug-119.xsl \
bug-120.out bug-120.xsl \
bug-121.out bug-121.xsl \
character.out character.xsl \
character2.out character2.xsl \
itemschoose.out itemschoose.xsl \

View File

@@ -0,0 +1 @@
<a href="a?b+c">xxx</a>

View File

@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<xsl:template match="/">
<a href="a?b+c">xxx</a>
</xsl:template>
</xsl:stylesheet>