mirror of
https://github.com/servo/servo.git
synced 2025-08-15 02:15:33 +01:00
Use Servo data to back @counter-style rule.
This commit is contained in:
parent
32cd0b4ea0
commit
80ab893e3a
12 changed files with 18158 additions and 18132 deletions
|
@ -2,23 +2,6 @@
|
|||
* 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/. */
|
||||
|
||||
// TODO(emilio): unify this, components/style/counter_style.rs, and
|
||||
// components/style/gecko/rules.rs
|
||||
#![allow(missing_docs)]
|
||||
|
||||
#[cfg(feature = "servo")]
|
||||
pub use counter_style::CounterStyleRuleData as CounterStyleRule;
|
||||
#[cfg(feature = "gecko")]
|
||||
pub use gecko::rules::CounterStyleRule;
|
||||
|
||||
impl CounterStyleRule {
|
||||
#[cfg(feature = "servo")]
|
||||
pub fn clone_conditionally_gecko_or_servo(&self) -> CounterStyleRule {
|
||||
self.clone()
|
||||
}
|
||||
|
||||
#[cfg(feature = "gecko")]
|
||||
pub fn clone_conditionally_gecko_or_servo(&self) -> CounterStyleRule {
|
||||
self.deep_clone_from_gecko()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -314,8 +314,7 @@ impl DeepCloneWithLock for CssRule {
|
|||
},
|
||||
CssRule::CounterStyle(ref arc) => {
|
||||
let rule = arc.read_with(guard);
|
||||
CssRule::CounterStyle(Arc::new(lock.wrap(
|
||||
rule.clone_conditionally_gecko_or_servo())))
|
||||
CssRule::CounterStyle(Arc::new(lock.wrap(rule.clone())))
|
||||
},
|
||||
CssRule::Viewport(ref arc) => {
|
||||
let rule = arc.read_with(guard);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue