This PR supports tags parsed in either static-text or parsed-content mode (such as <script> and <style>) having a closing tag that matches the same variants as other tags.
Specifically this means the below is newly supported:
<style.test></>
<style.test></style>
Where as before only <style.test></style.test> would have been valid.
This PR supports tags parsed in either
static-text
orparsed-content
mode (such as<script>
and<style>
) having a closing tag that matches the same variants as other tags.Specifically this means the below is newly supported:
Where as before only
<style.test></style.test>
would have been valid.