template-contents-nested.html (301B)
1 <!DOCTYPE html> 2 <title>Contains second template tag inside template tag</title> 3 <link rel="author" title="Aleksei Yu. Semenov" href="mailto:a.semenov@unipro.ru"> 4 <body> 5 <template> 6 <template> 7 <div>Inside nested template</div> 8 </template> 9 </template> 10 </body>