Reapply "Gestures: Construct a proper fragment tree for the overscroll pseudos." [chromium/src : main]

0 views
Skip to first unread message

AI Code Reviewer (Gerrit)

unread,
Nov 13, 2025, 10:57:35 AM (yesterday) Nov 13
to Vladimir Levin, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org

AI Code Reviewer added 1 comment

File third_party/blink/renderer/core/layout/layout_object.h
Line 2067, Patchset 1 (Latest):
AI Code Reviewer . unresolved

nit: Per the Blink Style Guide (Naming - Precede setters with the word “Set”; use bare words for getters), getters should use bare words unless there's a name collision. Please consider renaming `GetOverscrollAreaName` to `OverscrollAreaName`.

To keep this interaction as brief and non-intrusive as possible, please consider responding with one of following options:
**Done** | **Won't fix**: reason | **b/<bug_id>** | **Invalid:** reason


_This comment was generated by [Experimental Blink C++ Code Review Agent](http://go/blink-c++-code-review-agent)._
_AI reviews can sometimes be inaccurate; We appreciate your 🙏 feedback 🙏 to help us improve._
_[File a bug](http://go/blink-c++-code-review-agent-feedback) | [Provide feedback on chat](https://chat.google.com/room/AAQA0zhQHe0?cls=4) | [Opt-out](https://ganpati2.corp.google.com/group/peep-genai-blink-agent-optout.prod)_

Open in Gerrit

Related details

Attention set is empty
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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
Gerrit-Change-Number: 7151678
Gerrit-PatchSet: 1
Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
Gerrit-CC: Menard, Alexis <alexis...@intel.com>
Gerrit-Comment-Date: Thu, 13 Nov 2025 15:57:29 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

chromeperf@appspot.gserviceaccount.com (Gerrit)

unread,
Nov 13, 2025, 12:08:40 PM (yesterday) Nov 13
to Vladimir Levin, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Message from chrom...@appspot.gserviceaccount.com

📍 Job mac-m4-mini-perf/motionmark1.3.crossbench complete.

See results at: https://pinpoint-dot-chromeperf.appspot.com/job/17033ddfd10000

Open in Gerrit

Related details

Attention is currently required from:
  • Vladimir Levin
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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
Gerrit-Change-Number: 7151678
Gerrit-PatchSet: 1
Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
Gerrit-CC: Menard, Alexis <alexis...@intel.com>
Gerrit-Attention: Vladimir Levin <vmp...@chromium.org>
Gerrit-Comment-Date: Thu, 13 Nov 2025 17:08:28 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Robert Flack (Gerrit)

unread,
Nov 13, 2025, 3:22:24 PM (yesterday) Nov 13
to Vladimir Levin, chrom...@appspot.gserviceaccount.com, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Robert Flack added 5 comments

Patchset-level comments
File-level comment, Patchset 2 (Latest):
Robert Flack . resolved

Nice, the overall diff from the original patch looks good, just a few things that I think could improve readability / performance.

File third_party/blink/renderer/core/dom/pseudo_element.cc
Line 317, Patchset 2 (Latest): MakeGarbageCollected<ScopedCSSName>(pseudo_argument_, &GetDocument());
Robert Flack . unresolved

This feels a little awkward to me to assume that any pseudo argument should be tree scoped. I *think* the only reason for the argument to be tree scoped is because it is an ident / name, right? In which case maybe we should only set this for view transition and overscroll pseudo elements (and other future pseudo elements whose argument is an ident).

File third_party/blink/renderer/core/layout/out_of_flow_layout_part.cc
Line 2761, Patchset 2 (Latest): // TODO(crbug.com/455892921): We need to check the document scope as well.
Robert Flack . unresolved

is this checked now that we're checking the ScopedCSSName?

File third_party/blink/renderer/core/paint/paint_layer.cc
Line 432, Patchset 2 (Latest): }
Robert Flack . unresolved

If uncontained_overscroll_position_descendants_ already contains name you can early return rather than copying it.

Line 442, Patchset 2 (Latest): auto remove_uncontained_overscroll_position_descendant =
Robert Flack . unresolved

I think it's worth checking this early rather than adding the name and removing it at the end to avoid unnecessary copies. I.e. before adding a name check if we should skip that name.

Open in Gerrit

Related details

Attention is currently required from:
  • Vladimir Levin
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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
Gerrit-Change-Number: 7151678
Gerrit-PatchSet: 2
Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
Gerrit-CC: Menard, Alexis <alexis...@intel.com>
Gerrit-CC: Robert Flack <fla...@chromium.org>
Gerrit-Comment-Date: Thu, 13 Nov 2025 20:22:11 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

chromeperf@appspot.gserviceaccount.com (Gerrit)

unread,
Nov 13, 2025, 4:26:43 PM (yesterday) Nov 13
to Vladimir Levin, Robert Flack, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Message from chrom...@appspot.gserviceaccount.com

📍 Job mac-m4-mini-perf/motionmark1.3.crossbench complete.

See results at: https://pinpoint-dot-chromeperf.appspot.com/job/15484680310000

Gerrit-Comment-Date: Thu, 13 Nov 2025 21:26:28 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

chromeperf@appspot.gserviceaccount.com (Gerrit)

unread,
Nov 13, 2025, 7:13:43 PM (yesterday) Nov 13
to Vladimir Levin, Robert Flack, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Message from chrom...@appspot.gserviceaccount.com

📍 Job mac-m4-mini-perf/motionmark1.3.crossbench complete.

See results at: https://pinpoint-dot-chromeperf.appspot.com/job/15e64b10310000

Gerrit-Comment-Date: Fri, 14 Nov 2025 00:13:32 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Ian Kilpatrick (Gerrit)

unread,
Nov 13, 2025, 7:53:04 PM (yesterday) Nov 13
to Vladimir Levin, Robert Flack, chrom...@appspot.gserviceaccount.com, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Ian Kilpatrick added 1 comment

File third_party/blink/renderer/core/dom/pseudo_element.h
Line 73, Patchset 3 (Latest): ScopedCSSName* GetTreeScopedPseudoArgument();
Ian Kilpatrick . unresolved

can all of these be `const ScopedCSSName*`?

Open in Gerrit

Related details

Attention is currently required from:
  • Vladimir Levin
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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
Gerrit-Change-Number: 7151678
Gerrit-PatchSet: 3
Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
Gerrit-CC: Ian Kilpatrick <ikilp...@chromium.org>
Gerrit-CC: Menard, Alexis <alexis...@intel.com>
Gerrit-CC: Robert Flack <fla...@chromium.org>
Gerrit-Attention: Vladimir Levin <vmp...@chromium.org>
Gerrit-Comment-Date: Fri, 14 Nov 2025 00:52:52 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

chromeperf@appspot.gserviceaccount.com (Gerrit)

unread,
Nov 13, 2025, 9:22:55 PM (yesterday) Nov 13
to Vladimir Levin, Ian Kilpatrick, Robert Flack, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Message from chrom...@appspot.gserviceaccount.com

📍 Job mac-m4-mini-perf/motionmark1.3.crossbench complete.

See results at: https://pinpoint-dot-chromeperf.appspot.com/job/131fed78310000

Gerrit-Comment-Date: Fri, 14 Nov 2025 02:22:45 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

chromeperf@appspot.gserviceaccount.com (Gerrit)

unread,
Nov 13, 2025, 10:53:24 PM (yesterday) Nov 13
to Vladimir Levin, Ian Kilpatrick, Robert Flack, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Message from chrom...@appspot.gserviceaccount.com

😿 Job mac-m4-mini-perf/motionmark1.3.crossbench failed.

See results at: https://pinpoint-dot-chromeperf.appspot.com/job/15810830310000

Open in Gerrit

Related details

Attention is currently required from:
  • Vladimir Levin
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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
Gerrit-Change-Number: 7151678
Gerrit-PatchSet: 4
Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
Gerrit-CC: Ian Kilpatrick <ikilp...@chromium.org>
Gerrit-CC: Menard, Alexis <alexis...@intel.com>
Gerrit-CC: Robert Flack <fla...@chromium.org>
Gerrit-Attention: Vladimir Levin <vmp...@chromium.org>
Gerrit-Comment-Date: Fri, 14 Nov 2025 03:53:10 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

chromeperf@appspot.gserviceaccount.com (Gerrit)

unread,
11:23 AM (12 hours ago) 11:23 AM
to Vladimir Levin, Ian Kilpatrick, Robert Flack, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Message from chrom...@appspot.gserviceaccount.com

😿 Job mac-m4-mini-perf/motionmark1.3.crossbench failed.

See results at: https://pinpoint-dot-chromeperf.appspot.com/job/12c2fcffd10000

Gerrit-Comment-Date: Fri, 14 Nov 2025 16:23:20 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

chromeperf@appspot.gserviceaccount.com (Gerrit)

unread,
2:31 PM (9 hours ago) 2:31 PM
to Vladimir Levin, Ian Kilpatrick, Robert Flack, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Vladimir Levin

Message from chrom...@appspot.gserviceaccount.com

📍 Job mac-m4-mini-perf/motionmark1.3.crossbench complete.

See results at: https://pinpoint-dot-chromeperf.appspot.com/job/14071ccc310000

Open in Gerrit

Related details

Attention is currently required from:
  • Vladimir Levin
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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
Gerrit-Change-Number: 7151678
Gerrit-PatchSet: 5
Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
Gerrit-CC: Ian Kilpatrick <ikilp...@chromium.org>
Gerrit-CC: Menard, Alexis <alexis...@intel.com>
Gerrit-CC: Robert Flack <fla...@chromium.org>
Gerrit-Attention: Vladimir Levin <vmp...@chromium.org>
Gerrit-Comment-Date: Fri, 14 Nov 2025 19:31:44 +0000
Gerrit-HasComments: No
Gerrit-Has-Labels: No
satisfied_requirement
unsatisfied_requirement
open
diffy

Vladimir Levin (Gerrit)

unread,
5:36 PM (6 hours ago) 5:36 PM
to Ian Kilpatrick, Robert Flack, Chris Harrelson, Chromium LUCI CQ, chrom...@appspot.gserviceaccount.com, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
Attention needed from Chris Harrelson, Ian Kilpatrick and Robert Flack

Vladimir Levin voted and added 7 comments

Votes added by Vladimir Levin

Commit-Queue+1

7 comments

Patchset-level comments
File-level comment, Patchset 7 (Latest):
Vladimir Levin . resolved

PTAL

File third_party/blink/renderer/core/dom/pseudo_element.h
Line 73, Patchset 3: ScopedCSSName* GetTreeScopedPseudoArgument();
Ian Kilpatrick . resolved

can all of these be `const ScopedCSSName*`?

Vladimir Levin

Done

File third_party/blink/renderer/core/dom/pseudo_element.cc
Line 317, Patchset 2: MakeGarbageCollected<ScopedCSSName>(pseudo_argument_, &GetDocument());
Robert Flack . resolved

This feels a little awkward to me to assume that any pseudo argument should be tree scoped. I *think* the only reason for the argument to be tree scoped is because it is an ident / name, right? In which case maybe we should only set this for view transition and overscroll pseudo elements (and other future pseudo elements whose argument is an ident).

Vladimir Levin

Added a DCHECK

File third_party/blink/renderer/core/layout/layout_object.h
Line 2067, Patchset 1:
AI Code Reviewer . resolved

nit: Per the Blink Style Guide (Naming - Precede setters with the word “Set”; use bare words for getters), getters should use bare words unless there's a name collision. Please consider renaming `GetOverscrollAreaName` to `OverscrollAreaName`.

To keep this interaction as brief and non-intrusive as possible, please consider responding with one of following options:
**Done** | **Won't fix**: reason | **b/<bug_id>** | **Invalid:** reason


_This comment was generated by [Experimental Blink C++ Code Review Agent](http://go/blink-c++-code-review-agent)._
_AI reviews can sometimes be inaccurate; We appreciate your 🙏 feedback 🙏 to help us improve._
_[File a bug](http://go/blink-c++-code-review-agent-feedback) | [Provide feedback on chat](https://chat.google.com/room/AAQA0zhQHe0?cls=4) | [Opt-out](https://ganpati2.corp.google.com/group/peep-genai-blink-agent-optout.prod)_

Vladimir Levin

Acknowledged

File third_party/blink/renderer/core/layout/out_of_flow_layout_part.cc
Line 2761, Patchset 2: // TODO(crbug.com/455892921): We need to check the document scope as well.
Robert Flack . resolved

is this checked now that we're checking the ScopedCSSName?

Vladimir Levin

Done

File third_party/blink/renderer/core/paint/paint_layer.cc
Line 432, Patchset 2: }
Robert Flack . resolved

If uncontained_overscroll_position_descendants_ already contains name you can early return rather than copying it.

Vladimir Levin

Done

Line 442, Patchset 2: auto remove_uncontained_overscroll_position_descendant =
Robert Flack . resolved

I think it's worth checking this early rather than adding the name and removing it at the end to avoid unnecessary copies. I.e. before adding a name check if we should skip that name.

Vladimir Levin

Done

Open in Gerrit

Related details

Attention is currently required from:
  • Chris Harrelson
  • Ian Kilpatrick
  • Robert Flack
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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
    Gerrit-Change-Number: 7151678
    Gerrit-PatchSet: 7
    Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
    Gerrit-Reviewer: Chris Harrelson <chri...@chromium.org>
    Gerrit-Reviewer: Ian Kilpatrick <ikilp...@chromium.org>
    Gerrit-Reviewer: Robert Flack <fla...@chromium.org>
    Gerrit-Reviewer: Vladimir Levin <vmp...@chromium.org>
    Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
    Gerrit-CC: Menard, Alexis <alexis...@intel.com>
    Gerrit-Attention: Ian Kilpatrick <ikilp...@chromium.org>
    Gerrit-Attention: Chris Harrelson <chri...@chromium.org>
    Gerrit-Attention: Robert Flack <fla...@chromium.org>
    Gerrit-Comment-Date: Fri, 14 Nov 2025 22:36:02 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: Yes
    Comment-In-Reply-To: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
    Comment-In-Reply-To: Ian Kilpatrick <ikilp...@chromium.org>
    Comment-In-Reply-To: Robert Flack <fla...@chromium.org>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Chris Harrelson (Gerrit)

    unread,
    5:39 PM (5 hours ago) 5:39 PM
    to Vladimir Levin, Ian Kilpatrick, Robert Flack, Chromium LUCI CQ, chrom...@appspot.gserviceaccount.com, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
    Attention needed from Ian Kilpatrick, Robert Flack and Vladimir Levin

    Chris Harrelson added 1 comment

    Patchset-level comments
    Chris Harrelson . resolved

    Is it the same code as it was the first time, or changed?

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Ian Kilpatrick
    • Robert Flack
    • Vladimir Levin
    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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
    Gerrit-Change-Number: 7151678
    Gerrit-PatchSet: 7
    Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
    Gerrit-Reviewer: Chris Harrelson <chri...@chromium.org>
    Gerrit-Reviewer: Ian Kilpatrick <ikilp...@chromium.org>
    Gerrit-Reviewer: Robert Flack <fla...@chromium.org>
    Gerrit-Reviewer: Vladimir Levin <vmp...@chromium.org>
    Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
    Gerrit-CC: Menard, Alexis <alexis...@intel.com>
    Gerrit-Attention: Ian Kilpatrick <ikilp...@chromium.org>
    Gerrit-Attention: Robert Flack <fla...@chromium.org>
    Gerrit-Attention: Vladimir Levin <vmp...@chromium.org>
    Gerrit-Comment-Date: Fri, 14 Nov 2025 22:39:41 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Vladimir Levin (Gerrit)

    unread,
    5:40 PM (5 hours ago) 5:40 PM
    to Ian Kilpatrick, Robert Flack, Chris Harrelson, Chromium LUCI CQ, chrom...@appspot.gserviceaccount.com, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
    Attention needed from Chris Harrelson, Ian Kilpatrick and Robert Flack

    Vladimir Levin added 1 comment

    Patchset-level comments
    Chris Harrelson . resolved

    Is it the same code as it was the first time, or changed?

    Vladimir Levin

    It's changed quite a bit. Compare to PS1, which is the original patch

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Chris Harrelson
    • Ian Kilpatrick
    • Robert Flack
    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: I93453e6a4cb40510e3809359838b9e6a0b994fa2
    Gerrit-Change-Number: 7151678
    Gerrit-PatchSet: 7
    Gerrit-Owner: Vladimir Levin <vmp...@chromium.org>
    Gerrit-Reviewer: Chris Harrelson <chri...@chromium.org>
    Gerrit-Reviewer: Ian Kilpatrick <ikilp...@chromium.org>
    Gerrit-Reviewer: Robert Flack <fla...@chromium.org>
    Gerrit-Reviewer: Vladimir Levin <vmp...@chromium.org>
    Gerrit-CC: AI Code Reviewer <peep-gen...@system.gserviceaccount.com>
    Gerrit-CC: Menard, Alexis <alexis...@intel.com>
    Gerrit-Attention: Chris Harrelson <chri...@chromium.org>
    Gerrit-Attention: Ian Kilpatrick <ikilp...@chromium.org>
    Gerrit-Attention: Robert Flack <fla...@chromium.org>
    Gerrit-Comment-Date: Fri, 14 Nov 2025 22:40:22 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    Comment-In-Reply-To: Chris Harrelson <chri...@chromium.org>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    Vladimir Levin (Gerrit)

    unread,
    5:41 PM (5 hours ago) 5:41 PM
    to Ian Kilpatrick, Robert Flack, Chris Harrelson, Chromium LUCI CQ, chrom...@appspot.gserviceaccount.com, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
    Attention needed from Chris Harrelson, Ian Kilpatrick and Robert Flack

    Vladimir Levin added 1 comment

    Patchset-level comments
    Chris Harrelson . resolved

    Is it the same code as it was the first time, or changed?

    Vladimir Levin

    It's changed quite a bit. Compare to PS1, which is the original patch

    Vladimir Levin

    Summary is on top of the last patch: It implements copy on write for uncontained areas in paint layer, and also switches from atomic string to ScopedCSSName

    Gerrit-Comment-Date: Fri, 14 Nov 2025 22:41:33 +0000
    Gerrit-HasComments: Yes
    Gerrit-Has-Labels: No
    Comment-In-Reply-To: Chris Harrelson <chri...@chromium.org>
    Comment-In-Reply-To: Vladimir Levin <vmp...@chromium.org>
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy

    chromeperf@appspot.gserviceaccount.com (Gerrit)

    unread,
    8:25 PM (3 hours ago) 8:25 PM
    to Vladimir Levin, Ian Kilpatrick, Robert Flack, Chris Harrelson, Chromium LUCI CQ, AI Code Reviewer, Menard, Alexis, chromium...@chromium.org, apavlo...@chromium.org, blink-re...@chromium.org, blink-re...@chromium.org, blink-revi...@chromium.org, blink-rev...@chromium.org, blink-...@chromium.org, zol...@webkit.org
    Attention needed from Chris Harrelson, Ian Kilpatrick, Robert Flack and Vladimir Levin

    Message from chrom...@appspot.gserviceaccount.com

    📍 Job mac-m4-mini-perf/motionmark1.3.crossbench complete.

    See results at: https://pinpoint-dot-chromeperf.appspot.com/job/14a360c8310000

    Open in Gerrit

    Related details

    Attention is currently required from:
    • Chris Harrelson
    • Ian Kilpatrick
    • Robert Flack
    • Vladimir Levin
    Gerrit-Attention: Vladimir Levin <vmp...@chromium.org>
    Gerrit-Comment-Date: Sat, 15 Nov 2025 01:25:15 +0000
    Gerrit-HasComments: No
    Gerrit-Has-Labels: No
    satisfied_requirement
    unsatisfied_requirement
    open
    diffy
    Reply all
    Reply to author
    Forward
    0 new messages