Commit 8699a948 authored by Dennis Schubert's avatar Dennis Schubert
Browse files

Bug 1750152 - Add a UA Override to Bing.com. r=twisniewski, a=RyanVM

parent 45a430cc
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
@@ -792,6 +792,27 @@ const AVAILABLE_UA_OVERRIDES = [
      },
    },
  },
  {
    /*
     * Bug 1750152 - Bing settings no longer persistent when changed.
     *
     * This issue is caused by Bing sending a `SameSite=None` attribute for
     * Chrome, but nothing in Firefox, which means we'll fall back to
     * `SameSite=Lax`, causing breakage.
     *
     * This is a temporary solution until Bing is fixed properly.
     */
    id: "bug1750152",
    platform: "desktop",
    domain: "www.bing.com",
    bug: "1750152",
    config: {
      matches: ["*://*.bing.com/*"],
      uaTransformer: () => {
        return UAHelpers.getDeviceAppropriateChromeUA("97.0.4692.71");
      },
    },
  },
];

module.exports = AVAILABLE_UA_OVERRIDES;
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  "manifest_version": 2,
  "name": "Web Compatibility Interventions",
  "description": "Urgent post-release fixes for web compatibility.",
  "version": "29.7.0",
  "version": "29.7.1",
  "applications": {
    "gecko": {
      "id": "webcompat@mozilla.org",