Bug 1689342 - Remove focus-visible and preload from the experimental features section. r=preferences-reviewers,Gijs

These are enabled by default and shipped in 85 and 84 respectively.

Differential Revision: https://phabricator.services.mozilla.com/D103316
This commit is contained in:
Emilio Cobos Álvarez 2021-01-28 14:21:57 +00:00
parent cdd2c2e7a3
commit b1a1a57cd6
3 changed files with 0 additions and 41 deletions

View File

@ -116,13 +116,6 @@ let gExceptionsList = [
key: "tos",
type: "double-quote",
},
// This string contains HTML markup describing `<link rel="preload">` and therefore
// is meant to contain actual double quotes.
{
file: "features.ftl",
key: "experimental-features-web-api-link-preload-description",
type: "double-quote",
},
];
/**

View File

@ -28,26 +28,6 @@ type = "boolean"
bug-numbers = [1205133]
is-public = {default = false, nightly = true}
[web-api-link-preload]
title = "experimental-features-web-api-link-preload"
description = "experimental-features-web-api-link-preload-description"
description-links = {link = "https://developer.mozilla.org/docs/Web/HTML/Element/link", rel = "https://developer.mozilla.org/docs/Web/HTML/Element/link#attr-rel", readmore = "https://developer.mozilla.org/docs/Web/HTML/Preloading_content", bugzilla = "https://bugzilla.mozilla.org/show_bug.cgi?id=1583604"}
restart-required = false
preference = "network.preload"
type = "boolean"
bug-numbers = [1583604]
is-public = {default = false, nightly = true}
[css-focus-visible]
title = "experimental-features-css-focus-visible"
description = "experimental-features-css-focus-visible-description"
description-links = {bugzilla = "https://bugzilla.mozilla.org/show_bug.cgi?id=1617600"}
restart-required = false
preference = "layout.css.focus-visible.enabled"
type = "boolean"
bug-numbers = [1617600]
is-public = {default = false, nightly = true}
[web-api-beforeinput]
title = "experimental-features-web-api-beforeinput"
description = "experimental-features-web-api-beforeinput-description"

View File

@ -27,20 +27,6 @@ experimental-features-web-api-inputmode =
# "inputmode" and "contenteditable" are technical terms and shouldn't be translated.
experimental-features-web-api-inputmode-description = Our implementation of the <a data-l10n-name="mdn-inputmode">inputmode</a> global attribute has been updated as per <a data-l10n-name="whatwg">the WHATWG specification</a>, but we still need to make other changes too, like making it available on contenteditable content. See <a data-l10n-name="bugzilla">bug 1205133</a> for more details.
# The title of the experiment should be kept in English as it may be referenced
# by various online articles and is technical in nature.
experimental-features-web-api-link-preload =
.label = Web API: <link rel="preload">
# Do not translate "rel", "preload" or "link" here, as they are all HTML spec
# values that do not get translated.
experimental-features-web-api-link-preload-description = The <a data-l10n-name="rel">rel</a> attribute with value <code>"preload"</code> on a <a data-l10n-name="link">&lt;link&gt;</a> element is intended to help provide performance gains by letting you download resources earlier in the page lifecycle, ensuring that theyre available earlier and are less likely to block page rendering. Read <a data-l10n-name="readmore">“Preloading content with <code>rel="preload"</code>”</a> or see <a data-l10n-name="bugzilla">bug 1583604</a> for more details.
# The title of the experiment should be kept in English as it may be referenced
# by various online articles and is technical in nature.
experimental-features-css-focus-visible =
.label = CSS: Pseudo-class: :focus-visible
experimental-features-css-focus-visible-description = Allows focus styles to be applied to elements like buttons and form controls, only when they are focused using the keyboard (e.g. when tabbing between elements), and not when they are focused using a mouse or other pointing device. See <a data-l10n-name="bugzilla">bug 1617600</a> for more details.
# The title of the experiment should be kept in English as it may be referenced
# by various online articles and is technical in nature.
experimental-features-web-api-beforeinput =