chromium/third_party/blink/renderer/core/css/resolver/cascade_expansion.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/css/resolver/cascade_expansion.h"

#include "third_party/blink/renderer/core/css/resolver/match_result.h"
#include "third_party/blink/renderer/core/css/rule_set.h"

namespace blink {

namespace {

CascadeFilter AddValidPropertiesFilter(
    CascadeFilter filter,
    const MatchedProperties& matched_properties) {}

CascadeFilter AddLinkFilter(CascadeFilter filter,
                            const MatchedProperties& matched_properties) {}

}  // anonymous namespace

CORE_EXPORT CascadeFilter
CreateExpansionFilter(const MatchedProperties& matched_properties) {}

CORE_EXPORT bool IsInAllExpansion(CSSPropertyID id) {}

}  // namespace blink