diff options
author | Kamal Umudlu <kamalumudlu17@gmail.com> | 2019-03-08 00:18:22 -0500 |
---|---|---|
committer | Kamal Umudlu <kamalumudlu17@gmail.com> | 2019-04-01 18:29:02 -0400 |
commit | a8995fbf1aab58eda9ecd1018d74734344daa5eb (patch) | |
tree | 4e830aa8d493445e178b242e95089fcdac64a2b3 /components/script/dom | |
parent | e27653ceae291f7506b6ca1cfe266033bd35ecdc (diff) | |
download | servo-a8995fbf1aab58eda9ecd1018d74734344daa5eb.tar.gz servo-a8995fbf1aab58eda9ecd1018d74734344daa5eb.zip |
Bug: #22853 - Make Window::set_fullscreen pass a non-None value when entering fullscreen is fixed and SetFullscreenState in exit_fullscreen changed to False
Added patch for bug:22853
Added implementation to exit from fullscreen mode by pressing ESC button
Added patch that supports to exit from fullscreen mode by pressing ESC
Deleted patch files
Added all requested changes on project
Removed the loop over self.pending_changes in switch_fullscreen_mode function
Bug #22853 - Make Window::set_fullscreen pass a non-None value when entering fullscreen is fixed and SetFullscreenState in exit_fullscreen changed to False
Added missing bracket in constellation.rs file to fix build issue
Bug: #22853 --> Make Window::set_fullscreen pass a non-None value when entering fullscreen is fixed and SetFullscreenState in exit_fullscreen changed to False
Diffstat (limited to 'components/script/dom')
-rw-r--r-- | components/script/dom/document.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index b59f9502d63..b3f08964502 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -3211,7 +3211,7 @@ impl Document { let window = self.window(); // Step 8 - let event = EmbedderMsg::SetFullscreenState(true); + let event = EmbedderMsg::SetFullscreenState(false); self.send_to_embedder(event); // Step 9 |