OLD | NEW |
1 2011-06-21 Levi Weintraub <leviw@chromium.org> | 1 2011-06-21 Levi Weintraub <leviw@chromium.org> |
2 | 2 |
3 Reviewed by Eric Seidel. | 3 Reviewed by Eric Seidel. |
4 | 4 |
5 Text is scaled in a stair-step pattern | 5 Text is scaled in a stair-step pattern |
6 https://bugs.webkit.org/show_bug.cgi?id=60317 | 6 https://bugs.webkit.org/show_bug.cgi?id=60317 |
7 | 7 |
8 Stop scaling the specified font to the actual on-screen value when font-
rendering: | 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 | 9 geometricPrecision is specified, but instead scale the graphics context.
This allows |
10 us to scale text up and down smoothly. | 10 us to scale text up and down smoothly. |
11 | 11 |
12 Test: svg/text/scaling-font-with-geometric-precision.html | 12 Test: svg/text/scaling-font-with-geometric-precision.html |
13 | 13 |
14 * rendering/svg/RenderSVGInlineText.cpp: | 14 * rendering/svg/RenderSVGInlineText.cpp: |
15 (WebCore::RenderSVGInlineText::computeNewScaledFontForStyle): | 15 (WebCore::RenderSVGInlineText::computeNewScaledFontForStyle): |
16 | 16 |
| 17 2011-06-09 Julien Chaffraix <jchaffraix@webkit.org> |
| 18 |
| 19 Reviewed by Darin Adler. |
| 20 |
| 21 WebCore::WebKitCSSKeyframesRuleInternal::nameAttrSetter() - crash |
| 22 https://bugs.webkit.org/show_bug.cgi?id=62384 |
| 23 |
| 24 Test: fast/css/webkit-keyframes-crash.html |
| 25 |
| 26 * css/WebKitCSSKeyframesRule.cpp: |
| 27 (WebCore::WebKitCSSKeyframesRule::setName): stylesheet() is never garant
eed |
| 28 to return a non-null pointer. Thus null-check here like the rest of the
code. |
| 29 |
17 2011-06-08 John Bauman <jbauman@chromium.org> | 30 2011-06-08 John Bauman <jbauman@chromium.org> |
18 | 31 |
19 Reviewed by James Robinson. | 32 Reviewed by James Robinson. |
20 | 33 |
21 Only draw portions of tiles in contentRect | 34 Only draw portions of tiles in contentRect |
22 https://bugs.webkit.org/show_bug.cgi?id=62243 | 35 https://bugs.webkit.org/show_bug.cgi?id=62243 |
23 | 36 |
24 Old garbage data can remain in tiles, so make sure to draw only those | 37 Old garbage data can remain in tiles, so make sure to draw only those |
25 portions that are supposed to be drawn. | 38 portions that are supposed to be drawn. |
26 | 39 |
(...skipping 2645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2672 fast/viewport/viewport-45.html fails in GTK+/Qt | 2685 fast/viewport/viewport-45.html fails in GTK+/Qt |
2673 https://bugs.webkit.org/show_bug.cgi?id=47481 | 2686 https://bugs.webkit.org/show_bug.cgi?id=47481 |
2674 | 2687 |
2675 computeViewportAttributes does many math operations with float point ari
thmetic | 2688 computeViewportAttributes does many math operations with float point ari
thmetic |
2676 and in some cases there is loss of precision making tests have incorrect
values. | 2689 and in some cases there is loss of precision making tests have incorrect
values. |
2677 | 2690 |
2678 * dom/ViewportArguments.cpp: | 2691 * dom/ViewportArguments.cpp: |
2679 (WebCore::computeViewportAttributes): | 2692 (WebCore::computeViewportAttributes): |
2680 | 2693 |
2681 == Rolled over to ChangeLog-2011-06-04 == | 2694 == Rolled over to ChangeLog-2011-06-04 == |
OLD | NEW |