Sign in
chromium
/
chromium
/
src
/
205191a32c9db91062c5342e901b2da2d67a49e5
/
.
/
headless
/
test
/
data
/
stepper_page.html
blob: 03681f7b15bfa33f0923acaaba457960c7b221c7 [
file
] [
log
] [
blame
]
<html>
<body>
<div
id
=
"box"
></div>
<script>
let timer_count
=
0
;
function
callback
()
{
document
.
getElementById
(
'box'
).
textContent
=
timer_count
++;
window
.
setTimeout
(
callback
,
1000
);
}
callback
();
</script>
</body>
</html>