bunnyquery 1.8.13 → 1.8.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bunnyquery.css CHANGED
@@ -650,6 +650,14 @@
650
650
  position: relative;
651
651
  overflow-y: auto;
652
652
  overflow-x: hidden;
653
+ /* Exactly ONE compensator. Blink and Gecko run their own scroll anchoring on
654
+ this scroller, and it fires at the very layout the JS anchor's absorb()
655
+ forces when it reads offsetHeight - so an image growing above the fold was
656
+ corrected by the browser and then paid for a second time in JS. Measured on
657
+ one background re-render: 6224px of jump with both live, 0 with this.
658
+ Deleting absorb() instead is not an option (15000px of drift on WebKit,
659
+ which has no native anchoring at all). See engine/scroll_anchor.ts. */
660
+ overflow-anchor: none;
653
661
  flex: 1;
654
662
  min-height: 0;
655
663
  padding: 0.25rem 1.25rem;