[Webkit-unassigned] [Bug 118413] Percentage-based font-size is ignored below 56%

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jul 5 10:01:20 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=118413


Mihnea Ovidenie <mihnea at adobe.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mihnea at adobe.com




--- Comment #1 from Mihnea Ovidenie <mihnea at adobe.com>  2013-07-05 10:03:19 PST ---
There is a comment on StyleResolver::getComputedSizeFromSpecifiedSize that i think it applies in your case:
"
// We support two types of minimum font size. The first is a hard override that applies to
// all fonts. This is "minSize." The second type of minimum font size is a "smart minimum"
// that is applied only when the Web page can't know what size it really asked for, e.g.,
// when it uses logical sizes like "small" or expresses the font-size as a percentage of
// the user's default font setting.

// With the smart minimum, we never want to get smaller than the minimum font size to keep fonts readable.
// However we always allow the page to set an explicit pixel size that is smaller,
// since sites will mis-render otherwise (e.g., http://www.gamespot.com with a 9px minimum).
"
In WebPreferencesStore.h, the smart minimum value is defined:
macro(MinimumLogicalFontSize, minimumLogicalFontSize, UInt32, uint32_t, 9)

So, in your case, you cannot go below 9px for the font size and i do not think this is customizable.
56% just happens to reach the 9 limit for the default font size of 16 (9/16 = 0.56).

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list