summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/harness/test/testdata/testharness/subdir/testharness_1.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/harness/test/testdata/testharness/subdir/testharness_1.html')
-rw-r--r--testing/web-platform/harness/test/testdata/testharness/subdir/testharness_1.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/web-platform/harness/test/testdata/testharness/subdir/testharness_1.html b/testing/web-platform/harness/test/testdata/testharness/subdir/testharness_1.html
new file mode 100644
index 000000000..fd2fc431d
--- /dev/null
+++ b/testing/web-platform/harness/test/testdata/testharness/subdir/testharness_1.html
@@ -0,0 +1,9 @@
+<!doctype html>
+<title>Test should be enabled</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+test(function() {
+ assert_true(true);
+}, "Test that should pass");
+</script>