OLD | NEW |
| 1 2011-06-21 Levi Weintraub <leviw@chromium.org> |
| 2 |
| 3 Reviewed by Eric Seidel. |
| 4 |
| 5 Text is scaled in a stair-step pattern |
| 6 https://bugs.webkit.org/show_bug.cgi?id=60317 |
| 7 |
| 8 Stop scaling the specified font to the actual on-screen value when font-
rendering: |
| 9 geometricPrecision is specified, but instead scale the graphics context.
This allows |
| 10 us to scale text up and down smoothly. |
| 11 |
| 12 Test: svg/text/scaling-font-with-geometric-precision.html |
| 13 |
| 14 * rendering/svg/RenderSVGInlineText.cpp: |
| 15 (WebCore::RenderSVGInlineText::computeNewScaledFontForStyle): |
| 16 |
1 2011-06-08 John Bauman <jbauman@chromium.org> | 17 2011-06-08 John Bauman <jbauman@chromium.org> |
2 | 18 |
3 Reviewed by James Robinson. | 19 Reviewed by James Robinson. |
4 | 20 |
5 Only draw portions of tiles in contentRect | 21 Only draw portions of tiles in contentRect |
6 https://bugs.webkit.org/show_bug.cgi?id=62243 | 22 https://bugs.webkit.org/show_bug.cgi?id=62243 |
7 | 23 |
8 Old garbage data can remain in tiles, so make sure to draw only those | 24 Old garbage data can remain in tiles, so make sure to draw only those |
9 portions that are supposed to be drawn. | 25 portions that are supposed to be drawn. |
10 | 26 |
(...skipping 2645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2656 fast/viewport/viewport-45.html fails in GTK+/Qt | 2672 fast/viewport/viewport-45.html fails in GTK+/Qt |
2657 https://bugs.webkit.org/show_bug.cgi?id=47481 | 2673 https://bugs.webkit.org/show_bug.cgi?id=47481 |
2658 | 2674 |
2659 computeViewportAttributes does many math operations with float point ari
thmetic | 2675 computeViewportAttributes does many math operations with float point ari
thmetic |
2660 and in some cases there is loss of precision making tests have incorrect
values. | 2676 and in some cases there is loss of precision making tests have incorrect
values. |
2661 | 2677 |
2662 * dom/ViewportArguments.cpp: | 2678 * dom/ViewportArguments.cpp: |
2663 (WebCore::computeViewportAttributes): | 2679 (WebCore::computeViewportAttributes): |
2664 | 2680 |
2665 == Rolled over to ChangeLog-2011-06-04 == | 2681 == Rolled over to ChangeLog-2011-06-04 == |
OLD | NEW |