mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
17 lines
371 B
HTML
17 lines
371 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Sample HTML5 API Tests</title>
|
|
</head>
|
|
<script src="../testharness.js"></script>
|
|
|
|
<body onload="load_test_attr.done()">
|
|
<h1>Sample HTML5 API Tests</h1>
|
|
<div id="log"></div>
|
|
<script>
|
|
setup({explicit_timeout:true});
|
|
var t = async_test("This test should give a status of 'Not Run' without a delay");
|
|
timeout();
|
|
</script>
|
|
</body>
|
|
</html>
|