aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2024-08-10 00:56:53 -0400
committerGitHub <noreply@github.com>2024-08-10 04:56:53 +0000
commit1a58dba03ecaa5b67df47b3e7c7c592cadb6f145 (patch)
treead9940c66aeda1dc0275a76300ed22be292e2a58
parent2ebb71f08a9e2521a2fd277c2bc2b54b9e21dd8d (diff)
downloadservo-1a58dba03ecaa5b67df47b3e7c7c592cadb6f145.tar.gz
servo-1a58dba03ecaa5b67df47b3e7c7c592cadb6f145.zip
Use correct feature name for JS backtraces. (#32998)
Signed-off-by: Josh Matthews <josh@joshmatthews.net>
-rw-r--r--python/servo/command_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/command_base.py b/python/servo/command_base.py
index 4b5de868531..608f44d636d 100644
--- a/python/servo/command_base.py
+++ b/python/servo/command_base.py
@@ -1044,7 +1044,7 @@ class CommandBase(object):
if self.config["build"]["webgl-backtrace"]:
features.append("webgl-backtrace")
if self.config["build"]["dom-backtrace"]:
- features.append("dom-backtrace")
+ features.append("js_backtrace")
args += ["--features", " ".join(features)]
if with_debug_assertions or self.config["build"]["debug-assertions"]: