source: trunk/doc/src/snippets/patternist/embedDataInXHTML.xq@ 728

Last change on this file since 728 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 default element namespace "http://www.w3.org/1999/xhtml";
2<html>
3 <body>
4 {
5 for $i in doc("testResult.xml")/tests/test[@status = "failure"]
6 order by $i/@name
7 return <p>{$i/@name}</p>
8 }
9 </body>
10</html>
Note: See TracBrowser for help on using the repository browser.