Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xsl / resources / xslt-missing-namespace-in-xslt.xsl
blob93de1f09a1ea1f9dfcb94236eba9587f0279e4fc
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="xml" encoding="UTF-8"/>
4 <xsl:template match="TEST">
5 <html xmlns="http://www.w3.org/1999/xhtml">
6 <body>
7 <p>You should see error text above this</p>
8 <foo:bar />
9 <p>ERROR? this, and nothing below it should be rendered</p>
10 </body>
11 </html>
12 </xsl:template>
13 </xsl:stylesheet>