chromium/third_party/blink/web_tests/external/wpt/html/semantics/scripting-1/the-template-element/resources/template-contents-nested.html

<!DOCTYPE html>
    <title>Contains second template tag inside template tag</title>
    <link rel="author" title="Aleksei Yu. Semenov" href="mailto:[email protected]">
<body>
    <template>
        <template>
            <div>Inside nested template</div>
        </template>
    </template>
</body>