summaryrefslogtreecommitdiff
path: root/chromium/docs/initialize_blink_features.md
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-04 17:20:24 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-12 08:15:25 +0000
commit8fa0776f1f79e91fc9c0b9c1ba11a0a29c05196b (patch)
tree788d8d7549712682703a0310ca4a0f0860d4802b /chromium/docs/initialize_blink_features.md
parent606d85f2a5386472314d39923da28c70c60dc8e7 (diff)
downloadqtwebengine-chromium-8fa0776f1f79e91fc9c0b9c1ba11a0a29c05196b.tar.gz
BASELINE: Update Chromium to 98.0.4758.90
Change-Id: Ib7c41539bf8a8e0376bd639f27d68294de90f3c8 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/docs/initialize_blink_features.md')
-rw-r--r--chromium/docs/initialize_blink_features.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromium/docs/initialize_blink_features.md b/chromium/docs/initialize_blink_features.md
index bb6ab5f977a..219a6c5e9da 100644
--- a/chromium/docs/initialize_blink_features.md
+++ b/chromium/docs/initialize_blink_features.md
@@ -48,14 +48,14 @@ specified, if **not overridden** by field trial or command line switches
default status):
| |No status|`status:"test"`|`status:"experimental"`|`status:"stable"`|
-|-|---------|-----------------|--------------------------|-------------------|
+|---|---------|-----------------|--------------------------|-------------------|
|`FEATURE_DISABLED_BY_DEFAULT`|Disabled everywhere|Blink feature is enabled for tests, or everywhere with `--enable-blink-test-features` [1]|Blink feature is enabled for tests, or everywhere with `--enable-experimental-web-platform-features` [1]|Blink feature is enabled everywhere [2]|
|`FEATURE_ENABLED_BY_DEFAULT`|Enabled everywhere|Enabled everywhere|Enabled everywhere|Enabled everywhere|
\[1]: `base::FeatureList::IsEnabled(features::kNewFeatureX)` is still
false. These combinations are suitable for features there are fully implemented
at blink side. Otherwise normally the blink feature should not have a status so
-that the Chromium feature can fully controll the feature.
+that the Chromium feature can fully control the feature.
\[2]: This combination is counter-intuitive and should be avoided.