summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/resources/examples/apisample3.htm
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/resources/examples/apisample3.htm')
-rw-r--r--testing/web-platform/tests/resources/examples/apisample3.htm17
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/resources/examples/apisample3.htm b/testing/web-platform/tests/resources/examples/apisample3.htm
new file mode 100644
index 000000000..4dbbf9a87
--- /dev/null
+++ b/testing/web-platform/tests/resources/examples/apisample3.htm
@@ -0,0 +1,17 @@
+<!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>