[Webkit-unassigned] [Bug 249706] The :checked pseudoselector for slotted content fails to repaint

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Dec 29 14:42:47 PST 2022


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

zalan <zalan at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |zalan at apple.com

--- Comment #4 from zalan <zalan at apple.com> ---
interestingly it works fine when no customElements are involved.

<style>
input[type=checkbox] {
  appearance: none;
  width: 50px;
  height: 50px;
}
input[type=checkbox]:checked {
  background-color: green;
}
</style>
<script>
onload = () => {
  checkbox.focus();
  setTimeout(() => checkbox.click(), 0);
}
</script>
<input type=checkbox id=checkbox>

-- 
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/20221229/e1304fd7/attachment-0001.htm>


More information about the webkit-unassigned mailing list