Home | History | Annotate | Download | only in testdata
      1 <include src="included_sample.html">
      2 <if expr="True">
      3 should be kept
      4 </if>
      5 in the middle...
      6 <if expr="False">
      7 should be removed
      8 </if>
      9 
     10 <if expr="False">
     11 should be removed
     12   <if expr="True">
     13     should be removed because outer expr is False
     14   </if>
     15 should be removed
     16 </if>
     17 
     18 <if expr="True">
     19   <if expr="True">
     20     <if expr="True">
     21       nested true should be kept
     22     </if>
     23     <if expr="False">
     24       should be removed
     25     </if>
     26   </if>
     27   <if expr="True">
     28     silbing true should be kept
     29   </if>
     30 </if>
     31 at the end...
     32