mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Hide servo internal shadow roots from the inspector by default (#35958)
Signed-off-by: Simon Wülker <simon.wuelker@arcor.de>
This commit is contained in:
parent
4a9967725f
commit
e627ac5cfd
5 changed files with 27 additions and 4 deletions
|
@ -146,6 +146,8 @@ pub struct Preferences {
|
|||
/// Whether or not subpixel antialiasing is enabled for text rendering.
|
||||
pub gfx_subpixel_text_antialiasing_enabled: bool,
|
||||
pub gfx_texture_swizzling_enabled: bool,
|
||||
/// Whether or not the DOM inspector should show shadow roots of user-agent shadow trees
|
||||
pub inspector_show_servo_internal_shadow_roots: bool,
|
||||
pub js_asmjs_enabled: bool,
|
||||
pub js_asyncstack: bool,
|
||||
pub js_baseline_interpreter_enabled: bool,
|
||||
|
@ -312,6 +314,7 @@ impl Preferences {
|
|||
gfx_text_antialiasing_enabled: true,
|
||||
gfx_subpixel_text_antialiasing_enabled: true,
|
||||
gfx_texture_swizzling_enabled: true,
|
||||
inspector_show_servo_internal_shadow_roots: false,
|
||||
js_asmjs_enabled: true,
|
||||
js_asyncstack: false,
|
||||
js_baseline_interpreter_enabled: true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue