Changeset 14275 in webkit


Ignore:
Timestamp:
May 9, 2006 10:43:14 PM (18 years ago)
Author:
darin
Message:

LayoutTests:

  • fast/replaced/image-map.html: Added.
  • fast/replaced/image-map-expected.txt: Added.

WebCore:

Reviewed by Hyatt.

  • html/html_imageimpl.cpp: (WebCore::HTMLAreaElement::getRegion): Remove extra Path definition that was shadowing the real one.
Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r14273 r14275  
     12006-05-09  Darin Adler  <darin@apple.com>
     2
     3        - test for http://bugzilla.opendarwin.org/show_bug.cgi?id=8781
     4          REGRESSION: image maps with "poly" areas, including one at lisp.geek.nz, don't work
     5
     6        * fast/replaced/image-map.html: Added.
     7        * fast/replaced/image-map-expected.txt: Added.
     8
    192006-05-09  Darin Adler  <darin@apple.com>
    210
  • trunk/WebCore/ChangeLog

    r14274 r14275  
     12006-05-09  Darin Adler  <darin@apple.com>
     2
     3        Reviewed by Hyatt.
     4
     5        - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=8781
     6          REGRESSION: image maps with "poly" areas, including one at lisp.geek.nz, don't work
     7
     8        * html/html_imageimpl.cpp: (WebCore::HTMLAreaElement::getRegion): Remove extra Path
     9        definition that was shadowing the real one.
     10
    1112006-05-09  Darin Adler  <darin@apple.com>
    212
  • trunk/WebCore/html/html_imageimpl.cpp

    r14102 r14275  
    598598        case Poly:
    599599            if (m_coordsLen >= 6) {
    600                 Path path;
    601600                int numPoints = m_coordsLen / 2;
    602601                path.moveTo(FloatPoint(m_coords[0].calcMinValue(width), m_coords[1].calcMinValue(height)));
Note: See TracChangeset for help on using the changeset viewer.