summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/resources/examples/apisample2.htm
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/resources/examples/apisample2.htm')
-rw-r--r--testing/web-platform/tests/resources/examples/apisample2.htm19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/web-platform/tests/resources/examples/apisample2.htm b/testing/web-platform/tests/resources/examples/apisample2.htm
new file mode 100644
index 000000000..4a4c16b4d
--- /dev/null
+++ b/testing/web-platform/tests/resources/examples/apisample2.htm
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<title>Sample HTML5 API Tests</title>
+</head>
+<body onload="load_test_attr.done()">
+<h1>Sample HTML5 API Tests</h1>
+<p>There should be two results</p>
+<div id="log"></div>
+<script src="../testharness.js"></script>
+<script src="../testharnessreport.js"></script>
+<script>
+setup({explicit_done:true})
+test(function() {assert_true(true)}, "Test defined before onload");
+
+onload = function() {test(function (){assert_true(true)}, "Test defined after onload");
+done();
+}
+</script>