Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xsl / resources / xslt-entity-enc.xsl
bloba03131b8a2c3301dcf31fff25a894ba2e0600a39
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="iso8859-1"/>
4 <xsl:template match="TEST">
5 <html>
6 <head>
7 <title>XSLT Encodings</title>
8 </head>
9 <body>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 </script>
14 <p>The letters in quotes should look similar (first is Roman, second is Cyrillic): "B", "В".</p>
15 </body>
16 </html>
17 </xsl:template>
18 </xsl:stylesheet>