[webkit-changes] cvs commit: LayoutTests/fast/parser nsup-entity-expected.txt nsup-entity.html

Darin darin at opensource.apple.com
Thu Dec 22 08:50:09 PST 2005


darin       05/12/22 08:50:09

  Modified:    .        ChangeLog
               khtml/html htmltokenizer.cpp kentities.gperf
               .        ChangeLog
  Added:       fast/parser nsup-entity-expected.txt nsup-entity.html
  Log:
  LayoutTests:
  
          Reviewed by Eric.
  
          - test for http://bugzilla.opendarwin.org/show_bug.cgi?id=6192
            add support for non-standard ⊅ entity (implemented in other browsers)
  
          * fast/parser/nsup-entity-expected.txt: Added.
          * fast/parser/nsup-entity.html: Added.
  
  WebCore:
  
          Reviewed by Eric.
  
          - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=6192
            add support for non-standard ⊅ entity (implemented in other browsers)
  
          * khtml/html/kentities.gperf: Add "nsup" to table.
          * khtml/html/htmltokenizer.cpp: Removed old workaround for inlining issue that no
          longer seems to be necessary; also touches the file which is important because
          Xcode doesn't seem to understand the dependency on kentities.gperf and the need
          to recompile.
  
  Revision  Changes    Path
  1.25      +13 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- ChangeLog	22 Dec 2005 16:46:38 -0000	1.24
  +++ ChangeLog	22 Dec 2005 16:50:07 -0000	1.25
  @@ -2,6 +2,19 @@
   
           Reviewed by Eric.
   
  +        - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=6192
  +          add support for non-standard ⊅ entity (implemented in other browsers)
  +
  +        * khtml/html/kentities.gperf: Add "nsup" to table.
  +        * khtml/html/htmltokenizer.cpp: Removed old workaround for inlining issue that no
  +        longer seems to be necessary; also touches the file which is important because
  +        Xcode doesn't seem to understand the dependency on kentities.gperf and the need
  +        to recompile.
  +
  +2005-12-22  Darin Adler  <darin at apple.com>
  +
  +        Reviewed by Eric.
  +
           - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=6167
             RenderStyle default constructor should initialize its members for speed
   
  
  
  
  1.128     +0 -4      WebCore/khtml/html/htmltokenizer.cpp
  
  Index: htmltokenizer.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/html/htmltokenizer.cpp,v
  retrieving revision 1.127
  retrieving revision 1.128
  diff -u -r1.127 -r1.128
  --- htmltokenizer.cpp	14 Dec 2005 23:31:52 -0000	1.127
  +++ htmltokenizer.cpp	22 Dec 2005 16:50:07 -0000	1.128
  @@ -67,11 +67,7 @@
   using DOM::MappedAttributeImpl;
   using DOM::NamedMappedAttrMapImpl;
   
  -// turn off inlining to void warning with newer gcc
  -#undef __inline
  -#define __inline
   #include "kentities.c"
  -#undef __inline
   
   // #define INSTRUMENT_LAYOUT_SCHEDULING 1
   
  
  
  
  1.5       +1 -0      WebCore/khtml/html/kentities.gperf
  
  Index: kentities.gperf
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/html/kentities.gperf,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- kentities.gperf	6 Apr 2004 02:10:56 -0000	1.4
  +++ kentities.gperf	22 Dec 2005 16:50:07 -0000	1.5
  @@ -202,6 +202,7 @@
   not, 0x00ac
   notin, 0x2209
   nsub, 0x2284
  +nsup, 0x2285
   ntilde, 0x00f1
   nu, 0x03bd
   oacute, 0x00f3
  
  
  
  1.180     +10 -0     LayoutTests/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/LayoutTests/ChangeLog,v
  retrieving revision 1.179
  retrieving revision 1.180
  diff -u -r1.179 -r1.180
  --- ChangeLog	22 Dec 2005 06:55:49 -0000	1.179
  +++ ChangeLog	22 Dec 2005 16:50:08 -0000	1.180
  @@ -1,3 +1,13 @@
  +2005-12-22  Darin Adler  <darin at apple.com>
  +
  +        Reviewed by Eric.
  +
  +        - test for http://bugzilla.opendarwin.org/show_bug.cgi?id=6192
  +          add support for non-standard &nsup; entity (implemented in other browsers)
  +
  +        * fast/parser/nsup-entity-expected.txt: Added.
  +        * fast/parser/nsup-entity.html: Added.
  +
   2005-12-16  Darin Adler  <darin at apple.com>
   
           - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=6184
  
  
  
  1.1                  LayoutTests/fast/parser/nsup-entity-expected.txt
  
  Index: nsup-entity-expected.txt
  ===================================================================
  This is the &nsup; entity: ⊅.
  
  
  
  1.1                  LayoutTests/fast/parser/nsup-entity.html
  
  Index: nsup-entity.html
  ===================================================================
  <script>if (window.layoutTestController) layoutTestController.dumpAsText();</script>
  This is the &amp;nsup; entity: &nsup;.
  
  
  



More information about the webkit-changes mailing list