Changeset 136765 in webkit
- Timestamp:
- Dec 5, 2012, 3:07:31 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/LayoutTests/ChangeLog ¶
r136758 r136765 1 2012-12-05 Dan Bernstein <mitz@apple.com> 2 3 Text decorations are rotated when text-combine takes effect 4 https://bugs.webkit.org/show_bug.cgi?id=104172 5 6 Reviewed by Dave Hyatt. 7 8 * fast/text/decorations-with-text-combine.html: Added. 9 * platform/chromium/TestExpectations: Added to tests missing platform-specific results. 10 * platform/mac/fast/text/decorations-with-text-combine-expected.png: Added. 11 * platform/mac/fast/text/decorations-with-text-combine-expected.txt: Added. 12 1 13 2012-12-05 Tony Chang <tony@chromium.org> 2 14 -
TabularUnified trunk/LayoutTests/platform/chromium/TestExpectations ¶
r136755 r136765 4255 4255 # Needs platform-specific results 4256 4256 webkit.org/b/104035 fast/text/orientation-sideways.html [ Missing ] 4257 webkit.org/b/104172 fast/text/decorations-with-text-combine.html [ Missing ] 4257 4258 4258 4259 # Crash since r136588. -
TabularUnified trunk/Source/WebCore/ChangeLog ¶
r136755 r136765 1 2012-12-05 Dan Bernstein <mitz@apple.com> 2 3 Text decorations are rotated when text-combine takes effect 4 https://bugs.webkit.org/show_bug.cgi?id=104172 5 6 Reviewed by Dave Hyatt. 7 8 Test: fast/text/decorations-with-text-combine.html 9 10 * rendering/InlineTextBox.cpp: 11 (WebCore::InlineTextBox::paint): Applied a rotation to the graphics context when painting 12 the text decorations for combined text. 13 1 14 2012-12-05 Justin Novosad <junov@google.com> 2 15 -
TabularUnified trunk/Source/WebCore/rendering/InlineTextBox.cpp ¶
r133731 r136765 770 770 if (textDecorations != TDNONE && paintInfo.phase != PaintPhaseSelection) { 771 771 updateGraphicsContext(context, textFillColor, textStrokeColor, textStrokeWidth, styleToUse->colorSpace()); 772 if (combinedText) 773 context->concatCTM(rotation(boxRect, Clockwise)); 772 774 paintDecoration(context, boxOrigin, textDecorations, styleToUse->textDecorationStyle(), textShadow); 775 if (combinedText) 776 context->concatCTM(rotation(boxRect, Counterclockwise)); 773 777 } 774 778
Note:
See TracChangeset
for help on using the changeset viewer.