[Webkit-unassigned] [Bug 281164] italic style is not applying to `abbr`
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Nov 7 00:36:45 PST 2024
https://bugs.webkit.org/show_bug.cgi?id=281164
--- Comment #7 from Karl Dubost <karlcow at apple.com> ---
but even more surprising.
abbr is not defined in the remote stylesheet.
and there are only two mentions of font-style.
@font-face {
font-family: Fira Sans;
font-style: oblique;
font-weight: 400;
src: local("FiraSans-SemiBoldItalic"),
url(/media/fonts/FiraSans-SemiBoldItalic.woff2);
}
@font-face {
font-display: swap;
font-family: Inter;
font-stretch: 75% 100%;
font-style: oblique 0deg 20deg;
font-weight: 1 999;
src: url(../../media/fonts/Inter.var.woff2)
format("woff2 supports variations"),
url(../../media/fonts/Inter.var.woff2) format("woff2-variations");
}
ha the style which is modifying the style of the CSS abbr is
```
body {
font: var(--type-body-l);
}
```
which is itself defined as
:root {
--font-fallback: BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-sans;
--font-body: Inter, var(--font-fallback);
--type-body-l: 400 1rem/1.1876 var(--font-body);
…
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20241107/29aced73/attachment.htm>
More information about the webkit-unassigned
mailing list