Sign in
chromium
/
devtools
/
devtools-frontend
/
main
/
.
/
test
/
e2e
/
resources
/
sources
/
infinity-loop.html
blob: 323dae52a0ace01fe041dc122042e7dbf69a9cb3 [
file
] [
log
] [
blame
]
<!DOCTYPE html>
<meta
charset
=
"utf-8"
>
<script>
function
loop
()
{
console
.
log
(
'Console marker the test can wait for'
);
while
(
true
)
{
// do nothing.
}
}
</script>