Files
palemoon27/browser/devtools/performance/test/doc_simple-test.html
T
2018-07-24 23:29:57 +08:00

23 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>