Files
sousa-gecko/tools/profiler/tests/browser/tracing_values.html
T
alexical 47fe67ebb3 Bug 1933787 - Ingest traced values from profiler backend r=profiler-reviewers,canaltinova
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
2025-07-23 22:04:59 +00:00

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>