Home | History | Annotate | Download | only in test

Lines Matching full:escaped

3815 	char *escaped = NULL;
3818 escaped = evhttp_htmlescape("<script>");
3819 tt_assert(escaped);
3820 tt_str_op(escaped, ==, "&lt;script&gt;");
3821 free(escaped);
3823 escaped = evhttp_htmlescape("\"\'&");
3824 tt_assert(escaped);
3825 tt_str_op(escaped, ==, "&quot;&#039;&amp;");
3836 if (escaped)
3837 free(escaped);