Changeset 62513 in webkit
- Timestamp:
- Jul 5, 2010, 6:06:05 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r62512 r62513 1 2010-07-05 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Sam Weinig. 4 5 Reproducible crash with Optimize Legibility extension 6 https://bugs.webkit.org/show_bug.cgi?id=41585 7 8 * fast/css/text-rendering-priority-expected.txt: Added. 9 * fast/css/text-rendering-priority.html: Added. 10 1 11 2010-07-05 Alice Liu <alice.liu@apple.com> 2 12 -
trunk/WebCore/ChangeLog
r62510 r62513 1 2010-07-05 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Sam Weinig. 4 5 Reproducible crash with Optimize Legibility extension 6 https://bugs.webkit.org/show_bug.cgi?id=41585 7 8 Test: fast/css/text-rendering-priority.html 9 10 Moved the text-rendering CSS property to the “high priority” group, because applying it 11 during style selection invalidates the font. 12 13 * css/CSSPropertyNames.in: Moved text-rendering to the “high priority” section at the top. 14 * css/CSSStyleSelector.cpp: 15 (WebCore::CSSStyleSelector::applyDeclarations): Updated compile-time assertion. 16 1 17 2010-07-05 Dan Bernstein <mitz@apple.com> 2 18 -
trunk/WebCore/css/CSSPropertyNames.in
r61548 r62513 20 20 font-variant 21 21 font-weight 22 text-rendering 22 23 -webkit-text-size-adjust 23 24 zoom … … 135 136 text-overline-style 136 137 text-overline-width 137 text-rendering138 138 text-shadow 139 139 text-transform -
trunk/WebCore/css/CSSStyleSelector.cpp
r61975 r62513 2921 2921 if (applyFirst) { 2922 2922 COMPILE_ASSERT(firstCSSProperty == CSSPropertyColor, CSS_color_is_first_property); 2923 COMPILE_ASSERT(CSSPropertyZoom == CSSPropertyColor + 1 0, CSS_zoom_is_end_of_first_prop_range);2923 COMPILE_ASSERT(CSSPropertyZoom == CSSPropertyColor + 11, CSS_zoom_is_end_of_first_prop_range); 2924 2924 COMPILE_ASSERT(CSSPropertyLineHeight == CSSPropertyZoom + 1, CSS_line_height_is_after_zoom); 2925 2925
Note:
See TracChangeset
for help on using the changeset viewer.