webengine/osswebengine/WebCore/platform/Font.h
changeset 1 7c90e6132015
parent 0 dd21522fd290
--- a/webengine/osswebengine/WebCore/platform/Font.h	Mon Mar 30 12:54:55 2009 +0300
+++ b/webengine/osswebengine/WebCore/platform/Font.h	Fri May 08 08:25:06 2009 +0300
@@ -183,7 +183,7 @@
     }
 #endif
     static bool treatAsSpace(UChar c) { return c == ' ' || c == '\t' || c == '\n' || c == 0x00A0; }
-    static bool treatAsZeroWidthSpace(UChar c) { return c < 0x20 || (c >= 0x7F && c < 0xA0) || c == 0x200e || c == 0x200f; }
+    static bool treatAsZeroWidthSpace(UChar c) { return c < 0x20 || (c >= 0x7F && c < 0xA0) || c == 0x200e || c == 0x200f || c == 0x200b; }
 private:
     FontDescription m_fontDescription;
 #if !PLATFORM(QT)