LibWeb: Convert trivial attributes to FrozenArray

This commit is contained in:
Timothy Flynn 2025-04-25 10:07:43 -04:00 committed by Jelle Raaijmakers
commit ad34fdad48
Notes: github-actions[bot] 2025-04-25 14:44:52 +00:00
6 changed files with 10 additions and 17 deletions

View file

@ -13,8 +13,7 @@ interface IntersectionObserver {
readonly attribute (Element or Document)? root;
readonly attribute DOMString rootMargin;
readonly attribute DOMString scrollMargin;
// FIXME: `sequence<double>` should be `FrozenArray<double>`
readonly attribute sequence<double> thresholds;
readonly attribute FrozenArray<double> thresholds;
readonly attribute long delay;
readonly attribute boolean trackVisibility;
undefined observe(Element target);