Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / xsl / resources / subframe-location-frame.xsl
blob7c71d34417bf1948cab5c2af1ad9a10c21ea3ac9
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet
3 version="1.0"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
6 <xsl:output method="html"/>
8 <xsl:template match="/">
10 <html>
11 <head>
12 <title>Frame 2</title>
13 </head>
14 <body>
15 <script>
16 alert(/resources/.test(document.location) ? "SUCCESS" : ("FAILURE: " + document.location));
17 </script>
18 </body>
19 </html>
21 </xsl:template>
23 </xsl:stylesheet>