Skip to content

Commit

Permalink
test(typescript-estree): update tests for escape patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
armano2 committed Feb 2, 2021
1 parent cfb749d commit 04c0080
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<a
b={' '}
c=" "
d={'&amp;'}
e="id=1&group=2"
f="&#123456789"
g="&#123*;"
h="&#x;"
/>;
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<a b="&notanentity;" />;
<b b="&##;" />;
<b b="&x01FZZZ;" />;
<c>&abc;</c>;
<d>&notanentity;</d>;
<e>&#x;</e>;
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<a b="&amp;" c="&#123;">
&nbsp;
</a>;

This file was deleted.

This file was deleted.

0 comments on commit 04c0080

Please sign in to comment.