mirror of
https://github.com/servo/servo.git
synced 2025-06-14 11:24:33 +00:00
20 lines
380 B
HTML
20 lines
380 B
HTML
<html>
|
|
<head>
|
|
<script src="harness.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var x = 0;
|
|
var intervalID = setInterval(function() {
|
|
x += 1;
|
|
if (x == 2) {
|
|
clearInterval(intervalID);
|
|
setTimeout(function() {
|
|
is(x, 2);
|
|
finish();
|
|
}, 300);
|
|
}
|
|
}, 10);
|
|
</script>
|
|
</body>
|
|
</html>
|