Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xsl / resources / xslt-enc16.xsl
blobfbce796bb54f835c3178f61c9ecc8278aeac771c
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3 <xsl:output method="html" encoding="UTF-16"/>
4 <xsl:template match="TEST">
5 <html xmlns="http://www.w3.org/1999/xhtml">
6 <body>
7 CHARACTERS IN XSLT: ééééééééééé <br/> <xsl:apply-templates/>
8 </body>
9 </html>
10 </xsl:template>
12 <xsl:template >
13 <xsl:value-of select="." />
14 </xsl:template>
16 </xsl:stylesheet>