LibWeb: Ignore font-size: calc(...) for now

This doesn't work correctly in the new world where fonts are resolved
during the CSS cascade. Let's patch it out with a FIXME and get back to
it once everything has fallen into place.
This commit is contained in:
Andreas Kling 2021-09-24 15:47:42 +02:00
commit 71f371f6b1
Notes: sideshowbarker 2024-07-18 03:28:39 +09:00

View file

@ -735,9 +735,12 @@ void StyleComputer::compute_font(StyleProperties& style, DOM::Element const* ele
maybe_length = length;
}
if (maybe_length.has_value()) {
auto calculated_size = maybe_length.value().to_px(viewport_rect, font_metrics, root_font_size);
if (calculated_size != 0)
size = calculated_size;
// FIXME: Support font-size: calc(...)
if (!maybe_length->is_calculated()) {
auto px = maybe_length.value().to_px(viewport_rect, font_metrics, root_font_size);
if (px != 0)
size = px;
}
}
}