Skip to content

Commit 42181c6

Browse files
Kateryna ProkopenkoDevtools-frontend LUCI CQ
authored andcommitted
Update Chrome (for Testing) PIN
Chromium pin updated to 132.0.6790.0 Roll created at https://cr-buildbucket.appspot.com/build/8733412312868992977 Bug: none Change-Id: I846b6e998b8069cdef6cd7688839b3fb41e21a7b Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5950127 Reviewed-by: Nancy Li <[email protected]> Commit-Queue: Kateryna Prokopenko <[email protected]> Reviewed-by: Simon Zünd <[email protected]>
1 parent 2ae5952 commit 42181c6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

DEPS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ vars = {
4949
# Chrome version used for tests. It should be regularly updated to
5050
# match the Canary version listed here:
5151
# https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions.json
52-
'chrome': '132.0.6779.0',
52+
'chrome': '132.0.6790.0',
5353

5454
# 'magic' text to tell depot_tools that git submodules should be accepted but
5555
# but parity with DEPS file is expected.

front_end/panels/application/preloading/components/MismatchedPreloadingGrid.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ function assertDiff(
5454
}
5555
}
5656

57-
const FG_GREEN = 'color: var(--sys-color-green); text-decoration: line-through';
58-
const FG_RED = 'color: var(--sys-color-error);';
57+
const FG_GREEN = 'color:var(--sys-color-green);text-decoration:line-through';
58+
const FG_RED = 'color:var(--sys-color-error);';
5959

6060
describeWithEnvironment('MismatchedPreloadingGrid', () => {
6161
// Disabled due to flakiness

front_end/panels/application/preloading/components/PreloadingGrid.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ describeWithEnvironment('PreloadingGrid', () => {
296296
assert.isNotNull(grid.shadowRoot);
297297
const cell = getCellByIndexes(grid.shadowRoot, {row: 1, column: 3});
298298
const div = cell.querySelector('div');
299-
assert.strictEqual(div!.getAttribute('style'), 'color: var(--sys-color-error);');
299+
assert.strictEqual(div!.getAttribute('style'), 'color:var(--sys-color-error);');
300300
const icon = div!.children[0];
301301
assert.include(icon.shadowRoot!.innerHTML, 'cross-circle-filled');
302302
});

0 commit comments

Comments
 (0)