chromium/third_party/blink/renderer/core/style/list_style_type_data.cc

// Copyright 2020 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/style/list_style_type_data.h"

#include "third_party/blink/renderer/core/css/counter_style.h"
#include "third_party/blink/renderer/core/css/css_value_id_mappings.h"
#include "third_party/blink/renderer/core/css/style_engine.h"
#include "third_party/blink/renderer/core/dom/document.h"
#include "third_party/blink/renderer/core/dom/tree_scope.h"
#include "third_party/blink/renderer/platform/wtf/hash_map.h"
#include "third_party/blink/renderer/platform/wtf/std_lib_extras.h"

namespace blink {

void ListStyleTypeData::Trace(Visitor* visitor) const {}

// static
ListStyleTypeData* ListStyleTypeData::CreateString(const AtomicString& value) {}

// static
ListStyleTypeData* ListStyleTypeData::CreateCounterStyle(
    const AtomicString& name,
    const TreeScope* tree_scope) {}

bool ListStyleTypeData::IsCounterStyleReferenceValid(Document& document) const {}

const CounterStyle& ListStyleTypeData::GetCounterStyle(
    Document& document) const {}

}  // namespace blink