mirror of
https://github.com/google/nomulus.git
synced 2025-08-06 01:35:17 +02:00
Fix closing and self-closing tags in templates
Void tags (e.g. <img>) couldn't have a closing tag (e.g. </img> is invalid). Non-void tags (e.g. <div>) couldn't be self closing (e.g. <div/> is invalid) and must be closed explicitly (e.g. with </div>). This CL fixes the tags which also prepares the templates for stricthtml which enforces it. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=168829028
This commit is contained in:
parent
ccb0bf5af0
commit
04a61794e0
21 changed files with 31 additions and 31 deletions
|
@ -103,7 +103,7 @@
|
|||
{param namePrefix: 'contact:postalInfo[0].contact:' /}
|
||||
{/call}
|
||||
{/if}
|
||||
<table id="domain-contact-postalInfos-footer"/>
|
||||
<table id="domain-contact-postalInfos-footer"></table>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue