Daniel Holbert
Daniel Holbert
FWIW the UTF codepoint that we're currently using here is this one: https://codepoints.net/U+2190?lang=en https://www.fileformat.info/info/unicode/char/2190/index.htm
You're right - it looks like the arrow is from Liberation Sans. https://www.mozilla.org/cs/bogus-not-a-real-page/ renders with a different, bigger arrow in Firefox and Chrome, which looks vertically centered to me. https://www.mozilla.org/ar/bogus-not-a-real-page/...
If I add `font-family: sans-serif;` to the `.back-button::before` rule, then we pick up one that looks good: ``` .back-button::before { content: "← "; font-family: sans-serif; ``` Screenshot:  That lets...
I filed an issue in the Liberation Sans repo ( https://github.com/liberationfonts/liberation-fonts/issues/71 ) to see if they might want to adjust their version of this glyph to make it more centered....
> From @dholbert: > > > FWIW there is a scrollByPages API in Firefox, non-standard: https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollByPages Indeed; I'm pretty sure this is how we implement the `Space/PageDown` and `PageUp` scrolling...
@sv-calin Is this still reproducible? It looks like we're entirely failing to render certain parts of the page (in particular the gray bold link text at the top-right next to...
Given the issues with painting certain text on specific Android hardware, this seems possibly-similar to [bug 1884791](https://bugzilla.mozilla.org/show_bug.cgi?id=1884791), but it's not quite the same, based on the timeline/versions-affected. (This WebCompat bug-report...
(I'm also not clear on what the issue that the original reporter was seeing here, and whether it's the same as what @sv-calin saw. [The original reporter's screenshot](https://camo.githubusercontent.com/c9f831df838840ef464ff59d879934cf1605d336011c1ed6241c8a385d2d2a69/68747470733a2f2f776562636f6d7061742e636f6d2f75706c6f6164732f323032342f342f39623334383334622d666166322d343732312d396230642d6539303239383339626264312e6a706567) seems to...
> I agree it's not clear what the original screenshot was showing. I wonder if perhaps when submitting a report we programmatically take a screenshot within firefox? If so, that...
Chrome's disregarding the `z-index` here, and this behavior-difference is tracked in https://bugzilla.mozilla.org/show_bug.cgi?id=1573990. Specifically, this element... ```html ``` ...has this styling inside of a media query: ```css @media(max-width:767px) { [...] .table-layout.content-layout...