1--TEST-- 2"autoescape" tag does not apply escaping on literals 3--TEMPLATE-- 4{% autoescape 'html' %} 5 61. Simple literal 7{{ "<br />" }} 8 92. Conditional expression with only literals 10{{ true ? "<br />" : "<br>" }} 11 123. Conditional expression with a variable 13{{ true ? "<br />" : someVar }} 14 154. Nested conditionals with only literals 16{{ true ? (true ? "<br />" : "<br>") : "\n" }} 17 185. Nested conditionals with a variable 19{{ true ? (true ? "<br />" : someVar) : "\n" }} 20 216. Nested conditionals with a variable marked safe 22{{ true ? (true ? "<br />" : someVar|raw) : "\n" }} 23 24{% endautoescape %} 25--DATA-- 26return [] 27--EXPECT-- 28 291. Simple literal 30<br /> 31 322. Conditional expression with only literals 33<br /> 34 353. Conditional expression with a variable 36<br /> 37 384. Nested conditionals with only literals 39<br /> 40 415. Nested conditionals with a variable 42<br /> 43 446. Nested conditionals with a variable marked safe 45<br /> 46