- From: <bugzilla@jessica.w3.org>
- Date: Tue, 02 Oct 2012 12:54:57 +0000
- To: public-qt-comments@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=17281
Tim Mills <tim@cbcl.co.uk> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
--- Comment #12 from Tim Mills <tim@cbcl.co.uk> 2012-10-02 12:54:57 UTC ---
"The assert element contains an XPath expression whose effective boolean
value must be true; usually the expression will use the variable $result
which references the result of the expression. "
The assertion
<assert>fn:ends-with($result[1], "lib"), fn:ends-with($result[2], "main"),
fn:ends-with($result[3], "main")</assert>"
does not have an EBV.
I suspect you meant
<all-of>
<assert>fn:ends-with($result[1], "lib")</assert>
<assert>fn:ends-with($result[2], "main")</assert>
<assert>fn:ends-with($result[3], "main")</assert>
</all-of>
It might be better to omit the "fn" prefix, as this isn't a predefined
namespace for XPath.
--
Configure bugmail: https://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
Received on Tuesday, 2 October 2012 12:55:02 UTC