WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED CONFIGURATION CHANGED
258635
Weird rendering bug in rendering of a rem unit provided through a custom property when two animations present
https://bugs.webkit.org/show_bug.cgi?id=258635
Summary
Weird rendering bug in rendering of a rem unit provided through a custom prop...
Roman Komarov
Reported
2023-06-28 12:17:40 PDT
Created
attachment 466853
[details]
HTML page with the reproducible code (exported from CodePen) 1. Open
https://codepen.io/kizu/pen/qBQrowd?editors=1100
or the attached test.html file 2. See how `rem` unit that comes from a CSS custom property is rendered as 1px. This only happens in WebKit, I could not reproduce this in Chrome or Firefox. I encountered this when investingating how my examples in my new article (for example,
https://kizu.dev/position-driven-styles/#diagonal-gradient
) did degrade in browsers that did not support scroll-driven animations. In Safari some examples did completely lose their height, which led me to trying to reproduce this in a minimal setup. The minimal setup that I did end up with, as seen on the CodePen/test.html is such: 1. We need to animations: one that applies a custom property, another that applies an animatable property like background. 2. Those animations should have a specific combination of animation-fill-mode, and at least one of them should have animation-direction: reverse. 3. We need to access the value in `rem` through a custom property. With all these conditions in place, the `1rem` renders as `1px` for me.
Attachments
HTML page with the reproducible code (exported from CodePen)
(763 bytes, text/html)
2023-06-28 12:17 PDT
,
Roman Komarov
no flags
Details
rendering in safari, firefox, chrome
(365.05 KB, image/png)
2023-06-29 00:41 PDT
,
Karl Dubost
no flags
Details
View All
Add attachment
proposed patch, testcase, etc.
Karl Dubost
Comment 1
2023-06-29 00:41:24 PDT
Created
attachment 466862
[details]
rendering in safari, firefox, chrome Safari Technology Preview 173 19616.1.20.2 Firefox Nightly 116.0a1 11623.6.28 Google Chrome Canary 117.0.5859.0 5859.0
Karl Dubost
Comment 2
2023-06-29 00:55:30 PDT
``` @keyframes with-bg { from { background: pink; } } @keyframes with-variable { from { --foo: initial; } } .item { --height: 2rem; height: var(--height); animation: with-bg reverse forwards, with-variable forwards; } ``` 2em, 2ex are working but not 2rem
Radar WebKit Bug Importer
Comment 3
2023-07-05 12:18:16 PDT
<
rdar://problem/111802181
>
Ahmad Saleem
Comment 4
2025-09-05 10:33:59 PDT
I am not able to reproduce this bug using test case on Safari Technology Preview 227. @Roman - can you try it on STP? If it works, we can close this bug.
Roman Komarov
Comment 5
2025-09-05 10:41:17 PDT
Yep, I think this is fixed!
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug