summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/add-binding-expected.txt
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2021-07-14 11:30:07 +0200
committerMichaël Zasso <targos@protonmail.com>2021-07-20 15:24:51 +0200
commit6cdd310275bb0f8056aa0ae6d95614e9ca5b70c7 (patch)
tree9ed37b19cd668894854b7f469010f7621e63ef81 /deps/v8/test/inspector/runtime/add-binding-expected.txt
parentc0f10006c82d2d9896a552de98ed146f9542720d (diff)
downloadnode-new-6cdd310275bb0f8056aa0ae6d95614e9ca5b70c7.tar.gz
deps: update V8 to 9.2.230.21
PR-URL: https://github.com/nodejs/node/pull/38990 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'deps/v8/test/inspector/runtime/add-binding-expected.txt')
-rw-r--r--deps/v8/test/inspector/runtime/add-binding-expected.txt44
1 files changed, 44 insertions, 0 deletions
diff --git a/deps/v8/test/inspector/runtime/add-binding-expected.txt b/deps/v8/test/inspector/runtime/add-binding-expected.txt
index 38ecb05825..ff876782ab 100644
--- a/deps/v8/test/inspector/runtime/add-binding-expected.txt
+++ b/deps/v8/test/inspector/runtime/add-binding-expected.txt
@@ -157,6 +157,50 @@ binding called in session1
}
Call binding in newly created context (binding should NOT be exposed)
+Running test: testAddBindingToMultipleContextsById
+Call binding in default context (binding should be exposed)
+binding called in session1
+{
+ method : Runtime.bindingCalled
+ params : {
+ executionContextId : <executionContextId>
+ name : frobnicate
+ payload : message
+ }
+}
+Call binding in target context (binding should be exposed)
+binding called in session1
+{
+ method : Runtime.bindingCalled
+ params : {
+ executionContextId : <executionContextId>
+ name : frobnicate
+ payload : message
+ }
+}
+
+Running test: testAddBindingToMultipleContextsInDifferentContextGroups
+Call binding in default context (binding should be exposed)
+binding called in group1/session1
+{
+ method : Runtime.bindingCalled
+ params : {
+ executionContextId : <executionContextId>
+ name : frobnicate
+ payload : message
+ }
+}
+Call binding in target context (binding should be exposed)
+binding called in group2/session1
+{
+ method : Runtime.bindingCalled
+ params : {
+ executionContextId : <executionContextId>
+ name : frobnicate
+ payload : message
+ }
+}
+
Running test: testAddBindingToContextByName
Call binding in default context (binding should NOT be exposed)
Call binding in Foo (binding should be exposed)