Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / security / resources / xsl-using-document.xsl
blob89a55de898e63f4a06c286016a2c79fc50320f42
1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3 <xsl:template match="*">
4 <html>
5 <body>
6 <script>
7 if (window.testRunner)
8 testRunner.dumpAsText();
9 </script>
10 <div>This test includes content via a cross-origin document() command. It
11 passes if the load fails and thus there is no text below this line.</div>
12 <xsl:value-of select="document('http://localhost:8000/security/resources/target.xml')"/>
13 </body>
14 </html>
15 </xsl:template>
16 </xsl:stylesheet>