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

- tests/docs/Makefile.am tests/general/Makefile.am

tests/general/bug-32-* tests/docs/bug-32-*: added a specific
  regression test for #55722
Daniel
This commit is contained in:
Daniel Veillard
2001-06-06 08:24:24 +00:00
parent 6c06207b82
commit 422e3fc30e
6 changed files with 28 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
Thu Jun 7 04:23:38 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* tests/docs/Makefile.am tests/general/Makefile.am
tests/general/bug-32-* tests/docs/bug-32-*: added a specific
regression test for #55722
Wed Jun 6 09:48:53 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* doc/xslt.html: updated to ask to not send mail directly

View File

@@ -36,6 +36,7 @@ EXTRA_DIST = \
bug-29-.xml bug-29-.ent \
bug-30-.xml \
bug-31-.xml \
bug-32-.xml \
bug-33-.xml \
character.xml \
items.xml

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

@@ -0,0 +1 @@
<a b:c="d" xmlns:b="http://b"/>

View File

@@ -35,6 +35,7 @@ EXTRA_DIST = \
bug-29-.out bug-29-.xsl \
bug-30-.out bug-30-.xsl \
bug-31-.out bug-31-.xsl \
bug-32-.out bug-32-.xsl \
bug-33-.out bug-33-.xsl \
character.out character.xsl \
character2.out character2.xsl \

View File

@@ -0,0 +1,2 @@
<?xml version="1.0"?>
<a xmlns:b="http://b"/>

17
tests/general/bug-32-.xsl Normal file
View File

@@ -0,0 +1,17 @@
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:b="http://b">
<xsl:template match="@b:*"/>
<xsl:template match="*">
<xsl:copy>
<xsl:apply-templates select="*|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@*">
<xsl:copy/>
</xsl:template>
</xsl:stylesheet>