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
Do not announce robot account token before account ID is available
[chromium-blink-merge.git]
/
chrome
/
test
/
data
/
devtools
/
debugger_test_page.html
blob
2c3e98ecfee682e4bcef59a1cfbd8051d17037b9
1
<html>
2
<head>
3
<script>
4
var
lastVal
=
5
;
5
var
result
= -
1
;
6
7
function
fib
(
n
) {
8
if
(
n
<
2
) {
9
return
1
;
10
}
else
{
11
return
fib
(
n
-
1
) +
fib
(
n
-
2
);
12
}
13
}
14
15
function
calculate
(
e
) {
16
result
=
fib
(
lastVal
++);
17
}
18
19
</script>
20
</head>
21
<body>
22
</body>
23
</html>