mirror of
https://github.com/servo/servo
synced 2026-05-03 04:42:17 +02:00
This is the same configuration as gecko and is convenient for making changes compared to using releases from pypi
9 lines
338 B
HTML
9 lines
338 B
HTML
<!doctype html>
|
|
<title>testharness.js test with long timeout</title>
|
|
<meta name=timeout content=long>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
var t = async_test("Long timeout test");
|
|
setTimeout(t.step_func_done(function() {assert_true(true)}), 15*1000);
|
|
</script> |