https://commits.webkit.org/270425@main enabled element.checkVisibility() by default. After this the following evaluates to `true` while in Firefox and Chromium it evaluates to `false`: ```html <details> <summary>Open form</summary> <input id="two"/> </details> <script> alert(document.querySelector("#two").checkVisibility({ checkOpacity: false, // default checkVisibilityCSS: false, // default })) </script> ```
<rdar://problem/118648432>