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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/resources/xml-with-stylesheet.xsl

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/resources/xml-with-stylesheet.xsl
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/resources/xml-with-stylesheet.xsl b/third_party/WebKit/LayoutTests/http/tests/inspector/network/resources/xml-with-stylesheet.xsl
new file mode 100644
index 0000000000000000000000000000000000000000..13947f191f55cf4949be09aedeba2a9a9097806a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/resources/xml-with-stylesheet.xsl
@@ -0,0 +1,7 @@
+<?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