Browse Source

Tests: updated mailformed URLs samples

pull/41/head
Vitaly Puzrin 10 years ago
parent
commit
e116bd8a63
  1. 17
      test/fixtures/markdown-it/fatal.txt

17
test/fixtures/markdown-it/fatal.txt

@ -1,4 +1,4 @@
Should not throw exception on mailformed URI
Should not throw exception on invalid chars in URL (`*` not allowed in path) [mailformed URI]
.
[foo](<&#x25;test>)
.
@ -6,6 +6,21 @@ Should not throw exception on mailformed URI
.
Should not throw exception on broken utf-8 sequence in URL [mailformed URI]
.
[foo](%C3)
.
<p><a href="%25C3">foo</a></p>
.
Should not throw exception on broken utf-16 surrogates sequence in URL [mailformed URI]
.
[foo](&#xD800;)
.
<p><a href="&amp;#xD800;">foo</a></p>
.
Should not hang comments regexp
.

Loading…
Cancel
Save