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

Unified Diff: LayoutTests/fast/xsl/xslt-relative-path.xml

Issue 365873002: Implement a part of ProcessingInstruction by using PrivateScript (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: WIP: async XHR, rewriting layout tests Created 6 years, 3 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
« no previous file with comments | « LayoutTests/fast/xsl/xslt-relative-path.html ('k') | LayoutTests/fast/xsl/xslt-second-level-import.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/xsl/xslt-relative-path.xml
diff --git a/LayoutTests/fast/xsl/xslt-relative-path.xml b/LayoutTests/fast/xsl/xslt-relative-path.xml
deleted file mode 100644
index e7bce63a8a135602525ff80de79f0326a387ff6a..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/xsl/xslt-relative-path.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-<?xml version="1.0"?>
-<?xml-stylesheet type="text/xsl" href="#stylesheet"?>
-<!DOCTYPE doc [
-<!ELEMENT xsl:stylesheet ANY>
-<!ATTLIST xsl:stylesheet id ID #REQUIRED>
-]>
-<doc>
-
- <xsl:stylesheet version="1.0" id="stylesheet" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="html"/>
- <xsl:template match="xsl:stylesheet"/>
-
- <xsl:variable name="method1">file:resources/findme.xml</xsl:variable>
- <xsl:variable name="method2">resources/findme.xml</xsl:variable>
-
- <xsl:template match="doc">
- <html>
- <head>
- <title>Testing Webkit</title>
- </head>
-
- <body>
- <p>Here is an attempt to extract the string "Hello, Webkit!" from the file findme.xml:</p>
-
- <p>using document('<xsl:value-of select="$method1"/>'):
- <xsl:value-of select="document($method1)/foo/bar"/></p>
- <p>using document('<xsl:value-of select="$method2"/>'):
- <xsl:value-of select="document($method2)/foo/bar"/></p>
-
- </body>
- </html>
- </xsl:template>
-
- </xsl:stylesheet>
-</doc>
« no previous file with comments | « LayoutTests/fast/xsl/xslt-relative-path.html ('k') | LayoutTests/fast/xsl/xslt-second-level-import.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698