diff options
author | Oriol Brufau <obrufau@igalia.com> | 2025-04-04 08:33:58 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-04 15:33:58 +0000 |
commit | 7c89e24f344fcef5ab858ff752cdd22624b8d66b (patch) | |
tree | 898c5997bbd60b502ca0d70aff4fc4c0aa646ecd | |
parent | b4c1cdd3e72db2d0e975aa92c864afc144396792 (diff) | |
download | servo-7c89e24f344fcef5ab858ff752cdd22624b8d66b.tar.gz servo-7c89e24f344fcef5ab858ff752cdd22624b8d66b.zip |
Remove layout_writing_mode_enabled from experimental features (#36339)
Running tests with --enable-experimental-web-platform-features would
make so many of them fail asserts because of this feature.
Testing: No need to test since
`--enable-experimental-web-platform-features` isn't used by default
This is part of #36315
Signed-off-by: Oriol Brufau <obrufau@igalia.com>
-rw-r--r-- | ports/servoshell/prefs.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ports/servoshell/prefs.rs b/ports/servoshell/prefs.rs index eff5bf63e1b..0f80f324d24 100644 --- a/ports/servoshell/prefs.rs +++ b/ports/servoshell/prefs.rs @@ -564,7 +564,6 @@ pub(crate) fn parse_command_line_arguments(args: Vec<String>) -> ArgumentParsing "layout_columns_enabled", "layout_container_queries_enabled", "layout_grid_enabled", - "layout_writing_mode_enabled", ] .iter() .for_each(|pref| preferences.set_value(pref, PrefValue::Bool(true))); |