2017-04-26 11:55:36 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_CSSSupportsRule_h
|
|
|
|
#define mozilla_dom_CSSSupportsRule_h
|
|
|
|
|
|
|
|
#include "mozilla/css/GroupRule.h"
|
2018-06-05 16:17:08 +03:00
|
|
|
#include "mozilla/ServoBindingTypes.h"
|
2017-04-26 11:55:36 +03:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class CSSSupportsRule : public css::ConditionRule
|
|
|
|
{
|
|
|
|
public:
|
2018-06-05 16:17:08 +03:00
|
|
|
CSSSupportsRule(RefPtr<RawServoSupportsRule> aRawRule,
|
2018-06-29 05:56:09 +03:00
|
|
|
StyleSheet* aSheet,
|
|
|
|
css::Rule* aParentRule,
|
|
|
|
uint32_t aLine,
|
|
|
|
uint32_t aColumn);
|
2018-06-05 16:17:08 +03:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
void List(FILE* out = stdout, int32_t aIndent = 0) const final;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
RawServoSupportsRule* Raw() const { return mRawRule; }
|
|
|
|
|
2017-04-26 11:55:36 +03:00
|
|
|
// WebIDL interface
|
2018-06-26 00:20:54 +03:00
|
|
|
uint16_t Type() const override { return CSSRule_Binding::SUPPORTS_RULE; }
|
2018-06-05 16:17:08 +03:00
|
|
|
void GetCssText(nsAString& aCssText) const final;
|
|
|
|
void GetConditionText(nsAString& aConditionText) final;
|
|
|
|
void SetConditionText(const nsAString& aConditionText,
|
|
|
|
ErrorResult& aRv) final;
|
2017-04-26 11:55:36 +03:00
|
|
|
|
2018-06-05 16:17:08 +03:00
|
|
|
size_t SizeOfIncludingThis(mozilla::MallocSizeOf aMallocSizeOf)
|
|
|
|
const override;
|
2017-04-26 11:55:36 +03:00
|
|
|
JSObject* WrapObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
2018-06-05 16:17:08 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
~CSSSupportsRule() = default;
|
|
|
|
|
|
|
|
RefPtr<RawServoSupportsRule> mRawRule;
|
2017-04-26 11:55:36 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_CSSSupportsRule_h
|