chromium/third_party/blink/renderer/core/css/css_scope_rule.cc

// 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.

#include "third_party/blink/renderer/core/css/css_scope_rule.h"

#include "third_party/blink/renderer/core/css/css_markup.h"
#include "third_party/blink/renderer/core/css/css_style_rule.h"
#include "third_party/blink/renderer/core/css/css_style_sheet.h"
#include "third_party/blink/renderer/core/css/style_rule.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"

namespace blink {

CSSScopeRule::CSSScopeRule(StyleRuleScope* scope_rule, CSSStyleSheet* parent)
    :{}

CSSScopeRule::~CSSScopeRule() = default;

String CSSScopeRule::PreludeText() const {}

String CSSScopeRule::cssText() const {}

String CSSScopeRule::start() const {}

String CSSScopeRule::end() const {}

void CSSScopeRule::SetPreludeText(const ExecutionContext* execution_context,
                                  String value) {}

StyleRuleScope& CSSScopeRule::GetStyleRuleScope() {}

const StyleRuleScope& CSSScopeRule::GetStyleRuleScope() const {}

}  // namespace blink