[Webkit-unassigned] [Bug 226461] REGRESSION(r266674) Fixed positioned content not displayed

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jun 1 10:49:18 PDT 2021


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

--- Comment #6 from Oriol Brufau <obrufau at igalia.com> ---
This seems like https://bugs.chromium.org/p/chromium/issues/detail?id=1154570, i.e. caused by the fact that CSSOM is broken for logical properties:

  el.style.paddingTop = "1px";
  el.style.paddingBlockStart = "2px";
  el.style.cssText; // "padding-top: 1px; padding-block-start: 2px"
  el.style.paddingTop = "3px";
  el.style.cssText; // "padding-top: 3px; padding-block-start: 2px"
  getComputedStyle(el).paddingTop; // "2px" -- no effect!

-- 
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/20210601/4b2cefb3/attachment.htm>


More information about the webkit-unassigned mailing list