Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xsl / xslt-url.xsl
blob456437646a1b863ef2f4c13aad15551987c6c434
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>document.URL</title>
8 </head>
9 <body>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
14 if (document.URL.length > 0)
15 document.write("<p>Success</p>");
16 else
17 document.write("<p>Failure, document.URL is empty.</p>");
18 </script>
19 </body>
20 </html>
21 </xsl:template>
22 </xsl:stylesheet>