Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xsl / resources / xslt-entity.xsl
blob468f52cdf2afb38c6bb89b7419e151366a95a2c5
1 <?xml version="1.0" encoding="utf-8" ?>
2 <!DOCTYPE test-document [
3 <!ENTITY HELLO "Hello World, Success!">
4 ]>
5 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
6 <xsl:template match="/">
7 <P>&HELLO;</P>
8 </xsl:template>
9 </xsl:stylesheet>