1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-14 05:09:26 +03:00
Files
libxslt/tests/general/bug-152.xsl
Daniel Veillard b92c9f6ef5 added regression test for old bug #127877 Daniel
* tests/general/bug-151*, tests/docs/bug-151.xml,
  tests/general/Makefile.am, tests/docs/Makefile.am: added
  regression test for old bug #127877
Daniel
2004-05-17 03:07:55 +00:00

31 lines
633 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<xsl:transform
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" xmlns="http://www.w3.org/1999/xhtml">
<xsl:output
method="xml"
version="1.0"
indent="yes"
encoding="US-ASCII"
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
/>
<xsl:template match="/">
<html>
<head>
<style type="text/css" media="all">@import
"pretty_xhtml.css";</style>
</head>
<body>
<h1>foo</h1>
</body>
</html>
</xsl:template>
</xsl:transform>