Changeset 153338 in webkit


Ignore:
Timestamp:
Jul 25, 2013 12:05:37 PM (11 years ago)
Author:
betravis@adobe.com
Message:

[CSS Shapes] Fix typo in simple-polygon.js
https://bugs.webkit.org/show_bug.cgi?id=119096

Reviewed by Dirk Schulze.

A function name typo was preventing tests and expectations using simple-polygon.js
from generating correct output.

  • fast/shapes/resources/simple-polygon.js:

(polygonXIntercepts): Correctly camel-case function name.

Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r153337 r153338  
     12013-07-25  Bear Travis  <betravis@adobe.com>
     2
     3        [CSS Shapes] Fix typo in simple-polygon.js
     4        https://bugs.webkit.org/show_bug.cgi?id=119096
     5
     6        Reviewed by Dirk Schulze.
     7
     8        A function name typo was preventing tests and expectations using simple-polygon.js
     9        from generating correct output.
     10
     11        * fast/shapes/resources/simple-polygon.js:
     12        (polygonXIntercepts): Correctly camel-case function name.
     13
    1142013-07-25  Bem Jones-Bey  <bjonesbe@adobe.com>
    215
  • trunk/LayoutTests/fast/shapes/resources/simple-polygon.js

    r152800 r153338  
    9090        return [];
    9191
    92     return [SubPixelLayout.snapToLayoutUnit(interceptsMinX), SubPixelLayout.snapTolayoutUnit(interceptsMaxX)];
     92    return [SubPixelLayout.snapToLayoutUnit(interceptsMinX), SubPixelLayout.snapToLayoutUnit(interceptsMaxX)];
    9393}
    9494
Note: See TracChangeset for help on using the changeset viewer.