[Webkit-unassigned] [Bug 239989] New: [cssom] -webkit-text-combine:none serializes as empty string in computed style

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 2 16:20:23 PDT 2022


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

            Bug ID: 239989
           Summary: [cssom] -webkit-text-combine:none serializes as empty
                    string in computed style
           Product: WebKit
           Version: WebKit Nightly Build
          Hardware: Unspecified
                OS: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: CSS
          Assignee: webkit-unassigned at lists.webkit.org
          Reporter: obrufau at igalia.com

```js
var el = document.documentElement;

el.style.webkitTextCombine = "horizontal";
el.style.webkitTextCombine; // "horizontal"
getComputedStyle(el).webkitTextCombine; // "horizontal"

el.style.webkitTextCombine = "none";
el.style.webkitTextCombine; // "none"
getComputedStyle(el).webkitTextCombine; // ""
```

The last line should produce "none".

-- 
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/20220502/55a53913/attachment.htm>


More information about the webkit-unassigned mailing list