#include "third_party/blink/renderer/core/css/css_property_rule.h"
#include "third_party/blink/renderer/core/css/css_identifier_value.h"
#include "third_party/blink/renderer/core/css/css_markup.h"
#include "third_party/blink/renderer/core/css/css_property_value_set.h"
#include "third_party/blink/renderer/core/css/css_string_value.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/core/css/style_rule_css_style_declaration.h"
#include "third_party/blink/renderer/core/css/style_sheet_contents.h"
#include "third_party/blink/renderer/core/css_value_keywords.h"
#include "third_party/blink/renderer/platform/bindings/exception_state.h"
#include "third_party/blink/renderer/platform/wtf/text/string_builder.h"
namespace blink {
CSSPropertyRule::CSSPropertyRule(StyleRuleProperty* property_rule,
CSSStyleSheet* sheet)
: … { … }
CSSPropertyRule::~CSSPropertyRule() = default;
String CSSPropertyRule::cssText() const { … }
void CSSPropertyRule::Reattach(StyleRuleBase* rule) { … }
StyleRuleProperty* CSSPropertyRule::Property() const { … }
bool CSSPropertyRule::SetNameText(const ExecutionContext* execution_context,
const String& name_text) { … }
String CSSPropertyRule::name() const { … }
String CSSPropertyRule::syntax() const { … }
bool CSSPropertyRule::inherits() const { … }
String CSSPropertyRule::initialValue() const { … }
CSSStyleDeclaration* CSSPropertyRule::Style() const { … }
void CSSPropertyRule::Trace(Visitor* visitor) const { … }
}