RESOLVED DUPLICATE of bug 226461 218090
[css-logical] Fix getComputedStyle for logical properties
https://bugs.webkit.org/show_bug.cgi?id=218090
Summary [css-logical] Fix getComputedStyle for logical properties
Simon Fraser (smfr)
Reported 2020-10-22 10:27:02 PDT
- Fix CSSOM problems like: document.documentElement.style.marginLeft = "1px"; getComputedStyle(document.documentElement).marginLeft; // "1px", good document.documentElement.style.marginInlineStart = "2px"; getComputedStyle(document.documentElement).marginLeft; // "2px", good document.documentElement.style.marginLeft = "3px"; getComputedStyle(document.documentElement).marginLeft; // "2px", bad, should be "3px"
Attachments
Radar WebKit Bug Importer
Comment 1 2020-10-22 10:27:21 PDT
Oriol Brufau
Comment 2 2020-10-22 10:32:02 PDT
Note the underlying problem is not in getComputedStyle, document.documentElement.style.marginLeft = "1px"; document.documentElement.style.cssText; // "margin-left: 1px;" document.documentElement.style.marginInlineStart = "2px"; document.documentElement.style.cssText; // "margin-left: 1px; margin-inline-start: 2px;"​ document.documentElement.style.marginLeft = "3px"; document.documentElement.style.cssText; // "margin-left: 3px; margin-inline-start: 2px;" the last one should become "margin-inline-start: 2px; margin-left: 3px;" so that margin-left takes precedence. Chromium has the same problem, Firefox does it right.
Oriol Brufau
Comment 3 2023-05-14 09:05:40 PDT
Fixed in bug 226461. *** This bug has been marked as a duplicate of bug 226461 ***
Note You need to log in before you can comment on or make changes to this bug.