chromium/third_party/blink/renderer/core/dom/abstract_range.cc

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/dom/abstract_range.h"

#include "third_party/blink/renderer/core/dom/character_data.h"
#include "third_party/blink/renderer/core/dom/container_node.h"
#include "third_party/blink/renderer/core/dom/node.h"

namespace blink {

AbstractRange::AbstractRange() = default;
AbstractRange::~AbstractRange() = default;

bool AbstractRange::HasDifferentRootContainer(Node* start_root_container,
                                              Node* end_root_container) {}

unsigned AbstractRange::LengthOfContents(const Node* node) {}

}  // namespace blink