chromium/third_party/blink/renderer/core/style/anchor_specifier_value.h

// Copyright 2022 The Chromium Authors
// 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_STYLE_ANCHOR_SPECIFIER_VALUE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_ANCHOR_SPECIFIER_VALUE_H_

#include "base/types/pass_key.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/member.h"

namespace blink {

class ScopedCSSName;

// Represents an anchor specifier: default | auto | <dashed-ident>
// https://drafts4.csswg.org/css-anchor-1/#target-anchor-element
class CORE_EXPORT AnchorSpecifierValue
    : public GarbageCollected<AnchorSpecifierValue> {};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_STYLE_ANCHOR_SPECIFIER_VALUE_H_