-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1882581: Implement
@scope
parsing. r=firefox-style-system-revie…
…wers,saschanaz,emilio Differential Revision: https://phabricator.services.mozilla.com/D203153
- Loading branch information
Showing
39 changed files
with
448 additions
and
208 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ | ||
/* 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/. | ||
* | ||
* The origin of this IDL file is | ||
* https://drafts.csswg.org/css-cascade-6/#the-cssscoperule-interface | ||
*/ | ||
|
||
[Exposed=Window, Pref="layout.css.at-scope.enabled"] | ||
interface CSSScopeRule : CSSGroupingRule { | ||
readonly attribute UTF8String? start; | ||
readonly attribute UTF8String? end; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* -*- 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/. */ | ||
|
||
#include "mozilla/dom/CSSScopeRule.h" | ||
#include "mozilla/dom/CSSScopeRuleBinding.h" | ||
#include "mozilla/ServoBindings.h" | ||
|
||
namespace mozilla::dom { | ||
|
||
CSSScopeRule::CSSScopeRule(RefPtr<StyleScopeRule> aRawRule, StyleSheet* aSheet, | ||
css::Rule* aParentRule, uint32_t aLine, | ||
uint32_t aColumn) | ||
: css::GroupRule(aSheet, aParentRule, aLine, aColumn), | ||
mRawRule(std::move(aRawRule)) {} | ||
|
||
NS_IMPL_ISUPPORTS_CYCLE_COLLECTION_INHERITED_0(CSSScopeRule, css::GroupRule) | ||
|
||
// QueryInterface implementation for SupportsRule | ||
|
||
#ifdef DEBUG | ||
void CSSScopeRule::List(FILE* out, int32_t aIndent) const { | ||
nsAutoCString str; | ||
for (int32_t i = 0; i < aIndent; i++) { | ||
str.AppendLiteral(" "); | ||
} | ||
Servo_ScopeRule_Debug(mRawRule, &str); | ||
fprintf_stderr(out, "%s\n", str.get()); | ||
} | ||
#endif | ||
|
||
StyleCssRuleType CSSScopeRule::Type() const { return StyleCssRuleType::Scope; } | ||
|
||
already_AddRefed<StyleLockedCssRules> CSSScopeRule::GetOrCreateRawRules() { | ||
return Servo_ScopeRule_GetRules(mRawRule).Consume(); | ||
} | ||
|
||
void CSSScopeRule::SetRawAfterClone(RefPtr<StyleScopeRule> aRaw) { | ||
mRawRule = std::move(aRaw); | ||
css::GroupRule::DidSetRawAfterClone(); | ||
} | ||
|
||
void CSSScopeRule::GetCssText(nsACString& aCssText) const { | ||
Servo_ScopeRule_GetCssText(mRawRule.get(), &aCssText); | ||
} | ||
|
||
void CSSScopeRule::GetStart(nsACString& aStart) const { | ||
Servo_ScopeRule_GetStart(mRawRule.get(), &aStart); | ||
} | ||
|
||
void CSSScopeRule::GetEnd(nsACString& aEnd) const { | ||
Servo_ScopeRule_GetEnd(mRawRule.get(), &aEnd); | ||
} | ||
|
||
size_t CSSScopeRule::SizeOfIncludingThis(MallocSizeOf aMallocSizeOf) const { | ||
return aMallocSizeOf(this); | ||
} | ||
|
||
JSObject* CSSScopeRule::WrapObject(JSContext* aCx, | ||
JS::Handle<JSObject*> aGivenProto) { | ||
return CSSScopeRule_Binding::Wrap(aCx, this, aGivenProto); | ||
} | ||
|
||
} // namespace mozilla::dom |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* -*- 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 CSSScopeRule_h___ | ||
#define CSSScopeRule_h___ | ||
|
||
#include "mozilla/css/GroupRule.h" | ||
#include "mozilla/ServoBindingTypes.h" | ||
|
||
namespace mozilla::dom { | ||
|
||
class CSSScopeRule final : public css::GroupRule { | ||
public: | ||
CSSScopeRule(RefPtr<StyleScopeRule> aRawRule, StyleSheet* aSheet, | ||
css::Rule* aParentRule, uint32_t aLine, uint32_t aColumn); | ||
|
||
NS_DECL_ISUPPORTS_INHERITED | ||
|
||
#ifdef DEBUG | ||
void List(FILE* out = stdout, int32_t aIndent = 0) const final; | ||
#endif | ||
|
||
StyleScopeRule* Raw() const { return mRawRule; } | ||
void SetRawAfterClone(RefPtr<StyleScopeRule>); | ||
|
||
already_AddRefed<StyleLockedCssRules> GetOrCreateRawRules() final; | ||
|
||
// WebIDL interface | ||
StyleCssRuleType Type() const final; | ||
void GetCssText(nsACString& aCssText) const final; | ||
|
||
void GetStart(nsACString& aStart) const; | ||
void GetEnd(nsACString& aEnd) const; | ||
|
||
size_t SizeOfIncludingThis(MallocSizeOf) const override; | ||
JSObject* WrapObject(JSContext*, JS::Handle<JSObject*>) override; | ||
|
||
private: | ||
~CSSScopeRule() = default; | ||
|
||
RefPtr<StyleScopeRule> mRawRule; | ||
}; | ||
|
||
} // namespace mozilla::dom | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.