[webkit-changes] cvs commit: WebCore/layout-tests/fast/replaced image-tag-expected.checksum image-tag-expected.png image-tag-expected.txt image-tag.html

Vicki vicki at opensource.apple.com
Fri Sep 9 23:10:10 PDT 2005


vicki       05/09/09 23:10:09

  Modified:    .        ChangeLog
               khtml/html htmlnames.h htmlfactory.cpp
  Added:       layout-tests/fast/replaced image-tag-expected.checksum
                        image-tag-expected.png image-tag-expected.txt
                        image-tag.html
  Log:
          Reviewed by Dave Hyatt.
  
  	- fix <rdar://problem/4234256> REGRESSION: image tag broken in TOT
  
          Test cases added:
          * layout-tests/fast/replaced/image-tag-expected.checksum: Added.
          * layout-tests/fast/replaced/image-tag-expected.png: Added.
          * layout-tests/fast/replaced/image-tag-expected.txt: Added.
          * layout-tests/fast/replaced/image-tag.html: Added.
  
  	* khtml/html/htmlnames.h:
          * khtml/html/htmlfactory.cpp:
          (DOM::HTMLElementFactory::createHTMLElement):
  
  Revision  Changes    Path
  1.109     +16 -0     WebCore/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebCore/ChangeLog,v
  retrieving revision 1.108
  retrieving revision 1.109
  diff -u -r1.108 -r1.109
  --- ChangeLog	9 Sep 2005 18:34:49 -0000	1.108
  +++ ChangeLog	10 Sep 2005 06:10:08 -0000	1.109
  @@ -1,3 +1,19 @@
  +2005-09-09  Vicki Murley  <vicki at apple.com>
  +
  +        Reviewed by Dave Hyatt.
  + 
  +	- fix <rdar://problem/4234256> REGRESSION: image tag broken in TOT
  +
  +        Test cases added:
  +        * layout-tests/fast/replaced/image-tag-expected.checksum: Added.
  +        * layout-tests/fast/replaced/image-tag-expected.png: Added.
  +        * layout-tests/fast/replaced/image-tag-expected.txt: Added.
  +        * layout-tests/fast/replaced/image-tag.html: Added.
  +
  +	* khtml/html/htmlnames.h:
  +        * khtml/html/htmlfactory.cpp:
  +        (DOM::HTMLElementFactory::createHTMLElement): 
  +
   2005-09-09  John Sullivan  <sullivan at apple.com>
   
           Reviewed by Tim Omernick.
  
  
  
  1.8       +1 -0      WebCore/khtml/html/htmlnames.h
  
  Index: htmlnames.h
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/html/htmlnames.h,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- htmlnames.h	25 Aug 2005 23:13:50 -0000	1.7
  +++ htmlnames.h	10 Sep 2005 06:10:08 -0000	1.8
  @@ -74,6 +74,7 @@
       macro(html) \
       macro(i) \
       macro(iframe) \
  +    macro(image) \
       macro(img) \
       macro(input) \
       macro(ins) \
  
  
  
  1.6       +1 -0      WebCore/khtml/html/htmlfactory.cpp
  
  Index: htmlfactory.cpp
  ===================================================================
  RCS file: /cvs/root/WebCore/khtml/html/htmlfactory.cpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- htmlfactory.cpp	29 Aug 2005 21:29:18 -0000	1.5
  +++ htmlfactory.cpp	10 Sep 2005 06:10:08 -0000	1.6
  @@ -387,6 +387,7 @@
           gFunctionMap->insert(delTag.localName().impl(), (void*)&modConstructor);
           gFunctionMap->insert(insTag.localName().impl(), (void*)&modConstructor);
           gFunctionMap->insert(aTag.localName().impl(), (void*)&anchorConstructor);
  +        gFunctionMap->insert(imageTag.localName().impl(), (void*)&imageConstructor);
           gFunctionMap->insert(imgTag.localName().impl(), (void*)&imageConstructor);
           gFunctionMap->insert(mapTag.localName().impl(), (void*)&mapConstructor);
           gFunctionMap->insert(areaTag.localName().impl(), (void*)&areaConstructor);
  
  
  
  1.1                  WebCore/layout-tests/fast/replaced/image-tag-expected.checksum
  
  Index: image-tag-expected.checksum
  ===================================================================
  40562362b30655e94fab5bb44c0a0a3a
  
  
  1.1                  WebCore/layout-tests/fast/replaced/image-tag-expected.png
  
  	<<Binary file>>
  
  
  1.1                  WebCore/layout-tests/fast/replaced/image-tag-expected.txt
  
  Index: image-tag-expected.txt
  ===================================================================
  layer at (0,0) size 800x600
    RenderCanvas at (0,0) size 800x600
  layer at (0,0) size 800x600
    RenderBlock {HTML} at (0,0) size 800x600
      RenderBody {BODY} at (8,8) size 784x584
        RenderImage {IMG} at (0,0) size 128x128
  
  
  
  1.1                  WebCore/layout-tests/fast/replaced/image-tag.html
  
  Index: image-tag.html
  ===================================================================
  <image src="resources/compass.jpg">
  
  



More information about the webkit-changes mailing list