1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-14 05:09:26 +03:00
Files
libxslt/tests/general/bug-130.xsl
Nick Wellnhofer 971d5c4dd1 tests: Port most of the test suite to C
Use runtest.c from libxml2 as a starting point.

This finally allows us to run most of tests with CMake and Autotools
VPATH builds.
2022-09-07 22:18:55 +02:00

23 lines
598 B
XML

<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/TR/REC-html40">
<xsl:import href="./bug-130-imp1.imp"/>
<xsl:import href="./bug-130-imp2.imp"/>
<xsl:import href="./bug-130-imp3.imp"/>
<xsl:import href="./bug-130-imp4.imp"/>
<xsl:output method="html" indent="no"/>
<xsl:variable name="g.doc.root" select="document('bug-130.doc')"/>
<xsl:template match="/">
<html>
<head></head>
<body><xsl:apply-templates select="/frame"/></body>
</html>
</xsl:template>
</xsl:stylesheet>