After a while, I've succeeded to debug in ChromeDevTools the following simple scenario :
Case1: Start the websocket communication between V8 and CDT and all the necessary stuff for V8 inspector with the option PauseOnNextJavascriptStatement
But another simple scenario is still ko, it's when I start the communication between V8 and CDT after the script has been compiled
Case2: Create a V8 script
Compile the script
Start the websocket communication between V8 and ... (idem)
Run the script
Then in CDT, the script source is not displayed nor the source commands (F8, ...)
I guess it's related to the fact that in Case2, CDT never receives the following message from V8
{"method":"Debugger.scriptParsed","params":{"scriptId":"6" ...
then it will not ask to V8 for the script source
{"id":6,"method":"Debugger.getScriptSource", ...
Does anyone knows if its possible to start a debug session with CDT after the script to debug have been compiled
Thank you in advance for your help.