[Webkit-unassigned] [Bug 258635] Weird rendering bug in rendering of a rem unit provided through a custom property when two animations present

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jun 29 00:55:30 PDT 2023


https://bugs.webkit.org/show_bug.cgi?id=258635

--- Comment #2 from Karl Dubost <karlcow at apple.com> ---
```
@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

-- 
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/20230629/9e14803a/attachment.htm>


More information about the webkit-unassigned mailing list