Add custom tags test

This commit is contained in:
Max Brunsfeld 2018-06-12 14:03:51 -07:00
parent 32a48343b3
commit d257db6f66
1 changed files with 21 additions and 0 deletions

View File

@ -77,6 +77,27 @@ Void tags
(attribute (attribute_name) (attribute_value))))
(end_tag (tag_name))))
==================================
Custom tags
==================================
<something:different>
<atom-text-editor mini>
Hello
</atom-text-editor>
</something:different>
---
(fragment
(element
(start_tag (tag_name))
(text)
(element
(start_tag (tag_name) (attribute (attribute_name)))
(text)
(end_tag (tag_name)))
(text)
(end_tag (tag_name))))
==================================
Comments
==================================