gecko-dev/browser/devtools/performance/test/doc_simple-test.html
2014-10-23 12:47:00 +02:00

22 lines
460 B
HTML

<!-- Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ -->
<!doctype html>
<html>
<head>
<meta charset="utf-8"/>
<title>Profiler test page</title>
</head>
<body>
<script type="text/javascript">
function test() {
var a = "Hello world!";
}
// Prevent this script from being garbage collected.
window.setInterval(test, 1);
</script>
</body>
</html>