mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 22:28:59 +02:00
22 lines
460 B
HTML
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>
|