blob: b75f2b4e282f401705b3a78457182ac759f4a0b6 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_INVISIBLE_DOM_INVISIBLE_DOM_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_INVISIBLE_DOM_INVISIBLE_DOM_H_
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/wtf/allocator.h"
namespace blink {
class Node;
class Element;
class CORE_EXPORT InvisibleDOM {
STATIC_ONLY(InvisibleDOM);
public:
static bool IsInsideInvisibleSubtree(const Node& node);
// Highest inclusive ancestor that has the invisible attribute.
static Element* InvisibleRoot(const Node&);
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_CORE_INVISIBLE_DOM_INVISIBLE_DOM_H_