1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-15 16:01:08 +03:00
Files
libxslt/tests/general/bug-150.xsl
Daniel Veillard 90d2dcdda9 fixing bug #134500 on namespace lookup for attribute which sometimes lead
* libxslt/namespaces.c libxslt/namespaces.h libxslt/templates.c
  libxslt/transform.c: fixing bug #134500 on namespace lookup for
  attribute which sometimes lead to default namespace
* tests/general/bug-150*, tests/docs/bug-150.xml,
  tests/general/Makefile.am, tests/docs/Makefile.am: added
  regression test for bug #134500
Daniel
2004-05-16 23:40:08 +00:00

10 lines
296 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="/">
<root xmlns="urn:A" xmlns:b="urn:B" xmlns:a="urn:A">
<Product a:ID="1001"/>
</root>
</xsl:template>
</xsl:stylesheet>