From 8a46a4ee05de380f0f4bdcd035a4b3cde5e9df10 Mon Sep 17 00:00:00 2001 From: Mukilan Thiyagarajan Date: Thu, 8 Jun 2023 23:13:53 +0530 Subject: [PATCH] Use layout 2020 by default Signed-off-by: Mukilan Thiyagarajan --- python/servo/command_base.py | 2 +- servobuild.example | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/servo/command_base.py b/python/servo/command_base.py index 9ab6c3935f6..211691b6e62 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -252,7 +252,7 @@ class CommandBase(object): self.config["build"].setdefault("mode", "") self.config["build"].setdefault("debug-assertions", False) self.config["build"].setdefault("debug-mozjs", False) - self.config["build"].setdefault("layout-2020", False) + self.config["build"].setdefault("layout-2020", True) self.config["build"].setdefault("media-stack", "auto") self.config["build"].setdefault("ccache", "") self.config["build"].setdefault("rustflags", "") diff --git a/servobuild.example b/servobuild.example index 7fdef6607b5..076d9469ea8 100644 --- a/servobuild.example +++ b/servobuild.example @@ -44,7 +44,7 @@ webgl-backtrace = false dom-backtrace = false # Default to the “2020” implementation of CSS layout instead of the “2013” one. -layout-2020 = false +layout-2020 = true # Pick a media stack based on the target. Other values are "gstreamer" and "dummy" media-stack = "auto"