Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(325)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content-expected.txt

Issue 1952503003: [Devtools] Fixed XSL sheets not showing in network tab (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>
+
+

Powered by Google App Engine
This is Rietveld 408576698