textblock: support escaped ' tag 23/66923/2
authorMike Blumenkrantz <zmike@osg.samsung.com>
Tue, 29 Mar 2016 19:38:47 +0000 (15:38 -0400)
committerYoungbok Shin <youngb.shin@samsung.com>
Mon, 25 Apr 2016 04:25:06 +0000 (21:25 -0700)
while not in the official html4 spec, this was supported by all browsers
except IE during the html4 era and is now included in html5.

@fix

Change-Id: I7b503c16e7ed97525f5123e586bfcccc4c2a4972

src/lib/evas/canvas/evas_object_textblock.c

index daf344e..402604b 100644 (file)
@@ -912,6 +912,7 @@ static const char escape_strings[] =
 /* most common escaped stuff */
 "&quot;\0"     "\x22\0"
 "&amp;\0"      "\x26\0"
+"&apos;\0"     "\x27\0"
 "&lt;\0"       "\x3c\0"
 "&gt;\0"       "\x3e\0"
 /* all the rest */