diff options
author | Jansen Jan <farodin91@sek-server.de> | 2016-12-08 14:02:08 +0100 |
---|---|---|
committer | Jansen Jan <farodin91@sek-server.de> | 2016-12-09 11:45:50 +0100 |
commit | 55f0e56224be03dcbd17d5cba1c45f8b0c6bb390 (patch) | |
tree | fb8f23cab824af1e9731c3bc1acb754ee443c77b /components/script/script_runtime.rs | |
parent | c3c086e521b73d191d5de9239a6748691b0f96a3 (diff) | |
download | servo-55f0e56224be03dcbd17d5cba1c45f8b0c6bb390.tar.gz servo-55f0e56224be03dcbd17d5cba1c45f8b0c6bb390.zip |
Add support for fullscreen #10102
Diffstat (limited to 'components/script/script_runtime.rs')
-rw-r--r-- | components/script/script_runtime.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/script/script_runtime.rs b/components/script/script_runtime.rs index f65b145c4ec..00e7d3a198e 100644 --- a/components/script/script_runtime.rs +++ b/components/script/script_runtime.rs @@ -76,7 +76,9 @@ pub enum ScriptThreadEventCategory { UpdateReplacedElement, WebSocketEvent, WorkerEvent, - ServiceWorkerEvent + ServiceWorkerEvent, + EnterFullscreen, + ExitFullscreen, } /// An interface for receiving ScriptMsg values in an event loop. Used for synchronous DOM |