diff options
author | William Galliher <wpgallih@ncsu.edu> | 2015-03-23 06:47:15 -0400 |
---|---|---|
committer | Josh Matthews <josh@joshmatthews.net> | 2015-05-05 12:17:35 -0400 |
commit | 5afec62f0709bff8f77a14cc8e9ccbbc6f294fca (patch) | |
tree | 32af4e43c083e11ce3ee2c7671d3179e6cda7e7f /components/script/dom/event.rs | |
parent | 49aed6555dbc008c1a378c5cbb303f5467232b6b (diff) | |
download | servo-5afec62f0709bff8f77a14cc8e9ccbbc6f294fca.tar.gz servo-5afec62f0709bff8f77a14cc8e9ccbbc6f294fca.zip |
Implement incomplete opening, sending, and closing behaviour for WebSockets using rust-websocket.
Authors:
Shivaji Vidhale <savidhal@ncsu.edu>
William Galliher <wpgallih@ncsu.edu>
Allen Chen <achen4@ncsu.edu>
Rucha Jogaikar <rsjogaik@ncsu.edu>
Diffstat (limited to 'components/script/dom/event.rs')
-rw-r--r-- | components/script/dom/event.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/event.rs b/components/script/dom/event.rs index 4f0086310aa..012742a0d7b 100644 --- a/components/script/dom/event.rs +++ b/components/script/dom/event.rs @@ -39,7 +39,8 @@ pub enum EventTypeId { ProgressEvent, StorageEvent, UIEvent, - ErrorEvent + ErrorEvent, + CloseEvent } #[derive(PartialEq)] |