Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xsl / resources / dtd-in-source-document.xsl
blobca128cc41cc9e912e107551aba2699a1427447a9
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-8" />
4 <xsl:template match="/TEST">
6 <html>
7 <head>
8 <script>
9 if (window.testRunner)
10 testRunner.dumpAsText();
11 </script>
12 </head>
13 <body>
14 <div>This tests that entities defined in an external DTD referenced to from the source document are replaced correctly.
15 If this test is successful, the text SUCCESS should be shown below.</div>
16 <div><xsl:value-of select="."/></div>
17 </body>
18 </html>
19 </xsl:template>
20 </xsl:stylesheet>