mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Rename selector_impl.rs to selector_parser.rs
This makes it consistent with an upcoming update of the selectors crate.
This commit is contained in:
parent
08066800cd
commit
b203ab2419
36 changed files with 47 additions and 47 deletions
|
@ -52,7 +52,7 @@ use std::sync::atomic::AtomicIsize;
|
|||
use style::atomic_refcell::AtomicRefCell;
|
||||
use style::data::ElementData;
|
||||
use style::dom::TRestyleDamage;
|
||||
use style::selector_impl::RestyleDamage;
|
||||
use style::selector_parser::RestyleDamage;
|
||||
|
||||
pub struct PartialPersistentLayoutData {
|
||||
/// Data that the style system associates with a node. When the
|
||||
|
|
|
@ -19,7 +19,7 @@ use servo_url::ServoUrl;
|
|||
use std::sync::Arc;
|
||||
use std::sync::mpsc::{Receiver, Sender};
|
||||
use style::context::ReflowGoal;
|
||||
use style::selector_impl::PseudoElement;
|
||||
use style::selector_parser::PseudoElement;
|
||||
use style::stylesheets::Stylesheet;
|
||||
|
||||
/// Asynchronous messages that script can send to layout.
|
||||
|
|
|
@ -22,7 +22,7 @@ use style::data::ElementData;
|
|||
use style::dom::{LayoutIterator, NodeInfo, PresentationalHintsSynthetizer, TNode};
|
||||
use style::dom::OpaqueNode;
|
||||
use style::properties::ServoComputedValues;
|
||||
use style::selector_impl::{PseudoElement, PseudoElementCascadeType, RestyleDamage, ServoSelectorImpl};
|
||||
use style::selector_parser::{PseudoElement, PseudoElementCascadeType, RestyleDamage, ServoSelectorImpl};
|
||||
|
||||
#[derive(Copy, PartialEq, Clone, Debug)]
|
||||
pub enum PseudoElementType<T> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue