Re: [csswg-drafts] [css-fonts] Clarify how the computed font-size is determined for size keyword (#3906)

WebKit [has](https://trac.webkit.org/browser/webkit/trunk/Source/WebCore/page/Settings.yaml#L71):

```yaml
defaultFontSize:
  type: int
  initial: 16
  onChange: setNeedsRecalcStyleInAllFrames
defaultFixedFontSize:
  type: int
  initial: 13
  onChange: setNeedsRecalcStyleInAllFrames
```

and [also](https://trac.webkit.org/browser/webkit/trunk/Source/WebCore/platform/graphics/FontCascadeDescription.h#L75):

```C++
bool useFixedDefaultSize() const { return familyCount() == 1 && firstFamily() == monospaceFamily; }
```

-- 
GitHub Notification of comment by litherum
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/3906#issuecomment-491154815 using your GitHub account

Received on Friday, 10 May 2019 04:50:35 UTC