diff options
author | Ngo Iok Ui (Wu Yu Wei) <yuweiwu@pm.me> | 2023-11-11 15:45:27 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-11 06:45:27 +0000 |
commit | 44d79269f48ddd7d0cbef1b933831066a2e19869 (patch) | |
tree | 79d0d92392c5d0e946f3d04cc01526cc09d0fba6 /components/servo | |
parent | d8e93fa4087efd1a72adbb3511405b127a8023d3 (diff) | |
download | servo-44d79269f48ddd7d0cbef1b933831066a2e19869.tar.gz servo-44d79269f48ddd7d0cbef1b933831066a2e19869.zip |
Fix servoshell can't respond when there's no minibrowser (#30598)
* Fix servoshell can't respond when there's no minibrowser
* Remove external_field and update documentation
* Update documentation
* Fix crash when handling ReadyToPresent if it's headless mode
* Fix some wpt tests got timedout
Diffstat (limited to 'components/servo')
-rw-r--r-- | components/servo/lib.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/components/servo/lib.rs b/components/servo/lib.rs index 1eb9a62306b..265fb63766a 100644 --- a/components/servo/lib.rs +++ b/components/servo/lib.rs @@ -761,10 +761,6 @@ where self.compositor.deinit(); } - pub fn set_external_present(&mut self, value: bool) { - self.compositor.set_external_present(value) - } - pub fn present(&mut self) { self.compositor.present(); } |