Mark fragment-parsed SVG <script> elements as already started [chromium/src : main]

0 views
Skip to first unread message

Dan Clark (Gerrit)

unread,
Jul 28, 2026, 4:45:00 PM (3 days ago) Jul 28
to Leo Lee, Noam Rosenthal, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
Attention needed from Leo Lee and Noam Rosenthal

Dan Clark added 3 comments

File third_party/blink/renderer/core/html/parser/html_construction_site.cc
Line 1456, Patchset 4 (Latest): if (is_parsing_fragment_ && namespace_uri == svg_names::kNamespaceURI &&
Dan Clark . unresolved

Out of an abundance of caution let's gate this change behind a runtime_enabled_features.json5 flag, set to `status: "stable"`.

Line 1456, Patchset 4 (Latest): if (is_parsing_fragment_ && namespace_uri == svg_names::kNamespaceURI &&
Dan Clark . unresolved

Not blocking for this CL, but it might be worth investigating whether there's a variant of this issue when the script is created by the XML parser for an XHTML document. That'd bypass this fix.

Line 1458, Patchset 4 (Latest): parser_content_policy_ !=
Dan Clark . unresolved

How about refactoring these conditions into a helper that can be shared with the HTMLScriptElement version in `HTMLConstructionSite::InsertScriptElement`?

```c++
bool HTMLConstructionSite::ShouldMarkScriptAlreadyStarted() const {
return is_parsing_fragment_ &&
parser_content_policy_ !=
kAllowScriptingContentAndDoNotMarkAlreadyStarted &&
parser_content_policy_ !=
kAllowScriptingContentAndMarkAsParserInserted;
}
```
Open in Gerrit

Related details

Attention is currently required from:
  • Leo Lee
  • Noam Rosenthal
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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
Gerrit-Change-Number: 8137934
Gerrit-PatchSet: 4
Gerrit-Owner: Leo Lee <leo...@microsoft.com>
Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
Gerrit-Attention: Leo Lee <leo...@microsoft.com>
Gerrit-Attention: Noam Rosenthal <nrose...@google.com>
Gerrit-Comment-Date: Tue, 28 Jul 2026 20:44:50 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Noam Rosenthal (Gerrit)

unread,
Jul 29, 2026, 3:11:42 AM (2 days ago) Jul 29
to Leo Lee, Dan Clark, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
Attention needed from Leo Lee

Noam Rosenthal added 1 comment

File third_party/blink/renderer/core/html/parser/html_construction_site.cc
Line 1458, Patchset 4 (Latest): parser_content_policy_ !=
Dan Clark . unresolved

How about refactoring these conditions into a helper that can be shared with the HTMLScriptElement version in `HTMLConstructionSite::InsertScriptElement`?

```c++
bool HTMLConstructionSite::ShouldMarkScriptAlreadyStarted() const {
return is_parsing_fragment_ &&
parser_content_policy_ !=
kAllowScriptingContentAndDoNotMarkAlreadyStarted &&
parser_content_policy_ !=
kAllowScriptingContentAndMarkAsParserInserted;
}
```
Noam Rosenthal

Seems like this is mostly/partially duplicated from https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/html/parser/html_construction_site.cc;l=1162?

If so, can it be a helper method that's used both by SVG script and HTML script elements?

Open in Gerrit

Related details

Attention is currently required from:
  • Leo Lee
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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
Gerrit-Change-Number: 8137934
Gerrit-PatchSet: 4
Gerrit-Owner: Leo Lee <leo...@microsoft.com>
Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
Gerrit-Attention: Leo Lee <leo...@microsoft.com>
Gerrit-Comment-Date: Wed, 29 Jul 2026 07:11:27 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Comment-In-Reply-To: Dan Clark <dan...@microsoft.com>
satisfied_requirement
unsatisfied_requirement
open
diffy

Leo Lee (Gerrit)

unread,
Jul 29, 2026, 3:33:40 PM (2 days ago) Jul 29
to Dan Clark, Noam Rosenthal, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
Attention needed from Dan Clark and Noam Rosenthal

Leo Lee added 4 comments

Patchset-level comments
File-level comment, Patchset 5 (Latest):
Leo Lee . resolved

Added the runtime flag (stable) as a kill switch, and extracted ShouldMarkScriptAlreadyStarted() shared by the SVG and HTML script paths. The XML/XHTML parser variant is tracked separately in crbug.com/540021703 assigned to me. Thanks Dan and Noam.

File third_party/blink/renderer/core/html/parser/html_construction_site.cc
Line 1456, Patchset 4: if (is_parsing_fragment_ && namespace_uri == svg_names::kNamespaceURI &&
Dan Clark . resolved

Out of an abundance of caution let's gate this change behind a runtime_enabled_features.json5 flag, set to `status: "stable"`.

Leo Lee

Done

Line 1456, Patchset 4: if (is_parsing_fragment_ && namespace_uri == svg_names::kNamespaceURI &&
Dan Clark . resolved

Not blocking for this CL, but it might be worth investigating whether there's a variant of this issue when the script is created by the XML parser for an XHTML document. That'd bypass this fix.

Leo Lee

Confirmed and filed as a security follow-up: crbug.com/540021703.

Line 1458, Patchset 4: parser_content_policy_ !=
Dan Clark . resolved

How about refactoring these conditions into a helper that can be shared with the HTMLScriptElement version in `HTMLConstructionSite::InsertScriptElement`?

```c++
bool HTMLConstructionSite::ShouldMarkScriptAlreadyStarted() const {
return is_parsing_fragment_ &&
parser_content_policy_ !=
kAllowScriptingContentAndDoNotMarkAlreadyStarted &&
parser_content_policy_ !=
kAllowScriptingContentAndMarkAsParserInserted;
}
```
Noam Rosenthal

Seems like this is mostly/partially duplicated from https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/html/parser/html_construction_site.cc;l=1162?

If so, can it be a helper method that's used both by SVG script and HTML script elements?

Leo Lee

Extracted ShouldMarkScriptAlreadyStarted() and it's now used by both the SVG <script> path here and InsertScriptElement().

Open in Gerrit

Related details

Attention is currently required from:
  • Dan Clark
  • Noam Rosenthal
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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
    Gerrit-Change-Number: 8137934
    Gerrit-PatchSet: 5
    Gerrit-Owner: Leo Lee <leo...@microsoft.com>
    Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
    Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
    Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
    Gerrit-Attention: Dan Clark <dan...@microsoft.com>
    Gerrit-Attention: Noam Rosenthal <nrose...@google.com>
    Gerrit-Comment-Date: Wed, 29 Jul 2026 19:33:27 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    Comment-In-Reply-To: Dan Clark <dan...@microsoft.com>
    Comment-In-Reply-To: Noam Rosenthal <nrose...@google.com>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Noam Rosenthal (Gerrit)

    unread,
    Jul 29, 2026, 5:00:33 PM (2 days ago) Jul 29
    to Leo Lee, android-bu...@system.gserviceaccount.com, Dan Clark, Chromium LUCI CQ, chromium...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
    Attention needed from Dan Clark and Leo Lee

    Noam Rosenthal voted and added 2 comments

    Votes added by Noam Rosenthal

    Code-Review+1

    2 comments

    Patchset-level comments
    Noam Rosenthal . resolved

    LGTM % nit

    File third_party/blink/renderer/core/html/parser/html_construction_site.cc
    Line 1462, Patchset 5 (Latest): namespace_uri == svg_names::kNamespaceURI &&
    Noam Rosenthal . unresolved

    Maybe take this (and below) from tag_name?

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Dan Clark
    • Leo Lee
    Submit Requirements:
    • requirement satisfiedCode-Coverage
    • requirement 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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
    Gerrit-Change-Number: 8137934
    Gerrit-PatchSet: 5
    Gerrit-Owner: Leo Lee <leo...@microsoft.com>
    Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
    Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
    Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
    Gerrit-Attention: Dan Clark <dan...@microsoft.com>
    Gerrit-Attention: Leo Lee <leo...@microsoft.com>
    Gerrit-Comment-Date: Wed, 29 Jul 2026 21:00:13 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: Yes
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Leo Lee (Gerrit)

    unread,
    Jul 29, 2026, 5:47:02 PM (2 days ago) Jul 29
    to Noam Rosenthal, android-bu...@system.gserviceaccount.com, Dan Clark, Chromium LUCI CQ, chromium...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
    Attention needed from Dan Clark and Noam Rosenthal

    Leo Lee added 1 comment

    File third_party/blink/renderer/core/html/parser/html_construction_site.cc
    Line 1462, Patchset 5: namespace_uri == svg_names::kNamespaceURI &&
    Noam Rosenthal . resolved

    Maybe take this (and below) from tag_name?

    Leo Lee

    Marked as resolved.

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Dan Clark
    • Noam Rosenthal
    Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement 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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
      Gerrit-Change-Number: 8137934
      Gerrit-PatchSet: 6
      Gerrit-Owner: Leo Lee <leo...@microsoft.com>
      Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
      Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
      Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
      Gerrit-Attention: Dan Clark <dan...@microsoft.com>
      Gerrit-Attention: Noam Rosenthal <nrose...@google.com>
      Gerrit-Comment-Date: Wed, 29 Jul 2026 21:46:49 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      Comment-In-Reply-To: Noam Rosenthal <nrose...@google.com>
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Dan Clark (Gerrit)

      unread,
      Jul 29, 2026, 6:03:57 PM (2 days ago) Jul 29
      to Leo Lee, Noam Rosenthal, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
      Attention needed from Leo Lee and Noam Rosenthal

      Dan Clark voted Code-Review+1

      Code-Review+1
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Leo Lee
      • Noam Rosenthal
      Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement 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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
      Gerrit-Change-Number: 8137934
      Gerrit-PatchSet: 6
      Gerrit-Owner: Leo Lee <leo...@microsoft.com>
      Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
      Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
      Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
      Gerrit-Attention: Leo Lee <leo...@microsoft.com>
      Gerrit-Attention: Noam Rosenthal <nrose...@google.com>
      Gerrit-Comment-Date: Wed, 29 Jul 2026 22:03:43 +0000
      Gerrit-HasComments: No
      Gerrit-Has-Labels: Yes
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Noam Rosenthal (Gerrit)

      unread,
      Jul 30, 2026, 4:10:37 AM (yesterday) Jul 30
      to Leo Lee, Dan Clark, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
      Attention needed from Leo Lee

      Noam Rosenthal voted Code-Review+1

      Code-Review+1
      Open in Gerrit

      Related details

      Attention is currently required from:
      • Leo Lee
      Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Owners
        • requirement satisfiedCode-Review
        • requirement 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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
        Gerrit-Change-Number: 8137934
        Gerrit-PatchSet: 6
        Gerrit-Owner: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
        Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
        Gerrit-Attention: Leo Lee <leo...@microsoft.com>
        Gerrit-Comment-Date: Thu, 30 Jul 2026 08:10:21 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        open
        diffy

        Blink W3C Test Autoroller (Gerrit)

        unread,
        Jul 30, 2026, 4:23:01 AM (yesterday) Jul 30
        to Leo Lee, Noam Rosenthal, Dan Clark, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Leo Lee

        Message from Blink W3C Test Autoroller

        Exportable changes to web-platform-tests were detected in this CL and a pull request in the upstream repo has been made: https://github.com/web-platform-tests/wpt/pull/61629.

        When this CL lands, the bot will automatically merge the PR on GitHub if the required GitHub checks pass; otherwise, ecosystem-infra@ team will triage the failures and may contact you.

        WPT Export docs:
        https://chromium.googlesource.com/chromium/src/+/main/docs/testing/web_platform_tests.md#Automatic-export-process

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Leo Lee
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Owners
        • requirement satisfiedCode-Review
        • requirement 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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
        Gerrit-Change-Number: 8137934
        Gerrit-PatchSet: 6
        Gerrit-Owner: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
        Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-Comment-Date: Thu, 30 Jul 2026 08:22:51 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: No
        satisfied_requirement
        open
        diffy

        Leo Lee (Gerrit)

        unread,
        Jul 30, 2026, 12:24:36 PM (17 hours ago) Jul 30
        to Blink W3C Test Autoroller, Noam Rosenthal, Dan Clark, android-bu...@system.gserviceaccount.com, Chromium LUCI CQ, chromium...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org

        Leo Lee voted Commit-Queue+2

        Commit-Queue+2
        Open in Gerrit

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Owners
        • requirement satisfiedCode-Review
        • requirement 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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
        Gerrit-Change-Number: 8137934
        Gerrit-PatchSet: 6
        Gerrit-Owner: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
        Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-Comment-Date: Thu, 30 Jul 2026 16:24:23 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        open
        diffy

        Chromium LUCI CQ (Gerrit)

        unread,
        Jul 30, 2026, 12:47:58 PM (17 hours ago) Jul 30
        to Leo Lee, Blink W3C Test Autoroller, Noam Rosenthal, Dan Clark, android-bu...@system.gserviceaccount.com, chromium...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org

        Chromium LUCI CQ submitted the change

        Change information

        Commit message:
        Mark fragment-parsed SVG <script> elements as already started

        The HTML fragment parsing algorithm marks parser-created script elements
        "already started" so they never execute. Blink applied this only to HTML
        scripts in InsertScriptElement(); foreign-content scripts (e.g. SVG
        <script>) are created in CreateElement() and were left unmarked. As a
        result an SVG <script> injected via innerHTML stayed inert but executed
        when the option subtree was later cloned into the document (e.g. by
        <selectedcontent>), which was an XSS vector.

        Mark fragment-parsed SVG script elements already started, using the same
        policy as the HTML script path, and add a regression WPT.
        Bug: 538197148
        Change-Id: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
        Reviewed-by: Dan Clark <dan...@microsoft.com>
        Commit-Queue: Leo Lee <leo...@microsoft.com>
        Reviewed-by: Noam Rosenthal <nrose...@google.com>
        Cr-Commit-Position: refs/heads/main@{#1671162}
        Files:
        • M third_party/blink/renderer/core/html/parser/html_construction_site.cc
        • M third_party/blink/renderer/core/html/parser/html_construction_site.h
        • M third_party/blink/renderer/platform/runtime_enabled_features.json5
        • A third_party/blink/web_tests/external/wpt/html/semantics/scripting-1/the-script-element/svg-script-fragment-parsed-not-executed-on-clone.html
        Change size: M
        Delta: 4 files changed, 117 insertions(+), 4 deletions(-)
        Branch: refs/heads/main
        Submit Requirements:
        • requirement satisfiedCode-Review: +1 by Dan Clark, +1 by Noam Rosenthal
        Open in Gerrit
        Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
        Gerrit-MessageType: merged
        Gerrit-Project: chromium/src
        Gerrit-Branch: main
        Gerrit-Change-Id: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
        Gerrit-Change-Number: 8137934
        Gerrit-PatchSet: 7
        Gerrit-Owner: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
        Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        open
        diffy
        satisfied_requirement

        Blink W3C Test Autoroller (Gerrit)

        unread,
        Jul 30, 2026, 3:38:50 PM (14 hours ago) Jul 30
        to Chromium LUCI CQ, Leo Lee, Noam Rosenthal, Dan Clark, android-bu...@system.gserviceaccount.com, chromium...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-revie...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org

        Message from Blink W3C Test Autoroller

        The WPT PR for this CL has been merged upstream! https://github.com/web-platform-tests/wpt/pull/61629

        Open in Gerrit

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Owners
        • requirement satisfiedCode-Review
        • requirement 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: Ia532a46aebd68a1ecca5a55ced4d55e438259bcc
        Gerrit-Change-Number: 8137934
        Gerrit-PatchSet: 7
        Gerrit-Owner: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Dan Clark <dan...@microsoft.com>
        Gerrit-Reviewer: Leo Lee <leo...@microsoft.com>
        Gerrit-Reviewer: Noam Rosenthal <nrose...@google.com>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-Comment-Date: Thu, 30 Jul 2026 19:38:39 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: No
        satisfied_requirement
        open
        diffy
        Reply all
        Reply to author
        Forward
        0 new messages