v8/test/inspector/runtime/runtime-restore-expected.txt
Alexey Kozyatinskiy 003159e777 [inspector] RemoteObject.description should be empty for primitive type
We currently report description field for numbers. On client side user
can calculate description as remoteObject.unserializableValue ||
(remoteObject.value + ''). Let's report description only for objects to
simplify value -> remoteObject logic a bit.

R=dgozman@chromium.org
TBR=jgruber@chromium.org

Bug: chromium:595206
Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel
Change-Id: I91356a44aa3024e20c8f966869abf4a41b88e4bc
Reviewed-on: https://chromium-review.googlesource.com/737485
Commit-Queue: Aleksey Kozyatinskiy <kozyatinskiy@chromium.org>
Reviewed-by: Pavel Feldman <pfeldman@chromium.org>
Cr-Commit-Position: refs/heads/master@{#53453}
2018-05-31 06:43:15 +00:00

115 lines
2.6 KiB
Plaintext

Checks that Runtime agent correctly restore its state.
Running test: testExecutionContextsNotificationsOnRestore
{
method : Runtime.executionContextCreated
params : {
context : {
id : 1
name :
origin :
}
}
}
will reconnect..
{
method : Runtime.executionContextsCleared
params : {
}
}
{
method : Runtime.executionContextCreated
params : {
context : {
id : 1
name :
origin :
}
}
}
Running test: testConsoleAPICalledAfterRestore
will reconnect..
{
method : Runtime.consoleAPICalled
params : {
args : [
[0] : {
type : number
value : 42
}
]
executionContextId : <executionContextId>
stackTrace : {
callFrames : [
[0] : {
columnNumber : 8
functionName :
lineNumber : 0
scriptId : <scriptId>
url :
}
]
}
timestamp : <timestamp>
type : log
}
}
Running test: testSetCustomObjectFormatterEnabled
will reconnect..
will reconnect..
{
method : Runtime.consoleAPICalled
params : {
args : [
[0] : {
className : Object
customPreview : {
bindRemoteObjectFunctionId : <bindRemoteObjectFunctionId>
formatterObjectId : <formatterObjectId>
hasBody : true
header : ["span",{},"Header formatted ",42]
}
description : Object
objectId : <objectId>
preview : {
description : Object
overflow : false
properties : [
[0] : {
name : name
type : number
value : 42
}
]
type : object
}
type : object
}
]
executionContextId : <executionContextId>
stackTrace : {
callFrames : [
[0] : {
columnNumber : 8
functionName :
lineNumber : 0
scriptId : <scriptId>
url :
}
]
}
timestamp : <timestamp>
type : log
}
}
{
id : <messageId>
result : {
result : {
type : undefined
}
}
}