Security update to Drupal 8.4.6
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / tags / spaceless / simple.test
1 --TEST--
2 "spaceless" tag removes whites between HTML tags
3 --TEMPLATE--
4 {% spaceless %}
5
6     <div>   <div>   foo   </div>   </div>
7
8 {% endspaceless %}
9 --DATA--
10 return array()
11 --EXPECT--
12 <div><div>   foo   </div></div>