<?xml version="1.0"?>
<!-- ============================================================ -->
<!--                                                              -->
<!-- 	This file makes a part of RenderX XSL Test Suite          -->
<!--                                                              -->
<!--    Author: Alexander Peshkov                                 -->
<!--                                                              -->
<!--    (c) RenderX, 2003                                         -->
<!--                                                              -->
<!-- ============================================================ -->

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                			  xmlns:fo="http://www.w3.org/1999/XSL/Format"
                			  xmlns:rx="http://www.renderx.com/XSL/Extensions">

	<xsl:import href="generic.xsl"/>
	
	<xsl:output indent="yes"/>

	<xsl:template match="image">
	  <fo:block line-height="1pt">
	        <fo:external-graphic content-width="scale-to-fit" content-height="100%" width="100%" scaling="uniform">
	          <xsl:attribute name="src">url(<xsl:value-of select="@src"/>)</xsl:attribute>
            </fo:external-graphic>
      </fo:block>
	</xsl:template>

</xsl:stylesheet>