repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
tools
/
perf
/
page_sets
/
key_noop_cases
/
no_op_settimeout.html
blob
5b17bede33cce5825cc35d65374202702adb7d2b
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<title>
No-op setTimeout loop
</title>
5
</head>
6
<body>
7
This page has has a no-op setTimeout loop.
8
<script>
9
function
noOp
() {
10
setTimeout
(
noOp
,
16
);
11
}
12
noOp
();
13
</script>
14
</body>
15
</html>