mirror of
https://github.com/servo/servo
synced 2026-04-26 01:25:32 +02:00
20 lines
366 B
HTML
20 lines
366 B
HTML
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var x = 0;
|
|
alert("Interval begin");
|
|
var intervalID = setInterval(function() {
|
|
if (x < 10) {
|
|
alert("interval " + x);
|
|
x += 1;
|
|
} else {
|
|
clearInterval(intervalID);
|
|
alert("Interval deleted");
|
|
}
|
|
}, 300);
|
|
</script>
|
|
</body>
|
|
</html>
|