Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(502)

Unified Diff: test/inspector/sessions/runtime-remote-object-expected.txt

Issue 2916803005: [inspector] Create InjectedScript per session in each context (Closed)
Patch Set: rebased Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/inspector/sessions/runtime-remote-object.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/inspector/sessions/runtime-remote-object-expected.txt
diff --git a/test/inspector/sessions/runtime-remote-object-expected.txt b/test/inspector/sessions/runtime-remote-object-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a8d0ec0c207895c39505a82bb1ce31f0175aae15
--- /dev/null
+++ b/test/inspector/sessions/runtime-remote-object-expected.txt
@@ -0,0 +1,103 @@
+Tests that multiple sessions do not interfere with each other's remote objects.
+Evaluating in 1
+Evaluating in 2
+Retrieving properties in 2
+{
+ id : <messageId>
+ result : {
+ result : [
+ [0] : {
+ configurable : true
+ enumerable : true
+ isOwn : true
+ name : a
+ value : {
+ description : 17
+ type : number
+ value : 17
+ }
+ writable : true
+ }
+ [1] : {
+ configurable : true
+ enumerable : false
+ isOwn : true
+ name : __proto__
+ value : {
+ className : Object
+ description : Object
+ objectId : <objectId>
+ type : object
+ }
+ writable : true
+ }
+ ]
+ }
+}
+Retrieving properties in 1
+{
+ id : <messageId>
+ result : {
+ result : [
+ [0] : {
+ configurable : true
+ enumerable : true
+ isOwn : true
+ name : a
+ value : {
+ description : 42
+ type : number
+ value : 42
+ }
+ writable : true
+ }
+ [1] : {
+ configurable : true
+ enumerable : false
+ isOwn : true
+ name : __proto__
+ value : {
+ className : Object
+ description : Object
+ objectId : <objectId>
+ type : object
+ }
+ writable : true
+ }
+ ]
+ }
+}
+Disconnecting 2
+Retrieving properties in 1
+{
+ id : <messageId>
+ result : {
+ result : [
+ [0] : {
+ configurable : true
+ enumerable : true
+ isOwn : true
+ name : a
+ value : {
+ description : 42
+ type : number
+ value : 42
+ }
+ writable : true
+ }
+ [1] : {
+ configurable : true
+ enumerable : false
+ isOwn : true
+ name : __proto__
+ value : {
+ className : Object
+ description : Object
+ objectId : <objectId>
+ type : object
+ }
+ writable : true
+ }
+ ]
+ }
+}
« no previous file with comments | « test/inspector/sessions/runtime-remote-object.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698