15:36 | <sideshowbarker> | If someone familiar with image lazy loading could take a minute to look at https://github.com/mdn/content/pull/28077 and comment, that would be great. That change is adding this note:
|
15:39 | <Eric Portis (he/him)> | sideshowbarker: This isn't an answer, but IIRC it's based on IntersectionObserver, I wonder if that's spec'd to fire when elements have no area |
15:39 | <sideshowbarker> | aha |
15:45 | <sideshowbarker> | from a quick read through https://w3c.github.io/IntersectionObserver/#run-the-update-intersection-observations-steps, I can’t tell |
15:50 | <Eric Portis (he/him)> | sideshowbarker: Because the lazyload spec uses the default threshold of zero, I think it is supposed to fire: https://wpt.fyi/results/intersection-observer/same-document-zero-size-target.html |
15:51 | <Eric Portis (he/him)> | I'll comment and if I'm wrong maybe somebody else will chime in (: |
15:51 | <sideshowbarker> | Cheers and thanks 👍 |
21:08 | <Ian Hickson> | does JS support 64 bit numbers yet? |
21:10 | <Ian Hickson> | i'm trying to parse a binary data format that uses quadwords as the main building block |
21:19 | <Richard Gibson> | Ian Hickson: are you looking for https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt64Array and/or https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigUint64Array ? |
21:21 | <Ian Hickson> | ideally i would like to be able to store a 64 bit int in a variable and do maths with it |
21:24 | <Richard Gibson> | yes, that is possible with BigInt |
21:58 | <Richard Gibson> | for example:
|