blob: 061d2d13503a102a4e0d79ee6bb36e1d72e2046b [file] [log] [blame]
<#assign t = JspTaglibs["http://freemarker.org/test/taglibs/test"]>
<!-- Test repeated execution -->
<@t.testtag repeatCount=3 throwException=false
>Blah
</@>
<!-- Test 0-time execution -->
<@t.testtag repeatCount=0 throwException=false
>Blah
</@>
<!-- Test abrupt execution -->
<@t.testtag repeatCount=0 throwException=true
>Blah
</@>
<!-- Test nested execution -->
<@t.testtag repeatCount=2 throwException=false
>Outer Blah
<@t.testtag repeatCount=2 throwException=false
>Inner Blah
</@>
</@>
<!-- Test nested execution with intermittent non-JSP transform -->
<@t.testtag repeatCount=2 throwException=false>
Outer Blah
<@compress>
<@t.testtag repeatCount=2 throwException=false>
Inner Blah
</@>
</@>
</@>
<@t.simpletag bodyLoopCount=2 name="simpletag1">
foo
<@t.simpletag bodyLoopCount=3 name="simpletag2">
bar
</@>
</@>