mirror of
https://github.com/servo/servo
synced 2026-04-26 01:25:32 +02:00
Move `CSSGroupingRule` methods from `CanGc` to `&mut JSContext`. Testing: Just refactor. Fixes: Part of #42638 Signed-off-by: Jayanta Pradhan <pradhanjayanta91@gmail.com>
109 lines
3.9 KiB
Rust
109 lines
3.9 KiB
Rust
/* 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 https://mozilla.org/MPL/2.0/. */
|
|
|
|
use dom_struct::dom_struct;
|
|
use js::context::JSContext;
|
|
use servo_arc::Arc;
|
|
use style::shared_lock::{Locked, SharedRwLock, SharedRwLockReadGuard};
|
|
use style::stylesheets::{CssRuleType, CssRuleTypes, CssRules};
|
|
|
|
use super::cssconditionrule::CSSConditionRule;
|
|
use super::csslayerblockrule::CSSLayerBlockRule;
|
|
use super::cssrule::CSSRule;
|
|
use super::cssrulelist::{CSSRuleList, RulesSource};
|
|
use super::cssstylerule::CSSStyleRule;
|
|
use super::cssstylesheet::CSSStyleSheet;
|
|
use crate::dom::bindings::codegen::Bindings::CSSGroupingRuleBinding::CSSGroupingRuleMethods;
|
|
use crate::dom::bindings::error::{ErrorResult, Fallible};
|
|
use crate::dom::bindings::inheritance::Castable;
|
|
use crate::dom::bindings::reflector::DomGlobal;
|
|
use crate::dom::bindings::root::{DomRoot, MutNullableDom};
|
|
use crate::dom::bindings::str::DOMString;
|
|
use crate::script_runtime::CanGc;
|
|
|
|
#[dom_struct]
|
|
pub(crate) struct CSSGroupingRule {
|
|
css_rule: CSSRule,
|
|
rule_list: MutNullableDom<CSSRuleList>,
|
|
}
|
|
|
|
impl CSSGroupingRule {
|
|
pub(crate) fn new_inherited(parent_stylesheet: &CSSStyleSheet) -> CSSGroupingRule {
|
|
CSSGroupingRule {
|
|
css_rule: CSSRule::new_inherited(parent_stylesheet),
|
|
rule_list: MutNullableDom::new(None),
|
|
}
|
|
}
|
|
|
|
fn rulelist(&self, cx: &mut JSContext) -> DomRoot<CSSRuleList> {
|
|
let parent_stylesheet = self.upcast::<CSSRule>().parent_stylesheet();
|
|
self.rule_list.or_init(|| {
|
|
let rules = if let Some(rule) = self.downcast::<CSSConditionRule>() {
|
|
rule.clone_rules()
|
|
} else if let Some(rule) = self.downcast::<CSSLayerBlockRule>() {
|
|
rule.clone_rules()
|
|
} else if let Some(rule) = self.downcast::<CSSStyleRule>() {
|
|
rule.ensure_rules()
|
|
} else {
|
|
unreachable!()
|
|
};
|
|
CSSRuleList::new(
|
|
self.global().as_window(),
|
|
parent_stylesheet,
|
|
RulesSource::Rules(rules),
|
|
CanGc::from_cx(cx),
|
|
)
|
|
})
|
|
}
|
|
|
|
pub(crate) fn parent_stylesheet(&self) -> &CSSStyleSheet {
|
|
self.css_rule.parent_stylesheet()
|
|
}
|
|
|
|
pub(crate) fn shared_lock(&self) -> &SharedRwLock {
|
|
self.css_rule.shared_lock()
|
|
}
|
|
|
|
pub(crate) fn update_rules(
|
|
&self,
|
|
rules: &Arc<Locked<CssRules>>,
|
|
guard: &SharedRwLockReadGuard,
|
|
) {
|
|
if let Some(rulelist) = self.rule_list.get() {
|
|
rulelist.update_rules(RulesSource::Rules(rules.clone()), guard);
|
|
}
|
|
}
|
|
}
|
|
|
|
impl CSSGroupingRuleMethods<crate::DomTypeHolder> for CSSGroupingRule {
|
|
/// <https://drafts.csswg.org/cssom/#dom-cssgroupingrule-cssrules>
|
|
fn CssRules(&self, cx: &mut JSContext) -> DomRoot<CSSRuleList> {
|
|
// XXXManishearth check origin clean flag
|
|
self.rulelist(cx)
|
|
}
|
|
|
|
/// <https://drafts.csswg.org/cssom/#dom-cssgroupingrule-insertrule>
|
|
fn InsertRule(&self, cx: &mut JSContext, rule: DOMString, index: u32) -> Fallible<u32> {
|
|
// TODO: this should accumulate the rule types of all ancestors.
|
|
let rule_type = self.css_rule.as_specific().ty();
|
|
let containing_rule_types = CssRuleTypes::from(rule_type);
|
|
let parse_relative_rule_type = match rule_type {
|
|
CssRuleType::Style | CssRuleType::Scope => Some(rule_type),
|
|
_ => None,
|
|
};
|
|
self.rulelist(cx).insert_rule(
|
|
&rule,
|
|
index,
|
|
containing_rule_types,
|
|
parse_relative_rule_type,
|
|
CanGc::from_cx(cx),
|
|
)
|
|
}
|
|
|
|
/// <https://drafts.csswg.org/cssom/#dom-cssgroupingrule-deleterule>
|
|
fn DeleteRule(&self, cx: &mut JSContext, index: u32) -> ErrorResult {
|
|
self.rulelist(cx).remove_rule(index)
|
|
}
|
|
}
|