| Index: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content-expected.txt
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content-expected.txt b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content-expected.txt
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..6a89d0be9d98fcca385acd792f3bf62b96c8e368
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content-expected.txt
|
| @@ -0,0 +1,22 @@
|
| +Tests XSL stylsheet content. http://crbug.com/603806
|
| +
|
| +
|
| +http://127.0.0.1:8000/inspector/network/resources/xml-with-stylesheet.xml
|
| +resource.type: document
|
| +resource.content: <?xml version="1.0"?>
|
| +<?xml-stylesheet type="text/xsl" href="xml-with-stylesheet.xsl"?>
|
| +<foo>
|
| + <bar>someData</bar>
|
| +</foo>
|
| +
|
| +http://127.0.0.1:8000/inspector/network/resources/xml-with-stylesheet.xsl
|
| +resource.type: stylesheet
|
| +resource.content: <?xml version="1.0"?>
|
| +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
| + <xsl:output method="text"/>
|
| + <xsl:template match="/">
|
| + The Data: <xsl:value-of select="/foo/bar"/>
|
| + </xsl:template>
|
| +</xsl:stylesheet>
|
| +
|
| +
|
|
|