chore: bump chromium to 124.0.6353.0 (main) (#41566)
* chore: bump chromium in DEPS to 124.0.6353.0 * chore: update patches * 5365462: Add missing perfetto::Flow and TRACE_EVENT includes5365462
* 5356336: Ensure destruction of mojo channel when destructing KeySystemsImpl5356336
* 5332839: [Extensions] Register NativeHandlers with the RendererAPIProvider5332839
* 5148827: Add permission types for keyboard lock and pointer lock [1/N]5148827
* 5358818: Revert "[object] Fast path for adding props with existing transition"5358818
--------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
This commit is contained in:
parent
80f34ecd2c
commit
26752d3a06
37 changed files with 195 additions and 203 deletions
|
@ -47,4 +47,3 @@ build_ensure_v8_pointer_compression_sandbox_is_enabled_on_64bit.patch
|
|||
fix_revert_src_lb_reducing_c_calls_of_esm_legacy_main_resolve.patch
|
||||
src_preload_function_for_environment.patch
|
||||
deprecate_vector_v8_local_in_v8.patch
|
||||
fast_path_for_adding_props_with_existing_transition.patch
|
||||
|
|
|
@ -1,80 +0,0 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Shelley Vohr <shelley.vohr@gmail.com>
|
||||
Date: Mon, 11 Mar 2024 16:11:02 +0100
|
||||
Subject: Fast path for adding props with existing transition
|
||||
|
||||
Adapt Node.js tests for https://chromium-review.googlesource.com/c/v8/v8/+/5342763.
|
||||
|
||||
This patch can be removed when Node.js handles these changes.
|
||||
|
||||
diff --git a/test/parallel/test-util-format.js b/test/parallel/test-util-format.js
|
||||
index 12e7833bb24457e1b25f4df12b40d82ccfb80941..b57b07f016de6cf7c891936613b3a190495fce81 100644
|
||||
--- a/test/parallel/test-util-format.js
|
||||
+++ b/test/parallel/test-util-format.js
|
||||
@@ -305,7 +305,7 @@ assert.strictEqual(
|
||||
' func: <ref *1> [Function: func] {\n' +
|
||||
' [length]: 0,\n' +
|
||||
' [name]: \'func\',\n' +
|
||||
- ' [prototype]: { [constructor]: [Circular *1] }\n' +
|
||||
+ ' [prototype]: { constructor: [Circular *1] }\n' +
|
||||
' }\n' +
|
||||
'}');
|
||||
assert.strictEqual(
|
||||
@@ -318,7 +318,7 @@ assert.strictEqual(
|
||||
' a: <ref *1> [Function: a] {\n' +
|
||||
' [length]: 0,\n' +
|
||||
' [name]: \'a\',\n' +
|
||||
- ' [prototype]: { [constructor]: [Circular *1] }\n' +
|
||||
+ ' [prototype]: { constructor: [Circular *1] }\n' +
|
||||
' }\n' +
|
||||
' },\n' +
|
||||
' [length]: 1\n' +
|
||||
@@ -333,7 +333,7 @@ assert.strictEqual(
|
||||
' func: <ref *1> [Function: func] {\n' +
|
||||
' [length]: 0,\n' +
|
||||
' [name]: \'func\',\n' +
|
||||
- ' [prototype]: { [constructor]: [Circular *1] }\n' +
|
||||
+ ' [prototype]: { constructor: [Circular *1] }\n' +
|
||||
' }\n' +
|
||||
' }\n' +
|
||||
'}');
|
||||
@@ -345,7 +345,7 @@ assert.strictEqual(
|
||||
' func: <ref *1> [Function: func] {\n' +
|
||||
' [length]: 0,\n' +
|
||||
' [name]: \'func\',\n' +
|
||||
- ' [prototype]: { [constructor]: [Circular *1] }\n' +
|
||||
+ ' [prototype]: { constructor: [Circular *1] }\n' +
|
||||
' }\n' +
|
||||
'} {\n' +
|
||||
' foo: \'bar\',\n' +
|
||||
@@ -353,7 +353,7 @@ assert.strictEqual(
|
||||
' func: <ref *1> [Function: func] {\n' +
|
||||
' [length]: 0,\n' +
|
||||
' [name]: \'func\',\n' +
|
||||
- ' [prototype]: { [constructor]: [Circular *1] }\n' +
|
||||
+ ' [prototype]: { constructor: [Circular *1] }\n' +
|
||||
' }\n' +
|
||||
'}');
|
||||
assert.strictEqual(
|
||||
@@ -364,7 +364,7 @@ assert.strictEqual(
|
||||
' func: <ref *1> [Function: func] {\n' +
|
||||
' [length]: 0,\n' +
|
||||
' [name]: \'func\',\n' +
|
||||
- ' [prototype]: { [constructor]: [Circular *1] }\n' +
|
||||
+ ' [prototype]: { constructor: [Circular *1] }\n' +
|
||||
' }\n' +
|
||||
'} %o');
|
||||
|
||||
diff --git a/test/parallel/test-util-inspect.js b/test/parallel/test-util-inspect.js
|
||||
index 4c9e0d683fe7d0c79d133079b1575ebaf1a974c7..7c576e2a5ff9b136662ca35ba5639a390ec5b036 100644
|
||||
--- a/test/parallel/test-util-inspect.js
|
||||
+++ b/test/parallel/test-util-inspect.js
|
||||
@@ -3187,7 +3187,7 @@ assert.strictEqual(
|
||||
' constructor: <ref *1> [Function: Fhqwhgads] {\n' +
|
||||
' [length]: 0,\n' +
|
||||
" [name]: 'Fhqwhgads',\n" +
|
||||
- ' [prototype]: { [constructor]: [Circular *1] }\n' +
|
||||
+ ' [prototype]: { constructor: [Circular *1] }\n' +
|
||||
' }\n' +
|
||||
'}'
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue