marko/test/test-project/rhtml-templates/choose-when-attributes.rhtml

14 lines
326 B
Plaintext

<div id="one">
<c:choose>
<div c:when="false">A</div>
<div c:when="false">B</div>
<div c:otherwise="">TRUE</div>
</c:choose>
</div>
<div id="two">
<c:choose>
<div c:when="false">A</div>
<div c:when="true">TRUE</div>
<div c:otherwise="">C</div>
</c:choose>
</div>