Clean up some stale debug options for ServoDriver (#35281)

* Clean up some stale debug options for ServoDriver

Signed-off-by: Xiaocheng Hu <xiaochengh.work@gmail.com>

* Fix wpt manifest

Signed-off-by: Xiaocheng Hu <xiaochengh.work@gmail.com>

---------

Signed-off-by: Xiaocheng Hu <xiaochengh.work@gmail.com>
This commit is contained in:
Xiaocheng Hu 2025-02-04 20:59:06 +08:00 committed by GitHub
parent 6547d35fa5
commit 4716dca505
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 6 deletions

View file

@ -643,10 +643,6 @@ fn print_debug_options_usage(app: &str) {
); );
print_option("dump-style-stats", "Print style statistics each restyle."); print_option("dump-style-stats", "Print style statistics each restyle.");
print_option("gc-profile", "Log GC passes and their durations."); print_option("gc-profile", "Log GC passes and their durations.");
print_option(
"load-webfonts-synchronously",
"Load web fonts synchronously to avoid non-deterministic network-driven reflows",
);
print_option( print_option(
"parallel-display-list-building", "parallel-display-list-building",
"Build display lists in parallel.", "Build display lists in parallel.",

View file

@ -505437,7 +505437,7 @@
[] []
], ],
"servodriver.py": [ "servodriver.py": [
"4d86b6c4fa6611a13912f5c7ff867fbd2f6d84f1", "4b82230bddddb56e7938d635feea55ba19c3d903",
[] []
], ],
"webkit.py": [ "webkit.py": [

View file

@ -99,7 +99,7 @@ class ServoWebDriverBrowser(WebDriverBrowser):
# For some reason rustls does not like the certificate generated by the WPT tooling. # For some reason rustls does not like the certificate generated by the WPT tooling.
"--ignore-certificate-errors", "--ignore-certificate-errors",
"--window-size", "800x600", "--window-size", "800x600",
"-Z", "disable-text-aa,load-webfonts-synchronously,replace-surrogates", "-Z", "replace-surrogates",
"data:,", "data:,",
] ]