This patch consumes the argument values recorded in the JS Execution Tracer to produce a base64-encoded buffer which can be used directly by the profiler frontend to display argument values for traced functions in the profiler's stack chart view. Differential Revision: https://phabricator.services.mozilla.com/D241132
17 lines
250 B
HTML
17 lines
250 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Do some naive JS executions</title>
|
|
<script>
|
|
function run() {
|
|
}
|
|
|
|
run(42);
|
|
run(document.createElement("div"));
|
|
</script>
|
|
</head>
|
|
<body testAttr="foo">
|
|
</body>
|
|
</html>
|