summaryrefslogtreecommitdiffstats
path: root/remote/cdp/test/browser/fetch/browser_disable.js
blob: 01c65fb8559ee5f369f8e6b20f167e45f1e6ac95 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

add_task(async function fetchDomainDisabled({ client }) {
  const { Fetch } = client;

  await Fetch.disable();
  ok("Disabling Fetch domain successful");
});