idvalue3html.html (710B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <script type="application/its+xml"> 5 <its:rules xmlns:its="http://www.w3.org/2005/11/its" xmlns:h="http://www.w3.org/1999/xhtml" version="2.0"> 6 <its:param name="idvalueparam">text</its:param> 7 <its:idValueRule selector="//h:p" idValue="@id"/> 8 <its:idValueRule selector="//h:b[@id=$idvalueparam]" idValue="@id"/> 9 <its:idValueRule selector="//h:var" idValue="@id"/> 10 </its:rules> 11 </script> 12 <meta charset=utf-8> 13 <title>Id Value</title> 14 </head> 15 <body> 16 <p id="settingsMissing"> 17 <b id="text">Can't find settings file.</b> 18 <var id="desc">The module cannot find the default settings file. 19 You need to re-initialize the system.</var> 20 </p> 21 </body> 22 </html>