Fix: Mis-nested form tags inside template parsed incorrectly [chromium/src : main]

1 view
Skip to first unread message

Haoran Tang (Gerrit)

unread,
Nov 10, 2024, 12:58:44 AM11/10/24
to Kouhei Ueno, Mason Freed, chromium...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
Attention needed from Kouhei Ueno and Mason Freed

Haoran Tang added 1 comment

Patchset-level comments
File-level comment, Patchset 1 (Latest):
Haoran Tang . resolved

Hi reviewers, I fixed the issue by adjusting the parsing for mis-nested `<form>` tags in `<template>`, based on [HTML5 specs](https://html.spec.whatwg.org/multipage/parsing.html#parsing-main-inbody).
I do have a couple of questions:
1. Is `fast/parser/misnested-form-tags-in-template.html` the right location for this test?
2. How can I configure this test to be text-only? It currently fails with `-expected.png was missing`.
I'm new to chromium, apologies for any mistakes i made.

Open in Gerrit

Related details

Attention is currently required from:
  • Kouhei Ueno
  • Mason Freed
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Review
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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
Gerrit-Change-Number: 6009220
Gerrit-PatchSet: 1
Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
Gerrit-Reviewer: Kouhei Ueno <kou...@chromium.org>
Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
Gerrit-Attention: Kouhei Ueno <kou...@chromium.org>
Gerrit-Attention: Mason Freed <mas...@chromium.org>
Gerrit-Comment-Date: Sun, 10 Nov 2024 05:58:36 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Haoran Tang (Gerrit)

unread,
Nov 11, 2024, 2:07:08 PM11/11/24
to Chromium LUCI CQ, Mason Freed, chromium...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
Attention needed from Haoran Tang and Mason Freed

Haoran Tang voted Commit-Queue+1

Commit-Queue+1
Open in Gerrit

Related details

Attention is currently required from:
  • Haoran Tang
  • Mason Freed
Submit Requirements:
  • requirement satisfiedCode-Coverage
  • requirement is not satisfiedCode-Review
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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
Gerrit-Change-Number: 6009220
Gerrit-PatchSet: 1
Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
Gerrit-Attention: Mason Freed <mas...@chromium.org>
Gerrit-Comment-Date: Mon, 11 Nov 2024 19:07:00 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: Yes
satisfied_requirement
unsatisfied_requirement
open
diffy

Mason Freed (Gerrit)

unread,
Nov 11, 2024, 5:01:53 PM11/11/24
to Haoran Tang, Chromium LUCI CQ, chromium...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
Attention needed from Haoran Tang

Mason Freed added 6 comments

Patchset-level comments
Mason Freed . resolved

Thanks for writing what looks like your first patch to Chromium! 😊

Commit Message
Line 12, Patchset 1 (Latest):aligning behavior with HTML5 parsing spec.
Mason Freed . unresolved

It would help to link directly to the relevant section of the HTML spec in this comment also. For this section, it's a bit hard to link to, but you should be able to use this:

https://html.spec.whatwg.org/multipage/parsing.html#parsing:~:text=An%20end%20tag%20whose%20tag%20name%20is%20%22form%22

Line 7, Patchset 1 (Latest):Fix: Mis-nested form tags inside template
parsed incorrectly

Ensures that form end tags inside templates
forcibly close any inner tags,
aligning behavior with HTML5 parsing spec.
Mason Freed . unresolved

nit: please line wrap at 72 characters.

File AUTHORS
Line 505, Patchset 1 (Latest):Haoran Tang <haoran.tan...@gmail.com>
Mason Freed . resolved

Note to self: I verified that this user has signed the CLA.

File third_party/blink/renderer/core/html/parser/html_tree_builder.cc
Line 2127, Patchset 1 (Latest): if (!tree_.OpenElements()->InScope(tag)) {
ParseError(token);
return;
}
tree_.GenerateImpliedEndTags();
if (!tree_.CurrentStackItem()->MatchesHTMLTag(tag)) {
ParseError(token);
}
tree_.OpenElements()->PopUntilPopped(tag);
Mason Freed . unresolved

This looks good. But for safety, it's always a good idea to flag-guard any such change, in case of emergency. You can use this as an example to follow:

https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/html/parser/html_tree_builder.cc;l=2100;drc=89283e2372773785f646af4b7935feda59b25e75

File third_party/blink/web_tests/fast/parser/misnested-form-tags-in-template.html
Mason Freed . unresolved

Thank you for writing a test. But this should be a WPT, rather than an (internal-only) web_test. I think this is probably the right place to put that:

https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/web_tests/external/wpt/html/syntax/parsing/

and you could use something like this one as an example to follow:

https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/web_tests/external/wpt/html/syntax/parsing/math-parse01.html

Open in Gerrit

Related details

Attention is currently required from:
  • Haoran Tang
Submit Requirements:
    • requirement satisfiedCode-Coverage
    • requirement is not satisfiedCode-Review
    • requirement is not satisfiedNo-Unresolved-Comments
    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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
    Gerrit-Change-Number: 6009220
    Gerrit-PatchSet: 1
    Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
    Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
    Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
    Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
    Gerrit-Comment-Date: Mon, 11 Nov 2024 22:01:45 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Haoran Tang (Gerrit)

    unread,
    Nov 12, 2024, 10:54:21 AM11/12/24
    to AyeAye, jmedle...@chromium.org, blink-...@chromium.org, blink-rev...@chromium.org, loading-rev...@chromium.org, blink-revie...@chromium.org, kinuko...@chromium.org

    Haoran Tang abandoned this change

    Related details

    Attention set is empty
    Submit Requirements:
    • requirement satisfiedCode-Coverage
    • requirement is not satisfiedCode-Review
    Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. DiffyGerrit
    Gerrit-MessageType: abandon
    Gerrit-Project: chromium/src
    Gerrit-Branch: main
    Gerrit-Change-Id: I4b12d48537caa4292c5806f1f759f713128cb7da
    Gerrit-Change-Number: 6011868
    Gerrit-PatchSet: 1
    Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Haoran Tang (Gerrit)

    unread,
    Nov 12, 2024, 1:02:38 PM11/12/24
    to AyeAye, Mason Freed, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
    Attention needed from Mason Freed

    Haoran Tang added 4 comments

    Commit Message
    Line 7, Patchset 1:Fix: Mis-nested form tags inside template

    parsed incorrectly

    Ensures that form end tags inside templates
    forcibly close any inner tags,
    aligning behavior with HTML5 parsing spec.
    Mason Freed . resolved

    nit: please line wrap at 72 characters.

    Haoran Tang

    Done

    Line 12, Patchset 1:aligning behavior with HTML5 parsing spec.
    Mason Freed . unresolved

    It would help to link directly to the relevant section of the HTML spec in this comment also. For this section, it's a bit hard to link to, but you should be able to use this:

    https://html.spec.whatwg.org/multipage/parsing.html#parsing:~:text=An%20end%20tag%20whose%20tag%20name%20is%20%22form%22

    Haoran Tang

    is there a preferred way to wrap long URLs in the commit message

    File third_party/blink/renderer/core/html/parser/html_tree_builder.cc
    Line 2127, Patchset 1: if (!tree_.OpenElements()->InScope(tag)) {

    ParseError(token);
    return;
    }
    tree_.GenerateImpliedEndTags();
    if (!tree_.CurrentStackItem()->MatchesHTMLTag(tag)) {
    ParseError(token);
    }
    tree_.OpenElements()->PopUntilPopped(tag);
    Mason Freed . resolved

    This looks good. But for safety, it's always a good idea to flag-guard any such change, in case of emergency. You can use this as an example to follow:

    https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/html/parser/html_tree_builder.cc;l=2100;drc=89283e2372773785f646af4b7935feda59b25e75

    Haoran Tang

    Done

    File third_party/blink/web_tests/fast/parser/misnested-form-tags-in-template.html
    File-level comment, Patchset 1:
    Mason Freed . resolved

    Thank you for writing a test. But this should be a WPT, rather than an (internal-only) web_test. I think this is probably the right place to put that:

    https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/web_tests/external/wpt/html/syntax/parsing/

    and you could use something like this one as an example to follow:

    https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/web_tests/external/wpt/html/syntax/parsing/math-parse01.html

    Haoran Tang

    Done

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Mason Freed
    Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement is not satisfiedCode-Review
      • requirement is not satisfiedNo-Unresolved-Comments
      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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
      Gerrit-Change-Number: 6009220
      Gerrit-PatchSet: 5
      Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
      Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
      Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
      Gerrit-Attention: Mason Freed <mas...@chromium.org>
      Gerrit-Comment-Date: Tue, 12 Nov 2024 18:02:26 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      Comment-In-Reply-To: Mason Freed <mas...@chromium.org>
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Haoran Tang (Gerrit)

      unread,
      Nov 13, 2024, 1:05:26 PM11/13/24
      to AyeAye, Mason Freed, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
      Attention needed from Mason Freed

      Haoran Tang added 1 comment

      Commit Message
      Line 12, Patchset 1:aligning behavior with HTML5 parsing spec.
      Mason Freed . resolved

      It would help to link directly to the relevant section of the HTML spec in this comment also. For this section, it's a bit hard to link to, but you should be able to use this:

      https://html.spec.whatwg.org/multipage/parsing.html#parsing:~:text=An%20end%20tag%20whose%20tag%20name%20is%20%22form%22

      Haoran Tang

      is there a preferred way to wrap long URLs in the commit message

      Haoran Tang

      Done

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Mason Freed
      Submit Requirements:
      • requirement satisfiedCode-Coverage
      • requirement is not satisfiedCode-Review
      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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
      Gerrit-Change-Number: 6009220
      Gerrit-PatchSet: 6
      Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
      Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
      Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
      Gerrit-Attention: Mason Freed <mas...@chromium.org>
      Gerrit-Comment-Date: Wed, 13 Nov 2024 18:05:19 +0000
      Gerrit-HasComments: Yes
      Gerrit-Has-Labels: No
      Comment-In-Reply-To: Haoran Tang <haoran.tan...@gmail.com>
      Comment-In-Reply-To: Mason Freed <mas...@chromium.org>
      satisfied_requirement
      unsatisfied_requirement
      open
      diffy

      Mason Freed (Gerrit)

      unread,
      Nov 13, 2024, 5:59:33 PM11/13/24
      to Haoran Tang, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
      Attention needed from Haoran Tang and Mason Freed

      Mason Freed voted and added 8 comments

      Votes added by Mason Freed

      Commit-Queue+1

      8 comments

      Patchset-level comments
      File-level comment, Patchset 6 (Latest):
      Mason Freed . resolved

      Thanks for adding the flag and moving the test! Just a few smaller comments now and then I think this is ok to land.

      File third_party/blink/renderer/platform/runtime_enabled_features.json5
      Line 888, Patchset 6 (Latest): name: "CorrectTemplateFormParsing",
      Mason Freed . unresolved

      I think to pass the tests, this needs to be in the correct position, alphabetically.

      File third_party/blink/web_tests/external/wpt/html/syntax/parsing/misnested-form-in-template.html
      Line 2, Patchset 6 (Latest):<html>
      <head>
      Mason Freed . unresolved

      nit: it's better if you don't include non-essential tags in the test. So you can generally skip `<html>`, `<head>`, `<body>`, etc.

      Line 4, Patchset 6 (Latest):<title>Template Form Parsing Test</title>
      Line 9, Patchset 6 (Latest):<h1>Template Form Parsing Test</h1>
      Mason Freed . unresolved

      You don't need this

      Line 11, Patchset 6 (Latest):<div id="log" style="display:block"></div>
      Mason Freed . unresolved

      You don't need this either.

      Line 13, Patchset 6 (Latest):<div style="display:none">
      Mason Freed . unresolved

      You don't need this

      Line 14, Patchset 6 (Latest): <div id="testTemplateContainer">
      Mason Freed . unresolved

      This is ok, but easier would be:

      ```
      <div>
      A<template><br>BC<form>D<div>E</form>F</div>G</template>H
      </div>

      const wrapper = document.querySelector('div');
      ```

      Open in Gerrit

      Related details

      Attention is currently required from:
      • Haoran Tang
      • Mason Freed
      Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement is not satisfiedCode-Review
        • requirement is not satisfiedNo-Unresolved-Comments
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 6
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Attention: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Wed, 13 Nov 2024 22:59:24 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Haoran Tang (Gerrit)

        unread,
        Nov 13, 2024, 8:23:28 PM11/13/24
        to Mason Freed, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Mason Freed

        Haoran Tang added 7 comments

        File third_party/blink/renderer/platform/runtime_enabled_features.json5
        Line 888, Patchset 6: name: "CorrectTemplateFormParsing",
        Mason Freed . resolved

        I think to pass the tests, this needs to be in the correct position, alphabetically.

        Haoran Tang

        Done

        File third_party/blink/web_tests/external/wpt/html/syntax/parsing/misnested-form-in-template.html
        Line 2, Patchset 6:<html>
        <head>
        Mason Freed . resolved

        nit: it's better if you don't include non-essential tags in the test. So you can generally skip `<html>`, `<head>`, `<body>`, etc.

        Haoran Tang

        Done

        Line 4, Patchset 6:<title>Template Form Parsing Test</title>
        Mason Freed . resolved
        Haoran Tang

        Done

        Line 9, Patchset 6:<h1>Template Form Parsing Test</h1>
        Mason Freed . resolved

        You don't need this

        Haoran Tang

        Done

        Line 11, Patchset 6:<div id="log" style="display:block"></div>
        Mason Freed . resolved

        You don't need this either.

        Haoran Tang

        Done

        Line 13, Patchset 6:<div style="display:none">
        Mason Freed . resolved

        You don't need this

        Haoran Tang

        Done

        Line 14, Patchset 6: <div id="testTemplateContainer">
        Mason Freed . resolved

        This is ok, but easier would be:

        ```
        <div>
        A<template><br>BC<form>D<div>E</form>F</div>G</template>H
        </div>

        const wrapper = document.querySelector('div');
        ```

        Haoran Tang

        Done

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Mason Freed
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement is not satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Attention: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Thu, 14 Nov 2024 01:23:11 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        Comment-In-Reply-To: Mason Freed <mas...@chromium.org>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Haoran Tang (Gerrit)

        unread,
        Nov 15, 2024, 11:50:11 AM11/15/24
        to Mason Freed, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Mason Freed

        Haoran Tang added 1 comment

        Patchset-level comments
        File-level comment, Patchset 8 (Latest):
        Haoran Tang . resolved

        Hi Mason. I've updated the test to alphabetical order and removed unnecessary components from the test HTML. Could you help start the test run?

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Mason Freed
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement is not satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Attention: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Fri, 15 Nov 2024 16:49:58 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Mason Freed (Gerrit)

        unread,
        Nov 15, 2024, 12:35:06 PM11/15/24
        to Haoran Tang, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Haoran Tang

        Mason Freed voted and added 1 comment

        Votes added by Mason Freed

        Code-Review+1

        1 comment

        Patchset-level comments
        Mason Freed . resolved

        Assuming the tests pass, LGTM! Thanks for contributing to Chromium! 🎉

        I can land this for you, just let me know.

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Haoran Tang
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement is not satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Comment-Date: Fri, 15 Nov 2024 17:34:54 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Haoran Tang (Gerrit)

        unread,
        Nov 15, 2024, 1:11:33 PM11/15/24
        to Mason Freed, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org

        Haoran Tang added 1 comment

        Patchset-level comments
        Mason Freed . resolved

        Assuming the tests pass, LGTM! Thanks for contributing to Chromium! 🎉

        I can land this for you, just let me know.

        Haoran Tang

        Hi Mason. As I’m not a Chromium committer, it seems that two Code-Review +1s are needed to proceed. Would I need an additional reviewer for this CL to be landed.

        Open in Gerrit

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement is not satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Fri, 15 Nov 2024 18:11:25 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        Comment-In-Reply-To: Mason Freed <mas...@chromium.org>
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Mason Freed (Gerrit)

        unread,
        Nov 15, 2024, 1:15:33 PM11/15/24
        to Haoran Tang, Di Zhang, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Di Zhang and Haoran Tang

        Mason Freed added 2 comments

        Patchset-level comments
        Mason Freed . resolved

        Assuming the tests pass, LGTM! Thanks for contributing to Chromium! 🎉

        I can land this for you, just let me know.

        Haoran Tang

        Hi Mason. As I’m not a Chromium committer, it seems that two Code-Review +1s are needed to proceed. Would I need an additional reviewer for this CL to be landed.

        Mason Freed

        Ahh right, I forgot about that. I'll add one.

        Mason Freed . resolved

        +dizhangg for another review.

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Di Zhang
        • Haoran Tang
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement is not satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Attention: Di Zhang <dizh...@chromium.org>
        Gerrit-Comment-Date: Fri, 15 Nov 2024 18:15:22 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        satisfied_requirement
        unsatisfied_requirement
        open
        diffy

        Di Zhang (Gerrit)

        unread,
        Nov 15, 2024, 1:35:44 PM11/15/24
        to Haoran Tang, Mason Freed, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Haoran Tang

        Di Zhang voted Code-Review+1

        Code-Review+1
        Open in Gerrit

        Related details

        Attention is currently required from:
        • Haoran Tang
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Comment-Date: Fri, 15 Nov 2024 18:35:34 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        open
        diffy

        Haoran Tang (Gerrit)

        unread,
        Nov 15, 2024, 1:50:27 PM11/15/24
        to Di Zhang, Mason Freed, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org

        Haoran Tang added 1 comment

        Patchset-level comments
        Mason Freed . resolved

        Assuming the tests pass, LGTM! Thanks for contributing to Chromium! 🎉

        I can land this for you, just let me know.

        Haoran Tang

        Hi Mason. As I’m not a Chromium committer, it seems that two Code-Review +1s are needed to proceed. Would I need an additional reviewer for this CL to be landed.

        Mason Freed

        Ahh right, I forgot about that. I'll add one.

        Haoran Tang

        Hi, Mason. Since the tests have passed, could you help submit it for me? Thank you for your guidance and for reviewing my CL!

        Open in Gerrit

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Fri, 15 Nov 2024 18:50:16 +0000
        satisfied_requirement
        open
        diffy

        Haoran Tang (Gerrit)

        unread,
        Nov 15, 2024, 2:23:16 PM11/15/24
        to Di Zhang, Mason Freed, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org

        Haoran Tang voted Commit-Queue+2

        Commit-Queue+2
        Open in Gerrit

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Fri, 15 Nov 2024 19:23:04 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        open
        diffy

        Blink W3C Test Autoroller (Gerrit)

        unread,
        Nov 15, 2024, 7:23:32 PM11/15/24
        to Haoran Tang, Di Zhang, Mason Freed, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Haoran Tang

        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/49206.

        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:
        • Haoran Tang
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Comment-Date: Sat, 16 Nov 2024 00:23:20 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: No
        satisfied_requirement
        open
        diffy

        Mason Freed (Gerrit)

        unread,
        Nov 17, 2024, 10:42:09 AM11/17/24
        to Haoran Tang, Blink W3C Test Autoroller, Di Zhang, AyeAye, Chromium LUCI CQ, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Haoran Tang

        Mason Freed voted Commit-Queue+2

        Commit-Queue+2
        Open in Gerrit

        Related details

        Attention is currently required from:
        • Haoran Tang
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 8
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Comment-Date: Sun, 17 Nov 2024 15:42:00 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: Yes
        satisfied_requirement
        open
        diffy

        Chromium LUCI CQ (Gerrit)

        unread,
        Nov 17, 2024, 11:28:13 AM11/17/24
        to Haoran Tang, Blink W3C Test Autoroller, Di Zhang, Mason Freed, AyeAye, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org

        Chromium LUCI CQ submitted the change

        Change information

        Commit message:
        Fix: Mis-nested form tags inside template parsed incorrectly

        Ensures that form end tags inside templates forcibly close any inner
        tags, aligning behavior with HTML5 standard:
        https://html.spec.whatwg.org/multipage/parsing.html#parsing:~:text=An%20end%20tag%20whose%20tag%20name%20is%20%22form%22

        Bug: 352896478
        TEST=Added web test case to check parsing behavior with nested form
        tags.
        Change-Id: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Commit-Queue: Mason Freed <mas...@chromium.org>
        Reviewed-by: Di Zhang <dizh...@chromium.org>
        Reviewed-by: Mason Freed <mas...@chromium.org>
        Cr-Commit-Position: refs/heads/main@{#1384096}
        Files:
        • M AUTHORS
        • M third_party/blink/renderer/core/html/parser/html_tree_builder.cc
        • M third_party/blink/renderer/platform/runtime_enabled_features.json5
        • A third_party/blink/web_tests/external/wpt/html/syntax/parsing/misnested-form-in-template.html
        Change size: S
        Delta: 4 files changed, 38 insertions(+), 0 deletions(-)
        Branch: refs/heads/main
        Submit Requirements:
        • requirement satisfiedCode-Review: +1 by Mason Freed, +1 by Di Zhang
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 9
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        open
        diffy
        satisfied_requirement

        Blink W3C Test Autoroller (Gerrit)

        unread,
        Nov 17, 2024, 11:55:06 AM11/17/24
        to Haoran Tang, Chromium LUCI CQ, Di Zhang, Mason Freed, AyeAye, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@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/49206

        Open in Gerrit

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 9
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-Comment-Date: Sun, 17 Nov 2024 16:54:56 +0000
        Gerrit-HasComments: No
        Gerrit-Has-Labels: No
        satisfied_requirement
        open
        diffy

        Brayan Cruz (Gerrit)

        unread,
        Nov 17, 2024, 8:56:49 PM11/17/24
        to Haoran Tang, Chromium LUCI CQ, Blink W3C Test Autoroller, Di Zhang, Mason Freed, AyeAye, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Di Zhang, Haoran Tang and Mason Freed

        Brayan Cruz added 1 comment

        Patchset-level comments
        File-level comment, Patchset 9 (Latest):
        Brayan Cruz . resolved

        niice

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Di Zhang
        • Haoran Tang
        • Mason Freed
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 9
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-CC: Brayan Cruz <brayan...@gmail.com>
        Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Attention: Di Zhang <dizh...@chromium.org>
        Gerrit-Attention: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Mon, 18 Nov 2024 01:56:40 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        satisfied_requirement
        open
        diffy

        Ho Cheung (Gerrit)

        unread,
        Nov 27, 2024, 10:49:23 PM11/27/24
        to Haoran Tang, Chromium LUCI CQ, Brayan Cruz, Blink W3C Test Autoroller, Di Zhang, Mason Freed, AyeAye, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org

        Ho Cheung added 1 comment

        Patchset-level comments
        Ho Cheung . resolved

        I observed the following results on Chrome Canary, which still don't seem to be expected.[1]

        [1] https://issues.chromium.org/issues/352896478#comment9

        Open in Gerrit

        Related details

        Attention set is empty
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 9
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-CC: Brayan Cruz <brayan...@gmail.com>
        Gerrit-CC: Ho Cheung <hoch...@chromium.org>
        Gerrit-Comment-Date: Thu, 28 Nov 2024 03:49:13 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        satisfied_requirement
        open
        diffy

        Ho Cheung (Gerrit)

        unread,
        Nov 27, 2024, 10:50:01 PM11/27/24
        to Haoran Tang, Chromium LUCI CQ, Brayan Cruz, Blink W3C Test Autoroller, Di Zhang, Mason Freed, AyeAye, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Di Zhang, Haoran Tang and Mason Freed

        Ho Cheung added 1 comment

        Patchset-level comments
        Ho Cheung . unresolved

        I observed the following results on Chrome Canary, which still don't seem to be expected.[1]

        [1] https://issues.chromium.org/issues/352896478#comment9

        Ho Cheung

        Perhaps I'm missing something?

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Di Zhang
        • Haoran Tang
        • Mason Freed
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 9
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-CC: Brayan Cruz <brayan...@gmail.com>
        Gerrit-CC: Ho Cheung <hoch...@chromium.org>
        Gerrit-Attention: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Attention: Di Zhang <dizh...@chromium.org>
        Gerrit-Attention: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Thu, 28 Nov 2024 03:49:50 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        Comment-In-Reply-To: Ho Cheung <hoch...@chromium.org>
        satisfied_requirement
        open
        diffy

        Haoran Tang (Gerrit)

        unread,
        Nov 27, 2024, 11:12:10 PM11/27/24
        to Chromium LUCI CQ, Ho Cheung, Brayan Cruz, Blink W3C Test Autoroller, Di Zhang, Mason Freed, AyeAye, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Di Zhang and Mason Freed

        Haoran Tang added 1 comment

        Patchset-level comments
        Ho Cheung . unresolved

        I observed the following results on Chrome Canary, which still don't seem to be expected.[1]

        [1] https://issues.chromium.org/issues/352896478#comment9

        Ho Cheung

        Perhaps I'm missing something?

        Haoran Tang

        Thanks for the update. I’ll look into this in the coming days and keep you noticed.

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Di Zhang
        • Mason Freed
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 9
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-CC: Brayan Cruz <brayan...@gmail.com>
        Gerrit-CC: Ho Cheung <hoch...@chromium.org>
        Gerrit-Attention: Di Zhang <dizh...@chromium.org>
        Gerrit-Attention: Mason Freed <mas...@chromium.org>
        Gerrit-Comment-Date: Thu, 28 Nov 2024 04:12:01 +0000
        satisfied_requirement
        open
        diffy

        Ho Cheung (Gerrit)

        unread,
        Nov 28, 2024, 12:56:31 AM11/28/24
        to Haoran Tang, Chromium LUCI CQ, Brayan Cruz, Blink W3C Test Autoroller, Di Zhang, Mason Freed, AyeAye, chromium...@chromium.org, blink-revie...@chromium.org, jmedle...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, kinuko...@chromium.org, loading-rev...@chromium.org
        Attention needed from Di Zhang

        Ho Cheung added 1 comment

        Patchset-level comments
        Ho Cheung . resolved

        I observed the following results on Chrome Canary, which still don't seem to be expected.[1]

        [1] https://issues.chromium.org/issues/352896478#comment9

        Ho Cheung

        Perhaps I'm missing something?

        Haoran Tang

        Thanks for the update. I’ll look into this in the coming days and keep you noticed.

        Ho Cheung

        Enabling the experimental flag `chrome://flags/#enable-experimental-web-platform-features` can solve the problem.

        Open in Gerrit

        Related details

        Attention is currently required from:
        • Di Zhang
        Submit Requirements:
        • requirement satisfiedCode-Coverage
        • requirement satisfiedCode-Review
        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: Ia3ad421f8c6875942ce0a95cb4c5dcfc8c6833aa
        Gerrit-Change-Number: 6009220
        Gerrit-PatchSet: 9
        Gerrit-Owner: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Chromium LUCI CQ <chromiu...@luci-project-accounts.iam.gserviceaccount.com>
        Gerrit-Reviewer: Di Zhang <dizh...@chromium.org>
        Gerrit-Reviewer: Haoran Tang <haoran.tan...@gmail.com>
        Gerrit-Reviewer: Mason Freed <mas...@chromium.org>
        Gerrit-CC: Blink W3C Test Autoroller <blink-w3c-te...@chromium.org>
        Gerrit-CC: Brayan Cruz <brayan...@gmail.com>
        Gerrit-CC: Ho Cheung <hoch...@chromium.org>
        Gerrit-Attention: Di Zhang <dizh...@chromium.org>
        Gerrit-Comment-Date: Thu, 28 Nov 2024 05:56:19 +0000
        Gerrit-HasComments: Yes
        Gerrit-Has-Labels: No
        Comment-In-Reply-To: Haoran Tang <haoran.tan...@gmail.com>
        Comment-In-Reply-To: Ho Cheung <hoch...@chromium.org>
        satisfied_requirement
        open
        diffy
        Reply all
        Reply to author
        Forward
        0 new messages