Images 💾

Last commit ⭐

commit 5949e3c3e8580e0341f2adefbc483ada7fb83186
Author:     Andrew Kaster <akaster@serenityos.org>
AuthorDate: Tue Sep 19 16:40:42 2023 -0600
Commit:     Andrew Kaster <akaster@serenityos.org>
CommitDate: Fri Sep 22 19:55:59 2023 -0600

    LibWeb: Implement named property access AOs on Window
    
    These allow accessing embeds, forms, images and objects with a given
    name attribute, and any element with a given id attribute, as top level
    properties on the global object.
    
    It also allows accessing NavigableContainers by target name as top level
    properties on the global object.
    
    The current implementation feels very expensive. It's likely that
    these values will need smarter caching in the future.