diff options
Diffstat (limited to 'components/config/prefs.rs')
-rw-r--r-- | components/config/prefs.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/components/config/prefs.rs b/components/config/prefs.rs index 98c4076ed7d..9b693d82305 100644 --- a/components/config/prefs.rs +++ b/components/config/prefs.rs @@ -209,12 +209,6 @@ pub struct Preferences { pub network_http_cache_disabled: bool, pub network_local_directory_listing_enabled: bool, pub network_mime_sniff: bool, - /// Ignore `std::io::Error` with `ErrorKind::UnexpectedEof` received when a TLS connection - /// is closed without a close_notify. - /// - /// Used for tests because WPT server doesn't properly close the TLS connection. - // TODO: remove this when WPT server is updated to use a proper TLS implementation. - pub network_tls_ignore_unexpected_eof: bool, pub session_history_max_length: i64, /// The background color of shell's viewport. This will be used by OpenGL's `glClearColor`. pub shell_background_color_rgba: [f64; 4], @@ -378,7 +372,6 @@ impl Preferences { network_http_cache_disabled: false, network_local_directory_listing_enabled: false, network_mime_sniff: false, - network_tls_ignore_unexpected_eof: false, session_history_max_length: 20, shell_background_color_rgba: [1.0, 1.0, 1.0, 1.0], threadpools_async_runtime_workers_max: 6, |