aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/event.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/script/dom/event.rs')
-rw-r--r--src/components/script/dom/event.rs28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/components/script/dom/event.rs b/src/components/script/dom/event.rs
index 7df07149846..898e6a3700e 100644
--- a/src/components/script/dom/event.rs
+++ b/src/components/script/dom/event.rs
@@ -40,20 +40,20 @@ pub enum EventTypeId {
#[deriving(Encodable)]
pub struct Event {
- type_id: EventTypeId,
- reflector_: Reflector,
- current_target: Option<JS<EventTarget>>,
- target: Option<JS<EventTarget>>,
- type_: DOMString,
- phase: EventPhase,
- canceled: bool,
- stop_propagation: bool,
- stop_immediate: bool,
- cancelable: bool,
- bubbles: bool,
- trusted: bool,
- dispatching: bool,
- initialized: bool,
+ pub type_id: EventTypeId,
+ pub reflector_: Reflector,
+ pub current_target: Option<JS<EventTarget>>,
+ pub target: Option<JS<EventTarget>>,
+ pub type_: DOMString,
+ pub phase: EventPhase,
+ pub canceled: bool,
+ pub stop_propagation: bool,
+ pub stop_immediate: bool,
+ pub cancelable: bool,
+ pub bubbles: bool,
+ pub trusted: bool,
+ pub dispatching: bool,
+ pub initialized: bool,
}
impl Event {