chromium/third_party/blink/web_tests/external/wpt/html/webappapis/system-state-and-capabilities/the-navigator-object/historical.https.window.js

[
  "registerContentHandler",
  "isProtocolHandlerRegistered",
  "isContentHandlerRegistered",
  "unregisterContentHandler"
].forEach(method => {
  test(() => {
    assert_false(method in self.navigator);
  }, method + "() is removed");
});

test(() => {
  let called = false;
  self.navigator.registerProtocolHandler("web+test", "%s", { toString: () => called = true });
  assert_false(called);
}, "registerProtocolHandler has no third argument");