[Fonts] Serialize font-family as space-separated idents when possible [chromium/src : main]

1 view
Skip to first unread message

Gaurav Kumar (Gerrit)

unread,
Feb 27, 2026, 7:08:55 AM (12 days ago) Feb 27
to Sejal Anand, Dileep Maurya, Virali Purbey, Vinay Singh, Divyansh Mangal, Ragvesh Sharma, AyeAye, Chromium LUCI CQ, Menard, Alexis, chromium...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, headless...@chromium.org, blink-rev...@chromium.org, devtools-re...@chromium.org, mac-r...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, jmedle...@chromium.org, kinuko...@chromium.org
Attention needed from Dileep Maurya, Divyansh Mangal, Ragvesh Sharma, Sejal Anand, Vinay Singh and Virali Purbey

New activity on the change

Open in Gerrit

Related details

Attention is currently required from:
  • Dileep Maurya
  • Divyansh Mangal
  • Ragvesh Sharma
  • Sejal Anand
  • Vinay Singh
  • Virali Purbey
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Owners
  • requirement is not satisfiedCode-Review
  • requirement is not satisfiedReview-Enforcement
Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
Gerrit-MessageType: comment
Gerrit-Project: chromium/src
Gerrit-Branch: main
Gerrit-Change-Id: I3501846aecded342cc949cae84e3a4075e263484
Gerrit-Change-Number: 7610633
Gerrit-PatchSet: 9
Gerrit-Owner: Gaurav Kumar <gaur...@microsoft.com>
Gerrit-Reviewer: Dileep Maurya <dileep...@microsoft.com>
Gerrit-Reviewer: Divyansh Mangal <dma...@microsoft.com>
Gerrit-Reviewer: Gaurav Kumar <gaur...@microsoft.com>
Gerrit-Reviewer: Ragvesh Sharma <rags...@microsoft.com>
Gerrit-Reviewer: Sejal Anand <sejal...@microsoft.com>
Gerrit-Reviewer: Vinay Singh <vinay...@microsoft.com>
Gerrit-Reviewer: Virali Purbey <virali...@microsoft.com>
Gerrit-CC: Menard, Alexis <alexis...@intel.com>
Gerrit-Attention: Vinay Singh <vinay...@microsoft.com>
Gerrit-Attention: Ragvesh Sharma <rags...@microsoft.com>
Gerrit-Attention: Virali Purbey <virali...@microsoft.com>
Gerrit-Attention: Sejal Anand <sejal...@microsoft.com>
Gerrit-Attention: Dileep Maurya <dileep...@microsoft.com>
Gerrit-Attention: Divyansh Mangal <dma...@microsoft.com>
Gerrit-Comment-Date: Fri, 27 Feb 2026 12:08:23 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Divyansh Mangal (Gerrit)

unread,
Feb 27, 2026, 11:36:37 AM (12 days ago) Feb 27
to Gaurav Kumar, Sejal Anand, Dileep Maurya, Virali Purbey, Vinay Singh, Ragvesh Sharma, AyeAye, Chromium LUCI CQ, Menard, Alexis, chromium...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, headless...@chromium.org, blink-rev...@chromium.org, devtools-re...@chromium.org, mac-r...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, jmedle...@chromium.org, kinuko...@chromium.org
Attention needed from Dileep Maurya, Gaurav Kumar, Ragvesh Sharma, Sejal Anand, Vinay Singh and Virali Purbey

Divyansh Mangal added 5 comments

Commit Message
Line 9, Patchset 9 (Latest):Per the CSSWG resolution on w3c/csswg-drafts#5846, font-family
Divyansh Mangal . unresolved

nit: this `w3c/csswg-drafts#5846` by itself doesnt expand like crbug.com/<bug-id> so it seems not useful to have it here.

I would suggest doing this:

```
Per the CSSWG resolution on [1], font-family

..... rest of your description .....

[1] https://github.com/w3c/csswg-drafts/issues/5846#issuecomment-3885672626

```

Line 29, Patchset 9 (Latest):The root cause was that IsInvalidFontFamily() called
IsCSSTokenizerIdentifier(), which validates a single CSS ident token.
Multi-word names contain spaces, which fail the single-ident check,
causing all multi-word names to be quoted.

This CL adds IsCSSTokenizerIdentSequence() which validates a sequence of
one or more space-separated CSS idents. When the
CSSFontFamilySerialization flag is enabled, IsInvalidFontFamily() uses
this new function instead.
Divyansh Mangal . unresolved

nit: As per chromium guidelines, use (`) for functions names, to avoid confusion with normal jargon

File chrome/test/data/webui/css/text_defaults_test.ts
Line 14, Patchset 9 (Latest): // <if expr="is_linux">
'DejaVu Sans';
// </if>
// <if expr="is_macosx">
'system-ui';
// </if>
// <if expr="is_win">
'Segoe UI';
// </if>
// <if expr="is_chromeos">
'Roboto';
// </if>
Divyansh Mangal . unresolved

nit: formatting error? earlier it was aligned now it is not atleast

File third_party/blink/renderer/core/css/css_markup.cc
Line 78, Patchset 9 (Latest):// per the CSSWG resolution on w3c/csswg-drafts#5846.
Divyansh Mangal . unresolved

nit: same this w3c/csswg-drafts#5846 by itself doesnt expand like crbug.com/<bug-id> so better to have the link itself.

File third_party/blink/renderer/platform/runtime_enabled_features.json5
Line 1472, Patchset 9 (Latest): // per CSSWG resolution on w3c/csswg-drafts#5846.
Divyansh Mangal . unresolved

nit: same this w3c/csswg-drafts#5846 by itself doesnt expand like crbug.com/<bug-id> so better to have the link itself.

Open in Gerrit

Related details

Attention is currently required from:
  • Dileep Maurya
  • Gaurav Kumar
  • Ragvesh Sharma
  • Sejal Anand
  • Vinay Singh
  • Virali Purbey
    Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement is not satisfiedCode-Owners
      • requirement is not satisfiedCode-Review
      • requirement is not satisfiedNo-Unresolved-Comments
      • requirement is not satisfiedReview-Enforcement
      Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
      Gerrit-MessageType: comment
      Gerrit-Project: chromium/src
      Gerrit-Branch: main
      Gerrit-Change-Id: I3501846aecded342cc949cae84e3a4075e263484
      Gerrit-Change-Number: 7610633
      Gerrit-PatchSet: 9
      Gerrit-Owner: Gaurav Kumar <gaur...@microsoft.com>
      Gerrit-Reviewer: Dileep Maurya <dileep...@microsoft.com>
      Gerrit-Reviewer: Divyansh Mangal <dma...@microsoft.com>
      Gerrit-Reviewer: Gaurav Kumar <gaur...@microsoft.com>
      Gerrit-Reviewer: Ragvesh Sharma <rags...@microsoft.com>
      Gerrit-Reviewer: Sejal Anand <sejal...@microsoft.com>
      Gerrit-Reviewer: Vinay Singh <vinay...@microsoft.com>
      Gerrit-Reviewer: Virali Purbey <virali...@microsoft.com>
      Gerrit-CC: Menard, Alexis <alexis...@intel.com>
      Gerrit-Attention: Gaurav Kumar <gaur...@microsoft.com>
      Gerrit-Attention: Vinay Singh <vinay...@microsoft.com>
      Gerrit-Attention: Ragvesh Sharma <rags...@microsoft.com>
      Gerrit-Attention: Virali Purbey <virali...@microsoft.com>
      Gerrit-Attention: Sejal Anand <sejal...@microsoft.com>
      Gerrit-Attention: Dileep Maurya <dileep...@microsoft.com>
      Gerrit-Comment-Date: Fri, 27 Feb 2026 16:36:14 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Divyansh Mangal (Gerrit)

      unread,
      Feb 27, 2026, 11:38:20 AM (12 days ago) Feb 27
      to Gaurav Kumar, Sejal Anand, Dileep Maurya, Virali Purbey, Vinay Singh, Ragvesh Sharma, AyeAye, Chromium LUCI CQ, Menard, Alexis, chromium...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, headless...@chromium.org, blink-rev...@chromium.org, devtools-re...@chromium.org, mac-r...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, jmedle...@chromium.org, kinuko...@chromium.org
      Attention needed from Dileep Maurya, Gaurav Kumar, Ragvesh Sharma, Sejal Anand, Vinay Singh and Virali Purbey

      Divyansh Mangal added 1 comment

      Patchset-level comments
      File-level comment, Patchset 9 (Latest):
      Divyansh Mangal . resolved

      Also the resolution has a bug if: `if that's web compatible`, so I hope we are aware of the compatibility impact of this change, good that we have the feature flag though in case of any emergency.

      Gerrit-Comment-Date: Fri, 27 Feb 2026 16:37:49 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Divyansh Mangal (Gerrit)

      unread,
      Feb 27, 2026, 11:39:52 AM (12 days ago) Feb 27
      to Gaurav Kumar, Sejal Anand, Dileep Maurya, Virali Purbey, Vinay Singh, Ragvesh Sharma, AyeAye, Chromium LUCI CQ, Menard, Alexis, chromium...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, headless...@chromium.org, blink-rev...@chromium.org, devtools-re...@chromium.org, mac-r...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, jmedle...@chromium.org, kinuko...@chromium.org
      Attention needed from Dileep Maurya, Gaurav Kumar, Ragvesh Sharma, Sejal Anand, Vinay Singh and Virali Purbey

      Divyansh Mangal added 1 comment

      File third_party/blink/web_tests/external/wpt/css/css-fonts/parsing/font-computed.html
      Line 137, Patchset 9 (Latest): 'Non-Generic Example Family Name'
      Divyansh Mangal . unresolved

      This WPT currently passes for all browsers, `https://wpt.fyi/results/css/css-fonts/parsing/font-computed.html?label=master&label=experimental&aligned`

      will changing it cause other/certain browsers to fail?

      Gerrit-Comment-Date: Fri, 27 Feb 2026 16:39:22 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Gaurav Kumar (Gerrit)

      unread,
      Mar 1, 2026, 11:41:04 PM (9 days ago) Mar 1
      to Sejal Anand, Dileep Maurya, Virali Purbey, Vinay Singh, Divyansh Mangal, Ragvesh Sharma, AyeAye, Chromium LUCI CQ, Menard, Alexis, chromium...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, headless...@chromium.org, blink-rev...@chromium.org, devtools-re...@chromium.org, mac-r...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, jmedle...@chromium.org, kinuko...@chromium.org
      Attention needed from Dileep Maurya, Divyansh Mangal, Ragvesh Sharma, Sejal Anand, Vinay Singh and Virali Purbey

      Gaurav Kumar added 6 comments

      Commit Message
      Line 9, Patchset 9:Per the CSSWG resolution on w3c/csswg-drafts#5846, font-family
      Divyansh Mangal . resolved

      nit: this `w3c/csswg-drafts#5846` by itself doesnt expand like crbug.com/<bug-id> so it seems not useful to have it here.

      I would suggest doing this:

      ```
      Per the CSSWG resolution on [1], font-family

      ..... rest of your description .....

      [1] https://github.com/w3c/csswg-drafts/issues/5846#issuecomment-3885672626

      ```

      Gaurav Kumar

      Acknowledged

      Line 29, Patchset 9:The root cause was that IsInvalidFontFamily() called

      IsCSSTokenizerIdentifier(), which validates a single CSS ident token.
      Multi-word names contain spaces, which fail the single-ident check,
      causing all multi-word names to be quoted.

      This CL adds IsCSSTokenizerIdentSequence() which validates a sequence of
      one or more space-separated CSS idents. When the
      CSSFontFamilySerialization flag is enabled, IsInvalidFontFamily() uses
      this new function instead.
      Divyansh Mangal . resolved

      nit: As per chromium guidelines, use (`) for functions names, to avoid confusion with normal jargon

      Gaurav Kumar

      Acknowledged

      File chrome/test/data/webui/css/text_defaults_test.ts
      Line 14, Patchset 9: // <if expr="is_linux">

      'DejaVu Sans';
      // </if>
      // <if expr="is_macosx">
      'system-ui';
      // </if>
      // <if expr="is_win">
      'Segoe UI';
      // </if>
      // <if expr="is_chromeos">
      'Roboto';
      // </if>
      Divyansh Mangal . resolved

      nit: formatting error? earlier it was aligned now it is not atleast

      Gaurav Kumar

      Acknowledged

      File third_party/blink/renderer/core/css/css_markup.cc
      Line 78, Patchset 9:// per the CSSWG resolution on w3c/csswg-drafts#5846.
      Divyansh Mangal . resolved

      nit: same this w3c/csswg-drafts#5846 by itself doesnt expand like crbug.com/<bug-id> so better to have the link itself.

      Gaurav Kumar

      Thanks. Updated to have the link of CSSWG resolution link itself.

      File third_party/blink/renderer/platform/runtime_enabled_features.json5
      Line 1472, Patchset 9: // per CSSWG resolution on w3c/csswg-drafts#5846.
      Divyansh Mangal . resolved

      nit: same this w3c/csswg-drafts#5846 by itself doesnt expand like crbug.com/<bug-id> so better to have the link itself.

      Gaurav Kumar

      Thanks. Added link to CSSWG discussion itself.

      File third_party/blink/web_tests/external/wpt/css/css-fonts/parsing/font-computed.html
      Line 137, Patchset 9: 'Non-Generic Example Family Name'
      Divyansh Mangal . resolved

      This WPT currently passes for all browsers, `https://wpt.fyi/results/css/css-fonts/parsing/font-computed.html?label=master&label=experimental&aligned`

      will changing it cause other/certain browsers to fail?

      Gaurav Kumar

      Yes, it will fail as this is the new spec update. I have updated the blink to comply with the latest CSS spec.

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Dileep Maurya
      • Divyansh Mangal
      • Ragvesh Sharma
      • Sejal Anand
      • Vinay Singh
      • Virali Purbey
        Submit Requirements:
          • requirement satisfiedCode-Coverage
          • requirement is not satisfiedCode-Owners
          • requirement is not satisfiedCode-Review
          • requirement is not satisfiedReview-Enforcement
          Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
          Gerrit-MessageType: comment
          Gerrit-Project: chromium/src
          Gerrit-Branch: main
          Gerrit-Change-Id: I3501846aecded342cc949cae84e3a4075e263484
          Gerrit-Change-Number: 7610633
          Gerrit-PatchSet: 11
          Gerrit-Owner: Gaurav Kumar <gaur...@microsoft.com>
          Gerrit-Reviewer: Dileep Maurya <dileep...@microsoft.com>
          Gerrit-Reviewer: Divyansh Mangal <dma...@microsoft.com>
          Gerrit-Reviewer: Gaurav Kumar <gaur...@microsoft.com>
          Gerrit-Reviewer: Ragvesh Sharma <rags...@microsoft.com>
          Gerrit-Reviewer: Sejal Anand <sejal...@microsoft.com>
          Gerrit-Reviewer: Vinay Singh <vinay...@microsoft.com>
          Gerrit-Reviewer: Virali Purbey <virali...@microsoft.com>
          Gerrit-CC: Menard, Alexis <alexis...@intel.com>
          Gerrit-Attention: Vinay Singh <vinay...@microsoft.com>
          Gerrit-Attention: Ragvesh Sharma <rags...@microsoft.com>
          Gerrit-Attention: Virali Purbey <virali...@microsoft.com>
          Gerrit-Attention: Sejal Anand <sejal...@microsoft.com>
          Gerrit-Attention: Dileep Maurya <dileep...@microsoft.com>
          Gerrit-Attention: Divyansh Mangal <dma...@microsoft.com>
          Gerrit-Comment-Date: Mon, 02 Mar 2026 04:40:33 +0000
          Gerrit-HasComments: Yes
          Gerrit-Has-Labels: No
          Comment-In-Reply-To: Divyansh Mangal <dma...@microsoft.com>
          satisfied_requirement
          unsatisfied_requirement
          open
          diffy

          Dominik Röttsches (Gerrit)

          unread,
          Mar 4, 2026, 10:06:56 AM (7 days ago) Mar 4
          to Gaurav Kumar, Virali Purbey, Ragvesh Sharma, Vinay Singh, Sejal Anand, Dileep Maurya, Divyansh Mangal, AyeAye, Chromium LUCI CQ, Menard, Alexis, chromium...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, headless...@chromium.org, blink-rev...@chromium.org, devtools-re...@chromium.org, mac-r...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, jmedle...@chromium.org, kinuko...@chromium.org
          Attention needed from Dileep Maurya, Divyansh Mangal, Gaurav Kumar, Ragvesh Sharma, Sejal Anand, Vinay Singh and Virali Purbey

          Dominik Röttsches added 2 comments

          Patchset-level comments
          File-level comment, Patchset 11 (Latest):
          Dominik Röttsches . resolved

          This generally looks good to me - the CSS identifier check function needs a review from a CSS reviewer.

          How about the comment from jfkthame@ in
          https://github.com/w3c/csswg-drafts/issues/5846#issuecomment-3896536031
          What could such an improvement look like?

          File third_party/blink/renderer/core/css/properties/css_parsing_utils.cc
          Line 4103, Patchset 11 (Latest):bool IsInvalidFontFamily(const AtomicString& string) {
          Dominik Röttsches . unresolved

          Can we potentially adjust the name here and describe "Invalid" more clearly? Invalid in what sense?

          Open in Gerrit

          Related details

          Attention is currently required from:
          • Dileep Maurya
          • Divyansh Mangal
          • Gaurav Kumar
          • Ragvesh Sharma
          • Sejal Anand
          • Vinay Singh
          • Virali Purbey
            Submit Requirements:
              • requirement satisfiedCode-Coverage
              • requirement is not satisfiedCode-Owners
              • requirement is not satisfiedCode-Review
              • requirement is not satisfiedNo-Unresolved-Comments
              • requirement is not satisfiedReview-Enforcement
              Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
              Gerrit-MessageType: comment
              Gerrit-Project: chromium/src
              Gerrit-Branch: main
              Gerrit-Change-Id: I3501846aecded342cc949cae84e3a4075e263484
              Gerrit-Change-Number: 7610633
              Gerrit-PatchSet: 11
              Gerrit-Owner: Gaurav Kumar <gaur...@microsoft.com>
              Gerrit-Reviewer: Dileep Maurya <dileep...@microsoft.com>
              Gerrit-Reviewer: Divyansh Mangal <dma...@microsoft.com>
              Gerrit-Reviewer: Dominik Röttsches <dr...@chromium.org>
              Gerrit-Reviewer: Gaurav Kumar <gaur...@microsoft.com>
              Gerrit-Reviewer: Sejal Anand <sejal...@microsoft.com>
              Gerrit-CC: Menard, Alexis <alexis...@intel.com>
              Gerrit-CC: Ragvesh Sharma <rags...@microsoft.com>
              Gerrit-CC: Vinay Singh <vinay...@microsoft.com>
              Gerrit-CC: Virali Purbey <virali...@microsoft.com>
              Gerrit-Attention: Gaurav Kumar <gaur...@microsoft.com>
              Gerrit-Attention: Vinay Singh <vinay...@microsoft.com>
              Gerrit-Attention: Ragvesh Sharma <rags...@microsoft.com>
              Gerrit-Attention: Virali Purbey <virali...@microsoft.com>
              Gerrit-Attention: Sejal Anand <sejal...@microsoft.com>
              Gerrit-Attention: Dileep Maurya <dileep...@microsoft.com>
              Gerrit-Attention: Divyansh Mangal <dma...@microsoft.com>
              Gerrit-Comment-Date: Wed, 04 Mar 2026 15:06:43 +0000
              Gerrit-HasComments: Yes
              Gerrit-Has-Labels: No
              satisfied_requirement
              unsatisfied_requirement
              open
              diffy

              Gaurav Kumar (Gerrit)

              unread,
              2:00 AM (9 hours ago) 2:00 AM
              to Dominik Röttsches, Virali Purbey, Ragvesh Sharma, Vinay Singh, Sejal Anand, Dileep Maurya, Divyansh Mangal, AyeAye, Chromium LUCI CQ, Menard, Alexis, chromium...@chromium.org, chromium-a...@chromium.org, extension...@chromium.org, headless...@chromium.org, blink-rev...@chromium.org, devtools-re...@chromium.org, mac-r...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, jmedle...@chromium.org, kinuko...@chromium.org
              Attention needed from Dileep Maurya, Divyansh Mangal, Dominik Röttsches, Ragvesh Sharma, Sejal Anand, Vinay Singh and Virali Purbey

              Gaurav Kumar added 3 comments

              Patchset-level comments
              Dominik Röttsches . resolved

              This generally looks good to me - the CSS identifier check function needs a review from a CSS reviewer.

              How about the comment from jfkthame@ in
              https://github.com/w3c/csswg-drafts/issues/5846#issuecomment-3896536031
              What could such an improvement look like?

              Gaurav Kumar

              Regarding jfkthame's comment:
              the concern is about the imprecise spec wording ("contains non-alphanumeric ASCII"), which taken literally would quote single spaces and thus multi-word names like `Gill Sans`. However, our implementation already handles this correctly — `IsCSSTokenizerIdentSequence` validates the font family name against the precise grammar ident ( ' ' ident )*, which naturally allows single-space-separated valid idents (so Gill Sans serializes unquoted) while rejecting leading/trailing/consecutive whitespace (so A B serializes quoted).

              The refinement jfkthame is asking for is to the spec prose, not to implementations. Tests for all these cases are in `css_markup_test.cc` (IdentSequenceRejectsConsecutiveSpaces, IdentSequenceRejectsLeadingSpace, IdentSequenceRejectsTrailingSpace, MultiWordUnquoted, DoubleSpaceQuoted).

              File-level comment, Patchset 12 (Latest):
              Gaurav Kumar . resolved

              Apologies for late reply, I was OOF for past few days.

              File third_party/blink/renderer/core/css/properties/css_parsing_utils.cc
              Line 4103, Patchset 11:bool IsInvalidFontFamily(const AtomicString& string) {
              Dominik Röttsches . resolved

              Can we potentially adjust the name here and describe "Invalid" more clearly? Invalid in what sense?

              Gaurav Kumar

              Thanks for your comment.
              Updated.

              Open in Gerrit

              Related details

              Attention is currently required from:
              • Dileep Maurya
              • Divyansh Mangal
              • Dominik Röttsches
              • Ragvesh Sharma
              • Sejal Anand
              • Vinay Singh
              • Virali Purbey
                Submit Requirements:
                  • requirement satisfiedCode-Coverage
                  • requirement is not satisfiedCode-Owners
                  • requirement is not satisfiedCode-Review
                  • requirement is not satisfiedReview-Enforcement
                  Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
                  Gerrit-MessageType: comment
                  Gerrit-Project: chromium/src
                  Gerrit-Branch: main
                  Gerrit-Change-Id: I3501846aecded342cc949cae84e3a4075e263484
                  Gerrit-Change-Number: 7610633
                  Gerrit-PatchSet: 12
                  Gerrit-Owner: Gaurav Kumar <gaur...@microsoft.com>
                  Gerrit-Reviewer: Dileep Maurya <dileep...@microsoft.com>
                  Gerrit-Reviewer: Divyansh Mangal <dma...@microsoft.com>
                  Gerrit-Reviewer: Dominik Röttsches <dr...@chromium.org>
                  Gerrit-Reviewer: Gaurav Kumar <gaur...@microsoft.com>
                  Gerrit-Reviewer: Sejal Anand <sejal...@microsoft.com>
                  Gerrit-CC: Menard, Alexis <alexis...@intel.com>
                  Gerrit-CC: Ragvesh Sharma <rags...@microsoft.com>
                  Gerrit-CC: Vinay Singh <vinay...@microsoft.com>
                  Gerrit-CC: Virali Purbey <virali...@microsoft.com>
                  Gerrit-Attention: Vinay Singh <vinay...@microsoft.com>
                  Gerrit-Attention: Ragvesh Sharma <rags...@microsoft.com>
                  Gerrit-Attention: Dominik Röttsches <dr...@chromium.org>
                  Gerrit-Attention: Virali Purbey <virali...@microsoft.com>
                  Gerrit-Attention: Sejal Anand <sejal...@microsoft.com>
                  Gerrit-Attention: Dileep Maurya <dileep...@microsoft.com>
                  Gerrit-Attention: Divyansh Mangal <dma...@microsoft.com>
                  Gerrit-Comment-Date: Wed, 11 Mar 2026 05:59:59 +0000
                  Gerrit-HasComments: Yes
                  Gerrit-Has-Labels: No
                  Comment-In-Reply-To: Dominik Röttsches <dr...@chromium.org>
                  satisfied_requirement
                  unsatisfied_requirement
                  open
                  diffy
                  Reply all
                  Reply to author
                  Forward
                  0 new messages