#include "third_party/blink/renderer/core/html/html_map_element.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/element_traversal.h"
#include "third_party/blink/renderer/core/dom/node_lists_node_data.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/core/html/html_area_element.h"
#include "third_party/blink/renderer/core/html/html_collection.h"
#include "third_party/blink/renderer/core/html/html_document.h"
#include "third_party/blink/renderer/core/html/html_image_element.h"
#include "third_party/blink/renderer/core/html_names.h"
#include "third_party/blink/renderer/core/layout/hit_test_result.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
namespace blink {
HTMLMapElement::HTMLMapElement(Document& document)
: … { … }
HTMLMapElement::~HTMLMapElement() = default;
HTMLAreaElement* HTMLMapElement::AreaForPoint(
const PhysicalOffset& location,
const LayoutObject* container_object) { … }
HTMLImageElement* HTMLMapElement::ImageElement() { … }
void HTMLMapElement::ParseAttribute(const AttributeModificationParams& params) { … }
HTMLCollection* HTMLMapElement::areas() { … }
Node::InsertionNotificationRequest HTMLMapElement::InsertedInto(
ContainerNode& insertion_point) { … }
void HTMLMapElement::RemovedFrom(ContainerNode& insertion_point) { … }
}