aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout
diff options
context:
space:
mode:
authorBobby Holley <bobbyholley@gmail.com>2016-06-24 15:01:37 -0700
committerBobby Holley <bobbyholley@gmail.com>2016-07-05 18:03:40 -0700
commit1d8d1cb9d90e163cfc10328ceed0a2347279eb78 (patch)
tree7010c14ee8b99dd39e641065dc0c911b97bb1ec2 /components/layout
parent364c8e297607f131468c4def668c7ba9933984e5 (diff)
downloadservo-1d8d1cb9d90e163cfc10328ceed0a2347279eb78.tar.gz
servo-1d8d1cb9d90e163cfc10328ceed0a2347279eb78.zip
Upgrade rust-selectors.
Diffstat (limited to 'components/layout')
-rw-r--r--components/layout/Cargo.toml2
-rw-r--r--components/layout/traversal.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/Cargo.toml b/components/layout/Cargo.toml
index 188b39e9207..05f9fcda82c 100644
--- a/components/layout/Cargo.toml
+++ b/components/layout/Cargo.toml
@@ -31,7 +31,7 @@ range = {path = "../range"}
rustc-serialize = "0.3"
script_layout_interface = {path = "../script_layout_interface"}
script_traits = {path = "../script_traits"}
-selectors = {version = "0.6", features = ["heap_size"]}
+selectors = {version = "0.7", features = ["heap_size"]}
serde_macros = "0.7.11"
smallvec = "0.1"
string_cache = {version = "0.2.20", features = ["heap_size"]}
diff --git a/components/layout/traversal.rs b/components/layout/traversal.rs
index 5db766f68b5..581fee5e03d 100644
--- a/components/layout/traversal.rs
+++ b/components/layout/traversal.rs
@@ -28,7 +28,7 @@ pub struct RecalcStyleAndConstructFlows<'lc> {
impl<'lc, N> DomTraversalContext<N> for RecalcStyleAndConstructFlows<'lc>
where N: LayoutNode + TNode<ConcreteComputedValues=ServoComputedValues>,
- N::ConcreteElement: ::selectors::Element<Impl=ServoSelectorImpl>
+ N::ConcreteElement: ::selectors::Element<Impl=ServoSelectorImpl, AttrString=String>
{
type SharedContext = SharedLayoutContext;