MutationRecord.cpp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
  3. * Copyright (c) 2022, Andreas Kling <kling@serenityos.org>
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause
  6. */
  7. #include <LibWeb/Bindings/Intrinsics.h>
  8. #include <LibWeb/DOM/MutationRecord.h>
  9. #include <LibWeb/DOM/Node.h>
  10. #include <LibWeb/DOM/NodeList.h>
  11. namespace Web::DOM {
  12. WebIDL::ExceptionOr<JS::NonnullGCPtr<MutationRecord>> MutationRecord::create(JS::Realm& realm, FlyString const& type, Node const& target, NodeList& added_nodes, NodeList& removed_nodes, Node* previous_sibling, Node* next_sibling, DeprecatedString const& attribute_name, DeprecatedString const& attribute_namespace, DeprecatedString const& old_value)
  13. {
  14. return MUST_OR_THROW_OOM(realm.heap().allocate<MutationRecord>(realm, realm, type, target, added_nodes, removed_nodes, previous_sibling, next_sibling, attribute_name, attribute_namespace, old_value));
  15. }
  16. MutationRecord::MutationRecord(JS::Realm& realm, FlyString const& type, Node const& target, NodeList& added_nodes, NodeList& removed_nodes, Node* previous_sibling, Node* next_sibling, DeprecatedString const& attribute_name, DeprecatedString const& attribute_namespace, DeprecatedString const& old_value)
  17. : PlatformObject(realm)
  18. , m_type(type)
  19. , m_target(JS::make_handle(target))
  20. , m_added_nodes(added_nodes)
  21. , m_removed_nodes(removed_nodes)
  22. , m_previous_sibling(JS::make_handle(previous_sibling))
  23. , m_next_sibling(JS::make_handle(next_sibling))
  24. , m_attribute_name(attribute_name)
  25. , m_attribute_namespace(attribute_namespace)
  26. , m_old_value(old_value)
  27. {
  28. }
  29. MutationRecord::~MutationRecord() = default;
  30. JS::ThrowCompletionOr<void> MutationRecord::initialize(JS::Realm& realm)
  31. {
  32. MUST_OR_THROW_OOM(Base::initialize(realm));
  33. set_prototype(&Bindings::ensure_web_prototype<Bindings::MutationRecordPrototype>(realm, "MutationRecord"));
  34. return {};
  35. }
  36. void MutationRecord::visit_edges(Cell::Visitor& visitor)
  37. {
  38. Base::visit_edges(visitor);
  39. visitor.visit(m_target.ptr());
  40. visitor.visit(m_added_nodes.ptr());
  41. visitor.visit(m_removed_nodes.ptr());
  42. visitor.visit(m_previous_sibling.ptr());
  43. visitor.visit(m_next_sibling.ptr());
  44. }
  45. }