source: trunk/doc/src/snippets/patternist/embedDataInXHTML2.xq

Last change on this file was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 267 bytes
Line 
1declare namespace x = "http://www.w3.org/1998/xhtml";
2<x:html>
3 <x:body>
4 {
5 for $i in doc("testResult.xml")/tests/test[@status = "failure"]
6 order by $i/@name
7 return <x:p>{$i/@name}</x:p>
8 }
9 </x:body>
10</x:html>
Note: See TracBrowser for help on using the repository browser.