This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
In the following test cases: fn-transform-36, -36a, -37, -38, -39 The assertions incorrectly checks for 'saved' result dcoument even though this feature has been dropped. For example in fn-transform-36 see the assertions that need changing: <assert><![CDATA[contains(serialize(doc(map:keys($result))), "<works>")]]></assert> <assert><![CDATA[contains(serialize(doc(map:keys($result))), "</works>")]]></assert> <assert><![CDATA[not(contains(serialize(doc(map:keys($result))), "<body><works>"))]]></assert> The proposed fix is to do something similar to fn-transform-35.
Test cases fixed by converting assertions with doc function to parse-xml. However for the test cases fn-transform-38 and fn-transform-39 it only returns a map of keys. therefore I had to comment out the assertion which calls the doc function.