Changeset 18161 in webkit


Ignore:
Timestamp:
Dec 11, 2006, 3:10:39 PM (18 years ago)
Author:
hyatt
Message:

Fix the failing layout test. Just remove Unicode::isSpace and
revert StringImpl to do the same thing it was doing before.

Reviewed by darin

  • wtf/unicode/icu/UnicodeIcu.h:
  • wtf/unicode/qt4/UnicodeQt4.h:
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r18123 r18161  
     12006-12-11  David Hyatt  <hyatt@apple.com>
     2
     3        Fix the failing layout test.  Just remove Unicode::isSpace and
     4        revert StringImpl to do the same thing it was doing before.
     5
     6        Reviewed by darin
     7
     8        * wtf/unicode/icu/UnicodeIcu.h:
     9        * wtf/unicode/qt4/UnicodeQt4.h:
     10
    1112006-12-09  George Staikos  <staikos@kde.org>
    212
  • trunk/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h

    r18108 r18161  
    222222    }
    223223
    224     inline bool isSpace(int32_t c)
    225     {
    226       return !!u_isspace(c);
    227     }
    228 
    229224    inline bool isPunct(int32_t c)
    230225    {
  • trunk/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h

    r18098 r18161  
    229229    }
    230230
    231     inline bool isSpace(int32_t c)
    232     {
    233       return (c & 0xffff0000) == 0 && QChar((unsigned short)c).isSpace();
    234     }
    235 
    236231    inline bool isPunct(int32_t c)
    237232    {
Note: See TracChangeset for help on using the changeset viewer.