summaryrefslogtreecommitdiffstats
path: root/test/w3c/confXPath.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/confXPath.xsl')
-rw-r--r--test/w3c/confXPath.xsl9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/w3c/confXPath.xsl b/test/w3c/confXPath.xsl
index fa67f3b..71286ce 100644
--- a/test/w3c/confXPath.xsl
+++ b/test/w3c/confXPath.xsl
@@ -206,6 +206,7 @@ is of the same type as array123 -->
+
<!-- this returns something that is guaranteed not to be the ID of the current session -->
<xsl:template match="//@conf:invalidSessionID">
<xsl:attribute name="expr">27</xsl:attribute>
@@ -239,10 +240,16 @@ is of the same type as array123 -->
</xsl:template>
<!-- delayexpr takes the value of the specified variable -->
-<xsl:template match="//@conf:delayExpr">
+<xsl:template match="//@conf:delayFromVar">
<xsl:attribute name="delayexpr">$Var<xsl:value-of select="." /></xsl:attribute>
</xsl:template>
+<!-- returns a delayexpr. this lets platforms determine how long to delay timeout
+events which cause the test to fail. The default value provided here is pretty long -->
+<xsl:template match="//@conf:delay">
+ <xsl:attribute name="delayexpr">'<xsl:value-of select="."/>s'</xsl:attribute>
+</xsl:template>
+
<!-- the specified variable is used as idlocation -->
<xsl:template match="//@conf:idlocation">
<xsl:attribute name="idlocation">$Var<xsl:value-of select="." /></xsl:attribute>