Home > Back-end >  what cpp function in firefox gets invoked when javascript invokes clipboard.getData()?
what cpp function in firefox gets invoked when javascript invokes clipboard.getData()?

Time:10-21

What C function is invoked in Firefox source code when Javascript invokes clipboard.getData() ?

My guess is line 57 in MessageEvent::getData

But when I put a printf statement in there, it never gets hit. Does anyone know which C function gets called in Firefox source when Javascript invokes clipboard.getData() ?

CodePudding user response:

DataTransfer::GetData is invoked.

  • Related