aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/window.rs
diff options
context:
space:
mode:
authorSteve Melia <steve.j.melia@gmail.com>2016-06-17 22:59:05 +0100
committerSteve Melia <steve.j.melia@gmail.com>2016-07-04 22:24:13 +0100
commit421c354d44f93ff8f52affde1b595f4e14b9ed27 (patch)
tree2a6410c9ea876fdbaece5dcb80de83f1add62592 /components/script/dom/window.rs
parent80cb0cf8214fd52d2884724614c40cb278ee7575 (diff)
downloadservo-421c354d44f93ff8f52affde1b595f4e14b9ed27.tar.gz
servo-421c354d44f93ff8f52affde1b595f4e14b9ed27.zip
Issue 8719: Add basic support for :active selector
Diffstat (limited to 'components/script/dom/window.rs')
-rw-r--r--components/script/dom/window.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/window.rs b/components/script/dom/window.rs
index 6f012e9c31e..2fc1824cde0 100644
--- a/components/script/dom/window.rs
+++ b/components/script/dom/window.rs
@@ -129,6 +129,7 @@ pub enum ReflowReason {
FramedContentChanged,
IFrameLoadEvent,
MissingExplicitReflow,
+ ElementStateChanged,
}
pub type ScrollPoint = Point2D<Au>;
@@ -1753,6 +1754,7 @@ fn debug_reflow_events(id: PipelineId, goal: &ReflowGoal, query_type: &ReflowQue
ReflowReason::FramedContentChanged => "\tFramedContentChanged",
ReflowReason::IFrameLoadEvent => "\tIFrameLoadEvent",
ReflowReason::MissingExplicitReflow => "\tMissingExplicitReflow",
+ ReflowReason::ElementStateChanged => "\tElementStateChanged",
});
println!("{}", debug_msg);