chore(firefox): Don't upgrade HTTP requests to HTTPS (#34465)

This commit is contained in:
Henrik Skupin 2025-01-24 22:36:23 +01:00 committed by GitHub
parent b39c29d096
commit 9d91d7a1e9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -7,7 +7,7 @@ on:
- main
paths:
- .github/workflows/tests_bidi.yml
- packages/playwright-core/src/server/bidi/*
- packages/playwright-core/src/server/bidi/**
schedule:
# Run every day at midnight
- cron: '0 0 * * *'

View File

@ -139,6 +139,9 @@ function defaultProfilePreferences(
'dom.min_background_timeout_value_without_budget_throttling': 0,
'dom.timeout.enable_budget_timer_throttling': false,
// Disable HTTPS-First upgrades
'dom.security.https_first': false,
// Only load extensions from the application and user profile
// AddonManager.SCOPE_PROFILE + AddonManager.SCOPE_APPLICATION
'extensions.autoDisableScopes': 0,