Changeset 129389 in webkit
- Timestamp:
- Sep 24, 2012, 11:18:05 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r129388 r129389 1 2012-09-24 Dan Bernstein <mitz@apple.com> 2 3 Reveted r129176 and r129185. 4 5 Rubber-stamped by Anders Carlsson. 6 7 * platform/mac-lion/fast/writing-mode/text-orientation-basic-expected.txt: 8 * platform/mac/fast/text/emphasis-expected.png: 9 * platform/mac/fast/text/emphasis-expected.txt: 10 * platform/mac/fast/text/sticky-typesetting-features-expected.png: 11 * platform/mac/fast/text/sticky-typesetting-features-expected.txt: 12 * platform/mac/fast/text/thai-combining-mark-positioning-expected.png: 13 * platform/mac/fast/text/thai-combining-mark-positioning-expected.txt: 14 * platform/mac/fast/writing-mode/text-orientation-basic-expected.png: 15 * platform/mac/fast/writing-mode/text-orientation-basic-expected.txt: 16 1 17 2012-09-24 Bo Liu <boliu@chromium.org> 2 18 -
trunk/LayoutTests/platform/mac-lion/fast/writing-mode/text-orientation-basic-expected.txt
r129185 r129389 50 50 text run at (94,1) width 198: "Hello world" 51 51 RenderBR {BR} at (112,199) size 0x0 52 RenderInline {SPAN} at (0,0) size 36x 19853 RenderText {#text} at (148,1) size 36x 19854 text run at (148,1) width 198: "Hello world"55 RenderBR {BR} at (166, 199) size 0x052 RenderInline {SPAN} at (0,0) size 36x222 53 RenderText {#text} at (148,1) size 36x222 54 text run at (148,1) width 222: "Hello world" 55 RenderBR {BR} at (166,223) size 0x0 56 56 RenderText {#text} at (0,0) size 0x0 -
trunk/LayoutTests/platform/mac/fast/text/emphasis-expected.txt
r129176 r129389 26 26 RenderText {#text} at (3,45) size 217x28 27 27 text run at (3,45) width 217: "consectetur adipiscing" 28 RenderText {#text} at (220,45) size 13 4x2828 RenderText {#text} at (220,45) size 135x28 29 29 text run at (220,45) width 6: " " 30 text run at (226,45) width 12 8: "elit. Aliquam"30 text run at (226,45) width 129: "elit. Aliquam" 31 31 RenderInline {SPAN} at (0,0) size 111x28 32 32 RenderText {#text} at (3,73) size 111x28 -
trunk/LayoutTests/platform/mac/fast/text/sticky-typesetting-features-expected.txt
r129176 r129389 14 14 text run at (0,0) width 324: "This should be rendered with kerning and ligatures:" 15 15 RenderBlock {DIV} at (0,250) size 784x166 16 RenderText {#text} at (0,0) size 75 1x16617 text run at (0,0) width 75 1: "Office Today"16 RenderText {#text} at (0,0) size 754x166 17 text run at (0,0) width 754: "Office Today" -
trunk/LayoutTests/platform/mac/fast/text/thai-combining-mark-positioning-expected.txt
r129176 r129389 5 5 RenderBody {BODY} at (8,8) size 784x584 6 6 RenderBlock {DIV} at (0,0) size 784x101 7 RenderText {#text} at (0,0) size 38 5x1018 text run at (0,0) width 38 5: "\x{E43}\x{E2B}\x{E49}\x{E21}\x{E35}\x{E02}\x{E36}\x{E49}\x{E19} \x{E01}\x{E32}\x{E23}\x{E17}\x{E4D}\x{E32}\x{E43}\x{E2B}\x{E49}"7 RenderText {#text} at (0,0) size 384x101 8 text run at (0,0) width 384: "\x{E43}\x{E2B}\x{E49}\x{E21}\x{E35}\x{E02}\x{E36}\x{E49}\x{E19} \x{E01}\x{E32}\x{E23}\x{E17}\x{E4D}\x{E32}\x{E43}\x{E2B}\x{E49}" -
trunk/LayoutTests/platform/mac/fast/writing-mode/text-orientation-basic-expected.txt
r129176 r129389 50 50 text run at (94,1) width 197: "Hello world" 51 51 RenderBR {BR} at (112,198) size 0x0 52 RenderInline {SPAN} at (0,0) size 36x 19753 RenderText {#text} at (148,1) size 36x 19754 text run at (148,1) width 197: "Hello world"55 RenderBR {BR} at (166, 198) size 0x052 RenderInline {SPAN} at (0,0) size 36x221 53 RenderText {#text} at (148,1) size 36x221 54 text run at (148,1) width 221: "Hello world" 55 RenderBR {BR} at (166,222) size 0x0 56 56 RenderText {#text} at (0,0) size 0x0 -
trunk/Source/WebCore/ChangeLog
r129388 r129389 1 2012-09-24 Dan Bernstein <mitz@apple.com> 2 3 Reverted r129176, the fix for <http://webkit.org/b/97269>, because it introduced a 4 discrepancy between line breaking and max width computation. 5 6 Rubber-stamped by Anders Carlsson. 7 8 * platform/graphics/mac/ComplexTextController.cpp: 9 (WebCore::ComplexTextController::adjustGlyphsAndAdvances): 10 1 11 2012-09-24 Bo Liu <boliu@chromium.org> 2 12 -
trunk/Source/WebCore/platform/graphics/mac/ComplexTextController.cpp
r129233 r129389 576 576 577 577 bool treatAsSpace = Font::treatAsSpace(ch); 578 CGGlyph glyph = glyphs[i]; 579 CGSize advance = advances[i]; 580 // FIXME: We should find a way to substitute spaces for characters that are treated as spaces 581 // before handing them off to Core Text, so that kerning can be applied as if they were spaces. 582 if (treatAsSpace && ch != ' ') { 583 glyph = fontData->spaceGlyph(); 584 advance.width = spaceWidth; 585 } 578 CGGlyph glyph = treatAsSpace ? fontData->spaceGlyph() : glyphs[i]; 579 CGSize advance = treatAsSpace ? CGSizeMake(spaceWidth, advances[i].height) : advances[i]; 586 580 587 581 if (ch == '\t' && m_run.allowTabs())
Note:
See TracChangeset
for help on using the changeset viewer.