2022-09-01 16:30:26 +02:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2022, Andreas Kling <andreas@ladybird.org>
|
2022-09-01 16:30:26 +02:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2022-09-25 16:15:49 -06:00
|
|
|
#include <LibWeb/Bindings/Intrinsics.h>
|
2024-04-27 12:09:58 +12:00
|
|
|
#include <LibWeb/Bindings/NodeListPrototype.h>
|
2022-09-01 16:30:26 +02:00
|
|
|
#include <LibWeb/DOM/Node.h>
|
|
|
|
#include <LibWeb/DOM/NodeList.h>
|
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
|
2022-09-25 16:15:49 -06:00
|
|
|
NodeList::NodeList(JS::Realm& realm)
|
2024-01-09 16:05:03 -07:00
|
|
|
: PlatformObject(realm)
|
2022-09-01 16:30:26 +02:00
|
|
|
{
|
2024-01-09 16:05:03 -07:00
|
|
|
m_legacy_platform_object_flags = LegacyPlatformObjectFlags { .supports_indexed_properties = true };
|
2022-09-01 16:30:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
NodeList::~NodeList() = default;
|
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void NodeList::initialize(JS::Realm& realm)
|
2023-01-10 06:56:59 -05:00
|
|
|
{
|
2023-08-07 08:41:28 +02:00
|
|
|
Base::initialize(realm);
|
2024-03-16 13:13:08 +01:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(NodeList);
|
2023-01-10 06:56:59 -05:00
|
|
|
}
|
|
|
|
|
2024-07-25 18:15:51 +12:00
|
|
|
Optional<JS::Value> NodeList::item_value(size_t index) const
|
2022-09-01 16:30:26 +02:00
|
|
|
{
|
|
|
|
auto* node = item(index);
|
|
|
|
if (!node)
|
2024-07-25 18:15:51 +12:00
|
|
|
return {};
|
2022-09-01 16:30:26 +02:00
|
|
|
return const_cast<Node*>(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|