mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-15 16:01:08 +03:00
* 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
10 lines
296 B
XML
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>
|